*, *:before, *:after {
    box-sizing: border-box;
    -moz-box-sizing: border-box;  
    -webkit-box-sizing: border-box; 
    -o-box-sizing: border-box; 
    -ms-box-sizing: border-box;
}
*, *:focus, *:active, *:focus:active, *:before, *:before:focus, *:before:active, *:before:focus:active, *:after, *:after:focus, *:after:active, *:after:focus:active {
    outline: none;
}
*{
	margin: 0;
	padding: 0;
}
body,html{
    min-width: 1200px;
    color: #333;
	overflow-x: hidden;
	font-size: 14px;
    font-family: Microsoft YaHei;
}
.width-1200{
	width: 1200px;
	margin: 0 auto;
}
li{
	list-style: none;
}
a,a:link,a:visited,a:hover,a:active{
	text-decoration: none;
}
i{
	font-style: normal;
}
/* 单行文本省略号*/
.line{
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}
/* 多行文本省略号*/
.twoclamp{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-webkit: line clamp 2;
    -moz-webkit: line clamp 2;
    -ms-webkit: line clamp 2;
    -o-webkit: line clamp 2;
    -webkit-line-clamp: 2;
}
.fourclamp{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-webkit: line clamp 4;
    -moz-webkit: line clamp 4;
    -ms-webkit: line clamp 4;
    -o-webkit: line clamp 4;
    -webkit-line-clamp: 4;
}
.fiveclamp{
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-webkit: line clamp 5;
    -moz-webkit: line clamp 5;
    -ms-webkit: line clamp 5;
    -o-webkit: line clamp 5;
    -webkit-line-clamp: 5;
}
.flex{
	display:box;
	display:-webkit-box;
	display:-webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display:flex;
	align-items: center;
}

/* 中間部分 */
.index {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
}
.indexContent {
    margin-top: 79px;
}
/* .indexContent {
    min-height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 79px;
} */
/* 底部样式 */
.footerBox {
    width: 100%;
    height:130px;
    background:rgba(38,38,38,1);
    color: #A09F9F;
}
.footerCon {
    height: 100%;
    padding-top: 27px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
    display: flex;
    justify-content: space-between;
    display: -webkit-flex;
}
.footerCon p {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    font-size: 20px;
    margin-bottom: 21px;
}
.footerCon p .icon-dianhua {
    font-size: 34px;
    margin-right: 10px;
}
.footerCon .orange {
    color: #FEB960;
}
.footerCon div {
    font-size: 12px;
}
.footerCon div span:nth-child(1){
    margin-right: 10px;
}
.footerCon div span:nth-child(2){
    margin-right: 20px;
}
.footerCon div a {
    color: #A09F9F;
}
.footerCon div a:hover {
    color: #FEB960;
}
.codeImg {
    cursor: pointer;
    width: 65px;
    height: 65px;
}
.codeImg img {
    width: 100%;
    height: 100%;
}
.blue {
    color: #003264;
}
/* 中间tab切换样式 */
.tablist {
    z-index: 100;
    background: #EFEFEF;
    height: 67px;
    line-height: 67px;
}
.tablist .tablistCon{
    max-width: 1200px;
    margin: auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
}
.tablist .tablistCon .tableft {
    cursor: pointer;
    color: #333333;
    font-size: 12px;
}
.tablist .tablistCon .tableft a:hover {
    color: #333;
}
.tablist .tablistCon .tableft i{
    font-size: 10px;
    margin: 0 12px;
}
.tablist .tablistCon .tabright {
    cursor: pointer;
    font-size: 14px;
}
.tablist .tablistCon .tabright a {
    margin-left: 30px;
}
.tablist .tablistCon .tabright a:hover {
    color: #333;
}
.tablist .active {
    color: #003264;
    font-weight: 600;
}
.tablist .active:hover {
    color: #003264 !important;
}


