<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
::-webkit-input-placeholder { /* WebKit browsers */
    color:    #b3b3b3;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color:    #b3b3b3;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color:    #b3b3b3;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color:    #b3b3b3;
}
*{padding: 0;margin: 0;list-style: none;background-position: center;background-repeat: no-repeat;background-size: contain;font-family: "微软雅黑";}
a{text-decoration: none;color: inherit;}
.clearfix:after{content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.bg-color{top: 0 !important;}
.clearfix {zoom: 1;}
@font-face {
	font-family: Bahnschrift;
	src: url("../fonts/BAHNSCHRIFT.TTF");    
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Timesnewroman;
	src: url("../fonts/Timesnewroman.ttf");    
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Timesnewromanbold;
	src: url("../fonts/Timesnewromanbold.ttf");    
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: Impact;
	src: url("../fonts/Impact.ttf");
	font-weight: normal;
	font-style: normal;
}
.wrap{position: relative;right: 0;transition:right ease 0.35s;padding-bottom: 70px;}
.wrap.on{right: 60%;}
#nav-over{position: fixed;left: 0;top: 0;z-index: 998;display: none;width: 100%;height: 100%;background: rgba(0,0,0,0.5);}
#nav-over.on{display: block;}
.sp_header{
	width: 100%;
	height: 60px;
	background-color: #104ebf;
	z-index: 100;
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
}
.sp_header .sp_logo{
	float: left;
	margin-left: 2%;
	width: 85%;
	height: 60px;
	line-height: 1;
	color: #fff;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.sp_header .sp_logo h4{
	font-size: 18px;
	margin-bottom: 5px;
}
.sp_header .sp_logo p{
	font-size: 12px;
	text-transform: uppercase;
	line-height: 1.2;
}
.sp_header.nav-move{
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	box-shadow: none !important;
}
.sp_header.nav-hide{
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.banner{width: 100%;margin: 60px auto 0;position: relative;overflow: hidden;}
.banner a{display: block;}
.banner img{display: block;width: 100%;}
.banner .swiper-pagination{bottom: 10px;width: 100%;}
.banner .swiper-pagination .swiper-pagination-bullet{width: 4px;height: 4px;background-color: #fff;border-radius: 50%;opacity: 1;margin: 0 4px;overflow: hidden;transition: all 0.5s ease-in-out;}
.banner .swiper-pagination .swiper-pagination-bullet-active{width: 20px;border-radius: 20px;}
/* 顶部导航 */
.mobile-inner-header-icon{
	float: right;
	margin-right: 2%;
	margin-top: 10px;
	height: 30px;
	width: 30px;
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 35px) / 2);
	top: calc((100% - 0px) / 2);
	width: 100%;
	height: 3px;
	border-radius: 20px;
	background-color: #fff;
}
.mobile-inner-header-icon span:nth-child(1){
	transform: translateY(5px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(2){
	transform: translateY(-5px) rotate(0deg);
}
.mobile-inner-header-icon span:nth-child(3){
	transform: translateY(12px) rotate(0deg);
}
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
}		
.mobile-inner-header-icon-click span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
}
.mobile-inner-header-icon-click span:nth-child(3){
	display: none;
}
@keyframes clickfirst {
	0% {
		transform: translateY(4px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(45deg);
	}
}
@keyframes clicksecond {
	0% {
		transform: translateY(-4px) rotate(0deg);
	}
	100% {
		transform: translateY(0) rotate(-45deg);
	}
}
.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
}
@keyframes outfirst {
	0% {
		transform: translateY(0) rotate(-45deg);
	}
	100% {
		transform: translateY(-4px) rotate(0deg);
	}
}
.mobile-inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
}
@keyframes outsecond {
	0% {
		transform: translateY(0) rotate(45deg);
	}
	100% {
		transform: translateY(4px) rotate(0deg);
	}
}
.mobile-inner-nav a{
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: returnToNormal;
	animation-name: returnToNormal;
}
@-webkit-keyframes returnToNormal {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes returnToNormal {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
.mobile-inner-nav{
	background-color: rgba(0,0,0,0.9);
	width: 100%;
	position: absolute;
	top: 60px;
	left: 0px;
	padding: 30px 0;
	display: none;
	z-index: 999;
}
.mobile-inner-nav a{
	display: inline-block;
	line-height: 45px;
	text-decoration: none;
	width: 80%;
	margin-left: 10%;
	color: #FFFFFF;
	font-size: 14px;
	text-align: center;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight:300;
}
.mobile-inner-nav a:hover{
	color: rgba(255,255,255,0.4);
	border-bottom: solid 1px rgba(255,255,255,0.2);
}
/*底部导航栏*/
.footer_nav{position: fixed;z-index: 99;width: 100%;height: 70px;background: #174cab;bottom: 0;left: 0;}
.footer_nav .nav_list{position: absolute;bottom: 0;left: 0;width: 100%;height: 70px;}
.footer_nav .nav_list li{float: left;text-align: center;}
.footer_nav .nav_list .nav_li01{width: 50%;height: 70px;}
.footer_nav .nav_list .nav_li01 .icon{width: 30px;height: 30px;margin: 0 auto;}
.footer_nav .nav_list .nav_li01 .nav_p{font-size: 14px;color: #fff;line-height: 1;margin-top: 6px;font-weight: 700;}
.footer_nav .nav_list li:nth-child(1){background-color: #165cdc;}
.footer_nav .nav_list li:nth-child(1) .icon{background-image: url(../images/footer-nav-icon101.png);}
.footer_nav .nav_list li:nth-child(2) .icon{background-image: url(../images/footer-nav-icon201.png);}
.footer_nav .nav_list .nav_li01 a{display: block;height: 40px;padding: 10px 0;}
.cd-top{
	display: inline-block;
	height: 40px;
	width: 40px;
	position: fixed;
	bottom: 90px;
	right: 10px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	line-height: 40px;
	white-space: nowrap;
	background-color: #104ebf;
	visibility: hidden;
	opacity: 0;
	font-size: 0;
	text-align: center;
	z-index: 99;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.cd-top img{
	max-width: 80%;
	max-height: 80%;
	display: inline-block;
	vertical-align: middle;
}
.cd-top.cd-is-visible{visibility: visible;opacity: 1;}
/* 无内容 */
.no-goods,.no-network{padding-top:7rem;overflow: hidden;text-align: center;}
.no-goods img{display: block;margin:0 auto 2rem;width:14rem;max-height: 10rem;}
.no-network img{display: block;margin:0 auto 2rem;width:14rem;max-height: 10rem;}
.no-goods p,.no-network p{font-size:14px;color:#666666;line-height: 20px;}

.fix-banner{
	width: 100%;
	margin: 60px auto 0;
	position: relative;
}
.fix-banner img{
	display: block;
	width: 100%;
}
.fix-banner .bgcolor{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
}
.fix-banner .ntitle{
	position: absolute;
	top: 50%;
	left: 5%;
	width: 90%;
	transform: translateY(-50%);
	color: #fff;
}
.fix-banner .ntitle .txt{
	position: relative;
	height: 50px;
}
.fix-banner .ntitle .txt i{
	font-style: normal;
	font-size: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.2;
	font-weight: bold;
	line-height: 1;
	font-family: "Timesnewromanbold";
}
.fix-banner .ntitle .txt h4{
	font-size: 30px;
	font-weight: normal;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.title{line-height: 20px;color: #fff;font-size: 14px;}
.title span{color: #fff;}

.common{padding: 20px 10px;}

.de-about-content p{font-size: 1rem;line-height: 2rem;text-indent: 2em;}
.de-about-content p img{max-width: 100%;display: block;}
.de-about-content p video{display: block;width: 100%;height: 16rem;margin-bottom: 1rem;}

.de-page-mian{overflow: hidden;text-align: center;font-size: 0;margin: 1rem 0;}
.de-page-mian .page-inner{display: inline-block;overflow: hidden;}
.de-page-mian .page-inner a{display: block;float: left;min-width: 26px;padding: 0 5px;height: 36px;border: 1px solid #dddddd;background: #fff;text-align: center;line-height: 36px;font-size: 14px;color: #333;margin-right: -1px;overflow: hidden;margin-bottom: 10px;}
.de-page-mian .page-inner a.active,
.de-page-mian .page-inner a:hover{color: #fff;border-color: #104ebf;background: #104ebf}
.de-page-mian .page-inner a.prev{margin-right: 10px;background: #fff url(../images/prev.jpg) no-repeat center;}
.de-page-mian .page-inner a.prev.on{background: #fff url(../images/prev-hover.jpg) no-repeat center;}
.de-page-mian .page-inner a.prev:hover{background-color: #fff;border-color: #dddddd;}
.de-page-mian .page-inner a.next{margin-left: 10px;margin-right: 15px;background: #fff url(../images/next.jpg) no-repeat center;}
.de-page-mian .page-inner a.next.on{background: #fff url(../images/next-hover.jpg) no-repeat center;}
.de-page-mian .page-inner a.next:hover{background-color: #fff;border-color: #dddddd;}
.de-page-mian .page-inner a.page-btn{font-size: 12px;margin-right: 0;width: 63px;margin-left: 10px;display: none;}
.de-page-mian .page-inner span{display: none;font-size: 12px;color: #333;float: left;line-height: 38px;}
.de-page-mian .page-inner input{display: none;float: left;height: 36px;width: 36px;border: 1px solid #dddddd;text-align: center;line-height: 36px;font-size: 14px;color: #333;margin: 0 5px;}

.center-img{width: 100%;margin: 0 auto;overflow: hidden;position: relative;}
.center-img .swiper-slide{height: 350px;line-height: 350px;text-align: center;}
.center-img .swiper-slide img{max-width: 100%;max-height: 100%;display: inline-block;vertical-align: middle;}
.center-img .swiper-pagination{width: 100%;}
.center-title{font-weight: 700;font-size: 16px;color: #333;line-height: 24px;margin: 5px 0;text-align: center;}
.center-tit{width: 100%;margin: 10px auto;background: #e9e8e9;}
.center-tit span{font-size: 14px;display: block;width: 80px;background: #104ebf;color: #fff;text-align: center;line-height: 34px;}
.center-content {overflow: hidden;padding-bottom: 20px;}
.center-content p{line-height: 20px;font-size: 16px;padding: 5px 0;}
.center-content img {max-width: 100%;display: block;}
.center-content table {max-width: 100%;}
.center-content table.contentTab {font-family: '微软雅黑';width: 100%;border-collapse: collapse;table-layout: fixed;margin-bottom: 20px;}
.center-content table.contentTab tr th {width: 50%;text-align: center;font-size: 0.8rem;color: #262626;background: #deeae9;border: 1px solid #ccc;line-height: 48px;font-weight: bold;}
.center-content table.contentTab tr td {line-height: 1.5rem;color: #595959;font-size: 0.8rem;text-align: center;border: 1px solid #ccc;padding: 0.5rem;}
.center-content table.contentTab tr td:nth-child(2){text-align: left;}

.newsPage {font-size: 14px;color: #323232;line-height:26px; margin: 0.5rem 0 1rem;}
.newsPage a {color: #323232;}

.news-detail-content {width: 100%;margin: 0 auto;}
.news-detail-content .news-detail-title {padding-bottom: 0.8rem;border-bottom: 1px dashed #ededed;text-align: center;margin-bottom: 0.8rem;}
.news-detail-content .news-detail-title .h3 {font-size: 1rem;color: #323232;line-height: 24px;font-weight: bold;margin: 0 0 0.5rem;}
.news-detail-content .news-detail-title .b {font-size: 0.8rem;color: #999999;line-height: 20px;}
.news-detail-content .news-detail p {font-size: 14px;color: #595959;line-height: 24px;}
.news-detail-content .news-detail img {max-width: 100%;margin: 0 auto;}

.de-contact {overflow: hidden;}
.de-contact .tit h4{font-size: 1.2rem;color: #000;text-align: center;font-weight: bold;margin-bottom: 1rem;}
.de-contact .text h4{font-size: 1rem;color: #000;margin-bottom: 0.5rem;font-weight: normal;}
.de-contact .text p{font-size: 0.9rem;line-height: 1.5rem;border-bottom: 1px solid #e5e5e5;text-align: justify;padding-bottom: 0.8rem;margin-bottom: 1rem;}
.de-contact .contact-list ul{display: flex;justify-content: space-between;flex-wrap: wrap;display: -webkit-flex;-webkit-justify-content: space-between;-webkit-flex-wrap: wrap;}
.de-contact .contact-list ul li{width: 49%;margin-bottom: 10px;background: #f5f5f5;border: 1px solid #eee;box-sizing: border-box;padding: 20px 0;}
.de-contact .contact-list ul li img{display: block;width: 40px;height: 40px;margin: 0 auto;}
.de-contact .contact-list ul li h4{text-align: center;font-size: 16px;font-weight: normal;margin: 10px 0;line-height: 1;}
.de-contact .contact-list ul li p{text-align: center;font-size: 14px;padding: 0 5px;line-height: 20px;}
.de-contact .contact-list ul li span{display: block;float: left;color: #999;}
.de-contact .contact-list ul li.icon-01{background: url(../images/contact-icon-01.png) no-repeat left top;}
.de-contact .contact-list ul li.icon-02{background: url(../images/contact-icon-02.png) no-repeat left top;}
.de-contact .contact-list ul li.icon-03{background: url(../images/contact-icon-03.png) no-repeat left top;}
.de-contact .contact-list ul li.icon-04{background: url(../images/contact-icon-04.png) no-repeat left top;}
.de-contact .contact-list ul li.icon-05{background: url(../images/contact-icon-05.png) no-repeat left top;}
.de-contact .contact-list ul li.icon-06{background: url(../images/contact-icon-06.png) no-repeat left top;}
.de-contact .contact-map{overflow: hidden;}
.de-contact .contact-map #dituContent{width: 100%;height: 300px;margin: 0 auto 10px;}

.de-message{overflow: hidden;}
.de-message .tips{font-size: 14px;line-height: 24px;color: #737373;}
.de-message .mes-form{overflow: hidden;margin: 10px 0;}
.de-message .mes-form .form-tr{overflow: hidden;}
.de-message .mes-form .form-tr input{display: block;width: 100%;padding: 0 10px;height: 38px;line-height: 38px;border: 1px solid #e6e6e6;box-sizing: border-box;}
.de-message .mes-form .form-tr textarea{display: block;width: 100%;padding: 5px 10px;height: 168px;border: 1px solid #e6e6e6;box-sizing: border-box;}
.de-message .mes-form .form-tr .code{overflow: hidden;}
.de-message .mes-form .form-tr .code input{width: 60%;float: left;box-sizing: border-box;}
.de-message .mes-form .form-tr .code .verify{cursor: pointer;float: left;margin-left: 5%;width: 35%;height: 40px;line-height: 40px;text-align: center;font-size: 0;}
.de-message .mes-form .form-tr .code .verify img{display: inline-block;vertical-align: middle;max-width: 100%;max-height: 100%;}
.de-message .mes-form .form-tr .submit{display: block;width: 100%;height: 40px;text-align: center;line-height: 40px;background: #104ebf;color: #fff;font-size: 15px;}
.de-message .mes-form .form-tr .submit:hover{background: #165cdc;}
.de-message .mes-form .form-tr .error{height: 18px;line-height: 18px;font-size: 12px;color: #f00;padding: 0 5px;}

.pro-sider-ul{text-align: center;background-color: #f5f5f5;}
.pro-sider-ul .ul-li{height: 2.5rem;width: 50%;float: left;overflow: hidden;position: relative;}
.pro-sider-ul .ul-li::before{content: '';position: absolute;top: 40%;right: 0;width: 1px;height: 20%;background-color: #ccc;}
.pro-sider-ul .ul-li:nth-child(2n)::before{display: none;}
.pro-sider-ul .ul-li a{display: block;padding: 0.5rem;text-align: center;color: #666;line-height: 1.5rem;font-size: 0.9rem;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.pro-sider-ul .ul-li a.currentmenu{color: #104ebf;}

.product li{width: 49%;float: left;margin-right: 2%;}
.product li:nth-child(2n){margin-right: 0;}
.product li .product_img{height: 180px;text-align: center;line-height: 180px;overflow: hidden;background-color: #fff;border: 1px solid #eee;font-size: 0;}
.product li .product_img img{max-width: 100%;max-height: 100%;vertical-align: middle;}
.product li .product_img.training img{width: 100%;height: 100%;object-fit: cover;max-width: none;max-height: none;}
.product li p{padding: 0 5px;line-height: 36px;text-align: center;color: #000;font-size: 14px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}

.case li{width: 49%;float: left;margin-right: 2%;}
.case li:nth-child(2n){margin-right: 0;}
.case li .img{height: 11rem;text-align: center;line-height: 11rem;overflow: hidden;background-color: #fff;}
.case li .img img{width: 100%;height: 100%;object-fit: cover;}
.case li p{padding: 0 0.5rem;line-height: 2.5rem;text-align: center;color: #333;font-size: 0.9rem;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}

.honor li{width: 49%;float: left;margin-right: 2%;}
.honor li:nth-child(2n){margin-right: 0;}
.honor li a{display: block;}
.honor li a .honor_img{height: 140px;text-align: center;line-height: 140px;border: 1px solid #eee;background-color: #fff;overflow: hidden;}
.honor li .honor_img img{max-width: 100%;max-height: 100%;vertical-align: middle;}
.honor li p{height: 36px;line-height: 36px;text-align: center;color: #646464;font-size: 14px;padding: 0 5px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}

.news{width: 100%;margin: 0 auto;}
.news ul li{width: 100%;margin-bottom: 1rem;padding-bottom: 1rem;border-bottom: 1px dashed #dfdfdf;height: auto;overflow: hidden;}
.news ul li a{display: block;}
.news ul li a .img{float: left;width: 30%;height: 90px;overflow: hidden;}
.news ul li a .img img{width: 100%;height: 100%;object-fit: cover;}
.news ul li a .text{float: right;width: 68%;height: 90px;display: flex;justify-content: center;flex-direction: column;}
.news ul li a .text h4{color: #050505;font-size: 16px;line-height: 1;margin-bottom: 10px;font-weight: normal;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.news ul li a .text p{color: #666;font-size: 14px;line-height: 20px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;}

.contact{width: 100%;margin: 0 auto;text-align: center;}
.contact li{line-height: 2.4rem;color: #3e3e3e;font-size: 1.2rem;}

.page{clear: both;margin-top: 10px;text-align: center;font-size: 12px;letter-spacing: 0px; font-family:"微软雅黑";}
.page #page_num{width:50px; margin-top:6px; border-radius:0px;}
.page a{display:inline-block; height:16px; line-height:16px; border:1px solid #ccc; padding:5px;color:#000; border-radius:0px; background:#fff; margin-right:4px;transition: all .3s ease-in-out;-moz-transition: all .3s ease-in-out;-webkit-transition: all .3s ease-in-out;-o-transition: all .3s ease-in-out;}
.page a &amp;:hover{background:#f4f4f4;border:none; padding:5px 25px;color:#000; text-decoration:none; border:1px solid #ccc; height:16px; line-height:16px;}
.btn2{border:solid 1px #ccc; padding:5px; }
.btn3{border:solid 1px #ccc; background:#f4f4f4; padding:5px 25px; margin-right:4px; height:18px; }

#page_num1{ width:50px; height:29px; line-height:18px; margin-top:4px; border:solid 1px #ccc; border-radius:0px; }

.topic-con{padding:20px; font-size:1rem;line-height:1.8rem;}
.article{padding:0;}
.article .hd{font-size:1.3em;font-weight:normal;text-align:center;}
.article .meta{padding:0 0.833em;font-size:0.857em;color:#9c9c9c;text-align:center;}
.article .intro{padding:0.5em 1em;margin:0 0.833em;border-radius:0.21em;}
.article .article-con{margin:0.8em 0.833em 0 0.833em;}
.article .article-con img{width:95%;height:auto;max-width:600px;}

#prev_next{width: 100%;padding: 10px 0px;border-top: 1px solid #f2f2f2;margin-top: 10px;}
#prev_next li{line-height: 36px;width: 100%;padding: 0 1%;}
#prev_next li a{color: #333;text-decoration: none;}

.cnyleft{width: 96%;margin: 2rem auto;}
.cnyleft h4{width: 100%;height: 3rem;border-bottom: 1px solid #ddd;line-height: 3rem;font-size: 1.2rem;font-weight: normal;}
.cnyleft h4 img{width: 8%;margin-right: 1rem;display: inline-block;vertical-align: middle;}
.cnyleft li{width: 100%;line-height: 3rem;}
.cnyleft li img{width: 8%;display: inline-block;vertical-align: middle;}
.cnyleft .cnyewm{width: 100%;}
.cnyleft .cnyewm img{width: 50%;margin: 2rem;}
/* 招聘 */
.de-job-list .ijoin{overflow: hidden;}
.de-job-list .ijoin dl{background-color: #104ebf;padding:0px 5%;}
.de-job-list .ijoin dl dd{float:left;width:70%;color:#fff;line-height:45px;font-size:1rem;}
.de-job-list .ijoin dl dd:last-child{width:30%;}
.de-job-list .ijoin ul{margin-top:10px;}
.de-job-list .ijoin ul li{border-bottom:1px rgba(0,0,0,.15) dashed;}
.de-job-list .ijoin ul li .jitp{padding:15px 5%;transition:.3s;}
.de-job-list .ijoin ul li .jitp span{float:left;width:70%;color:#333;line-height:1.5;font-size:1rem;padding-right: 2%;box-sizing: border-box;}
.de-job-list .ijoin ul li .jitp span:nth-of-type(2){width:30%;}
.de-job-list .ijoin ul li .jitp span a{width:100%;display:block;height:30px;font-size:16px;border: 1px solid #104ebf;color: #104ebf;cursor:pointer;text-align:center;transition:.3s;line-height: 30px;float:left;}
.de-job-list .ijoin ul li .jitp span a:hover{background-color: #104ebf;color:#fff;}

.jobs_content{margin: 20px 10px;}
.jobs_content .ijoindd .zwxxx span{display:block;line-height:30px;color:#000;font-size: 14px;}
.jobs_content .ijoindd .zwxxx .zpzw{font-size:18px;margin-bottom:10px;}
.jobs_content .ijoindd .jibt section{padding:0 0 10px 0;color: #545459;font-size: 14px;line-height: 26px;}
.jobs_content .sqxx h2{text-align:center;font-size:1rem;color:#000;line-height:1.5;}
.jobs_content .sqxx h2 big{font-size:1rem;}
.jobs_content .sqxx .form{background:#f6f6f6;padding: 1rem;margin-top: 1rem;}
.jobs_content .sqxx .form div{margin-bottom: 10px;}
.jobs_content .sqxx .form div p{float:left;width:76px;color:#636366;line-height:34px;}
.jobs_content .sqxx .form div p:before{content:"* ";color:#f00;}
.jobs_content .sqxx .form div input{width:calc(100% - 76px);background:#fff;border:1px rgba(0,0,0,.1) solid;line-height:22px;outline:none;padding:5px 10px;box-sizing: border-box;}
.jobs_content .sqxx .form div.captcha{position: relative;}
.jobs_content .sqxx .form div.captcha img{position: absolute;top: 0;right: 0;height: 34px;}
.jobs_content .sqxx .form div .tr-cont.radio-cont{width:calc(100% - 76px);line-height: 40px;display: inline-block;margin-bottom: 0;}
.jobs_content .sqxx .form div .tr-cont.radio-cont input[type=radio]{font-size: 14px;color: #333;padding: 0 10px;width: 20px;height: 12px;border: 1px solid #e6e6e6;}
.jobs_content .sqxx .form div .tr-cont.radio-cont label{margin-right: 30px;color: #4c4c4c;line-height: 40px;font-weight: bold;}
.jobs_content .sqxx .form div select{width:calc(100% - 76px);border:1px rgba(0,0,0,.1) solid;background:#fff;height:34px;outline:none;padding:0px 10px;}
.jobs_content .sqxx .form div:last-child{width:100%;}
.jobs_content .sqxx .form div textarea{width:calc(100% - 76px);background:#fff;border:1px rgba(0,0,0,.1) solid;line-height:22px;outline:none;padding:4px 10px;resize:none;box-sizing: border-box;}
.jobs_content .sqxx form .submit{display:block;margin:10px auto 0px;background:#004c98;width:100%;color:#fff;height:40px;outline:none;font-size:16px;transition:.3s;border:0;text-align: center;line-height: 40px;}
.jobs_content .zwcont form .submit:hover{background:#eb3d00;}

.ly{width:96%;margin: 2rem auto;}
.ly-k{border:solid 1px #f4f4f4; padding:15px;}
.ly-k-k{width:100%; height:2.6rem; line-height:2.6rem;font-family:"微软雅黑"; font-size:14px;border-radius:0px; border:dashed 1px #ccc; box-shadow:none; background:#fff;margin-bottom: 1rem;text-indent: 1rem;}
.ly-k-k1{width:100%; height:5rem; line-height:2.6rem; font-family:"微软雅黑"; font-size:14px;border-radius:0px; border:dashed 1px #ccc; box-shadow:none;margin-bottom: 1rem;text-indent: 1rem;}
.ly-k-k2{float:left; width:30%; height:2.6rem; line-height:2.6rem; font-family:"微软雅黑"; font-size:14px; border-radius:0px; border:dashed 1px #ccc; box-shadow:none; margin-right:15px;text-indent: 1rem;}
.ly-k-k3{float: left;}
input.ly-k-k4{width: 34%;margin-top: 1rem;height: 2.6rem;line-height: 2.6rem;text-align: center;border: none;box-shadow: none;border-radius: 0;background: #000;color: #fff;}
/* 行数 */
.ellipsis{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.ellipsis2{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;text-overflow:ellipsis;}
.ellipsis3{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden;text-overflow:ellipsis;}
.ellipsis4{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 4;overflow: hidden;text-overflow:ellipsis;}
.ellipsis5{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 5;overflow: hidden;text-overflow:ellipsis;}
.ellipsis6{display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 6;overflow: hidden;text-overflow:ellipsis;}
.transition{
	transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out; /* IE 9 */
	-moz-transition: all 0.5s ease-in-out; /* Firefox */
	-webkit-transition: all 0.5s ease-in-out; /* Safari 和 Chrome */
	-o-transition: all 0.5s ease-in-out; /* Opera */
}
/* 公共头部 */
.index-title{
	text-align: center;
	line-height: 1;
	margin-bottom: 20px;
}
.index-title h4{
	color: #0091ee;
	font-size: 20px;
}
.index-title p{
	color: #191919;
	font-size: 12px;
	margin-top: 10px;
}
/* 业务范围 */
.business-main{
	background-color: #fff;
	padding: 20px 10px;
}
.business-main .swiper-container{
	overflow: hidden;
}
.business-main .swiper-slide a{
	display: block;
}
.business-main .swiper-slide a .img{
	height: 160px;
	overflow: hidden;
}
.business-main .swiper-slide a .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.business-main .swiper-slide a .tit{
	text-align: center;
	color: #0091ee;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
}
.business-main .swiper-slide a:hover .img img{
	transform: scale(1.1);
}
.business-main .swiper-slide a:hover .tit{
	color: #e10000;
}
.business-main .business-next,
.business-main .business-prev{
	width: 30px;
	height: 30px;
	top: 65px;
	margin-top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	background-size: 30px 30px;
	border-radius: 50%;
}
.business-main .business-prev{
	left: 0;
	background-image: url(../images/product-left.png);
}
.business-main .business-next{
	right: 0;
	background-image: url(../images/product-right.png);
}
.business-main .business-next:hover,
.business-main .business-prev:hover{
	background-color: #0091ee;
}
/* 货运展示 */
.car-main{
	background-color: #d9edff;
	padding: 20px 10px;
}
.car-main .list li{
	float: left;
	width: 49%;
	margin-right: 2%;
}
.car-main .list li:nth-child(2n){
	margin-right: 0;
}
.car-main .list li a{
	display: block;
}
.car-main .list li a .img{
	height: 160px;
	overflow: hidden;
}
.car-main .list li a .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.car-main .list li a .tit{
	text-align: center;
	color: #232323;
	font-size: 14px;
	line-height: 36px;
}
.car-main .list li a:hover .img img{
	transform: scale(1.1);
}
.car-main .list li a:hover .tit{
	color: #e10000;
}
/* 优势 */
.youshi-main{
	background-color: #fff;
	padding: 20px 10px;
}
.youshi-main .list li{
	margin-bottom: 20px;
}
.youshi-main .list li:last-child{
	margin-bottom: 0;
}
.youshi-main .list li .img{
	height: 120px;
	overflow: hidden;
}
.youshi-main .list li .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.youshi-main .list li .box{
	margin-top: 20px;
}
.youshi-main .list li .box .top{
	margin-bottom: 10px;
}
.youshi-main .list li .box .top .tit{
	float: left;
	width: 46px;
	height: 80px;
	padding: 0 15px;
	background-color: #006dd3;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 26px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.youshi-main .list li .box .top .txt{
	float: right;
	width: calc(100% - 90px);
	height: 80px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.youshi-main .list li .box .top .txt h4{
	line-height: 1;
	color: #333;
	font-size: 20px;
}
.youshi-main .list li .box .top .txt p{
	color: #888;
	font-size: 12px;
	line-height: 1.2;
	margin-top: 10px;
	text-transform: uppercase;
}
.youshi-main .list li .box .content{
	color: #333;
	font-size: 14px;
	line-height: 24px;
	margin-left: 30px;
}
.youshi-main .list li .box .content p{
	padding: 3px 0 3px 14px;
	text-align: justify;
	position: relative;
}
.youshi-main .list li .box .content p:before{
	content: '';
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 4px;
	border: 2px solid #9b9b9b;
	border-radius: 50%;
}
/* 公司简介 */
.company-main{
	background-color: #104ebf;
	padding: 20px 10px;
}
.company-main .index-title h4,
.company-main .index-title p{
	color: #fff;
}
.company-main .img{
	height: 200px;
	overflow: hidden;
}
.company-main .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.company-main .tit{
	color: #fff;
	font-weight: 700;
	font-size: 20px;
	line-height: 2;
	margin-top: 10px;
}
.company-main .content{
	color: #fff;
	font-size: 14px;
	line-height: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}
/* 新闻资讯 */
.news-main{
	background-color: #fff;
	padding: 20px 10px;
}
.news-main .list li{
	margin-bottom: 20px;
}
.news-main .list li:last-child{
	margin-bottom: 0;
}
.news-main .list li a{
	display: block;
}
.news-main .list li a .img{
	float: left;
	width: 80px;
	height: 80px;
	overflow: hidden;
}
.news-main .list li a .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.news-main .list li a .box{
	float: right;
	width: calc(100% - 95px);
	height: 80px;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.news-main .list li a .box .tit{
	color: #104ebf;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 10px;
}
.news-main .list li a .box .content{
	color: #353536;
	font-size: 14px;
	line-height: 20px;
}
.news-main .list li a:hover .img img{
	transform: scale(1.1);
}
.news-main .list li a:hover .box .tit{
	color: #e10000;
}
.news-main .list li a:hover .box .content{
	color: #104ebf;
}
/* 联系方式 */
.contact-main{
	background-color: #104ebf;
	padding: 20px 10px;
}
.contact-main .index-title h4{
	color: #fff;
}
.contact-main .box{
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
}
.contact-main .box p{
	padding: 5px 0;
}
.wechat{
	display: block;
	width: 40px;
	height: 40px;
	position: fixed;
	bottom: 150px;
	right: 10px;
	opacity: 1;
	z-index: 99;
}
.wechat img{
	width: 100%;
}
.wx_box p{
	text-align: center;
	font-size: 18px;
	line-height: 40px;
}
.wx_box h4{
	text-align: center;
	font-size: 24px;
	background-color: #104ebf;
	color: #fff;
	line-height: 48px;
	font-weight: bold;
}
.wx_box img{
	width: 226px;
	height: 226px;
	margin: 1rem auto 0;
	display: block;
	border: 1px solid #eee;
}
.wx_box span{
	display: block;
	text-align: center;
	font-size: 16px;
	color: #666;
	line-height: 40px;
}</pre></body></html>