@charset "utf-8";
/**
 * 编写者：吉林省奕网特科技有限公司
 * 未经授权，禁止使用
 *
 * Copyright (C) 2020 1vator.com 
 */

html, body {
    margin: 0;
    padding: 0;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box; /* Safari<=5 Android<=3 */
    -moz-box-sizing: border-box; /* <=28 */
    box-sizing: border-box;
}
.fp-slide {
    float: left;
}
.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}
.fp-slides {
    z-index:1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out; /* Safari<=6 Android<=4.3 */
    transition: all 0.3s ease-out;
}
.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout:fixed;
    width: 100%;
}
.fp-tableCell {
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.fp-slidesContainer {
    float: left;
    position: relative;
}
.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}
.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}
.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}
.fp-scrollable {
    overflow: scroll;

}
.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#fp-nav.right {
    right: 17px;
}
#fp-nav.left {
    left: 17px;
}
.fp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fp-slidesNav.bottom {
    bottom: 17px;
}
.fp-slidesNav.top {
    top: 17px;
}
#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fp-slidesNav ul li {
    display: inline-block;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span {
    background: #333;
}
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
}
#fp-nav ul li:hover .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}
#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}
#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

.topbar {
    height: 80px;
}
/* 首页section部分背景 */
.section1 {
    background: url(../images/bg01.jpg) 100% 100%;
}

.section2 {
    background: url(../images/bg02.jpg) 100% 100%;
}

.section3 {
    background: url(../images/bg03.jpg) 100% 100%;
}

.section4 {
     background: url(../images/bg04.jpg) 100% 100%;
}

.section5 {
    background: url(../images/bg05.jpg) 100% 100%;
}

.section6 {
     background: url(../images/bg06.jpg) 100% 100%;
}

.window-next {
	position: absolute;
	left: 50%;
	bottom: 3.07%;
	width: 100px;
	margin-left: -50px;
	text-align: center;
	padding-bottom: 22px;
	color: rgba(0,0,0,.8);
	font-size: 12px;
	cursor: pointer;
	-webkit-animation: -webkit-scroll 4s infinite ease-in-out;
	-moz-animation: -moz-scroll 4s infinite ease-in-out;
	transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	z-index: 100;
}
.window-next h4{ font-size:14px;margin-bottom: 5px;color: rgba(0,0,0,0.4);}
.window-next:hover {
	color: rgba(0,0,0,0.4);
}
.window-next:before {
	position: absolute;
	content: '';
	bottom: 0;
	right: 50%;
	width: 40px;
	height: 1px;
	background: rgba(0,0,0,.4);
	transform-origin: right bottom;
	-moz-transform-origin: right bottom;
	-ms-transform-origin: right bottom;
	-o-transform-origin: right bottom;
	-webkit-transform-origin: right bottom;
	transform: rotate(+30deg);
	-moz-transform: rotate(+30deg);
	-ms-transform: rotate(+30deg);
	-o-transform: rotate(+30deg);
	-webkit-transform: rotate(+30deg);
	transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
}
.window-next:after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 50%;
	width: 40px;
	height: 1px;
	background: rgba(0,0,0,.4);
	transform-origin: left bottom;
	-moz-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	-o-transform-origin: left bottom;
	-webkit-transform-origin: left bottom;
	transform: rotate(-30deg);
	-moz-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	-o-transform: rotate(-30deg);
	-webkit-transform: rotate(-30deg);
	transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
}
.window-next:hover:before, .window-next:hover:after {
	background: #853009;
	height: 2px;
}




/* 浏览器宽度自适应分辨率一览 */
@media only screen and (max-width:479px) {
.wapper{ width:98%; margin: 0 auto;}
}
@media only screen and (min-width:480px) and (max-width:767px) {
.wapper{ width:98%; margin: 0 auto;}
}
@media only screen and (min-width:768px) and (max-width:1039px) {
.wapper{ width:98%; margin: 0 auto;}
}
@media only screen and (min-width:1040px) {
.wapper{ width: 1040px; margin: 0 auto;}
}
/* 电脑和移动端是否显示切换 */
@media only screen and (max-width:1039px) {
.pc{ display:none}
.phone{}
}
@media only screen and (min-width:1040px)  {
.pc{}
.phone{ display:none}
}

