/*
KISSY CSS Reset
理念：清除和重置是紧密不可分的
特色：1.适应中文 2.基于最新主流浏览器
维护：玉伯(lifesinger@gmail.com), 正淳(ragecarrier@gmail.com)
*/
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow: auto; font-size: 62.5%; }
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}
/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 1.2rem/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
    font-family: 'PingFang SC','Helvetica Neue',Helvetica,STHeitiSC-Light,WOL_SB,'Segoe UI Semibold','Segoe UI',Tahoma,Helvetica,sans-serif; 
}

h1 { font-size: 1.8rem; /* 18px / 12px = 1.5 */ }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.4rem; }
h4, h5, h6 { font-size: 100%; }

address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 1.2rem; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none; }
a:hover { text-decoration: none;  }
a:hover,a:active,a:visited { text-decoration: none; color:inherit  }

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}
img{vertical-align: middle;}
/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* 重置 hr */
hr {
    border: none;
    height: 1px;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
@media screen and (max-width: 1200px) {
    .content{
        width: 100%;
        padding: 0px 30px;
        margin: auto;
        box-sizing: border-box;
    }
}
@media screen and (min-width: 1200px) {
    .content{
        max-width: 1200px;
        width: 100%;
        margin: auto;
    }
}

.nav-container{
    position: fixed;
    width: 100%;
    z-index: 20;
    background: #fff;
    top:0
}
#nav-bankend{
    height: 60px;
    position: absolute;
    width: 100%;
    top: 0px;
    overflow: hidden;
}
.nav-normal{
    background-color: #0081FF;
}
.aero-glass{
    height: 120px!important;
    background-position: 50% 30px;
    filter:blur(10px);
    -webkit-filter:blur(10px);
    overflow: hidden;
    margin: -30px 0px 0px 0px;
}
.nav-bg{
    height: 60px;
    position: absolute;
    width: 100%;
    top: 0px;
    overflow: hidden;
}
.nav-content{
    display: flex;
    align-items: center;
    height: 60px;
    position: relative;
    z-index: 30;
}
.nav-content .logo{
    height: 30px;
}
.nav-content .navs{
    margin-left: 105px;
    height:100%;
    position: absolute;
    right: 40px;
}
.nav-content .nav-item{
    /* margin-right: 40px; */
    display: inline-block;
    color: #444;
    cursor: pointer;
    font-size: 14px;
    /* margin-top: 10px; */
    /* width:106px ; */
    height:100%;
    text-align: center;
    line-height: 60px;
    padding: 0 20px;
}
.nav-content .nav-item:last-child{
    padding: 0 0 0 20px;
}
.nav-content .nav-item.active .line,.nav-content .nav-item[force] .line{
    background-color: #444;
}
.nav-content .nav-item .line{
    display: block;
    border-radius: 5px;
    height: 5px;
    margin: auto;
    margin-top: -15px;
    width: 28px;
}
.banner{
    background-size: cover;
    background-position: 50% 0px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    top:58px;
}
.banner img{
    height: 200px;
}
.banner .mouse{
    width: 19px;
    height: 31px;
    position: absolute;
    bottom: 30px;
    left: 0px;
    right: 0px;
    margin: auto;
}
.item-title{
    color: #222222;
    text-align: center;
    margin-top: 80px;
}
.item-title .title{
    font-size: 40px;
}
.item-title .sub-title{
    font-size: 12px;
    opacity: 0.3;
    margin-top: 10px;
}
.cut-line{
    height: 1px;
    background-color: #EAEBED;
}

.page-footer{
    background-color: #222228;
    padding: 42px 0px 90px 0px;
}
.page-footer .footer-content{
    display: flex;
}
.page-footer .foot{
    margin-right: 5%;
    opacity: 0.7;
    color: #FFFFFF;
    width: 30%;
}
.page-footer .foot:first-child{
    /* width: 490px; */
}
.page-footer .foot:nth-child(3){
    margin-right: 0;
    /* width: 250px; */
}

.page-footer .foot .name{
    font-size: 30px;
}
.page-footer .foot .line{
    height: 1px;
    background-color: #FFFFFF;
    margin:10px 0px;
}
.page-footer .foot .des{
    font-size: 12px;
    line-height: 1.6;
}
.page-footer .statement{
    align-self: center;
}
.page-footer .statement .statement-btn{
    width:203px;
    height:64px;
    padding-top: 16px;
    background:rgba(250,210,2,1);
    border-radius:10px;
    text-align: center;
    color: #444444;
    cursor: pointer;
}
.page-footer .statement .statement-btn div{
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}
.page-footer .statement .statement-btn span{
    font-size: 12px;
}
.page-footer .statement .statement-btn img{
    height: 10px;
    margin-left: 10px;
}
.page-footer .filing{
    font-size: 12px;
    line-height: 2;
    color: #ffffff;
    opacity: 0.5;
    margin-top: 20px;

}
.page-footer .filing img{
    vertical-align: middle;
}
.page-footer .filing a,.page-footer .filing a:active,.page-footer .filing a:focus,.page-footer .filing a:visited,.page-footer .filing a:focus{
    margin-right: 20px;
    color: inherit;
    vertical-align: middle;
}
.item-des{
    font-size: 18px;
    color: #222222;
    text-align: center;
    margin-top: 43px;
    margin-bottom: 45px;
    line-height: 1.5;
}

/* 弹窗 */
content{
	position: relative;
}
.alert-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left:0px;
	background-color: rgba(0,0,0,0.6);
    display: none;
    z-index: 100;
}
.alert-content{
	width: 794px;
	padding: 85px 73px 0px 73px;
	height: 80%;
	background-color: #fff;
	position: absolute;
	margin:auto;
	left: 0px;
	right:0px;
    top:0px;
    bottom:0px;
    overflow-y: auto;
}
.alert-content .title{
	font-size: 48px;
	text-align: center;
	font-weight: bold;
}
.alert-content .sub-title{
	font-size: 14px;
	text-align: center;
	color: #dfdfe1;
	margin-bottom: 35px;
	letter-spacing: 3px;
	margin-top: 2px;
}
.alert-content .second{
	position: absolute;
	left:469px;
	top:20px;
}
.alert-content p{
	font-size: 16px;
	line-height: 30px;
	text-align: justify;
	margin: 0px;
}
.alert-content .bottom{
	margin-top: 0px;
    padding-top: 102px;
    padding-bottom: 60px;
	line-height: 30px;
	font-size: 16px;
	text-align: right;
    z-index: 10;
    background-image: url('./../img/seal20190710.jpg');
    background-size: 176px 170px;
    background-position: 100% 60%;
    background-repeat: no-repeat;
}
.alert-content .bottom img{
	position: absolute;
	width: 176px;
	right: -10px;
	top:-77px;
	z-index: -1;
	transform: rotate(-25deg);
	-webkit-transform: rotate(-25deg);
	-moz-transform: rotate(-25deg);
	-o-transform: rotate(-25deg);
}

#seal #close{
	position: absolute;
	top:25px;
	right: 25px;
	cursor: pointer;
    width:57px;
    height:28px;
    background:rgba(231,72,64,1);
    border-radius:14px;
    border: none;
    color: #FFFFFF;
    outline: none
}

#introduce-a{
    display: block;
    height: 1px;
}

#business:hover{
    background: rgba(216,216,216,0.1);
}
#business ul{
    position: absolute;
    left:0px;
    top:60px;
    background: #fff;
    color: #000;
    width:120px;
    display: none;
    text-align: left;
    box-shadow: 0 3px 5px 3px rgba(0,0,0,0.15);
}
#business ul li{
    line-height: 20px;
}
#business ul li a{
    display: inline-block;
    padding: 10px 26px;
    width: 100%; 
    color: #000;   
}
#business ul li:hover{
    background: #F4F6F7;
}
.title-first{
    margin-top:140px;
}
.yingye{
    margin-top:5px
}
.yingye img{
    display: inline-block;
    height: 60px;
}
.yingye img:first-child{
    margin-right: 6px
}
