html {
	font-family: 'SourceHanSansCN-Regular';
  	position: relative;
  	min-height: 100%;
	font-size: 16px;
}
body{
  	color: #333333 !important;
  	-webkit-text-size-adjust:100%;
	font-size: 16px;
  	-moz-text-size-adjust:100%;
  	-ms-text-size-adjust:100%;
  	text-size-adjust:100%;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
	line-height: 1;
}
@font-face {
	font-family: 'SourceHanSansCN-Regular';
	src: url('../font/SourceHanSansCN-Regular.otf') format('opentype')
}

@font-face {
	font-family: 'SourceHanSansCN-Medium';
	src: url('../font/SourceHanSansCN-Medium.otf') format('opentype')
}

.font-medium{
	font-family: 'SourceHanSansCN-Medium';
}

* {
  	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
img{
	vertical-align: middle;
}
ul,li{
  	list-style: none;
}
a{
  	text-decoration: none;
	  color: #333333;
}
.overflow{
	overflow: hidden;
}
.clear {
    clear: both;
}
.clearfix:after {
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    overflow: hidden;
    content: ".";
}
input::-webkit-input-placeholder{
	font-family: 'SourceHanSansCN-Regular';
	color: rgba(31, 31, 31, 0.3);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none !important;
    margin: 0;
}
input{
	font-family: 'SourceHanSansCN-Regular';
    color: #666;
    outline: none;
    padding: 5px;
    font-size: 14px;
}

/* 布局 */
.width-full{
	width: 100%;
}
.flex{
	display: flex;
}
.flex-column{
	flex-flow: column;
}
.align-item-start{
	align-items: flex-start;
}
.align-item-end{
	align-items: flex-end;
}
.align-item-center{
	align-items: center;
}
.flex-around{
	justify-content: space-around;
}
.flex-between{
	justify-content: space-between;
}
.flex-center{
	justify-content: center;
}
.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}

/* 颜色 */

.color-white{
	color: white;
}
.color-red{
	color: #e60012;
}
.color-main{
	color: #333333;
}
.color-middle{
	color: #666666;
}
.bg-blue{
	background-color: #3790B6;
}
.bg-f6{
	background-color: #F6F6F6;
}
.bg-white{
	background-color: white !important;
}
.b-b-1{
	border-bottom: 1px solid #E4E4E4;
}

/* 字体 */

.fs14{
	font-size: 14px;
}
.fs22{
	font-size: 22px;
}

/* 间距 */

.ml5{
	margin-left: 5px;
}
.mr5{
	margin-right: 5px;
}
.mb30{
	margin-bottom: 30px;
}



#header{
	width: 100%;
	height: 4rem;
	background: #3790B6;
}
.navbar_item{
	margin-right: 2rem;
	color: white;
	width: 6rem;
	text-align: center;
	padding: 0.3em 0;
	cursor: pointer;
}
.navbar_item.navbar_hover{
	color: #3790B6;
	background: white;
	border-radius: 5rem;
}
.navbar_item:last-child{
	margin-right: 0;
}
.titleBox{
	position: absolute;
    left: 10%;
    top: 20%;
}
.title{
	font-size: 4rem;
    font-weight: 600;
    color: #006996;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}
.desc{
	color: #484A4C;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.searchInput{
	padding: 1rem;
    border: none;
    background: #FFFFFF;
    width: 100%;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
    font-size: 1.2rem;
}
.searchImg{
	padding: 1rem;
    background: #006996;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    cursor: pointer;
}
.searchImg img{
	width: 2rem;
    height: 2rem;
}
.tabbar{
	background: #5EB6D1;
	width: 100%;
	height: 3.6rem;
}
.tabbar_item{
	color: #06465B;
	cursor: pointer;
}
.record{
	width: 100%;
	height: 10rem;
	background: #3790B6;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.section{
	padding: 2rem 10% 6rem;
}
.cell_header{
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
    border-bottom: 2px solid #E4E4E4;
    padding-bottom: 0.9rem;
}
.cell_title{
	font-size: 1.2rem;
    font-weight: bold;
	position: relative;
}
.cell_title::after{
	content: '';
    display: block;
    clear: both;
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 90px;
    height: 2px;
    background: #006996;
}
.more{
	color: #006996;
    font-weight: bold;
	cursor: pointer;
}
.more span{
	font-family: cursive;
	margin-left: 0.6rem;
}
.cell_item{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #E4E4E4;
	padding-bottom: 0.9rem;
	margin-bottom: 0.9rem;
	cursor: pointer;
}
.cell_item div:first-child{
	flex: 1;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	margin-right: 1rem;
}
.text_title{
	text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
	margin-bottom: 1.5rem;
}
.text_time{
	text-align: center;
	color: #999999;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #E4E4E4;
	font-size: 0.9rem;
}
.parse{
	color: #666666;
	font-size: 0.9rem;
	line-height: 1.8;
}
.parse a{
	color: #666666;
}
.nodata{
	text-align: center;
    padding: 5rem 0;
}
.nodata img{
	width: 200px;
}
.nodata div{
	font-size: 0.9rem;
	color: #999999;
	margin-top: 3rem;
}
.company_desc{
	color: #999999;
	text-align: center;
	margin-top: 4rem;
}
.company_title{
	font-size: 2rem;
	text-align: center;
	margin-top: 1rem;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
.company_title span{
	width: 1.5rem;
    height: 3px;
    background-color: #006996;
    margin: 0 1rem;
    border-radius: 2rem;
}
.company_box{
	background: white;
    box-shadow: 0px 0px 12px 0px #cdcdcd;
    /* text-indent: 2em; */
    border-radius: 1rem;
    padding: 4rem;
    margin-top: 3rem;
    line-height: 1.8;
	position: relative;
}
.company_box::before{
	display: block;
    content: '';
    background-image: url(../img/icon1.png);
    clear: both;
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 4.5rem;
    height: 4.5rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.company_box::after{
	display: block;
    content: '';
    background-image: url(../img/icon2.png);
    clear: both;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 4.5rem;
    height: 4.5rem;
    background-repeat: no-repeat;
    background-size: cover;
}
.company_tab{
	display: flex;
	align-items: center;
	margin-top: 4rem;
	margin-bottom: 2rem;
}
.company_tabItem{
	padding: 0.5rem 2rem;
    border-bottom: 2px solid #E4E4E4;
	cursor: pointer;
	color: #999999;
}
.company_tabItem.active{
	border-color: #006996;
    color: #006996;
    font-weight: bold;
    border-width: 2px;
}
.company_link{
	display: flex;
	flex-wrap: wrap;
}
.company_linkItem{
	box-shadow: 0px 0px 12px 0px #cdcdcd;
    border-radius: 0.5rem;
    width: calc(25% - 1.5rem);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    margin-right: 2rem;
    margin-bottom: 2rem;
}
.company_linkItem:nth-child(4n){
	margin-right: 0;
}
.company_linkItem img{
	width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.8rem;
}
.company_linkItem div{
	font-weight: bold;
}
.contact{
	background: #EFFBFF;
	padding: 6rem 10%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.company_name{
	font-size: 3rem;
    font-weight: bold;
}
.line{
	width: 8rem;
    height: 4px;
    background: #006996;
    border-radius: 4rem;
    margin: 3rem 0px;
}
.contact_desc{
	color: #666666;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.contact_btn{
	padding: 1rem 2rem;
	background: #006996;
	color: white;
	border-radius: 0.6rem;
	display: inline-block;
	font-size: 1.2rem;
	cursor: pointer;
}
.kfimg,.kfimg2{
	text-align: center;
	margin-left: 5rem;
}
.kfimg img,.kfimg2 img{
	width: 18rem;
	height: 18rem;
}
.kfimg div,.kfimg2 div{
	font-size: 1.2rem;
	font-family: 'SourceHanSansCN-Medium';
	margin-top: 2rem;
}
.address{
	text-align: center;
	margin: 2rem 0 6rem;
	font-size: 1.5rem;
}
.share{
	margin: 5rem 0;
	font-size: 1.2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.share img{
	width: 2.5rem;
	height: 2.5rem;
	margin-left: 1rem;
	cursor: pointer;
}
.backBtn{
	padding: 1rem 2rem;
	background: #3790B6;
	color: white;
	border-radius: 0.6rem;
	display: inline-block;
	font-size: 1.2rem;
	cursor: pointer;
}
.float{
	position: fixed;
    left: 0;
    top: 50%;
	transform: translate(0, -50%);
    background: white;
    font-size: 0.8rem;
    box-shadow: 5px 0px 10px #cdcdcd;
    border-top-right-radius: 0.6rem;
    border-bottom-right-radius: 0.6rem;
}
.float img{
	width: 3rem;
	height: 3rem;
}
.float div{
	color: #999999;
    margin-top: 0.5rem;
}
.float a{
	padding: 1rem;
    display: block;
}
.float a:first-child{
	border-bottom: 1px solid #E4E4E4;
}