/*!
 * fullPage 2.9.6
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
 html.fp-enabled,
 .fp-enabled body {
     margin: 0;
     padding: 0;
     overflow:hidden;
 
     /*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 {
     display: table-cell;
     vertical-align: middle;
     width: 100%;
     height: 100%;
 }
 .fp-slidesContainer {
     float: left;
     position: relative;
 }
 .fp-controlArrow {
     -webkit-user-select: none; /* webkit (safari, chrome) browsers */
     -moz-user-select: none; /* mozilla browsers */
     -khtml-user-select: none; /* webkit (konqueror) browsers */
     -ms-user-select: none; /* IE10+ */
     position: absolute;
     z-index: 4;
     top: 50%;
     cursor: pointer;
     width: 0;
     height: 0;
     border-style: solid;
     margin-top: -38px;
     -webkit-transform: translate3d(0,0,0);
     -ms-transform: translate3d(0,0,0);
     transform: translate3d(0,0,0);
 }
 .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: hidden;
     position: relative;
 }
 .fp-scroller{
     overflow: hidden;
 }
 .iScrollIndicator{
     border: 0 !important;
 }
 .fp-notransition {
     -webkit-transition: none !important;
     transition: none !important;
 }
 #fp-nav {
     position: fixed;
     z-index: 100;
     margin-top: -32px;
     top: 50%;
     opacity: 1;
     -webkit-transform: translate3d(0,0,0);
 }
 #fp-nav.right {
     right: 17px;
 }
 #fp-nav.left {
     left: 17px;
 }
 .fp-slidesNav{
     position: absolute;
     z-index: 4;
     opacity: 1;
     -webkit-transform: translate3d(0,0,0);
     -ms-transform: translate3d(0,0,0);
     transform: translate3d(0,0,0);
     left: 0 !important;
     right: 0;
     margin: 0 auto !important;
 }
 .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,
 #fp-nav ul li:hover a.active span,
 .fp-slidesNav ul li:hover a.active span{
     height: 12px;
     width: 12px;
     margin: -6px 0 0 -6px;
     border-radius: 100%;
  }
 #fp-nav ul li a span,
 .fp-slidesNav ul li a span {
     border-radius: 50%;
     position: absolute;
     z-index: 1;
     height: 4px;
     width: 4px;
     border: 0;
     background: #333;
     left: 50%;
     top: 50%;
     margin: -2px 0 0 -2px;
     -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:hover a span,
 .fp-slidesNav ul li:hover a span{
     width: 10px;
     height: 10px;
     margin: -5px 0px 0px -5px;
 }
 #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;
     cursor: pointer;
 }
 #fp-nav ul li:hover .fp-tooltip,
 #fp-nav.fp-show-active a.active + .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;
 }
 .fp-auto-height.fp-section,
 .fp-auto-height .fp-slide,
 .fp-auto-height .fp-tableCell{
     height: auto !important;
 }
 
 .fp-responsive .fp-auto-height-responsive.fp-section,
 .fp-responsive .fp-auto-height-responsive .fp-slide,
 .fp-responsive .fp-auto-height-responsive .fp-tableCell {
     height: auto !important;
 }
a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}html{line-height:1}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}caption,td,th{text-align:left;font-weight:400;vertical-align:middle}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:"";content:none}a img{border:none}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}*,html{font-family:Microsoft Yahei,Arial}a{text-decoration:none}button,input{outline:none;border:0}button{background:transparent}.mt20{margin-top:20px!important}.mr10{margin-right:10px}.mr5{margin-right:5px}.mr20{margin-right:20px}.floatL{float:left}.floatR{float:right}.hide{display:none!important}.textCenterBtn{position:relative}.textCenterBtn .icon-wrapper{position:absolute;left:0;top:0}input:-webkit-autofill{background-color:transparent!important}img{image-rendering:-moz-crisp-edges;image-rendering:-o-crisp-edges;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges;-ms-interpolation-mode:nearest-neighbor}@-webkit-keyframes fadeInRight1{0%{opacity:0;transform:translate3d(20%,0,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInRight1{0%{opacity:0;transform:translate3d(20%,0,0)}to{opacity:1;transform:translateZ(0)}}@-webkit-keyframes toggle{0%{opacity:1;transform:translate3d(0,30%,0)}50%{opacity:.8;transform:translateZ(0)}to{opacity:1;transform:translate3d(0,30%,0)}}@keyframes toggle{0%{opacity:1;transform:translate3d(0,30%,0)}50%{opacity:.8;transform:translateZ(0)}to{opacity:1;transform:translate3d(0,30%,0)}}@-webkit-keyframes fadeInUpShort{0%{opacity:0;transform:translate3d(0,-30%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInUpShort{0%{opacity:0;transform:translate3d(0,-30%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes scaleMask{0%{transform:scale(1.1)}50%{transform:scale(1)}to{transform:scale(1.1)}}@-webkit-keyframes scaleMask{0%{transform:scale(1.1)}50%{transform:scale(1)}to{transform:scale(1.1)}}@-webkit-keyframes fadeInTop{0%{opacity:0;transform:translate3d(0,-200px,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInTop{0%{opacity:0;transform:translate3d(0,-200px,0)}to{opacity:1;transform:translateZ(0)}}@-webkit-keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-20%,20%,0)}to{opacity:1;transform:translateZ(0)}}@keyframes fadeInBottomLeft{0%{opacity:0;transform:translate3d(-20%,20%,0)}to{opacity:1;transform:translateZ(0)}}body,html{width:100%;height:100%;-webkit-tap-highlight-color:transparent;-webkit-text-size-adjust:none;-webkit-touch-callout:none;font-family:Meiryo UI}body{background-color:#101010}.site-wrapper{position:relative;width:100%;height:100%}.top-banner{position:fixed;top:0;left:0;width:100%;height:126px;background:url(/kd/img/top-banner.png);box-sizing:border-box;z-index:100}.top-banner .game-icon{position:absolute;left:21px;top:14px;width:96px;height:96px}.top-banner .game-icon img{width:100%}.top-banner .title{position:absolute;top:30px;left:140px;font-size:30px;color:#eac1a9}.top-banner .desc{position:absolute;left:140px;top:80px;font-size:24px;color:#aa9a91}.top-banner .down-btn{position:absolute;right:21px;top:25px;background-image:url(/kd/img/sprites_m.png);background-position:0 -1461px;width:200px;height:80px}.bottom-nav{position:absolute;bottom:0;left:0;width:100%;height:210px;border-top:6px solid rgba(123,44,15,.8);box-sizing:border-box;background:url(/kd/img/nav-bg.jpg) 0 0 no-repeat;background-size:100% auto;z-index:100}.bottom-nav .nav-wrapper{position:absolute;left:0;top:0;width:590px;height:120px;display:flex;justify-content:center;align-items:center}.bottom-nav .nav-item{width:25%;height:100%;text-align:center}.bottom-nav .nav-item.active .nav-item-name,.bottom-nav .nav-item.active .nav-item-title{color:#f1b116}.bottom-nav .nav-item.active .nav-item-line{opacity:1}.bottom-nav .nav-item-title{margin-top:26px;color:#dbc0a1;font-size:30px}.bottom-nav .nav-item-name{margin-top:10px;color:#807d79;font-size:20px}.bottom-nav .nav-item-line{margin:10px auto 0;width:24px;height:4px;background-color:#f1b116;opacity:0}.bottom-nav .nav-item-2 .nav-item-line{width:136px}.bottom-nav .nav-item-3 .nav-item-line{width:46px}.bottom-nav .nav-item-4 .nav-item-line{width:70px}.bottom-nav .facebook-btn{position:absolute;top:-110px;right:0;width:160px;height:94px;background-color:#1e3749}.bottom-nav .facebook-btn .fb-icon{display:block;margin:12px auto 10px;background-image:url(/kd/img/sprites_m.png);background-position:0 -42px;width:39px;height:39px}.bottom-nav .cafe-btn,.bottom-nav .facebook-btn .desc{text-align:center;font-size:24px;color:#807d79}.bottom-nav .cafe-btn{float:right;position:relative;width:158px;height:126px;background-color:#222b26;padding-top:76px;box-sizing:border-box}.bottom-nav .cafe-icon{position:absolute;left:62px;top:22px;background-image:url(/kd/img/sprites_m.png);background-position:0 -299px;width:45px;height:45px}.bottom-nav .secton-footer{position:absolute;left:0;bottom:0;height:90px;text-align:center;background:#101010;flex-wrap:wrap;padding:10px 0;box-sizing:border-box}.bottom-nav .secton-footer,.bottom-nav .service{width:100%;display:flex;justify-content:center;align-items:center}.bottom-nav .service .item{margin-right:30px}.bottom-nav .service a{color:#70757f;font-size:20px;text-decoration:underline}.bottom-nav .copyright{width:100%;text-align:center;font-size:20px;color:#70757f}.menu{position:fixed;top:0;left:10px;background-image:url(/kd/img/sprites_m.png);background-position:0 -3109px;width:156px;height:160px;cursor:pointer;z-index:999}.twitter{left:175px;background-position:0 -1968px;height:99px}.to-reserve,.twitter{position:fixed;top:0;background-image:url(/kd/img/sprites_m.png);width:97px;cursor:pointer;z-index:999}.to-reserve{display:block;left:280px;background-position:0 -2187px;height:100px}.arrow-down{position:absolute;bottom:48px;left:350px;background-image:url(/kd/img/sprites_m.png);background-position:0 -141px;width:40px;height:40px;z-index:68;-webkit-animation:toggle 4s linear infinite;animation:toggle 4s linear infinite;cursor:pointer}.section-1{width:100%;height:100%;background:url(/kd/img/m-section-1.jpg) no-repeat top;background-size:cover}.section-1 .logo{position:absolute;left:20px;bottom:284px;opacity:0;background-image:url(/kd/img/sprites_m.png);background-position:0 -3465px;width:685px;height:212px;transition:all .6s ease 1.5s;z-index:66}.section-1 .logo.active{bottom:254px;opacity:1}.section-1 .role-item{position:absolute}.section-1 .role-left{bottom:-66px;width:673px;height:965px;right:77px;background:url(/kd/img/role-left.png) no-repeat top;opacity:0;transform:scale(1.3);transition:transform .7s ease-out .5s,opacity .7s ease .5s;z-index:2}.section-1 .role-left.active{opacity:1;transform:scale(1)}.section-1 .role-center{left:0;bottom:180px;width:750px;height:1032px;background:url(/kd/img/role-center.png) no-repeat top;z-index:5;opacity:0;transform:scale(1.3);transition:transform .7s ease-out,opacity .7s ease;z-index:1}.section-1 .role-center.active{opacity:1;transform:scale(1)}.section-1 .role-right{bottom:-66px;left:62px;width:688px;height:881px;background:url(/kd/img/role-right.png) no-repeat top;opacity:0;transform:scale(1.3);transition:transform .7s ease-out 1s,opacity .7s ease 1s;z-index:3}.section-1 .role-right.active{opacity:1;transform:scale(1)}.section-1 .play-btn{display:flex;justify-content:center;align-items:center;position:absolute;bottom:580px;left:50%;transform:translateX(-50%) scale(1);z-index:6;background-image:url(/kd/img/sprites_m.png);background-position:0 -3941px;width:246px;height:246px;opacity:0;transition:opacity .4s ease 3s}.section-1 .play-btn.active{opacity:1;-webkit-animation:scaleSoon .4s ease-in-out 3s;animation:scaleSoon .4s ease-in-out 3s}.section-1 .play-btn-inner{margin:4px 0 0 6px;-webkit-animation:scale .6s linear infinite alternate;animation:scale .6s linear infinite alternate;background-image:url(/kd/img/sprites_m.png);background-position:0 -354px;width:40px;height:56px}.section-1 .down-wrapper{position:absolute;bottom:128px;width:100%;left:0;display:flex;justify-content:center;align-items:center;z-index:67;opacity:0;transition:opacity .6s ease 2.4s,bottom .6s ease 2.4s}.section-1 .down-wrapper.active{opacity:1;bottom:128px}.section-1 .appstore{background-position:0 -1126px}.section-1 .appstore,.section-1 .googleplay{background-image:url(/kd/img/sprites_m.png);width:209px;height:73px}.section-1 .googleplay{background-position:0 -1209px;margin:auto 10px}.section-1 .apk{background-image:url(/kd/img/sprites_m.png);background-position:0 -1043px;width:209px;height:73px}.section-4{width:100%;height:100%}.section-4.load{background:url(/kd/img/m-section-4.jpg) no-repeat top;background-size:100% auto}.section-4 .role-main-wrapper{position:relative;width:750px;height:100%;margin:0 auto}.section-4 .role-main-item{position:absolute;bottom:0;left:0;width:750px;height:100%}.section-4 .role-main-item .bg{width:100%;height:100%;opacity:0;transform:scale(1.3) translateY(-150px);transition:transform .5s linear,opacity .3s linear}.section-4 .role-main-item .bg .title{position:absolute;top:20px;right:10px;background-image:url(/kd/img/sprites_m.png);background-position:0 -2672px;width:234px;height:130px;text-align:center;color:#fff}.section-4 .role-main-item .bg .title span{display:block;font-weight:700;padding-top:40px;font-size:46px;transform:translateX(-10px)}.section-4 .role-main-item.active .bg{opacity:1;transform:scale(1) translateY(0)}.section-4 .role-main-item.active .bottom-des{display:block!important}.section-4 .role-main-item .click-wrapper{position:absolute;bottom:186px;left:260px;background-image:url(/kd/img/sprites_m.png);background-position:0 -3687px;width:245px;height:244px;z-index:5;opacity:.2;cursor:pointer;-webkit-animation:scaleC 2s linear infinite;animation:scaleC 2s linear infinite}.section-4 .role-main-item .click-btn{position:absolute;bottom:220px;left:296px;background-image:url(/kd/img/sprites_m.png);background-position:0 -3279px;width:171px;height:176px;text-align:center;line-height:176px;font-size:36px;font-weight:700;color:#fff;z-index:6}.section-4 .role-main-item .p-bottom{position:absolute;bottom:0;left:0;width:750px;height:417px;background:url(/kd/img/m-c-bottom.png) no-repeat center 30px;color:#fff;font-size:22px;line-height:36px}.section-4 .role-main-item .p-bottom .bottom-des{display:none;width:700px;position:absolute;top:240px;left:30px;z-index:7}.section-4 .role-main-1.load .bg{background:url(/kd/img/m-p1.png) no-repeat bottom}.section-4 .role-main-2.load .bg{background:url(/kd/img/m-p2.png) no-repeat bottom}.section-4 .role-main-3.load .bg{background:url(/kd/img/m-p3.png) no-repeat bottom}.section-4 .role-main-4.load .bg{background:url(/kd/img/m-p4.png) no-repeat bottom}.section-4 .role-main-5.load .bg{background:url(/kd/img/m-p5.png) no-repeat bottom}.section-4 .role-main-6.load .bg{background:url(/kd/img/m-p6.png) no-repeat bottom}.section-4 .role-main-7.load .bg{background:url(/kd/img/m-p7.png) no-repeat bottom}.section-4 .role-select-wrapper{position:absolute;bottom:470px;left:50%;margin-left:-130px;width:280px;text-align:center}.section-4 .character-next,.section-4 .character-prev{position:absolute;cursor:pointer;top:-240px}.section-4 .character-prev{left:-150px;background-position:0 -2422px}.section-4 .character-next,.section-4 .character-prev{background-image:url(/kd/img/sprites_m.png);width:81px;height:115px}.section-4 .character-next{right:-150px;background-position:0 -2297px}.section-4 .role-select-item{float:left;cursor:pointer;width:24px;height:24px;background:#665b42;margin-left:14px;border-radius:50%}.section-4 .role-select-item.active,.section-4 .role-select-item:hover{background:#e6ddcc}.section-4 .role-intro-wrapper{display:none;position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.9);box-sizing:border-box;z-index:99}.section-4 .role-intro-wrapper .close{position:absolute;top:170px;left:326px;background-image:url(/kd/img/sprites_m.png);background-position:0 -1551px;width:90px;height:92px;z-index:6}.section-4 .role-intro-wrapper .skill,.section-4 .role-intro-wrapper .tianfu{width:100%;height:40px;margin-top:120px;margin-bottom:15px;font-size:28px;color:#fff;text-align:center;line-height:40px;background:url(/kd/img/m-c-line.png) no-repeat 50%}.section-4 .role-intro-wrapper .skill{margin-top:30px}.section-4 .role-intro-wrapper .skill-des,.section-4 .role-intro-wrapper .tianfu-des{color:#a69683;font-size:24px;line-height:30px}.section-4 .role-intro-item{display:none;position:absolute;top:219px;left:35px;width:680px;padding:0 30px;height:961px;background:url(/kd/img/m-c-des-bg.png) no-repeat 50%;background-size:100% auto;box-sizing:border-box}.section-4 .role-intro-item.active{display:block}.section-4 .role-name{color:#fff;font-size:40px;text-align:center;margin-top:64px}.section-4 .role-desc-1{font-size:26px;color:#fff;margin-top:80px}.section-4 .role-desc-1,.section-4 .role-desc-2{padding:0 60px;box-sizing:border-box;line-height:36px}.section-4 .role-desc-2{font-size:24px;color:#dbc0a1;margin-top:42px}.section-4 .role-intro-1{display:block}.section-2{width:100%;height:100%}.section-2.load{background:url(/kd/img/m-section-2.jpg) no-repeat top;background-size:100% 100%}.section-2 .list-content{position:absolute;top:208px;left:0;height:100%;background:url(/kd/img/m-girl-left.png) no-repeat center -188px;background-size:100%}.section-2 .news-list-wrapper{width:750px}.section-2 .list-nav{width:720px;height:60px;margin-left:15px;line-height:60px;font-size:26px;color:#333;cursor:pointer}.section-2 .list-nav-item{width:172px;height:100%;text-align:center;display:inline-block}.section-2 .list-nav-item.active{background:url(/kd/img/m-tab-bg.png) no-repeat top;background-size:cover;color:#fff}.section-2 .news-list-inner{width:410%;overflow:hidden;height:100%}.section-2 .news-list{position:relative;float:left;cursor:pointer;width:20%;height:922px}.section-2 .news-list-item{position:relative;width:720px;height:140px;border-bottom:1px solid #9f9f9f;color:#49463e;overflow:hidden;cursor:pointer;margin-top:30px;margin-left:15px;box-sizing:border-box}.section-2 .news-list-item .news-type{margin-left:193px;height:32px;width:190px;line-height:32px;text-align:center;background:#e0dec7;font-size:22px}.section-2 .news-list-item .news-desc{margin-top:32px;font-size:28px}.section-2 .news-list-item .time{position:absolute;top:8px;left:0;font-size:24px}.section-2 .pagination-item{position:absolute;left:0;bottom:0;height:46px;width:750px;text-align:center}.section-2 .list-pagination{display:flex;justify-content:center;align-items:center;font-size:20px}.section-2 .list-pagination-item{width:46px;height:46px;line-height:46px;text-align:center;cursor:pointer;color:#757064;margin-left:10px;background-image:url(/kd/img/sprites_m.png);background-position:0 -245px;width:43px;height:44px}.section-2 .list-pagination-item.active,.section-2 .list-pagination-item:hover{color:#fff;background-image:url(/kd/img/sprites_m.png);background-position:0 -191px;width:43px;height:44px}.section-2 .list-pagination-item.disabled{cursor:not-allowed}.section-2 .nextPage,.section-2 .prevPage{width:auto;padding:0 10px;margin:0 20px;color:#000;background:none}.section-2 .article-top{width:100%;text-align:center;color:#fff;background-color:#a09d68}.section-2 .article-title{padding:25px 15px 20px;line-height:40px;font-size:30px;font-weight:700;border-top:1px solid #000}.section-2 .article-time{width:100%;text-align:center;font-size:24px;padding-bottom:20px}.section-2 .article-detail{box-sizing:border-box;color:#49463e;line-height:38px;min-height:500px;overflow-y:auto;font-size:26px;padding:20px 26px 0}.section-2 .article-detail p img{text-align:center;width:100%!important;height:auto!important}.section-2 .article-detail::-webkit-scrollbar{width:4px}.section-2 .article-detail::-webkit-scrollbar-thumb{border-radius:4px;background:#c9c5bd}.section-2 .article-detail::-webkit-scrollbar-track{background:transparent}.section-3{width:100%;height:100%}.section-3.load{background:url(/kd/img/m-section-3.jpg) no-repeat top;background-size:100% 100%}.section-3 .word-left{position:absolute;top:280px;left:80px;width:309px;height:413px;font-size:26px;line-height:36px;color:#000}.section-3 .word-left p{opacity:0}.section-3 .word-left.active .p1{-webkit-animation:fadeInUpShort .3s ease-out;animation:fadeInUpShort .3s ease-out;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.section-3 .word-left.active .p2{-webkit-animation:fadeInUpShort .3s ease-out .2s;animation:fadeInUpShort .3s ease-out .2s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.section-3 .word-left.active .p3{-webkit-animation:fadeInUpShort .3s ease-out .4s;animation:fadeInUpShort .3s ease-out .4s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.section-3 .word-left p{margin-bottom:60px}.section-3 .word-right{width:305px;height:141px;position:absolute;bottom:416px;right:73px;opacity:0;font-size:26px;line-height:36px;color:#000}.section-3 .word-right.active{-webkit-animation:fadeInUpShort .3s ease-out .6s;animation:fadeInUpShort .3s ease-out .6s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.section-3 .word-title{position:absolute;bottom:210px;right:73px;width:386px;height:130px;background:url(/kd/img/m-word-title.png) no-repeat top;opacity:0}.section-3 .word-title.active{-webkit-animation:fadeInUpShort .3s ease-out .8s;animation:fadeInUpShort .3s ease-out .8s;animation-fill-mode:forwards;-webkit-animation-fill-mode:forwards}.section-5{width:100%;height:100%}.section-5.load{background:url(/kd/img/m-section-5.jpg) no-repeat top;background-size:100% auto}.section-5 .movie-list{position:absolute;top:202px;left:64px;width:560px;height:600px}.section-5 .movie-list .movie-item{position:relative;width:323px;height:184px;cursor:pointer;margin-top:20px}.section-5 .movie-list .movie-item .movie-play{position:absolute;top:50px;left:136px;background-image:url(/kd/img/sprites_m.png);background-position:0 -1376px;width:54px;height:75px;-webkit-animation:scale .6s linear infinite alternate;animation:scale .6s linear infinite alternate}.section-5 .movie-list .movie-item.movie-item1{margin-top:0;margin-left:118px;background:url(/kd/img/m-movie1-bg.png) no-repeat 50%}.section-5 .movie-list .movie-item.movie-item2{background:url(/kd/img/m-movie2-bg.png) no-repeat 50%}.section-5 .movie-list .movie-item.movie-item3{margin-left:220px;background:url(/kd/img/m-movie3-bg.png) no-repeat 50%}.youtube-video-wrapper{position:fixed;display:none;left:0;top:0;right:0;bottom:0;z-index:9990;background-color:rgba(0,0,0,.7)}.youtube-video-wrapper .youtube-video-content{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.mask-temp{display:none}.show_water{-webkit-animation:mask 1.5s steps(39) forwards;animation:mask 1.5s steps(39) forwards}@-webkit-keyframes mask{0%{-webkit-mask-position:0 0;mask-position:0 0;opacity:1}to{-webkit-mask-position:100% 0;mask-position:100% 0;opacity:.8}}@keyframes mask{0%{-webkit-mask-position:0 0;mask-position:0 0;opacity:1}to{-webkit-mask-position:100% 0;mask-position:100% 0;opacity:.8}}@-webkit-keyframes scale{0%{transform:scale(.8)}to{transform:scale(1)}}@keyframes scale{0%{transform:scale(.8)}to{transform:scale(1)}}@-webkit-keyframes scaleC{0%{opacity:0;transform:scale(.4)}50%{opacity:.2;transform:scale(.8)}to{opacity:0;transform:scale(1.2)}}@keyframes scaleC{0%{opacity:0;transform:scale(.4)}50%{opacity:.2;transform:scale(.8)}to{opacity:0;transform:scale(1.2)}}@-webkit-keyframes scaleSoon{0%{transform:translateX(-50%) scale(1)}50%{transform:translateX(-50%) scale(1.2)}to{transform:translateX(-50%) scale(1)}}@keyframes scaleSoon{0%{transform:translateX(-50%) scale(1)}50%{transform:translateX(-50%) scale(1.2)}to{transform:translateX(-50%) scale(1)}}.menu-content{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(76,68,48,.96);z-index:999}.menu-content .close{top:50px;right:40px;background-position:0 -1292px;width:71px;height:74px}.menu-content .close,.menu-content .logo-menu{position:absolute;background-image:url(/kd/img/sprites_m.png)}.menu-content .logo-menu{top:110px;left:40px;transform:scale(.8);background-position:0 -3465px;width:685px;height:212px}.menu-content .list{position:absolute;top:347px;left:0;width:100%;height:710px}.menu-content .list .nav-li{text-align:center;height:100px;line-height:100px;font-size:36px;color:#e9ce94;cursor:pointer}.menu-content .list .nav-li.active{color:#fff}.twitter-content{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:url(/kd/img/m-twitter-bg.jpg) no-repeat top;background-size:cover;z-index:998}.twitter-content .close{position:absolute;top:180px;left:326px;background-image:url(/kd/img/sprites_m.png);background-position:0 -1551px;width:90px;height:92px;z-index:66}.twitter-content .iframe-twitter{position:absolute;top:240px;left:120px;width:500px;height:760px}.twitter-content .twitter-menu{top:1040px;left:80px;background-position:0 -1653px;width:594px;height:94px}.twitter-content .menu,.twitter-content .twitter-menu{position:absolute;background-image:url(/kd/img/sprites_m.png);cursor:pointer}.twitter-content .menu{top:0;left:10px;background-position:0 -3109px;width:156px;height:160px}.twitter-content .twitter{position:absolute;top:0;left:175px;background-image:url(/kd/img/sprites_m.png);background-position:0 -1968px;width:97px;height:99px;cursor:pointer}.article-content{display:none;position:fixed;top:188px;left:30px;color:#000}.article-content .article-top{height:125px;border-bottom:3px solid #000;text-align:center}.article-content .article-title{width:690px;font-size:30px;padding-top:20px;font-weight:700}.article-content .article-time{font-size:18px;padding-top:20px}.article-content .article-detail{width:690px;height:800px!important;max-height:800px!important;overflow-x:hidden;overflow-y:scroll;margin-top:30px}.article-content .article-detail img{width:100%}.article-content .article-detail p,.article-content .article-detail span{font-size:26px!important}.article-back-list{position:fixed;bottom:0;left:226px;display:none;line-height:60px;text-align:center;font-size:28px;background-image:url(/kd/img/sprites_m.png);background-position:0 -489px;width:295px;height:60px;color:#fff}.footer{position:absolute;bottom:0;left:0;z-index:9999;height:330px;width:100%;background:#272a2c}.content{height:100%;margin:0 auto;padding-top:44px;box-sizing:border-box;width:750px;text-align:center}.company,.description{display:inline-block;vertical-align:top}.company{width:600px;box-sizing:border-box;margin-top:-10px}.company .gm99{display:inline-block;width:170px;height:63px;background:url(/kd/img/gm99.png);background-size:100%}.company .copyright{position:absolute;bottom:145px;left:96px;display:inline-block;color:#d0d0d0;padding-top:24px;font-size:16px}.description{width:550px;box-sizing:border-box;margin-top:-20px;padding:30px 0 0 130px}.description .grade{position:absolute;bottom:40px;left:160px;width:63px;height:63px;background:url(/kd/img/grade.png);background-size:100%}.description .des,.description .grade{display:inline-block;vertical-align:top}.description .des{position:absolute;bottom:45px;left:236px;margin-top:-4px;height:63px;text-align:left;color:#d0d0d0}.description .des p{font-size:16px;box-sizing:border-box;padding-left:10px;line-height:24px}.description .link{padding-top:16px}.description .link .item{float:left;color:#d0d0d0;font-size:16px;padding:0 10px;border-right:1px solid #d0d0d0}.description .link .item:nth-child(4){border-right:none}.description .link .item:first-child{padding-left:0}.description .link .item a{color:#d0d0d0}.description .link .item a:hover{color:#ef9f03}
