html, body{
    background-color: #131722;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
    overflow: hidden;
}
p,h1,h2,h3,h4,h5,h6,ul,li{
    font-weight: normal;
    margin: 0;
    padding: 0;
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
.table{
    display: table;
    width: 100%;
    height: 100%;
}
.table-cell{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/*cursor*/
.cursor{
    position: absolute;
    transform: translate(-50%, -50%);
}


/*service-link 2019-5-16 ty*/
.service-link {
    display: block;
    position: fixed;
    width: 80px;
    height: 80px;
    background-image: url(../img/service_link.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    bottom: 100px;
    right: 0;
    z-index: 9999;
    cursor: pointer;
}
.service-close{
    width: 24px;
    height: 24px;
    position: absolute;
    right: 27px;
    top: 16px;
    cursor: pointer;
}
div.te_ts_chatArea{
    display: none;
}
@media screen and (max-width: 768px){
    .service-close{
        right: 12px;
        top: 6px;
    }
}
/*service-link 2019-5-16 ty*/


/*menu*/
.menu{
    position: fixed;
    top: 20px;
    left: 50px;
    z-index: 88;
}
.menu>a{
    display: inline-block;
    position: relative;
    height: 23px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: auto 100%;
    transition: all 500ms cubic-bezier(0.19,1,0.22,1) 0ms;
}
.menu .menu-list{
    width: 23px;
    background-image: url(../image/main/icon-menu-bg.png);
}
.menu .menu-episodes{
    margin-left: 15px;
    width: 27px;
    background-image: url(../image/main/icon-episodes-bg.png);
}


/*top-logo*/
.top-logo{
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    padding: 24px 0 0;
    box-sizing: border-box;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1000ms cubic-bezier(0.19,1,0.22,1) 0ms;
    z-index: 85;
}
.top-logo .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/main/header-gradient.png);
    background-repeat: repeat-x;
    background-size: 1px 100%;
    opacity: 0;
    transition: all 1000ms cubic-bezier(0.19,1,0.22,1) 0ms;
}
.top-logo img{
    position: relative;
    width: 96.5px;
    transition: all 1000ms cubic-bezier(0.19,1,0.22,1) 0ms;
}

/*foot*/
.foot{
    position: fixed;
    padding: 12px 24px;
    width: 100%;
    z-index: 88;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    font-size: 20px;
    color: rgba(255,255,255,.8);
}
.foot .mask{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/main/footer-gradient.png);
    background-repeat: repeat-x;
    background-size: 1px 100%;
    opacity: 0;
}
.foot .left{
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    position: relative;
}
.foot .left .line{
    width: 35px;
    height: 1px;
    background-color: rgba(255,255,255,0.8);
    display: inline-block;
    vertical-align: middle;
    margin: 0 1rem;
}
.foot .left a{
    display: inline-block;
    padding: 24px 12px;
    opacity: .75;
    transition: all .4s ease;
}
.foot .left a:hover{
    opacity: 1;
}
.foot .right{
    position: absolute;
    height: 57px;
    right: 36px;
    top: 12px;
    overflow: hidden;
}
.foot .right span{
    display: block;
    float: left;
    margin-right: 12px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.foot .right a{
    display: block;
    float: left;
}


/*section*/
.section{
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    color: rgba(229,229,229,0.95);
}
.section.all{
    height: 100vh;
}


/*section scroll-btn*/
.section .scroll-btn{
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.section .scroll-btn p{
    font-size: 16px;
    margin-bottom: 12px;
}


/*bar*/
.bar{
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 60%;
    left: 0;
    bottom: 5px;
    background-color: rgba(179,9,37,0.5);
}


/*imglist*/
.imglist{
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
}
.imglist ul{
    position: relative;
    width: 100%;
    height: 520px;
}
.imglist ul li{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 96px;
    box-sizing: border-box;
    display: none;
}
.imglist ul li:first-child{
    display: block;
}
.imglist ul li img{
    height: 100%;
}
.imglist .btn{
    display: inline-block;
    margin-top: 30px;
}
.imglist .btn b{
    display: inline-block;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-image: url(../image/main/white-arrow.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: left center;
}
.imglist .btn .right-btn{
    transform: rotateY(180deg);
    margin-left: 50px;
}
.imglist .btn b.disabled{
    opacity: .5;
    cursor: auto;
}
.imglist h6{
    width: 100%;
    font-size: 200px;
    color: rgba(65,86,110,0.3);
    position: absolute;
    top: calc(50% - 84px);
    left: 50%;
    transform: translate(-50%,-50%);
}


/*video-box*/
.video-box{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #131722;
    z-index: 99;
    cursor: none;
    display: none;
}
.video-box video{
    position: absolute;
    width: 85%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}




@media only screen and (max-width: 1366px){
    .foot{
        padding: 0 24px;
        font-size: 16px;
    }
    .foot .left a{
        padding: 16px 8px;
    }
    .foot .right{
        top: 0;
    }
    .imglist ul{
        height: 400px;
    }
    .imglist h6{
        font-size: 150px;
    }
}



/*底部留言*/
.visible-lg {
    display: block
}

.hidden-xs {
    display: none;
}
.feedbackcon{
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    background:url(../img/acc/feedbackbg.png) 50% 0 no-repeat #c70528;
    background-size: auto 100%;
    color:#fff;
    z-index: 100;
	display:none;
}
.feedbackcon .smark{
    position: fixed;
    left: 0;
    right:0;
    top:0;
    bottom:0;
    background:rgba(255,255,255,0.7);
    display: none;
    z-index: 98

}
.feedbackcon .controlbtn{
    position: absolute;
    right:110px;
    bottom:100%;
    width: 118px;
    height: 32px;
    background:url(../img/acc/feedbackbtnbg.png) 0 1px no-repeat;
    text-align: center;
    line-height: 32px;
    cursor: pointer;

}
.feedbackcon .controlbtn:after{
    content:"";
    display: inline-block;
    zoom:1;
    *display:inline;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border:solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.feedbackcon .controlbtn span{
    font-size: 14px;
    padding-right:10px;
    display: inline-block;
    zoom:1;
    *display:inline;
    vertical-align: middle;
}

.feedbackcon .contentwrap{
    width: 100%;
    max-width: 1240px;
    padding:0 20px;
    margin: 0 auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
}
.feedbackcon .title{
    padding:15px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    top: auto;
    transform: translateZ(0);
}
.feedbackcon .title .hidden-xs{
    font-size: 12px;
}
.feedback_content{
    padding:15px 0;
    position: relative;
    display: none;
}
.feedback_content .ewmbtn{
    position: absolute;
    right:5%;
}
.feedback_content .ewmbtn .pic{
    width: 60px;
    height: 60px;
    float: right;
}
.feedback_content .ewmbtn .pic img{
    width: 100%;
    height: auto;
}
.feedback_content .ewmbtn p{
    font-size: 13px;
    text-align: center;
    padding-right: 10px;
    float: right;
    line-height: 60px;
}
.feedback_content .feedback_form{
    padding-right:280px;
}
.feedback_content .feedform_title{
    font-size: 14px;
    font-weight: bold;
}
.feedback_content .feedform_title br{
    display: none;
}
.feedback_content .feedform_list{
    zoom:1;
}
.feedform_list:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
}
.feedform_list .part{
    width: 25%;
    float: left;
    padding-left: 5%;
}
.feedform_list .part:nth-child(1){
    width: 25%;
    padding-left: 0;
}
.feedform_list .part:nth-child(2){
    width: 25%;
}
.feedform_list .part:last-child{
    width: 10%;
}
.feedform_list .list{
    padding-top: 10px;
    zoom:1;
    font-size: 16px;
    border-bottom:1px solid #d85068;
}
.feedform_list .list.noborder{
    border-bottom:none
}
.feedform_list .list:after{
    content: "";
    clear: both;
}
.feedform_list .list span{
    display:block;
    float: left;
    width: 82px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
}
.feedform_list .list .text{
    margin-left: 82px;
    display: block;
}
.feedform_list .list .text .tx{
    display: block;
    width: 100%;
    padding:0;
    margin:0;
    height: 24px;
    line-height: 24px;
    border:none;
    background:none;
    color:#fff;
}

.feedform_list .list .text .inline{
    display: inline-block;
    zoom:1;
    *display:inline;
    vertical-align: middle;
    width:48%;
    position: relative;
    height: 24px;
    line-height: 24px;
}
.feedform_list .list .text .inline:last-child{
    display: none;
}
.feedform_list .list .text .inline:after{
    content:"";
    position: absolute;
    right:10px;
    top:50%;
    width: 9px;
    height: 5px;
    background:url(../img/acc/arrowdown.png) 50% 50% no-repeat;
    margin-top: -3px
}
.feedform_list .list .text select{
    -webkit-appearance:none;
    background: none;
    border: none;
    display: block;
    width: 100%;
    line-height: 24px;
    color:#fff;
    font-size: 14px;
}
.feedform_list .list .text select option {
    background: #3b3a3a;
}

.feedform_list .list .btn{
    position: relative;
    display: block;
    width: 100%;
    height: 30px;
    border:1px solid #d85068;
    background:#cf2440;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    color:#fff;
    cursor: pointer;
}
.feedform_list .list.linkbtn{
    display: none;
}

.feedbackcon.showfeedbackdetail .title{
    display: none
}
.feedbackcon.showfeedbackdetail .controlbtn:after{
    border-width: 2px 0 0 2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top:4px
}
@media screen and (max-width: 1000px) {
    .feedback_content .feedback_form{
        padding-right: 200px
    }
    .feedback_content .ewmbtn{
        padding:25px 25px 20px;
        margin-top:-90px
    }

    .feedback_content .feedform_list{
        margin-left:-5%;
    }

    .feedform_list .part{
        padding-left:5%;
    }
}

@media screen and (max-width: 768px) {
    .visible-lg {
        display: none;
    }

    .hidden-xs {
        display: block;
    }
    .footer .footerUl li .redLinkTxt.lst.visible-lg {
        display: none;
    }
    .feedbackcon .controlbtn{
        right:50%;
        margin-right:-59px;
    }
    .feedback_content .ewmbtn{
        display: none
    }
    .feedback_content .feedback_form{
        padding:0;
    }
    .feedback_content{
        position: fixed;
        top:50%;
        right:20px;
        background: #c6092d;
        padding:20px;
        left:20px;
        z-index: 99;
        -webkit-transform: translateY(-50%) translateZ(0);
        -moz-transform: translateY(-50%) translateZ(0);
        -ms-transform: translateY(-50%) translateZ(0);
        -o-transform: translateY(-50%) translateZ(0);
        transform: translateY(-50%) translateZ(0);
    }
    .feedback_content .closebtn{
        cursor: pointer;
        position: absolute;
        width: 40px;
        height: 40px;
        left: 50%;
        bottom:-60px;
        background:url(../img/acc/closebtn.png) 50% 50% no-repeat;
        background-size: cover;
        margin-left:-20px
    }
    .feedbackcon.showfeedbackdetail .smark{
        display: block;
    }
    .feedbackcon .title{
        font-size: 12px;
        padding: 5px 0;
    }
    .feedback_content .feedform_list{
        margin:0;
    }
    .feedform_list .part{
        float: none;
        width: 100% !important;
        padding-left:0
    }
    .feedform_list .list{
        padding-top: 15px;
        font-size: 14px;
    }
    .feedback_content .feedform_title{
        padding-bottom: 0;
        font-size: 14px;
    }
    .feedback_content .feedform_title br{
        display: block;
    }
    .feedform_list .list.listbtn{
        padding-top: 30px
    }
    .feedform_list .list .btn{
        background:#d44762;
    }

    .feedform_list .list.linkbtn{
        display: block;
    }
    .feedform_list .list.linkbtn .btn{
        background:none
    }
    .feedform_list .list .btn{
        font-size: 14px
    }
}




