/* animated */
@-webkit-keyframes pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        -webkit-transform: scale(2);
        transform: scale(2)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
        transform: translateY(50px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
        transform: translateY(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        -ms-transform: translateX(-50px);
        transform: translateX(-50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        -ms-transform: translateX(50px);
        transform: translateX(50px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes width {
    0% {
        width: 0;
    }
    100% {
        max-width: 480px;
        width: 100%;
    }
}
@keyframes width {
    0% {
        width: 0;
    }
    100% {
        max-width: 480px;
        width: 100%;
    }
}

@-webkit-keyframes line_h {
    0% {
        transform: translate(480px,0px);
        -webkit-transform: translate(480px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}
@keyframes line_h {
    0% {
        transform: translate(480px,0px);
        -webkit-transform: translate(480px,0px);
        opacity: 0;
    }
    100% {
        transform: translate(0px,0px);
        -webkit-transform: translate(0px,0px);
        opacity: 1;
    }
}

@-webkit-keyframes lineIn {
	0% {
        height: 0;
        opacity: 1;
    }
    100%{
        height: 90px;
        opacity: 1;
    }
}
@keyframes lineIn {
	0% {
        height: 0;
        opacity: 1;
    }
    100%{
        height: 90px;
        opacity: 1;
    }
}

@-webkit-keyframes rotateWheel {
    0% {
        transform: rotate(0);
        opacity: 0;
    }
	25%{
		transform: rotate(45deg);
		opacity: 1;
	}
	50%{
		transform: rotate(0deg);
		opacity: 1;
	}
	75%{
		transform: rotate(45deg);
		opacity: 1;
	}
	100%{
		transform: rotate(0deg);
		opacity: 1;
	}
}
@keyframes rotateWheel {
    0% {
        transform: rotate(0);
        opacity: 0;
    }
	25%{
		transform: rotate(45deg);
		opacity: 1;
	}
	50%{
		transform: rotate(0deg);
		opacity: 1;
	}
	75%{
		transform: rotate(45deg);
		opacity: 1;
	}
	100%{
		transform: rotate(0deg);
		opacity: 1;
	}
}

@-webkit-keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }
    50%,100% {
        transform: rotate(45deg);
    }
}
@keyframes circle_right {
    0% {
        transform: rotate(-135deg);
    }
    50%,100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes circle_left {
    0%,50% {
        transform: rotate(-135deg);
    }
    100% {
        transform: rotate(45deg);
    }
}
@keyframes circle_left {
    0%,50% {
        transform: rotate(-135deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes rotate2 {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}
@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes h_breath {
    from { 
        opacity: .1;
    }                      
    50%  { 
        opacity:   .8; 
    }                        
    to   { 
        opacity: .1; 
    }                          
}
@-webkit-keyframes h_breath {
    from { 
        opacity: .1;
    }                      
    50%  { 
        opacity:   .8; 
    }                        
    to   { 
        opacity: .1; 
    }                         
}

@keyframes white {
    from {
        opacity: 1;
        background-color: #e60044;
    }

    to {
        opacity: 1;
        background-color: transparent;
    }
}
@-webkit-keyframes white {
    from {
        opacity: 1;
        background-color: #e60044;
    }

    to {
        opacity: 1;
        background-color: transparent;
    }                        
}

@keyframes white02 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@-webkit-keyframes white02 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }                       
}

@keyframes blue {
    from {
        opacity: 1;
        background-color: #d3feff;
    }

    to {
        opacity: 1;
        background-color: transparent;
    }
}
@-webkit-keyframes blue {
    from {
        opacity: 1;
        background-color: #d3feff;
    }

    to {
        opacity: 1;
        background-color: transparent;
    }                        
}

@keyframes blue02 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
@-webkit-keyframes blue02 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }                       
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}
.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}
.width {
    -webkit-animation-name: width;
    animation-name: width
}
.line_h {
    -webkit-animation-name: line_h;
    animation-name: line_h
}
.lineIn {
    -webkit-animation-name: lineIn;
    animation-name: lineIn
}
.rotateWheel {
    -webkit-animation-name: rotateWheel;
    animation-name: rotateWheel
}
.circle_right {
    -webkit-animation-name: circle_right;
    animation-name: circle_right
}
.circle_left {
    -webkit-animation-name: circle_left;
    animation-name: circle_left
}
.rotate2 {
    -webkit-animation-name: rotate2;
    animation-name: rotate2
}
.rotate {
    -webkit-animation-name: rotate;
    animation-name: rotate
}
.h_breath {
    -webkit-animation-name: h_breath;
    animation-name: h_breath
}
.white {
    -webkit-animation-name: white;
    animation-name: white
}
.white02 {
    -webkit-animation-name: white02;
    animation-name: white02
}
.blue {
    -webkit-animation-name: blue;
    animation-name: blue
}
.blue02 {
    -webkit-animation-name: blue02;
    animation-name: blue02
}


/*loading*/
#loading{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	background-color: #000040;
}

#loading .wrap{
	position: absolute;
	top: 53%;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding-top: 6%;
	transform: translateY(-50%);
	width: 40%;
	max-width: 776px;
}

#loading .wrap .num{
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 42px;
	color: #e60044;
	font-family: 'Rubik';
}
#loading .wrap .ani,#loading .wrap .ani1{opacity: 0;}
#loading .wrap .board_box{
	position: absolute;
	top: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 66%;
	max-width: 516px;
}

#loading .wrap .outline{margin-top: 13%; animation-delay: .3s;
	-webkit-animation-delay: .3s;}

#loading .wrap .board_box .pointer{
	position: absolute;
	left: 50%;
	bottom: 20%;
	width: 8.5%;
	transform: translateX(-50%) rotate(-100deg);
    transform-origin: center 91%;
    transition-timing-function: ease;
}

#loading .wrap .light{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin: -3% auto 0;
	max-width: none;
	animation-duration: .5s;
	-webkit-animation-duration: .5s;
	animation-delay: .6s;
	-webkit-animation-delay: .6s;
	opacity: 0;
}
#loading .wrap .light.on{
	opacity: 1;
}

#loading .wrap .logoo{
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -110px;
	max-width: none;
}
#loading .gun{
    display: none;
	margin: -10% auto 0;
	width: 96px;
	font-size: 16px;
	color: #85a6ff;
	text-align: center;
	cursor: pointer;
	animation-delay: .9s;
	-webkit-animation-delay: .9s;
}
#loading .gun img{
	display: block;
	margin-bottom: -5px;
	perspective: 800;
	-webkit-perspective: 800;
	transform: rotateX(0);
	transform-origin: center top;
}
#loading .gun.on img{transform: rotateX(30deg);}

/* header */
#header {
    width: 100%;
    min-width: 1220px;
    max-width: 1920px;
    margin: auto;
    /* background-color: #FFF; */
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
}
#header .logo {
    float: left;
    width: 389px;
    height: 60px;
    background: url(../images/logo.png) no-repeat 0 0;
    background-size: auto 100%;
    margin: 38px 0 0 40px;
}
#header .ri {
    float: right;
    padding-top: 38px;
    margin-right: 40px;
}
#header .nav {
    float: left;
}
#header .nav a {
    float: left;
    padding: 0 10px;
    line-height: 60px;
    margin: 0 5px;
    color: #fff;
}
#header .nav a.on {
    color: #e60044;
}
#header .navWrap {
    float: left;
}
#header .head_ri {
    height: 50px;
	padding-top: 16px;
    float: right;
    margin-left: 5px;
}

#header .head_ri .lang{padding: 0 13px 0 13px; height: 28px;line-height: 28px; font-size: 12px;color: #fff;text-transform: uppercase; font-family: "Rubik";background-color: rgba(255,255,255,.1);border-radius: 10px;}
#header .head_ri .lang .flag{display: inline-block;margin-right: 5px;}

#header .head_ri .lang .flag{
    display: none;
}

#header .head_ri .lang{
    margin-bottom: 4px;
}

#header .head_ri .lang:nth-child(2){
    display: none;
}
#header .head_ri:hover .lang{
    display: block;
}

/* footer */
footer {
    width: 100%;
    height: 210px;
    background-color: #185baa;
}
footer .fl {
	padding-top: 36px;
    width: 510px;
    height: 210px;
    font-size: 12px;
    line-height: 20px;
    color: rgba(255,255,255,.5);
    /*background: url(../images/test/foot_l.jpg) no-repeat;*/
}

footer .fl>img{margin-bottom: 16px;height: 40px;}
footer .fl .tel,
footer .fl .email{display: inline-block;}
footer .fl .tel img,
footer .fl .email img,footer .fl .pos img{margin-right: 5px;}
footer .fl .email{margin-left: 20px;}
footer .fl .copy a{margin: 0 5px;transition: all .3s;}
footer .fl .copy a:hover{
    color: #FFF;
}
footer .fl .reenoo img{margin-left: 13px;margin-top: -2px;}
footer .fl .copy .beian{margin: 0;}


footer .fl a{display: inline-block;}

footer .fr {
	padding-top: 36px;
    width: 689px;
    height: 210px;
    /*background: url(../images/test/foot_r.jpg) no-repeat;*/
}
footer .fr .link{float: left; font-size: 12px;color: rgba(255,255,255,.5);line-height: 22px;overflow: hidden;}
footer .fr .link .tit{padding-left: 7px; margin-bottom: 12px; position: relative;padding-bottom: 8px;border-bottom: 1px solid rgba(255,255,255,.1); width: 300px; font-size: 14px;color: #fff;}
footer .fr .link .tit:before{content: '';position: absolute;top: 6px;left: 0; width: 2px;height: 12px;background-color: #fff;}
footer .fr .link li{margin-bottom: 6px;overflow: hidden;}
footer .fr .link a{float: left;margin-right: 28px;transition: all .3s;}
footer .fr .link a:hover{color: #FFF;}

footer .fr .qrcode{float: right;}
footer .fr .qrcode >img{float: right; margin-left: 10px;}
footer .fr .qrcode .cont{text-align: right; float: left; padding-top: 46px;font-size: 12px;color: rgba(255,255,255,.5);line-height: 20px;}
footer .fr .qrcode .cont img{margin-bottom: 6px;}
 

/* banner */
.banner {
    width: 100%;
    height: 700px;
    position: relative;
}
.banner .bd {
    width: 100%;
    overflow: hidden;
}
.banner .bd ul {
    width: 100% !important;
}
.banner .bd li {
    width: 100% !important;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.banner .bd li .img {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.banner .bd li .content {
    width: 1360px;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}
.banner .bd li .content .ban_t {
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.banner .bd li .content .ban_t .txt1 {
    font-size: 46px;
    color: #e60044;
    line-height: 1;
    letter-spacing: 4px;
    font-weight: lighter;
    margin-bottom: 12px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}
.banner .bd li .content .ban_t .txt2 {
    font-family: 'BRANDON';
    font-size: 21px;
    line-height: 12px;
    color: #e60044;
    font-weight: lighter;
    text-transform: uppercase;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
.banner .bd li .content .ban_t .line {
    margin: 27px 0 29px;
    width: 480px;
    height: 4px;
    position: relative;
}
.banner .bd li .content .ban_t .line .num01 {
    width: 0;
    height: 4px;
    background-color: #fff;
    opacity: .1;
}
.banner .bd li .content .ban_t .line .num01.animated {
    -webkit-animation: width 2s 1 linear forwards;
    animation: width 2s 1 linear forwards;
}
.banner .bd li .content .ban_t .line .num02 {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 4px;
    background-color: #e60044;
    -webkit-transition: all 1s 2s ease;
    transition: all 1s 2s ease;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}
.banner .bd li .content .ban_t .line .num03 {
    position: absolute;
    left: 40px;
    top: 0;
    width: 10px;
    height: 4px;
    background-color: #f9bd46;
    -webkit-transition: all 1s 2s ease;
    transition: all 1s 2s ease;
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
}
.banner .bd li .content .ban_t .line .num04 {
    position: absolute;
    left: 50px;
    top: 0;
    width: 10px;
    height: 4px;
    background-color: #12b293;
    -webkit-transition: all 1s 2s ease;
    transition: all 1s 2s ease;
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
}
.banner .bd li .content .ban_t .line .num05 {
    position: absolute;
    left: 60px;
    top: 0;
    width: 10px;
    height: 4px;
    background-color: #185baa;
    -webkit-transition: all 1s 2s ease;
    transition: all 1s 2s ease;
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
}
.banner .bd li .content .ban_t .txt3 {
    font-family: 'BRANDON';
    font-size: 30px;
    color: #69a9e7;
    font-weight: 400;
    margin-bottom: 10px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}
.banner .bd li .content .ban_t .txt4 {
    font-size: 16px;
    color: #69a9e7;
    margin-bottom: 6px;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
}
.banner .bd li .content .ban_t .txt5 {
    font-size: 24px;
    color: #69a9e7;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    margin-bottom: 10px;
}
.banner video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.banner .btn {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 99;
}
.banner .btn.prev {
    left: 0;
    opacity: 0;
}
.banner .btn.next {
    right: 0;
    opacity: 0;
}
.banner .btn.prev:hover,
.banner .btn.next:hover{
    opacity: 1;
}
.banner .btn.prev:after {
    content: '';
    width: 51px;
    height: 30px;
    background: url(../images/test/ico2.png) no-repeat;
    /*background: url(../images/test/index-prev-ic1.png) no-repeat;*/
    position: absolute;
    left: 40px;
    top: 50%;
    margin-top: -15px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    animation: duxPrevBtn 1.6s linear infinite;
}
.banner .btn.next:after {
    content: '';
    width: 51px;
    height: 30px;
    background: url(../images/test/ico1.png) no-repeat;
    /*background: url(../images/test/index-next-ic1.png) no-repeat;*/
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -15px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    animation: duxNextBtn 1.6s linear infinite;
}
@keyframes duxPrevBtn {
    0%{
        opacity: 0;
        transform: translateX(20px);
    }
    50%{
        opacity: 1;
    }
    99%{
        opacity: 0;
        transform: translateX(-10px);
    }
    100%{
        opacity: 0;
        transform: translateX(20px);
    }
}
@keyframes duxNextBtn {
    0%{
        opacity: 0;
        transform: translateX(-20px);
    }
    50%{
        opacity: 1;
    }
    99%{
        opacity: 0;
        transform: translateX(10px);
    }
    100%{
        opacity: 0;
        transform: translateX(-20px);
    }
}

.banner .btn:hover:after {
    opacity: 1;
}
.banner .btn.next:hover:after {
    -webkit-transform: translate( -40px, 0);
    transform: translate( -40px, 0);
}
.banner .btn.prev:hover:after {
    -webkit-transform: translate( 40px, 0);
    transform: translate( 40px, 0);
}

.fp-auto-height.fp-section, 
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
    height: auto !important;
}
#fp-nav {
    position: fixed;
    z-index: 100;
    bottom: 38px;
    right: 38px;
    opacity: 1;
    width: 44px;
    height: 60px;
    background: url(../images/test/fp-nav.png) no-repeat;
    -webkit-transform: translate3d(0,0,0);
}
#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
}
#fp-nav ul li + li {
    left: 34px;
}
#fp-nav ul li + li + li {
    left: 29px;
    top: 30px;
}
#fp-nav ul li + li + li + li {
    left: 17px;
    top: 15px;
}
#fp-nav ul li + li + li + li + li {
    left: 0px;
    top: 27px;
}
#fp-nav ul li + li + li + li + li + li {
    left: 17px;
    top: 37px;
}
#fp-nav ul li + li + li + li + li + li + li {
    left: 0px;
    top: 50px;
}
#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
#fp-nav ul li.active a span,
#fp-nav ul li.active:hover a span {
    height: 12px;
    width: 12px;
    top: -1px;
    left: -1px;
    background: #fff;
    border-radius: 50%;
    text-indent: 0;
    border: 1px solid #fff;
 }
#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 8px;
    width: 8px;
    border: 0;
    left: 0;
    top: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    line-height: 12px;
    text-align: center;
    font-size: 12px;
    font-family: 'Rubik';
    color: #000040;
    text-indent: -9999px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}
#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    opacity: 0;
    cursor: pointer;
    z-index: 99;
    line-height: 1;
}


.kf {
    position: fixed;
    bottom: 60px;
    left: 2%;
    z-index: 98;
    transition: all .7s;
}
.dots {
    position: relative;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.dots .circle {
    width: 12px;
    height: 12px;
    border-radius: 100%;
    z-index: 999;
    text-align: center;
    top: 0;
    left: 0;
    position: absolute;
}
.dots .circle_bottom2 {
    background-color: #68b92e;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    filter: alpha(opacity=20);
    z-index: 57;
    position: relative;
    opacity: 0.2;
    top: 3px;
    left: 4px;
}
.dots .circle_bottom {
    background-color: #68b92e;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    filter: alpha(opacity=40);
    z-index: 58;
    position: absolute;
    top: 3px;
    left: 4px;
    opacity: 0.4;
}
.girl {
    position: relative;
    z-index: 70;
}
.livechat-girl {
    /* width: 60px;
    height: 60px; */
    border-radius: 50%;
    opacity: 0;
    -webkit-box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.3);
    box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.3);
    z-index: 700;
    cursor: pointer;
    -webkit-transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
    transition: all 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.livechat-girl:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffc000;
    position: absolute;
    right: 10px;
    top: 3px;
    z-index: 99999;
}
.livechat-girl .tip {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    margin-top: -20px;
    overflow: hidden;
}
.livechat-girl .tip div {
    position: relative;
    padding-left: 20px;
    width: 240px;
    height: 40px;
    line-height: 40px;
    background-color: #68b92e;
    color: #fff;
}
.livechat-girl .tip div:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -8px;
    border: 8px solid transparent;
    border-left-color: #68b92e;
}
.livechat-girl:hover .tip {
    width: 250px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}
.livechat-girl.animated {
    opacity: 1;
}
.livechat-girl:hover .tip {
    width: 250px;
    transition-duration: .5s;
    -webkit-transition-duration: .5s;
}
@-webkit-keyframes twinkling {
    from {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(2);
        -webkit-transform: scale(2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@keyframes twinkling {
    from {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    50% {
        transform: scale(2);
        -webkit-transform: scale(2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}

@keyframes twinkling2 {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    20% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    60% {
        transform: scale(2);
        -webkit-transform: scale(2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
@keyframes twinkling2 {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    33% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
    66% {
        transform: scale(2);
        -webkit-transform: scale(2)
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1)
    }
}
.twinkling {
    -webkit-animation: twinkling 2.1s infinite ease-in-out;
    animation: twinkling 2.1s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.twinkling2 {
    -webkit-animation: twinkling2 2.1s 0.2S infinite ease-in-out;
    animation: twinkling2 2.1s 0.2S infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

#fullpage .section {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
}
#fullpage .section.index02 .content {
    position: relative;
    height: 100%;
}
.index02 .down {
    position: absolute;
    bottom: 480px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    display: none;
}
.active.index02 .down {
    display: block;
}
.index02 .down .cn {
    font-size: 36px;
    color: #d3feff;
    margin-bottom: 10px;
}
.index02 .down .en {
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    font-weight: lighter;
    line-height: 1;
    text-transform: uppercase;
}
.index02 .down .en .reveal {
    display: inline-block;
}
.index02 .down .en .strong {
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.index02 .list {
    width: 877px;
    position: absolute;
    left: 50%;
    margin-left: -438.5px;
    bottom: 110px;
}
.index02 .list .li {
    width: 280px;
    height: 280px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 50%;
    border: 5px solid #63d6ff;
    position: relative;
    padding-top: 85px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 0;
}
.index02 .list .li.li01 {
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.index02 .list .li.li02 {
    left: 0;
    right: 0;
    bottom: 50px;
    margin: auto;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,-100px);
    -webkit-transform: translate(0,-100px);
}
.index02 .list .li.li03 {
    right: 0;
    left: auto;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.active.section.index02 .list .li {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;
}

.index02 .list .li .bg{position: absolute;top:0;left: 0;width: 100%;height: 100%;z-index: 0;-webkit-transition: all .4s linear;border-radius: 50%;overflow: hidden;
    transition: all .4s linear;}
.index02 .list .li .bg img    {transition: all .4s linear;}
.index02 .list .li:hover .bg img{transform: scale(1.1);-webkit-transform: scale(1.1);}
.index02 .list .li:after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #08082b;
    opacity: .6;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: 50%;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
.index02 .list .li .text {
    position: relative;
    z-index: 4;
}
.index02 .list .li .text h3 {
    font-size: 22px;
    color: #d3feff;
    margin-bottom: 8px;
}
.index02 .list .li .text p {
    font-family: 'BRANDON';
    font-size: 18px;
    color: #d3feff;
    line-height: 1;
    opacity: .6;
    text-align: center;
    text-transform: uppercase;
}
.index02 .list .li .text em {
    width: 21px;
    height: 37px;
    background: url(../images/index/ico4.png) no-repeat center;
    display: inline-block;
    margin-top: 39px;
}
.index02 .list .li:hover:after {
    opacity: .4;
}
.index02 .list .li:hover .text em {
    background: url(../images/index/ico23.png) no-repeat center;
}
#fullpage .section.index03 .content {
    position: relative;
    height: 100%;
}
#fullpage .section.index03 .fr {
    width: 450px;
    padding-top: 196px;
}
.section .wheel_box {
    position: absolute;
    right: 502px;
    top: 200px;
    padding-top: 115px;
    z-index: 2;
}
.section .linea {
    margin: 0 auto;
    width: 2px;
    height: 0;
    background-color: #fff;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.section.active .linea,
.section.active .sinceBox {
    -webkit-animation: lineIn 1s 1 linear forwards;
    animation: lineIn 1s 1 linear forwards;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}
.section .wheel {
    display: block;
    margin: 0 auto;
    margin-bottom: 17px;
    opacity: 0;
}
.section.active .wheel {
    -webkit-animation: rotateWheel 1s 1 linear forwards;
    animation: rotateWheel 1s 1 linear forwards;
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
}
.section .sinceBox {
    text-align: center;
}
.index03 .fr .title {
    display: none;
}
.active.index03 .fr .title {
    display: block;
}
.index03 .fr .title .cn {
    font-size: 36px;
    color: #d3feff;
    font-weight: lighter;
    line-height: 1;
    margin-bottom: 10px;
}
.index03 .fr .title .en{
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    line-height: 1;
    font-weight: lighter;
    text-transform: uppercase;
}
.index03 .fr .title .en .reveal {
    display: inline-block;
}
.index03 .fr .title .en .strong{
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.index03 .fr .text {
    margin: 32px 0 14px;
}
.index03 .fr .text p {
    line-height: 26px;
    color: #ffffff;
}
.section .more {
    width: 175px;
    height: 65px;
    /*background: url(../images/index/ico6.png) no-repeat center;*/
    font-size: 15px;
    color: #85a6ff;
    text-align: center;
    line-height: 60px;
    position: relative;
    left: -12px;
    cursor: pointer;
}
.section .more em{
    position: relative;
    z-index: 10;
    text-transform: uppercase;
}
.section .more:after{
    content: "";
    display: block;
    width: 175px;
    height: 65px;
    background: url(../images/index/ico6.png) no-repeat center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
}
.section .more:after{
    background: url(../images/index/ico6.png) no-repeat center;
}
.section .more:hover:after{
    animation: morefxu .8s 1;
}
@keyframes morefxu {
    0%{
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    50%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.index03 .list {
    color: #fff;
    line-height: 50px;
    margin-top: 58px;
}
.index03 .list .li {
    position: relative;
    padding-left: 60px;
    margin-top: 12px;
}
.index03 .list .li .circle_process{
    transition: all .3s;
}
.index03 .list .li:nth-child(1):hover .circle_process{
    background-color: #e60044;
}
.index03 .list .li:nth-child(2):hover .circle_process{
    background-color: #f9bd46;
}
.index03 .list .li:nth-child(3):hover .circle_process{
    background-color: #12b293;
}
.index03 .list .li:nth-child(4):hover .circle_process{
    background-color: #185baa;
}

.index03 .list .li .texts {
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(100px,0);
    -webkit-transform: translate(100px,0);
}
.active.section.index03 .list .li .texts {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
.active.section.index03 .list .li + .li .texts {
    -webkit-transition: all 2s .4s ease-out;
    -moz-transition: all 2s .4s ease-out;
    -o-transition: all 2s .4s ease-out;
    -ms-transition: all 2s .4s ease-out;
    transition: all 2s .4s ease-out;
}
.active.section.index03 .list .li + .li + .li .texts {
    -webkit-transition: all 2s .8s ease-out;
    -moz-transition: all 2s .8s ease-out;
    -o-transition: all 2s .8s ease-out;
    -ms-transition: all 2s .8s ease-out;
    transition: all 2s .8s ease-out;
}
.active.section.index03 .list .li + .li + .li + .li .texts {
    -webkit-transition: all 2s 1.2s ease-out;
    -moz-transition: all 2s 1.2s ease-out;
    -o-transition: all 2s 1.2s ease-out;
    -ms-transition: all 2s 1.2s ease-out;
    transition: all 2s 1.2s ease-out;
}
.index03 .list .li.li02,
.index03 .list .li.li04 {
    margin-left: 36px;
}
.index03 .list .li em {
    font-family: 'BRANDON';
    font-size: 34px;
    font-weight: bold;
}
.circle_process{width: 50px; height: 50px; position: absolute; left: 0; top: -1px; border-radius: 50%; cursor: pointer;}
.circle_process:after{content: ""; display: block; width: 50px; height: 50px; border-radius: 50%; border: 5px solid transparent; position: absolute; left: 0px; top: 0;}
.circle_process .wrapper{width: 25px; height: 60px; position: absolute; top:0; overflow: hidden; z-index: 50;}
.circle_process .right{right: 0;}
.circle_process .left{left:0;}
.circle_process .circle{width: 50px; height: 50px; border: 5px solid transparent; border-radius: 50%; position: absolute; top:0; -webkit-transform : rotate(-135deg); -moz-transform : rotate(-135deg); -o-transform : rotate(-135deg); transform : rotate(-135deg) ;}
.circle_process .rightcircle{border-top: 5px solid transparent; border-right:5px solid transparent; right:0;}
.circle_process .leftcircle{border-bottom:5px solid transparent; border-left:5px solid transparent; left:0;}
.index03.active .circle_process .rightcircle{border-top:5px solid #e60044; border-right:5px solid #e60044;}
.index03.active .circle_process .leftcircle{border-bottom:5px solid #e60044; border-left:5px solid #e60044;}
.index03.active .playProcess1 .rightcircle{-webkit-animation: circle_right 4s linear infinite; -moz-animation: circle_right 4s linear infinite; -o-animation: circle_right 4s linear infinite; animation: circle_right 4s 1 linear forwards;}
.index03.active .playProcess1 .leftcircle{-webkit-animation: circle_left 4s linear infinite; -moz-animation: circle_left 4s linear infinite; -o-animation: circle_left 4s linear infinite; animation: circle_left 4s 1 linear forwards;}

.index03.active .li .playProcess1 .rightcircle{-webkit-animation: circle_right 2s linear infinite; -moz-animation: circle_right 2s linear infinite; -o-animation: circle_right 2s linear infinite; animation: circle_right 2s 1 linear forwards;}
.index03.active .li .playProcess1 .leftcircle{-webkit-animation: circle_left 2s linear infinite; -moz-animation: circle_left 2s linear infinite; -o-animation: circle_left 2s linear infinite; animation: circle_left 2s 1 linear forwards;}
.index03.active .li02 .playProcess1 .rightcircle{animation-delay: .4s;-webkit-animation-delay: .4s;}
.index03.active .li02 .playProcess1 .leftcircle{animation-delay: .4s;-webkit-animation-delay: .4s;}
.index03.active .li03 .playProcess1 .rightcircle{animation-delay: .8s;-webkit-animation-delay: .8s;}
.index03.active .li03 .playProcess1 .leftcircle{animation-delay: .8s;-webkit-animation-delay: .8s;}
.index03.active .li04 .playProcess1 .rightcircle{animation-delay: 1.2s;-webkit-animation-delay: 1.2s;}
.index03.active .li04 .playProcess1 .leftcircle{animation-delay: 1.2s;-webkit-animation-delay: 1.2s;}

.index03.active .circle_process .rightcircle{border-top:5px solid #e60044; border-right:5px solid #e60044;}
.index03.active .circle_process .leftcircle{border-bottom:5px solid #e60044; border-left:5px solid #e60044;}
.index03.active .list .li02 .circle_process .rightcircle{border-top:5px solid #f9bd46; border-right:5px solid #f9bd46;}
.index03.active .list .li02 .circle_process .leftcircle{border-bottom:5px solid #f9bd46; border-left:5px solid #f9bd46;}
.index03.active .list .li03 .circle_process .rightcircle{border-top:5px solid #12b293; border-right:5px solid #12b293;}
.index03.active .list .li03 .circle_process .leftcircle{border-bottom:5px solid #12b293; border-left:5px solid #12b293;}
.index03.active .list .li04 .circle_process .rightcircle{border-top:5px solid #185baa; border-right:5px solid #185baa;}
.index03.active .list .li04 .circle_process .leftcircle{border-bottom:5px solid #185baa; border-left:5px solid #185baa;}



.index02 .list .li .circle_process {
    width: 280px;
    height: 280px;
    left: -5px;
    top: -5px;
    z-index: 3;
}
.index02 .list .li .circle_process:before,
.index02 .list .li .circle_process:after{
    content: "";
    width: 270px;
    height: 270px;
    border-radius: 50%;
    position: absolute;
    border: 5px solid transparent;
    opacity: 0;
    transition: all .6s;
}
.index02 .list .li .circle_process:before{
    border-left-color: #0096ff;
    left: 0;
    top: 0;
    transform: translateX(-25px);
}
.index02 .list .li .circle_process:after{
    border-right-color: #0096ff;
    left: 0;
    top: 0;
    transform: translateX(25px);
}
.index02 .list .li:hover .circle_process:before,
.index02 .list .li:hover .circle_process:after{
    transform: translateX(0px);
    opacity: 1;
    animation: cirRotate 3s .5s ease-in-out  infinite;
}
@keyframes cirRotate {
    0%{
        transform: translateX(0px) rotate(0deg);
        opacity: 1;
    }
    25%{
        transform: translateX(0px) rotate(60deg);
        opacity: 1;
    }
    50%{
        transform: translateX(0px) rotate(0deg);
    }
    75%{
        transform: translateX(0px) rotate(-60deg);
        opacity: 1;
    }
    100%{
        transform: translateX(0px) rotate(0deg);
    }
}
/*.index02 .list .li .circle_process:after {*/
    /*width: 280px;*/
    /*height: 280px;*/
/*}*/
/*.index02 .list .li .circle_process .wrapper {*/
    /*width: 140px;*/
    /*height: 280px;*/
/*}*/
/*.index02 .list .li .circle_process .circle {*/
    /*width: 280px;*/
    /*height: 280px;*/
/*}*/
/*.index02.active .circle_process .rightcircle{border-top:5px solid #0096ff; border-right:5px solid #0096ff;}*/
/*.index02.active .circle_process .leftcircle{border-bottom:5px solid #0096ff; border-left:5px solid #0096ff;}*/
/*.index02 .li:hover .playProcess1 .rightcircle{-webkit-animation: circle_right 1s linear infinite; -moz-animation: circle_right 1s linear infinite; -o-animation: circle_right 1s linear infinite; animation: circle_right 1s 1 linear forwards;}*/
/*.index02 .li:hover .playProcess1 .leftcircle{-webkit-animation: circle_left 1s linear infinite; -moz-animation: circle_left 1s linear infinite; -o-animation: circle_left 1s linear infinite; animation: circle_left 1s 1 linear forwards;}*/
/*.index02.active .circle_process .rightcircle{border-top:5px solid #0096ff; border-right:5px solid #0096ff;}*/
/*.index02.active .circle_process .leftcircle{border-bottom:5px solid #0096ff; border-left:5px solid #0096ff;}*/

.video1,
.video02 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.index03 .circle02 {
    width: 726px;
    height: 721px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -360px;
    /* -webkit-transform: translateY(-50%);
    transform: translateY(-50%); */
}
.index03.active .circle02 {
    width: 726px;
    height: 721px;
    -webkit-animation: pulse 1s 1 linear forwards;
    animation: pulse 1s 1 linear forwards;
}
.index03 .circle02 .num1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 726px;
    height: 721px;
    background: url(../video/1.png) no-repeat center;
    background-size: cover;
    margin: auto;
    -webkit-animation: rotate2 5s ease-in-out infinite;
    animation: rotate2 5s ease-in-out infinite;
    -webkit-transition:all .5s ease;
    transition:all .5s ease;
}
.index03 .circle02 .num2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 654px;
    height: 661px;
    background: url(../video/2.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 2;
    -webkit-animation: rotate2 4s ease-in-out infinite;
    animation: rotate2 4s ease-in-out infinite;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.index03 .circle02 .num3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 543px;
    height: 550px;
    background: url(../video/3.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate 4.4s ease-in-out infinite;
    animation: rotate 4.4s ease-in-out infinite;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.index03 .circle02 .num4 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 504px;
    height: 504px;
    background: url(../video/4.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate2 6s ease-in infinite;
    animation: rotate2 6s ease-in infinite;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.index03 .circle02 .num5 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 392px;
    height: 392px;
    background: url(../video/5.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate2 6.6s ease-in infinite;
    animation: rotate2 6.6s ease-in infinite;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.index03 .circle02 .num6 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 365px;
    height: 363px;
    background: url(../video/6.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate 6.6s ease-in-out infinite;
    animation: rotate 6.6s ease-in-out infinite;
    -webkit-transition:all .3s ease;
    transition:all .3s ease;
}
.index03 .circle02 .num7 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 296px;
    height: 296px;
    background: url(../video/7.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate2 5.2s ease-in infinite;
    animation: rotate2 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}
.index03 .circle02 .num8 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 303px;
    height: 306px;
    background: url(../video/8.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate 5.2s ease-in infinite;
    animation: rotate 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}
.index03 .circle02 .num9 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 169px;
    height: 170px;
    background: url(../video/9.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate2 5.2s ease-in infinite;
    animation: rotate2 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}
.index03 .circle02 .num10 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 262px;
    height: 262px;
    background: url(../video/10.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate 5.2s ease-in infinite;
    animation: rotate 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}
.index03 .circle02 .num11 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 137px;
    height: 137px;
    background: url(../video/11.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: rotate2 5.2s ease-in infinite;
    animation: rotate2 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}
.index03 .circle02 .num12 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 211px;
    height: 211px;
    background: url(../video/12.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
}
.index03 .circle02 .num13 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 304px;
    height: 304px;
    background: url(../video/13.png) no-repeat center;
    background-size: cover;
    margin: auto;
    z-index: 3;
    -webkit-animation: h_breath 5.2s ease-in infinite;
    animation: h_breath 5.2s ease-in infinite;
    -webkit-transition:all .36s ease;
    transition:all .36s ease;
}

.section.index04 {
    /*background-image: url(../images/index/ico14.jpg);*/
   background-color: #000040;
}
.section.index04 .bg{
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -680px;
	width: 1360px;
	height: 100%;
	z-index: 0;
}

.section.index04 .bg .box{
	position: absolute;
	right: -180px;
	bottom: 0;
    opacity: 0;
}
.section.index04.active .bg .box{
    animation: fadeInUp 1s .6s forwards;
}

@keyframes dotToggle{
	from{opacity: 1;}
	to{opacity: 0;}
}
@-webkit-keyframes dotToggle{
	from{opacity: 1;}
	to{opacity: 0;}
}
.section.index04 .bg .dot{
	position: absolute;
	bottom: 222px;
	right: 366px;
	animation: dotToggle 1.2s .5s cubic-bezier(0.93, 0.32, 0, 0.9) infinite alternate;
	-webkit-animation: dotToggle 1.2s .5s cubic-bezier(0.93, 0.32, 0, 0.9) infinite alternate;
}

@keyframes lightToggle{
	from{opacity: 1;transform: scale(1);}
	to{opacity: 0;ransform: scale(.8);}
}
@-webkit-keyframes lightToggle{
	from{opacity: 1;ransform: scale(1);}
	to{opacity: 0;ransform: scale(.8);}
}

.section.index04 .bg .light{
	position: absolute;
	bottom: 173px;
	right: 223px;
	z-index: 2;
	animation: lightToggle 1.8s ease-in-out infinite alternate;
	-webkit-animation: lightToggle 1.8s ease-in-out infinite alternate;
}

@keyframes roundToggle{
	from{opacity: 1;transform: scale(1);}
	to{opacity: .9;transform: scale(.95);}
}
@-webkit-keyframes roundToggle{
	from{opacity: 1;transform: scale(1);}
	to{opacity: .9;transform: scale(.95);}
}
.section.index04 .bg .round{
	position: absolute;
	bottom: 110px;
	right: 73px;
	animation: roundToggle 1.8s ease-in-out infinite alternate;
	-webkit-animation: roundToggle 1.8s ease-in-out infinite alternate;
}

.section.index04 .content {
    position: relative;
    height: 100%;
}
.section.index04 .title {
    padding-top: 182px;
    display: none;
}
.active.section.index04 .title {
    display: block;
}
.section.index04 .title .cn {
    font-size: 36px;
    color: #d3feff;
    line-height: 1;
    margin-bottom: 12px;
}
.section.index04 .title .en {
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    line-height: 1;
    font-weight: lighter;
    text-transform: uppercase;
}
.section.index04 .title .cn .reveal,
.section.index04 .title .en .reveal {
    display: inline-block;
}
.section.index04 .title .en .strong {
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.section.index04 .cont {
    margin-top: 40px;
    /* width: 436px; */
}
.section.index04 .cont .fl:nth-child(1){
	width: 560px;
}
.section.index04 .cont .ico {
    width: 80px;
    height: 80px;
    background: url(../images/index/ico7.png) no-repeat;
    background-size: cover;
    margin: 18px 0 32px;
}
.section.index04 .cont .fl>img{vertical-align: top;}
.section.index04 .cont h3 {
	padding-top: 22px;
	display: inline-block;
    font-size: 22px;
    color: #d3feff;
}
.section.index04 .cont .list{margin-top: 26px;margin-bottom: 20px;cursor: default;}
.section.index04 .cont .list:hover p{
    color: #85a6ff;
}
.section.index04 .cont .list:hover .img img{
    transform: scale(1.04);
}
.section.index04 .cont .list .img img{
    transition: all 1s ;
}
.section.index04 .cont .list .img{
    width: 344px;
    height: 180px;
    overflow: hidden;
}
.section.index04 .cont .list p{
    transition: all .3s;
}
.section.index04 .cont .list h4{margin-top: 24px; margin-bottom: 10px; color: #d3feff;font-size: 18px;line-height: 33px;}
.section.index04 .cont .list p{font-size: 14px;line-height: 19px;color: #d3feff;opacity: .7;}
.section.index04 .cont .list a {
    max-width: 275px;
    height: 40px;
    line-height: 24px;
    color: rgba(255,255,255,.6);
    padding-left: 46px;
    background: url(../images/index/ico8.png) no-repeat 0 0;
    margin-bottom: 27px;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.active.section.index04 .cont .list a {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1.4s ease-out;
    transition: all 1.4s ease-out;
}
.active.section.index04 .cont .list a + a {
    -webkit-transition: all 1.4s .3s ease-out;
    -moz-transition: all 1.4s .3s ease-out;
    -o-transition: all 1.4s .3s ease-out;
    -ms-transition: all 1.4s .3s ease-out;
    transition: all 1.4s .3s ease-out;
}
.active.section.index04 .cont .list a + a + a {
    -webkit-transition: all 1.4s .5s ease-out;
    -moz-transition: all 1.4s .5s ease-out;
    -o-transition: all 1.4s .5s ease-out;
    -ms-transition: all 1.4s .5s ease-out;
    transition: all 1.4s .5s ease-out;
}
.section.index04 .cont .fl .more {
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.active.section.index04 .cont .fl .more {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1.4s .6s ease-out;
    -moz-transition: all 1.4s .6s ease-out;
    -o-transition: all 1.4s .6s ease-out;
    -ms-transition: all 1.4s .6s ease-out;
    transition: all 1.4s .6s ease-out;
}
.section.index04 .cont .fl + .fl {
    margin-left: 50px;
}
.section.index04 .list02 {
    position: relative;
    top: -18px;
}
.section.index04 .list02 a {
    float: left;
    height: 540px;
    color: rgba(211,254,255,.5);
    padding: 115px 40px 0;
    border-left: 1px solid rgba(211,254,255,.1);
    width: 100px;
    text-align: center;
    position: relative;
    line-height: 18px;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(100px,0);
    -webkit-transform: translate(100px,0);
}
.section.index04 .list02 a:last-child {
    border-right: 1px solid rgba(211,254,255,.1);
}
.active.section.index04 .list02 a {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1.4s ease-out;
    transition: all 1.4s ease-out;
}
.active.section.index04 .list02 a span{
	transition-duration: .8s;
	-webkit-transition-duration: .8s;
	position: relative;
	display: block;
}
.active.section.index04 .list02 a:hover span{
	color: #85a6ff;
	/* margin-top: 20px; */
	line-height: 32px;
}

.active.section.index04 .list02 a + a {
    -webkit-transition: all 1.4s .3s ease-out;
    -moz-transition: all 1.4s .3s ease-out;
    -o-transition: all 1.4s .3s ease-out;
    -ms-transition: all 1.4s .3s ease-out;
    transition: all 1.4s .3s ease-out;
}
.active.section.index04 .list02 a + a + a {
    -webkit-transition: all 1.4s .6s ease-out;
    -moz-transition: all 1.4s .6s ease-out;
    -o-transition: all 1.4s .6s ease-out;
    -ms-transition: all 1.4s .6s ease-out;
    transition: all 1.4s .6s ease-out;
}
.active.section.index04 .list02 a + a + a + a {
    -webkit-transition: all 1.4s .9s ease-out;
    -moz-transition: all 1.4s .9s ease-out;
    -o-transition: all 1.4s .9s ease-out;
    -ms-transition: all 1.4s .9s ease-out;
    transition: all 1.4s .9s ease-out;
}
.active.section.index04 .list02 a + a + a + a + a {
    -webkit-transition: all 1.4s 1.2s ease-out;
    -moz-transition: all 1.4s 1.2s ease-out;
    -o-transition: all 1.4s 1.2s ease-out;
    -ms-transition: all 1.4s 1.2s ease-out;
    transition: all 1.4s 1.2s ease-out;
}
.section.index04 .list02 a em {
    width: 100%;
    height: 114px;
    position: absolute;
    top: 0;
    left: 0;
}

.active.section.index04 .list02 a em img{
	opacity: 0;
	transition-duration: .5s;
	-webkit-transition-duration: .5s;
}
.active.section.index04 .list02 a:first-child em{
	background: url(../images/index/sico1.png);
}
.active.section.index04 .list02 a:nth-child(2) em{
	background: url(../images/index/sico2.png);
}
.active.section.index04 .list02 a:nth-child(3) em{
	background: url(../images/index/sico3.png);
}
.active.section.index04 .list02 a:nth-child(4) em{
	background: url(../images/index/sico4.png);
}
.active.section.index04 .list02 a:first-child:hover em{
	background: url(../images/index/sico1_on.png);
}
.active.section.index04 .list02 a:nth-child(2):hover em{
	background: url(../images/index/sico2_on.png);
}
.active.section.index04 .list02 a:nth-child(3):hover em{
	background: url(../images/index/sico3_on.png);
}
.active.section.index04 .list02 a:nth-child(4):hover em{
	background: url(../images/index/sico4_on.png);
}


/*.section.index05 {*/
    /*background-image: url(../images/index/ico15.jpg);*/
/*}*/
.section.index05 .bg-chex{
    width: 870px;
    height: 290px;
    /*background-color: #000;*/
    position: absolute;
    right: -30px;
    bottom: 32px;
    z-index: 50;
    transform: translateX(900px);
    transition: transform 0s ease-in;
    /*animation: bg-chex 5s ease  infinite;*/
}
.section.index05.active .bg-chex{
    transition: transform 1.4s  cubic-bezier(0.67, 1, 0.6, 0.99);
    transform: translateX(0);
}
@keyframes bg-chex {

    0%{
        transform: translateX(-30px);
    }
    50%{
        transform: translateX(0px);
    }
    100%{
        transform: translateX(-30px);
    }
}

.section.index05 .bg-chex img{
    position: absolute;
    opacity: 0;
}

.section.index05 .bg-chex .ice1{
    left: 0;
    top:0;
    z-index: 80;
    opacity: 1;
}
.section.index05 .bg-chex .ice2{
    left: 19px;
    top: 96px;
    z-index: 1;
    opacity: 1;
}
.section.index05 .bg-chex .ice3{
    left: -11px;
    top: 19px;
    z-index: 100;
    opacity: 1;
}
.section.index05 .bg-chex .ice4{
    left: 84px;
    top: -16px;
    z-index: 20;
    opacity: 1;
    animation: cheIc5 2s .8s  infinite;
}
.section.index05 .bg-chex .ice5{
    left: -15px;
    top: -109px;
    z-index: 20;
    opacity: 1;
    animation: cheIc5 2s  infinite;
}
.section.index05 .bg-chex .ice6{
    left: -108px;
    top: 0;
    z-index: 60;
    opacity: 1;
    animation: cheIc6 2s  infinite;
}
.section.index05 .bg-chex .ice7{
    left: -30px;
    top: 221px;
    z-index: 10;
    opacity: 1;
    /*animation: cheIc7 4s ease infinite;*/
}


@keyframes cheIc5 {
    0%{
        /*transform: translateY(-10px);*/
        opacity: .55;
    }
    50%{
        opacity: 1;
    }
    100%{
        /*transform: translateY(0);*/
        opacity: .55;
    }
}

@keyframes cheIc6 {
    0%{
        transform: scale(.3) translateY(-200px);
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        transform: scale(1.2) translateY(100px);
        opacity: 0;
    }
}
@keyframes cheIc7 {
    0%{
        transform:  translateX(-30px);
    }
    50%{
        transform:  translateX(-0px);
    }
    100%{
        transform:  translateX(-30px);
    }
}


.section.index05 .content {
    position: relative;
    height: 100%;
    padding-top: 245px;
    z-index: 100;
}
.section.index05 .title {
    margin-bottom: 38px;
    display: none;
}
.active.section.index05 .title {
    display: block;
}
.section.index05 .title .cn {
    font-size: 36px;
    color: #d3feff;
    line-height: 1;
    margin-bottom: 12px;
}
.section.index05 .title .en {
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    line-height: 1;
    font-weight: lighter;
    text-transform: uppercase;
}
.section.index05 .title .en .reveal {
    display: inline-block;
}
.section.index05 .title .en .strong {
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.section.index05 .list {
    width: 957px;
    float: left;
    margin: 0 -25px;
}
.section.index05 .list .li:hover .date:after{
    width: 84px;
}

/*.section.index05 .list .li:hover .date{
    color: #FFF;
}*/
.section.index05 .list .li .date,
.section.index05 .list .li .text,
.section.index05 .list .li .name{
    transition: all .4s;
}
/*.section.index05 .list .li:hover .date,
.section.index05 .list .li:hover .text,
.section.index05 .list .li:hover .name{
    transform: translateX(10px);
}*/
.section.index05 .list .li {
    float: left;
    width: 33.3333%;
    padding: 0 25px;
    position: relative;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.active.section.index05 .list .li {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1.4s ease-out;
    transition: all 1.4s ease-out;
}
.active.section.index05 .list .li + .li {
    -webkit-transition: all 1.4s .3s ease-out;
    -moz-transition: all 1.4s .3s ease-out;
    -o-transition: all 1.4s .3s ease-out;
    -ms-transition: all 1.4s .3s ease-out;
    transition: all 1.4s .3s ease-out;
}
.active.section.index05 .list .li + .li + .li {
    -webkit-transition: all 1.4s .5s ease-out;
    -moz-transition: all 1.4s .5s ease-out;
    -o-transition: all 1.4s .5s ease-out;
    -ms-transition: all 1.4s .5s ease-out;
    transition: all 1.4s .5s ease-out;
}
.section.index05 .list .li:after {
    content: '';
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,.1);
    position: absolute;
    right: 0;
    top: 0;
}
.section.index05 .list .li:last-child:after {
    display: none;
}
.section.index05 .list .li .date {
    font-family: 'Rubik';
    color: #ff004b;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.section.index05 .list .li .date:after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #ff004b;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .3s;
}
.section.index05 .list .li .name {
    font-size: 18px;
    color: #ffffff;
    line-height: 24px;
}
.section.index05 .list .li:hover .name{
	color: #85a6ff;
}
.section.index05 .list .li:hover .text{
	color: #85a6ff;
	opacity: .6;

}


.section.index05 .list .li .text {
    color: rgba(255,255,255,.6);
    line-height: 24px;
    margin: 28px 0 17px;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
}
.section.index05 .list .li .abt {
	display: none;
    overflow: hidden;
    color: rgba(255,255,255,.4);
    font-size: 12px;
    line-height: 20px;
}
.section.index05 .list .li .abt .read {
    float: left;
    margin-right: 10px;
}
.section.index05 .list .li .abt em {
    width: 19px;
    height: 20px;
    margin-right: 8px;
    display: block;
    float: left;
}
.section.index05 .list .li .abt em.bg_eye {
    background: url(../images/index/ico16.png) no-repeat center;
}
.section.index05 .list .li .abt em.bg_forward {
    background: url(../images/index/ico17.png) no-repeat center;
}

.section.index06 .content {
    position: absolute;
    left: 0;
    right: 0;
    /*height: 100%;*/
   top: 53%;
    transform: translateY(-50%);
}
.section.index06 .fl {
    width: 880px;
    height: 520px;
    overflow: hidden;
    position: relative;
    filter: alpha(opacity=0);
    opacity: 0;
    transform: translate(0,100px);
    -webkit-transform: translate(0,100px);
}
.active.section.index06 .fl {
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translate(0px,0px);
    -webkit-transform: translate(0px,0px);
    -webkit-transition: all 1.4s ease-out;
    transition: all 1.4s ease-out;
}
.section.index06 .fl .img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition-duration: .5s;
}

.section.index06 .fl .img img{
    transition: all .6s;
}
.section.index06 .fl:hover .img img{
    transform: scale(1.05);
}
.section.index06 .fl .float:after{
    transition: all .3s;
}
.section.index06 .fl .float:after{
    transform: translateX(10px);
}
.section.index06 .fl .img.on {
    opacity: 1;
}
.section.index06 .fl:after {
    content: '';
    width: 100%;
    height: 220px;
    background-color: #000;
    opacity: .6;
    position: absolute;
    left: 0;
    bottom: 0;
}
.section.index06 .fl .float {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    padding: 0 116px 0 40px;
    z-index: 2;
}
/*.section.index06 .fl .img{*/
    /*position: relative;*/
/*}*/
.section.index06 .fl .float .btn:hover{
    transform: translateX(15px);
}
.section.index06 .fl .float .btn:after{
    content: "";
    display: block;
    width: 41px;
    height: 14px;
    background: url(../images/index/ico19.png) no-repeat center;
}
.section.index06 .fl .float .btn {
    width: 41px;
    height: 14px;
    position: absolute;
    right: 40px;
    bottom: 41%;
    margin-top: -7px;
    z-index: 90;
    transition: all .3s;
}
.section.index06 .fl .float h3 {
    font-size: 22px;
    color: #ffffff;
    margin: 25px 0 10px;
}
.section.index06 .fl .float p {
    color: #fff;
    line-height: 22px;
}
.section.index06 .fr {
    width: 327px;
}
.section.index06 .title {
    margin-bottom: 38px;
    display: none;
}
.active.section.index06 .title {
    display: block;
}
.section.index06 .title .cn {
    font-size: 36px;
    color: #d3feff;
    line-height: 1;
    margin-bottom: 12px;
}
.section.index06 .title .en {
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    line-height: 1;
    font-weight: lighter;
    text-transform: uppercase;
}
.section.index06 .title .en .reveal {
    display: inline-block;
}
.section.index06 .title .en .strong {
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.section.index06 .fr .dh {
    width: 378px;
    height: 363px;
    background: url(../images/index/ico20.png) no-repeat center bottom;
    position: relative;
}
.section.index06 .fr .dh div:last-child {
    width: 40px;
    height: 40px;
    background: url(../images/index/ico21.png) no-repeat center;
    position: absolute;
    left: 96px;
    top: 15px;
    -webkit-transition: all .8s linear;
    transition: all .8s linear;
}
.section.index06 .fr .dh div:last-child em {
    /* content: ''; */
    width: 60px;
    height: 60px;
    background: url(../images/index/ico22.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: -10px;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform-origin: center;
    transition-duration: .4s;
    -webkit-transition-duration: .4s;
}



@keyframes dash {
        from {
            offset-distance: 0%;
        }

        to {
            offset-distance: 505px;
        }
    }
    
/*.section.index06 .fr .dh div:last-child{
	offset-path: path("M20 20,100 20,100 120,60  120,60 160,20 160,20 240,60 240,60 280,100 280");
        offset-distance: 0%;
        
        /*animation: dash 1s ease-in-out 0s normal forwards;*/
}*/
.section.index06 .fr .dh svg{position: absolute;top: 14px;left: 95px;z-index: 0;}
.section.index06 .fr .dh div.ico{transition-duration: .2s;}

.section.index06 .fr .dh .ico.step1{
	left: 96px;
	top: 15px;
}
.section.index06 .fr .dh .ico.step2{
	top: 15px;
	left:176px;
	/*offset-distance: 80px;*/
}
.section.index06 .fr .dh .ico.step2 em{transform: rotate(180deg);}

.section.index06 .fr .dh .ico.step3{
	left:176px;
	top: 115px;
	/*offset-distance: 180px;*/
}
.section.index06 .fr .dh .ico.step3 em{transform: rotate(225deg);}

.section.index06 .fr .dh .ico.step4{
	left:136px;
	top: 115px;
	/*offset-distance: 220px;*/
}
.section.index06 .fr .dh .ico.step4 em{transform: rotate(360deg);}

.section.index06 .fr .dh .ico.step5{
	left:136px;
	top: 155px;
	/*offset-distance: 260px;*/
}
.section.index06 .fr .dh .ico.step5 em{transform: rotate(225deg);}

.section.index06 .fr .dh .ico.step6{
	left:96px;
	top: 155px;
	/*offset-distance: 300px;*/
}
.section.index06 .fr .dh .ico.step6 em{transform: rotate(360deg);}


.section.index06 .fr .dh .ico.step7{
	left:96px;
	top: 235px;
	/*offset-distance: 380px;*/
}
.section.index06 .fr .dh .ico.step7 em{transform: rotate(325deg);}


.section.index06 .fr .dh .ico.step8{
	left:136px;
	top: 235px;
	/*offset-distance: 420px;*/
}
.section.index06 .fr .dh .ico.step8 em{transform: rotate(180deg);}


.section.index06 .fr .dh .ico.step9{
	left:136px;
	top: 275px;
/*offset-distance: 460px;*/
}
.section.index06 .fr .dh .ico.step9 em{transform: rotate(270deg);}


.section.index06 .fr .dh .ico.step10{
	left:176px;
	top: 275px;
	/*offset-distance: 505px;*/
}
.section.index06 .fr .dh .ico.step10 em{transform: rotate(180deg);}



.section.index06 .fr .dh .text {
    font-size: 16px;
    color: #d3feff;
    position: absolute;
    z-index: 2;
    cursor: pointer;
    white-space: nowrap;
}
.section.index06 .fr .dh .text.on,.section.index06 .fr .dh .text:hover{
    color: #e60044;
}
.section.index06 .fr .dh .text.text01 {
    top: 21px;
    right: 310px;
}
.section.index06 .fr .dh .text.text02 {
    top: 21px;
    left: 242px;
}
.section.index06 .fr .dh .text.text04 {
    top: 123px;
    right: 270px;
}
.section.index06 .fr .dh .text.text03 {
    top: 162px;
    left: 205px;
}
.section.index06 .fr .dh .text.text06 {
    top: 162px;
    right: 310px;
}
.section.index06 .fr .dh .text.text05 {
    top: 202px;
    left: 163px;
}
.section.index06 .fr .dh .text.text08 {
    top: 246px;
    left: 205px;
}
.section.index06 .fr .dh .text.text07 {
    top: 291px;
    right: 270px;
}
.section.index06 .fr .dh .text.text09 {
    top: 340px;
    left: 125px;
}
.section.index06 .fr .dh .text.text10 {
    top: 284px;
    left: 244px;
}

.section.index06 .fr .dh.a1 .text.text01 {
    color: #d3feff;
}
.section.index06 .fr .dh.a1 .text.text02 {
    color: #e60044;
}
.section.index06 .fr .dh.a1 .ico {
    left: 175px;
}
.section.index06 .fr .dh.a1 .ico em {
    transform: rotate(90deg);
    -webkit-transition: all .4s;
    transition: all .4s;
}
.section.index06 .fr .dh.a2 .ico em {
    transform: rotate(180deg);
}
.section.index06 .fr .dh.a3 .ico em {
    transform: rotate(90deg);
}
.section.index06 .fr .dh.a3 .text.text02 {
    color: #d3feff;
}
.section.index06 .fr .dh.a3 .text.text03 {
    color: #e60044;
}
.section.index06 .fr .dh.a4 .ico em {
    transform: rotate(180deg);
}
.section.index06 .fr .dh.a4 .text.text03 {
    color: #d3feff;
}
.section.index06 .fr .dh.a4 .text.text04 {
    color: #e60044;
}
.section.index06 .fr .dh.a5 .ico em {
    transform: rotate(90deg);
}
.section.index06 .fr .dh.a5 .text.text04 {
    color: #d3feff;
}
.section.index06 .fr .dh.a5 .text.text05 {
    color: #e60044;
}
.section.index06 .fr .dh.a6 .text.text05 {
    color: #d3feff;
}
.section.index06 .fr .dh.a6 .text.text06 {
    color: #e60044;
}
.section.index06 .fr .dh.a7 .ico em {
    transform: rotate(0deg);
}
.section.index06 .fr .dh.a7 .text.text06 {
    color: #d3feff;
}
.section.index06 .fr .dh.a7 .text.text08 {
    color: #e60044;
}
.section.index06 .fr .dh.a8 .ico em {
    transform: rotate(90deg);
}
.section.index06 .fr .dh.a8 .text.text08 {
    color: #d3feff;
}
.section.index06 .fr .dh.a8 .text.text07 {
    color: #e60044;
}
.section.index06 .fr .dh.a9 .ico em {
    transform: rotate(0deg);
}
.section.index06 .fr .dh.a9 .text.text07 {
    color: #d3feff;
}
.section.index06 .fr .dh.a9 .text.text09 {
    color: #e60044;
}
.section.index06 .fr .dh.a10 .text.text09 {
    color: #d3feff;
}
.section.index06 .fr .dh.a10 .text.text10 {
    color: #e60044;
}
.section.index06 .fr .dh.a10 .ico em {
    transform: rotate(180deg);
}

.reveal em:nth-child(3n+3) {
    animation: white .1s .85s forwards;
}
.reveal em {
    opacity: 0;
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em {
    animation: white .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.reveal em+em+em {
    animation: white .1s 1s forwards;
    animation-delay: 1s !important;
}
.reveal em+em+em+em {
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em+em+em+em {
    animation: white .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.reveal em+em+em+em+em+em {
    animation: white .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.reveal em+em+em+em+em+em+em {
    animation: white .1s .4s forwards;
    animation-delay: 0.4s !important;
}
.reveal em+em+em+em+em+em+em+em {
    animation: white .1s .7s forwards;
    animation-delay: 0.7s !important;
}

.reveal em+em+em+em+em+em+em+em+em {
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s 1s forwards;
    animation-delay: 1s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .4s forwards;
    animation-delay: 0.4s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .7s forwards;
    animation-delay: 0.7s !important;
}

.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s 1s forwards;
    animation-delay: 1s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .4s forwards;
    animation-delay: 0.4s !important;
}
.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: white .1s .7s forwards;
    animation-delay: 0.7s !important;
}

.cn.reveal em:nth-of-type(even),
.cn .reveal em:nth-of-type(even) {
    animation: blue .1s .85s forwards;
}
.cn.reveal em,
.cn .reveal em {
    opacity: 0;
    animation: blue .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.cn.reveal em+em,
.cn .reveal em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em,
.cn .reveal em+em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em+em,
.cn .reveal em+em+em+em {
    animation: blue .1s 1s forwards;
    animation-delay: 1s !important;
}
.cn.reveal em+em+em+em+em,
.cn .reveal em+em+em+em+em {
    animation: blue .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.cn.reveal em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em {
    animation: blue .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.cn.reveal em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em {
    animation: blue .1s .7s forwards;
    animation-delay: 0.7s !important;
}
.cn.reveal em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em {
    animation: blue .1s .4s forwards;
    animation-delay: 0.4s !important;
}

.cn.reveal em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s 1s forwards;
    animation-delay: 1s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .4s forwards;
    animation-delay: 0.4s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .7s forwards;
    animation-delay: 0.7s !important;
}

.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .85s forwards;
    animation-delay: 0.85s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s 1s forwards;
    animation-delay: 1s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .55s forwards;
    animation-delay: 0.55s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s 1.15s forwards;
    animation-delay: 1.15s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .25s forwards;
    animation-delay: 0.25s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .4s forwards;
    animation-delay: 0.4s !important;
}
.cn.reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em,
.cn .reveal em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em+em {
    animation: blue .1s .7s forwards;
    animation-delay: 0.7s !important;
}

.index08 .content {
    position: absolute;
    left: 0;
    right: 0;
    top: 51%;
    transform: translateY(-50%);
}

.section.index08 .title {
    padding-top: 160px;
    display: none;
}
.active.section.index08 .title {
    display: block;
    position: relative;
    padding-top: 0;
}
.section.index08 .title .cn {
    font-size: 36px;
    color: #d3feff;
    line-height: 1;
    margin-bottom: 12px;
    /* float: left; */
}
.section.index08 .title .en {
    font-family: 'BrandonGro';
    font-size: 24px;
    margin-top: 18px;
    color: #d3feff;
    line-height: 1;
    font-weight: lighter;
    text-transform: uppercase;
    /* float: left; */
}
.section.index08 .title .en .reveal {
    display: inline-block;
}
.section.index08 .title .en .strong {
    /*font-weight: bold;*/
    font-family: "Brandon_bld";
    color: #e60044;
}
.section.index08 .list {
    overflow: hidden;
    display: flex;
    display: -webkit-flex;
    /* justify-content: space-between; */
    /* -webkit-justify-content: space-between; */
    text-align: right;
}
.section.index08 .list {
    margin-bottom: 14px;
    line-height: 45px;
    /* margin-left: -36px; */
}
.section.index08 .list li {
    /* display: inline-block; */
    /* vertical-align:bottom; */
    float: left;
    display: flex;align-items: center;
    padding: 0 30px;
    height: 40px;
} 
.section.index08 .list li img {
    /*-webkit-filter:grayscale(100%);*/
    /*-moz-filter:grayscale(100%);*/
    /*-ms-filter: grayscale(100%);*/
    /*-o-filter: grayscale(100%);*/
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);*/
    /*_filter:none;*/
    /*-moz-opacity:0.7;*/
    /*opacity:0.7;*/
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
    margin:0 auto;
    display: block;
    max-height: 40px;
}
.section.index08 .up {
    width: 100%;
    height: 280px;
    margin-top: 10px;
}
.section.index08 .down {
    width: 100%;
    height: 249px;
    overflow: hidden;
    padding: 30px 0;
    margin-top: 20px;
    background-color: #fff;
}
.section.index08 .name {
    font-size: 18px;
    color: #000b4b;
    margin-bottom: 20px;
    padding-left: 25px;
}
.section.index08 .up .fl {
    width: 34.5%;
    height: 100%;
    background-color: #fff;
    padding: 30px 0;
}
.section.index08 .up .fr {
    width: calc(65.5% - 10px);
    height: 100%;
    background-color: #fff;
    padding: 30px 0;
}
.section.index08 .more{
	/* float: right; */
	position: absolute;
	right: -14px;
	bottom: -7px;
	left: auto;
}

.section.index08 .fl .list:last-child{
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}
.section.index08 .up .fl li{width:25%;}
.section.index08 .up .fl li img{}
.section.index08 .up .fr li{width:16.66%;}
.section.index08 .down .list li{width:10%;margin-top:10px;}

.section.index08 .fl .list:last-child li{/* margin-right: 30px; */}


/*.section.index08 .list li:hover img {*/
    /*-webkit-filter:grayscale(0);*/
    /*filter:grayscale(0);*/
    /*filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0)Alpha(opacity=100);*/
    /*-moz-opacity:1;*/
    /*opacity:1;*/
/*}*/
.fp-viewing-undefined .section.index08 .title {
	position: relative;
    display: block;
}
.section.index08 .down,
.section.index08 .up .fl,
.section.index08 .up .fr{
    opacity: 0;
}

.index08.anun .up .fl{
    animation: fadeInRight 1s .2s forwards;
}
.index08.anun .up .fr{
    animation: fadeInRight 1s .4s forwards;
}
.index08.anun .down{
    animation: fadeInUp 1s .5s forwards;
}

.section.index08 .up .fr .list li{max-height: 50px;}
.section.index08 .ps{padding-left:30px;color: #535353;font-size: 14px;opacity: .7;margin-top:10px;}

@media only screen and (max-width: 1439px ) {
	.active.section.index06 .fl{width: 780px;height: 460px;}
}

@media screen and (max-width: 1400px) { 
    .content {
        width: 1200px;
        margin: 0 auto;
    }
    .banner .bd li .content {
        width: 1200px;
    }
    .section.index05 .list {
        width: 933px;
    }
}
@media screen and (max-height: 870px) { 
    .section.index04 .cont .list .img{
        display: none;
    }
}
@media screen and (max-height: 840px) { 
    .section.index04 .title {
        padding-top: 135px;
    }

    .section.index05 .content {
        padding-top: 220px;
    }

    #fullpage .section.index03 .fr {
        padding-top: 135px;
    }
    .section .wheel_box {
        top: 140px;
    }
    .index03 .list {
        margin-top: 30px;
    }
    .index03.active .circle02 {
        width: 524px;
        height: 520px;
        margin-top: -230px;
    }
    .index03 .circle02 .num1 {
        width: 524px;
        height: 520px;
    }
    .index03 .circle02 .num2 {
        width: 456px;
        height: 461px;
    }
    .index03 .circle02 .num3 {
        width: 346px;
        height: 350px;
    }
    .index03 .circle02 .num4 {
        width: 304px;
        height: 304px;
    }
    .index03 .circle02 .num5 {
        width: 192px;
        height: 192px;
    }
    .index03 .circle02 .num6 {
        width: 164px;
        height: 163px;
    }
    /* .index03 .circle02 .num7 {
        width: 49px;
        height: 49px;
    }
    .index03 .circle02 .num8 {
        width: 52px;
        height: 53px;
    }
    .index03 .circle02 .num9 {
        width: 35px;
        height: 35px;
    } */

    .section.index08 .title {
        padding-top: 135px;
    }
    .section.index08 .name {
        margin-bottom: 20px;
    }
    .section.index08 .name{
        font-size: 20px;
    }
    .section.index08 .up,
    .section.index08 .down {
        zoom: .8;
    }

}
@media screen and (max-height: 770px) { 
    .section.index04 .cont {
        margin-top: 20px;
    }
    .section.index04 .cont .ico {
        width: 52px;
        height: 52px;
        margin: 10px 0 20px;
    }

    .section.index05 .content {
        padding-top: 180px;
    }

    .index03 .fr .text {
        margin: 24px 0 10px;
    }
    .index03 .list {
        margin-top: 24px;
    }

    /*.section.index08 .up,*/
    /*.section.index08 .down {*/
        /*height: 210px;*/
    /*}*/
    .index08 .content{
        top: 56%;
    }
    .section.index08 .up .fl,
    .section.index08 .up .fr,
    .section.index08 .down {
        padding: 15px 30px;
    }
}

@media screen and (max-height: 740px) {
    .index03 .list{
        zoom: .8;
    }
}