@charset "UTF-8";
/*======================
<body> 15px
<h2>   55px 50px 46px
<h4>   30px 20px
<p>    22px 18px
<h5>   18px
menu   22px

#DE5448
======================*/
@import url("common.1200.css") all and (max-width:1200px);
@import url("common.980.css") all and (max-width:980px);
@import url("common.800.css") all and (max-width:800px);
@import url("common.600.css") all and (max-width:600px);
*{
    margin: 0;
    padding: 0;
}
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background-color: transparent;
}
::-webkit-scrollbar-track{
    border-radius: 8px;
}
::-webkit-scrollbar-thumb{
    border-radius: 8px;
    background-color: rgba(0,0,0,.6);
}
.scrollbar-hidden::-webkit-scrollbar{
    width: 0;
    height: 0;
}
body{
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Ubuntu, Helvetica Neue, Helvetica, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
    overflow: hidden;
    font-size: 15px;
    line-height: 22px;
    overflow-y: auto;
}
h2{
    display: block;
    font-size: 55px;
}
h4{
    display: block;
    font-size: 30px;
    line-height: 33px;
    padding: 5px 0;
}
h5{
    display: block;
    font-size: 18px;
    font-weight: normal;
}
p{
    font-size: 22px;
    line-height: 33px;
}
a{
    text-decoration: none;
    color: #333333;
    cursor: pointer;
}
a:hover,a:focus{
    color: #DE5448 !important;
}
/* CSS3去除移动端点击元素时产生的高亮背景色 */
a:hover,a:active,a:visited,a:link,a:focus,input,textarea,
nav > .menu > .body > div,
nav > .menu > .body > div:hover,
nav > .menu > .body > div.on{
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    text-decoration: none;
}
ul,li{
    list-style: none;
}
/* 修改输入框的提示文字的样式 */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
    font-size: 13px;
    line-height: 25px;
    padding-left: 10px;
    color: #DE544855;
}
input[type="text"],
input[type="password"],
textarea{
    height: 30px;
    font-size: 16px;
    outline:none; /* 禁止输入框获得焦点时，外围蓝色边框显示 */
    background-color: rgba(0,0,0,0);
    border: 0;
}
table{
    border-collapse:collapse; /* 单元格间距 */
}
/*======================
 消息对话框
======================*/
.kook-alert{
	background-color: rgba(0,0,0,.3);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	display: none;
}
.kook-alert.show{
	display: block;
}
.kook-alert > .body{
	background-color: #FFFFFF;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 350px;
	height: 200px;
	border-radius: 5px;
	overflow: hidden;
}
.kook-alert > .body > .title{
	height: 50px;
	line-height: 50px;
	border-bottom: 1px solid #F1F1F1;
	padding: 0 15px;
	width: calc(100% 30px);
	display: block;
}
.kook-alert > .body > .content{
	height: calc(100% - 102px);
	position: relative;
	width: 100%;
	text-align: center;
}
.kook-alert > .body > .content > div{
	display: inline-block;
	vertical-align: middle;
	width: 60px;
	height: 100%;
	position: relative;
}
.kook-alert > .body > .content > div:before{
	font-family: iconfont;
	font-size: 40px;
	display: block;
	height: 50px;
	line-height: 50px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.kook-alert.success > .body > .content > div:before{
	content: "\e645";
	color: #6FB33E;
}
.kook-alert.error > .body > .content > div:before{
	content: "\e667";
	color: #FC953B;
}
.kook-alert > .body > .content > span{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 110px);
	text-align: left;
}
.kook-alert > .body > .btns{
	height: 50px;
	line-height: 50px;
	border-top: 1px solid #F1F1F1;
	padding: 0 15px;
	width: calc(100% 30px);
	text-align: center;
	color: #DE5448;
}
.kook-alert > .body > .btns:hover{
	background-color: #DE544822;
}
/*======================
 页面背景
======================*/
body{
    background: #F1F6FD;
    background-size: cover;
    position: relative;
}
.page-style{
    border-radius: 0 8px 8px 0;
    -moz-border-radius: 0 8px 8px 0;
    -webkit-border-radius: 0 8px 8px 0;
    -o-border-radius: 0 8px 8px 0;
    -ms-border-radius: 0 8px 8px 0;
    position: fixed;
    top: 50%;
    left: 28px;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%); /* Safari 和 Chrome */
    -moz-transform: translateX(-50%) translateY(-50%); /* Firefox */
    -ms-transform: translateX(-50%) translateY(-50%); /* IE 9 */
    -o-transform: translateX(-50%) translateY(-50%); /* Opera */
    background-color: rgba(255,255,255,.2);
    box-shadow: 0 0 6px rgba(50,50,50,.2);
    -moz-box-shadow: 0 0 6px rgba(50,50,50,.2);
    z-index: 99;
}
.page-style:HOVER{
    box-shadow: 0 0 8px rgba(50,50,50,.4);
    -moz-box-shadow: 0 0 8px rgba(50,50,50,.4);
}
.page-style > span{
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    -o-border-radius: 100%;
    -ms-border-radius: 100%;
    display: block;
    cursor: pointer;
    margin: 18px 18px;
    border: 0;
    height: 22px;
    width: 22px;
}
.page-style > span[data-v="1"]{
    background-color: #CD949A;
}
.page-style > span[data-v="2"]{
    background-color: #E4B766;
}
.page-style > span[data-v="3"]{
    background-color: #6B7181;
}
.page-style > span[data-v="4"]{
    background-color: #79868F;
}
.page-style > span[data-v="5"]{
    background-color: #9D726C;
}
.page-style > span[data-v="6"]{
    background-color: #AEBBCC;
}
.page-style > span:HOVER{
    height: 20px;
    width: 20px;
    border: 1px solid rgba(255,255,255,0.6);
}
.page-style > .span,
.page-style > .span:HOVER{
    height: 18px;
    width: 18px;
    border: 2px solid rgba(255,255,255,.95);
}
/*======================
 nav - 头部 
======================*/
nav{
    height: 88px;
    width: 100%;
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    z-index: 999;
    top: 0;
}
nav > div{
    display: inline-block;
    vertical-align: top;
    height: 88px;
}
nav > .logo{
    width: 320px;
    background: url(/assets/index/img/logo.png) 100px 13px;
    background-size: 217px 62px; /* 7:2 */
    background-repeat: no-repeat;
}
nav > .menu{
    width: calc(100% - 400px);
    text-align: right;
}
nav > .menu > div{
    width: 100%;
}
nav > .menu > .more{
    display: none;
}
nav > .menu > .body{
    display: block;
}
nav > .menu > .body > div{
    display: inline-block;
    vertical-align: top;
    height: 88px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 88px;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}
nav > .menu > .body > div a,
nav > .menu > .body > div span,
nav > .menu > .body > div font{
    color: #FFFFFF;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}
nav > .menu > .body > div:hover,
nav > .menu > .body > div.on{
    background-color: rgba(0, 0, 0, .3);
}
nav > .menu > .body .btn:hover > a,
nav > .menu > .body .btn:hover > span,
nav > .menu > .body .btn:hover > font{
    color: #DE5448;
}
nav > .menu > .body > div.btns > span::after{
    content: "\eedc";
    font-family: "iconfont";
    font-size: 12px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;
}
nav > .menu > .body > div.btns:hover > span::after{
    content: "\eedb";
}
nav > .menu > .body > div > div{
    display: block;
    position: absolute;
    top: 88px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 100;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height 1s ease;
    -ms-transition: height 1s ease;
    -moz-transition: height 1s ease;
    -webkit-transition: height 1s ease;
    -o-transition: height 1s ease;
}
nav > .menu > .body > div > div > div{
    background-color: rgba(0, 0, 0, .8);
}
nav > .menu > .body > div:hover > div{
    height: 100vh;
}
nav > .menu > .body > div > div > div{
    height: 66px;
    line-height: 66px;
}
nav > .menu > .body > div > div > div:hover,
nav > .menu > .body > div > div > div.on{
    border-left: 5px solid #FFFFFF;
}
/*======================
 main - 页面内容 
======================*/
main{
    position: static;
    width: 100%;
    margin-top: 88px;
}
main > .banner > img{
    width: 100%;
}
main > .location{
    height: 50px;
    line-height: 50px;
}
main > .location > i{
    font-family: iconfont;
    font-style: normal;
    font-size: 22px;
    margin-left: 100px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}
main > .location > span:after{
    content: ">";
    margin-left: 5px;
    margin-right: 5px;
}
main > .location > span:nth-last-child(1):after{
    content: "";
}
footer{
    position: static;
    width: 100%;
}
main .panel,
footer .panel{
    width: 100%;
    text-align: center;
}
main .panel > .body,
footer .panel > .body{
    width: calc(100% - 20px);
    max-width: 980px;
    display: inline-block;
    padding-bottom: 30px;
}
/* title、subject */
main .title,
footer .title{
    width: 100%;
    text-align: center;
    padding: 50px 0 20px 0;
}
main .title i,main .subject i,
footer .title i,footer .subject i{
    font-family: iconfont;
    display: inline-block;
    vertical-align: top;
    font-style: normal;
    height: 65px;
    line-height: 65px;
    width: 65px;
    font-size: 50px;
    text-align: left;
}
main .title > div,main .subject > div,
footer .title > div,footer .subject > div{
    display: inline-block;
    vertical-align: top;
}
main .subject,
footer .subject{
    text-align: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 5px;
}
main .subject i,
footer .subject i{
    height: 50px;
    line-height: 50px;
    width: 50px;
    font-size: 33px;
}
main .subject p,
footer .subject p{
    height: 30px;
}
main .subject span,
footer .subject span{
    font-size: 12px;
    display: inline-block;
    vertical-align: top;
}
main .subject + div,
footer .subject + div{
    text-indent: 2em;
}
main > div.none,main > .body > div.none,
footer > div.none,footer > .body > div.none{
    display: none;
}
/*======================
 footer - 页尾
======================*/
footer{
	padding-top: 20px;
}
footer > .contact .data{
    text-align: left;
    padding-bottom: 10px;
}
footer > .contact .data > div{
    display: inline-block;
    vertical-align: top;
    width: calc(33.33% - 20px);
    text-align: left;
    margin: 0 10px;
    margin-bottom: 20px;
}
footer > .contact .data a{
    color: #DE5448;
}
footer > .contact .message{
    padding: 30px 70px;
    margin: 0 30px;
    border-top: 1px solid #DE544822;
    width: calc(100% - 200px);
    text-align: left;
}
footer > .contact .message .input{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    text-align: left;
    padding: 10px 0;
}
footer > .contact .message .input label{
    display: inline-block;
    vertical-align: top;
    border: 1px solid #DE544822;
    border-radius: 5px;
    width: calc(100% - 11px);
    overflow: hidden;
}
footer > .contact .message .input input{
    width: calc(100% - 60px);
    padding: 0 10px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
}
footer > .contact .message .input:nth-of-type(even){
	text-align: right;
}
footer > .contact .message .input.captcha input{
	width: calc(100% - 145px);
}
footer > .contact .message .input.captcha span{
	display: inline-block;
	vertical-align: top;
}
footer > .contact .message .input.captcha img{
	width: 125px;
	height: 40px;
	vertical-align: top;
}
footer > .contact .message .input.captcha + div{
	text-align: right;
	font-size: 13px;
	color: #DE544855;
	padding-right: 10px;
}
footer > .contact .message .input i{
    font-size: 25px;
    font-family: iconfont;
    display: inline-block;
    font-style: normal;
    display: inline-block;
    vertical-align: top;
    width: 40px;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #DE5448;
}
footer > .contact .message textarea{
    padding: 5px 10px;
    margin: 10px 0;
    font-size: 16px;
    border-radius: 5px;
    height: 90px;
    line-height: 30px;
    resize: none;
    width: calc(100% - 20px);
    border: 1px solid #DE544822;
}
footer > .contact .message .input label:focus-within,
footer > .contact .message textarea:focus-within{
    border-color: #DE5448;
}
footer > .contact .message div.error label,
footer > .contact .message div.error textarea{
	border-color: #FAAD14;
}
footer > .contact .message div.error i{
	color: #FAAD14;
}
footer > .contact .message .btns{
    text-align: center;
}
footer > .contact .message .btns > div{
    display: inline-block;
    vertical-align: top;
    padding: 10px;
    border-radius: 5px;
    margin: 10px;
    width: 20%;
}
footer > .contact .message .btns > div.reset{
    background-color: #DE544822;
    color: #DE5448;
}
footer > .contact .message .btns > div.submit{
    background-color: #DE5448;
    color: #FFFFFF;
}
footer > .contact .message .msg{
	text-align: center;
	color: #FAAD14;
	display: none;
	margin-top: 5px;
}
footer > .contact .message .msg.show{
	display: block;
}
footer > .contact .message .msg:before{
	content: "\e6aa";
	font-family: iconfont;
	margin-right: 5px;
	font-size: 18px;
}
footer > .information{
    border-top: 1px solid #F1F1F1;
    background-color: rgba(255, 255, 255, 0.4);
}
footer > .information b{
    display: block;
    margin-top: 50px;
    line-height: 22px;
}
footer > .information .menu{
    padding: 10px 0;
}
footer > .information .menu > div{
    display: inline-block;
    vertical-align: top;
    width: calc(50% - 20px);
}
footer > .information .menu > div a{
    padding: 5px 10px;
    display: inline-block;
    color: #9D9D9D;
}
footer > .information .menu > div.on a{
    color: #DE5448;
}
footer > .information > .body{
    text-align: left;
    padding: 20px 0;
}
footer > .information > .body > div{
    display: inline-block;
    vertical-align: top;
    width: 33.33%;
}
footer > .information .copyright > img{
    height: 40px;
    padding: 0 0 10px 0;
    display: block;
}
footer > .information .copyright > span{
    font-size: 13px;
}
footer > .information .follow > div{
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 10px 0;
}
footer > .information .follow img{
    width: calc(100% - 30px);
}
footer > .information .follow span{
    display: block;
    color: #9D9D9D;
    width: calc(100% - 30px);
    text-align: center;
}
footer > .yewei{
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, .8);
    padding: 20px 0;
}
footer > .yewei.panel > .body{
    padding-bottom: 0;
}
footer > .yewei > .body > div{
    display: inline-block;
    vertical-align: top;
    padding: 0 10px;
}
footer > .yewei > .body > div > a{
    color: #FFFFFF;
}
/*======================
 loading - 加载中界面 
======================*/
/*
main > .body > .loading{
    width: 100%;
    height: calc(100vh - 88px);
    position: relative;
    color: #FFFFFF;
}
main > .body > .loading > img{
    width: 500px;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: turn 1s linear infinite;
}
@keyframes turn{
    0%{width:500px;height:500px;}
    25%{width:480px;height:480px;}
    50%{width:460px;height:460px;}
    75%{width:480px;height:480px;}
    100%{width:500px;height:500px;}
}
*/