*{
	outline: none !important;
	list-style: none !important;
	margin:0;
	padding: 0;
}
body{
	font-size: 13px;
	background: #eff3f5;
	font-family: -apple-system,BlinkMacSystemFont,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei","Helvetica Neue",Helvetica,Arial,sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a{
	color: #6c757d;
}
a:hover{
	color:var(--primary);
}
.clear{
	clear: both;
}
.navbar{
	padding: 5px 10px;
	background: #F8F9FA;
}
.breadcrumb{
	background:none;
	margin: 5px 0;
}
.breadcrumb-item+.breadcrumb-item::before{
	color: #ddd;
}
.breadcrumb-item.active{
	color: #999;
}
.btn:focus,
.form-control:focus {
	box-shadow: none !important;
}
.nav_tel{
	position: relative;
	padding-left: 50px;
}
.nav_tel h5{
	margin: 0;
	font-size: 18px;
}
.nav_tel>div{
	color: #777;
	font-weight: normal;
	font-size: 12px;
}
.nav_tel i{
	position: absolute;
	left: 0;
	top: -9px;
	font-size:40px;
	color: #777;
}
:root{
	--primary:#1aa0e5;
}
.text-primary{
	color: #1aa0e5 !important;	
}
.nav-item{
	font-size: 14px;
	margin-right: 5px;
}
.numberFont{
	font-family: DINNextLTPro-MediumCond,'DIN Alternate',arial;
}
.navbar-default{
	background: #fff;
	border-radius: 0;
	border-top: none;
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	border-bottom: none;
}
.telArea{
	height: 50px;
	padding-top: 5px;
	padding-left: 35px;
	position: relative;
	padding-right: 15px;
}
.telArea>div{
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	color: #999;
}
.telArea>span{
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	color: var(--primary);
}
.telArea>i{
	position: absolute;
	left: 0;
	font-size: 26px;
	line-height: 26px;
	top: 14px;
	color: var(--primary);
}
.navbar-brand{
	width: 140px;
    height: 50px;
    background-image: url(https://cdn.qipengit.com/file/b6f9e3ce-1ec5-4f59-a0f2-a7cce6e80fe4.svg);
    background-size: auto 400%;
    background-position: 50.2% 46%;
}
@media (max-width: 768px) {
	.telArea{
		margin-left: 20px;
	}
}
.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{
	background: none;
	color: var(--primary);
	font-weight: bold;
}
.dropdown-menu>li>a{
	line-height: 36px;
}
.navbar .dropdown-item{
	font-size: 13px;
	color: #555;
	line-height: 30px;
}
.navbar .dropdown-item:active{
	background: var(--primary);
	color: #fff;
}

.dropdown-menu{
	min-width: 5rem;
}
@media (max-width: 768px){
	.navbar .navbar-nav .open .dropdown-menu>li>a{
		line-height: 30px;
	}
	.navbar .nav-item{
		padding-left: 20px;
	}
	.navbar .navbar-nav .dropdown-menu{
		border:none;
	}
}
.global_footer{
	border-top: 1px solid #eee;
	padding: 0 10px;
	line-height: 40px;
}
.global_footer a{
	color: #666;
	font-size: 13px;
}
.global_footer a:hover{
	color: var(--primary);
}
.footer_block{
	height: 100%;
	padding: 20px;
}
.footer_block h5{
	color: #333;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
	display: inline-block;
	padding-bottom: 5px;
	font-size: 14px;
}
.footer_block>div{
	width: 100%;
	border-right: 1px solid #eee;
}
.footer_block:last-child>div{
	border: none;
}
.footer-fenge{
	height: 30px;
	font-size: 12px;
}
.foot-wrap{
	margin-top: 20px;
}
.footer_logo{
	width: 150px;
	height: 100px;
	background-image: url('/static/img/logo.svg');
	background-size: auto 240%;
	background-position: 27% 37%;
	background-repeat: no-repeat;
}
.footer_tel{
	font-size: 20px;
	color: var(--primary);
}
.footerInfoArea{
	color: #666;
	line-height: 30px;
}
@media (max-width: 767px){
	.footer_block{
		padding: 0;
	}
	.footer_block .col-sm-12{
		padding: 0;
	}
	.footer-fenge{
		height: 0;
	}
	.footerInfoArea{
		border: none !important;
		text-align: center;
	}
	.footer_logo{
		display:inline-block;
		background-position: 21% 37%;
	}
	.global_footer{
		border-top: none;
	}
}
.cutStr{
	white-space: nowrap; /* 因为设置了block，所以需要设置nowrap来确保不换行 */
	overflow: hidden; /* 超出隐藏结合width使用截取采用效果*/
	text-overflow: ellipsis; /* 本功能的主要功臣，超出部分的剪裁方式 */
	-o-text-overflow: ellipsis; /* 特定浏览器前缀 */
	text-decoration: none; /* 无用 */
}
.cutStr_2{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.cutStr_3{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
.cutStr_4{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}
.footer_call{
	margin: 10px 0;
	color: #fff !important;
	background: var(--primary) !important;
	border-color: var(--primary) !important;
}
.nav-item.active >.nav-link{
	color: var(--primary) !important;
	font-weight: bold;
}
.bg-light{
	background: #fff !important;
}
.commonFenye{
	padding: 20px;
	font-size: 0;
	text-align: center;
}
.commonFenye>*{
	font-size: 13px;
	border:1px solid #eee;
	background: #fff;
	height: 34px;
	line-height: 33px;
	display: inline-block;
	margin-left: -1px;
	padding: 0 10px;
	cursor: pointer;
	color: #6c757d;
	min-width: 34px;
	text-align: center;
	position: relative;
}
.commonFenye>a{
	color: #6c757d;
	text-decoration: none;
	font-family: DINNextLTPro-MediumCond,'DIN Alternate',arial;
}
.commonFenye>a.active,
.commonFenye>a.active:hover{
	background: #6c757d;
	border-color: #6c757d;
	color: #fff;
	position: relative;
	z-index: 2;
	cursor: default;
	box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,.2);
}
.commonFenye>a.morePage{
	cursor: not-allowed;
}
.commonFenye>a.morePage:hover{
	background: #fff;
}
.commonFenye>a.morePage:after{
	content: '···';
}
.commonFenye>a[disabled]{
	color: #ccc !important;
	cursor: not-allowed;
}
.commonFenye>a[disabled]:hover{
	background: #fff;
}
.commonFenye>*:hover{
	background: #f5f5f5;
	color: #555;
}
.commonFenye>a:first-child{
	border-top-left-radius: 3px;
	border-bottom-left-radius:3px;
}

.commonFenye>*:last-child{
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
#commonFenyeGoTo{
	padding:0;
}
#commonFenyeGoTo>div>a{
	display: block;
	padding: 0 10px;
}
#commonFenyeGoTo .dropdown-item{
	font-size: 13px;
	color: #6c757d;
}
#commonFenyeGoTo .dropdown-menu{
	min-width: 6rem;
	max-height: 200px !important;
	overflow: scroll;
}
#commonFenyeGoTo .dropdown-item:hover{
	background: #f5f5f5;
}
.mobileFenge{
	background: #eff3f5;
	height: 10px;
	position: relative;
}
.mobileFenge.buqi:before,
.mobileFenge.buqi:after{
	content: '';
	width: 15px;
	height: 10px;
	position: absolute;
	top: 0;
	left: -15px;
	background: #eff3f5;
}
.mobileFenge.buqi:after{
	left: auto;
	right: -15px;
}
.navbar-toggler-icon{
	height: 1em;
	width: 1em;
}
.btn-info{
	background: var(--primary);
	border-color: var(--primary);
	font-size: 14px;
	opacity: .9;
}
.btn-info:hover{
	opacity: .95;
	border-color: var(--primary);
	background: var(--primary);
}
.btn-info:active{
	border-color: var(--primary) !important;
	background: var(--primary) !important;
	opacity: 1;
}
.btn-info:visited{
	border-color: var(--primary) !important;
	background: var(--primary) !important;
	opacity: 1;
}
.footerCopyright{
	background: rgba(0,0,0,.2);
}
.footerArea{
	background: #242930;
}
.footerArea .title{
	color: #afbac4;
	font-size: 16px;
	position: relative;
}
.footerArea .title:after{
	content: '';
	background: var(--primary);
	height: 2px;
	width: 50px;
	position: absolute;
	left: 0;
	bottom: 0px;
}
.footerArea .content{
	color: #737f8a;
	line-height: 2.5em;
	margin-top: 10px;
}
.footerArea .content p{
	margin: 0;
}
.footerQrcode{
	width: 160px;
}
.footerQrcodeText{
	width: 160px;
	text-align: center;
	float: right;
	color: #737f8a;
	padding-top: 10px;
}
.breadcrumb{
	padding-left: 0;
}
.breadcrumb-item{
	color: #6c757d;
}
.img-center{
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: top;
}
.img-contain{
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: center;
}