﻿/* 运单跟踪index.html */
.waybill .wrap .item .sub {
			position: relative;
		}

		.waybill .wrap .item .sub .btn {
			width: 65px;
			border-top-right-radius: 3px;
			border-bottom-right-radius: 3px;
			height: 65px;
			/* background: url(https://www.zoomlogistics.cn/img/search-ico01.png) no-repeat center; */
			background: url(../image/search-ico01.png) no-repeat center;
			background-color: #d2cbcd;
			position: absolute;
			top: 0px;
			right: 0px;
			cursor: pointer;
		}

		@media screen and (max-width: 768px) {
			.waybill .wrap .item .sub .btn {

				height: 35px;

			}
		}

/* 运单查询弹窗样式 */
.waybill-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.waybill-modal.active {
	display: block;
}

.waybill-modal .modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.waybill-modal .modal-content {
  position: absolute;
  top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  width: 1000px;
  height: 700px;
  animation: modalFadeIn 0.3s ease;
  border-radius: 8px;
	/* position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	width: 90%;
  height: 700px;
	max-width: 800px;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: modalFadeIn 0.3s ease; */
}
.waybill-modal .modal-content iframe{
  width: 100%;
  height: 100%;
}
/* 在 iframe 加载时显示 loading */
/* .waybill-modal .modal-content:before {
  content: '加载中...';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none;
}

.waybill-modal.loading .modal-content:before {
  display: block;
} */
@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -45%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.waybill-modal .modal-header {
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	color: #fff;
	padding: 20px 30px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.waybill-modal .modal-header h2 {
	font-size: 24px;
	font-weight: 600;
	margin: 0;
}

.waybill-modal .close-btn {
	background: transparent;
	border: none;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s;
}

.waybill-modal .close-btn:hover {
	transform: rotate(90deg);
}

.waybill-modal .modal-body {
	padding: 30px;
	max-height: calc(90vh - 80px);
	overflow-y: auto;
}

.waybill-modal .search-box {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.waybill-modal .search-box label {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	white-space: nowrap;
}

.waybill-modal .search-box input {
	flex: 1;
	height: 45px;
	padding: 0 15px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.3s;
}

.waybill-modal .search-box input:focus {
	border-color: #ff6b35;
}

.waybill-modal .search-btn {
	width: 65px;
	height: 45px;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	border: none;
	border-radius: 6px;color: #fff;
  font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s, box-shadow 0.2s;
}

.waybill-modal .search-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.waybill-modal .search-btn img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

.waybill-modal .result-box {
	min-height: 300px;
}

.waybill-modal .no-data {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.waybill-modal .no-data img {
	width: 120px;
	height: 120px;
	opacity: 0.3;
	margin-bottom: 20px;
}

.waybill-modal .no-data p {
	font-size: 16px;
	color: #999;
}

/* 查询结果样式 */
.result-content {
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.result-content .result-header {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 25px;
}

.result-content .waybill-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.result-content .info-item {
	display: flex;
	flex-direction: column;
}

.result-content .info-item label {
	font-size: 13px;
	color: #666;
	margin-bottom: 8px;
}

.result-content .info-item span {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}

.result-content .status-badge {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
}

.result-content .status-badge.success {
	background: #d4edda;
	color: #155724;
}

.result-content .status-badge.processing {
	background: #fff3cd;
	color: #856404;
}

.result-content .status-badge.shipping {
	background: #d1ecf1;
	color: #0c5460;
}

.result-content .contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.result-content .contact-card {
	background: #fff;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 20px;
}

.result-content .contact-card h4 {
	font-size: 16px;
	color: #ff6b35;
	margin-bottom: 15px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.result-content .contact-card h4::before {
	content: '';
	width: 4px;
	height: 16px;
	background: #ff6b35;
	border-radius: 2px;
}

.result-content .contact-card p {
	font-size: 14px;
	color: #666;
	margin: 8px 0;
	line-height: 1.6;
}

.result-content .contact-card p strong {
	color: #333;
	font-weight: 500;
	display: inline-block;
	min-width: 70px;
}

.result-content .timeline-section {
	margin-top: 30px;
}

.result-content .timeline-section h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

.result-content .timeline-section h3::before {
	content: '';
	width: 5px;
	height: 20px;
	background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	border-radius: 3px;
}

.result-content .timeline {
	position: relative;
	padding-left: 40px;
}

.result-content .timeline::before {
	content: '';
	position: absolute;
	left: 11px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: #e0e0e0;
}

.result-content .timeline-item {
	position: relative;
	padding-bottom: 30px;
}

.result-content .timeline-item:last-child {
	padding-bottom: 0;
}

.result-content .timeline-item::before {
	content: '';
	position: absolute;
	left: -33px;
	top: 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid #ff6b35;
	z-index: 1;
}

.result-content .timeline-item.completed::before {
	background: #ff6b35;
}

.result-content .timeline-content {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 15px 20px;
	transition: box-shadow 0.3s;
}

.result-content .timeline-content:hover {
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.result-content .timeline-time {
	font-size: 13px;
	color: #999;
	margin-bottom: 5px;
}

.result-content .timeline-status {
	font-size: 15px;
	color: #333;
	font-weight: 500;
	margin-bottom: 5px;
}

.result-content .timeline-location {
	font-size: 13px;
	color: #666;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
	.waybill-modal .modal-content {
		width: 95%;
		max-height: 95vh;
	}
	
	.waybill-modal .modal-header {
		padding: 15px 20px;
	}
	
	.waybill-modal .modal-header h2 {
		font-size: 20px;
	}
	
	.waybill-modal .modal-body {
		padding: 20px 15px;
	}
	
	.waybill-modal .search-box {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		padding: 15px;
	}
	
	.waybill-modal .search-box label {
		margin-bottom: 5px;
	}
	
	.waybill-modal .search-btn {
		width: 100%;
		height: 45px;
	}
	
	.result-content .waybill-info,
	.result-content .contact-info {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.result-content .timeline {
		padding-left: 30px;
	}
	
	.result-content .timeline-item::before {
		left: -23px;
	}
}
/* reset */
* {
  margin: 0;  
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
}

button {
  border: 0;
  background-color: transparent;
  outline: none;
  -webkit-appearance: none;
}

select {
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

input,
textarea {
  outline: none;
  border: none;
}

textarea {
  resize: none;
  overflow: auto;
}

i,
em {
  font-weight: normal;
  font-style: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input {
  -moz-appearance: textfield;
}

/* body h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体"; } */
html body {
  margin: 0px auto;
  max-width: 1920px;
  min-width: 320px;
  font-size: 16px;
  font-family: "微软雅黑", "Microsoft YaHei", "SimSun", "宋体";
  background-color: #fff;
}

/* body:after {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: gray;
  content: "";
  z-index: 99999999;
} */

/* 单行文本溢出隐藏 */
/* 多行文本溢出隐藏 */
/* flex 布局 */
　
.class1, 　
.class2 {
  border: 1px solid #ddd;
}

.class2 {
  font-size: 120%;
}

.div127 {
  float: left;
  margin-left: 10px;
}

.div1 {
  float: left;
  margin-left: 20px;
}

.wrap {
  width: 1200px;
  margin: 0 auto;
}
#header,
.header-box {
  height: 141px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  height: 141px;
  background-color: #fff;
}
.header::after {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #d9d9d9;
  top: 95px;
}
.header .top {
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header .top .hd-logo {
  width: 150px;
  /* height: auto; */
}
.header .top .hd-tel {
  padding-left: 45px;
  font-size: 14px;
  line-height: 1.4;
  color: #999;
  background: url(../image/ico-tel01.png) no-repeat left center;
  margin-left: 2%;
}
.header .top .hd-tel a {
  font-size: 14px;
  color: #333333;
}
.header .top .hd-code img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}
.header .top .hd-code {
  margin: 0 2%;
}
.header .top .search-box {
  margin-right: 3%;
}
.header .top .search-box input {
  width: 220px;
  height: 35px;
  border: 1px solid #cccccc;
  padding-right: 35px;
  padding-left: 10px;
  background: url(../image/ico-02.png) no-repeat right 10px center;
  font-size: 14px;
  color: #333;
}
.header .top .lang {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.header .top .lang a {
  width: 70px;
  height: 35px;
  background-color: #436eb2;
  font-size: 16px;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.header .top .lang a.en {
  background-color: #de7d19;
  transition-duration: .3s;
}
.header .top .lang a.en:hover {
  background-color: #c5690a;
}
.header .hd-nav {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header .hd-nav a {
  font-size: 16px;
  color: #333333;
  line-height: 1;
  display: inline-block;
  padding: 15px 5px;
  position: relative;
}
.header .hd-nav a:after {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  left: 0;
  border-top: 2px solid #436eb2;
  top: -0.5px;
  z-index: 1;
  width: 0;
  transition-duration: .3s;
}
.header .hd-nav a:hover {
  color: #436eb2;
}
.header .hd-nav a:hover::after {
  width: 100%;
}
.header .hd-nav .on a {
  color: #436eb2;
}
.header .hd-nav .on a::after {
  width: 100%;
}
.header .menu-btn {
  display: none;
}

.banner {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 36.97%;
}
.banner .swiper-container {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.banner .mobile {
  display: none;
}
.banner .swiper-pagination-bullet-active {
  background: #436eb2;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waybill {
  position: relative;
}

.waybill .wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -85px;
  z-index: 1;
  background-color: #436eb2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.waybill .wrap .links {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.waybill .wrap .links li {
  width: 25%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 145px;
}
.waybill .wrap .links li a {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: inline-flex;
  height: 100%;
  transition-duration: .3s;
}
.waybill .wrap .links li a img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: scale-down;
}
.waybill .wrap .links li a h3 {
  font-size: 16px;
  color: #fff;
  line-height: 38px;
}
.waybill .wrap .links li a:hover {
  background-color: #de7d19;
}
.waybill .wrap .item {
  width: 60%;
  padding: 40px 35px;
  position: relative;
}
.waybill .wrap .item input {
  display: block;
  width: 100%;
  height: 65px;
  padding-left: 180px;
  font-size: 16px;
  color: #7e7e7e;
}
.waybill .wrap .item label {
  position: absolute;
  height: 65px;
  padding-left: 50px;
  padding-right: 18px;
  font-size: 22px;
  color: #333;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background: url(../image/waybill-ico05.png) no-repeat left 15px center;
}
.waybill .wrap .item label::after {
  content: '';
  display: block;
  width: 2px;
  height: 18px;
  background-color: #436eb2;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.about {
  background: url(../image/about-bg01.jpg) no-repeat center;
  padding: 150px 0 48px;
}
.about .tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 65px;
}
.about .tabs::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #cbcbcb;
  position: absolute;
  top: 100px;
}
.about .tabs a {
  width: 25%;
  padding-bottom: 70px;
  text-align: center;
}
.about .tabs a h3 {
  font-size: 36px;
  line-height: 1.2;
  color: #6c6b6c;
}
.about .tabs a h3 sub {
  font-style: initial;
  font-size: 20px;
  position: relative;
  top: -7px;
  margin-left: 3px;
}
.about .tabs a h5 {
  font-size: 16px;
  line-height: 1.2;
  color: #6c6b6c;
  margin-bottom: 24px;
}
.about .tabs a div {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #b6b6b6;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about .tabs a:hover h3 {
  color: #436eb2;
}
.about .tabs a:hover div {
  border-color: #436eb2;
  background-color: #436eb2;
}
.about .tabs a:nth-child(2) sub {
  font-size: 30px;
}
.about .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
.about .content .video-box {
  width: 56%;
  height: 400px;
  position: relative;
  background: #eee;
}
.about .content .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .content .video-box .start-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  cursor: pointer;
}
.about .content .txt {
  width: 44%;
  padding-left: 30px;
}
.about .content .txt p {
  margin-top: 16px;
  font-size: 18px;
  line-height: 50px;
  color: #333;
  margin-bottom: 16px;
}

.more-com01 {
  width: 200px;
  height: 40px;
  /* border: 1px solid #cacaca; */
  background-color: #436eb2;
  display: block;
  position: relative;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-align: center;
  transition-duration: .5s;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.more-com01::after {
  /* content: ''; */
  display: block;
  width: 188px;
  height: 52px;
  border: 1px solid #cacaca;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition-duration: .5s;
}
.more-com01::before {
  /* content: ''; */
  display: block;
  width: 200px;
  height: 40px;
  border: 1px solid #cacaca;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition-duration: .5s;
}
.more-com01:hover {
  box-shadow: 1px 2px 5px #999;
}
.more-com01:hover::after {
  width: 200px;
  height: 40px;
}
.more-com01:hover::before {
  width: 180px;
  height: 60px;
}

.com-tit1 {
  text-align: center;
}
.com-tit1 H3 {
  font-size: 32px;
  color: #333;
  line-height: 1.2;
}
.com-tit1 hr {
  width: 50px;
  height: 2px;
  background-color: #436eb2;
  border: none;
  margin: 20px auto;
}
.com-tit1 p {
  font-size: 16px;
  color: #333;
  line-height: 1.2;
}

.business {
  padding: 85px 0 130px;
}
.business .list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.business .list li {
  width: 23%;
  /* width: 31.25%; */
  cursor: pointer;
}
.business .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 153%;
  overflow: hidden;
}
.business .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  transition-duration: .5s;
}
.business .list li .pic h3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  padding: 20px 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.business .list li:hover h3 {
  background-color: rgba(67, 110, 178, 0.8);
}
.business .list li:hover img {
  transform: scale(1.2);
}

.accretion {
  background-color: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.accretion .pic {
  width: 34.5%;
  height: 585px;
}
.accretion .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accretion .item {
  width: 65.5%;
  padding-right: 19.57%;
  padding-top: 60px;
  padding-bottom: 65px;
  padding-left: 100px;
}
.accretion .item ul {
  width: 100%;
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-start;
  margin-bottom: -70px;
}
.accretion .item ul li {
  /* width: 19.5%; */
  width: 25%;
  margin-bottom: 70px;
}
.accretion .item ul li a {
  margin: 0 auto;
  width: 100%;
  display: block;
  text-align: center;
}
.accretion .item ul li a img {
  width: 70px;
  height: 70px;
  object-fit: scale-down;
}
.accretion .item ul li a h4 {
  font-size: 20px;
  line-height: 1.2;
  color: #333333;
}
.accretion .item ul li:hover a {
  animation: rubberBand .8s;
}

.news {
  padding: 75px 0 70px;
}
.news .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-top: 95px;
  align-items: flex-start;
}
.news .content .pic {
  width: 50%;
  height: 390px;
}
.news .content .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .content .item {
  width: 50%;
  padding-left: 80px;
}
.news .content .item ul {
  margin-bottom: 55px;
}
.news .content .item ul li {
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  color: #a0a0a0;
  border-bottom: 1px solid #e2e2e2;
}
.news .content .item ul li h3 {
  padding: 16px 0;
  padding-right: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  letter-spacing: 1px;
}
.news .content .item ul li span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 14px;
}
.news .content .item ul li:hover {
  color: #436eb2;
}
.news .content .item ul li:first-child {
  border-bottom: none;
  color: #333333;
  font-size: 18px;
  background: url(../image/news-ico01.png) no-repeat right center;
}
.news .content .item ul li:first-child span {
  top: 5px;
  right: initial;
  left: 0;
  color: #a0a0a0;
}
.news .content .item ul li:first-child h3 {
  padding-top: 23px;
  padding-bottom: 45px;
  font-size: 18px;
  color: #111;
}
.news .content::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background-color: #436eb2;
  position: absolute;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
}

.program {
  background: url(../image/program-bg01.jpg) no-repeat center;
  padding: 65px 0 80px;
}
.program .box-swiper {
  margin-top: 50px;
  padding: 0 50px;
  position: relative;
}
.program .box-swiper .swiper-button-prev {
  background-image: url(../image/left-ico01.png);
  left: 0;
  top: 160px;
}
.program .box-swiper .swiper-button-next {
  background-image: url(../image/right-ico01.png);
  right: 0;
  top: 160px;
}
.program .program-swiper {
  margin-bottom: 65px;
}
.program .program-swiper .swiper-slide a{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.program .program-swiper .swiper-slide .txt {
  width: 50%;
  padding-right: 60px;
}
.program .program-swiper .swiper-slide .txt .img {
  width: 50px;
  height: 50px;
  background-color: #436eb2;
  border-radius: 50%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
}
.program .program-swiper .swiper-slide .txt h3 {
  font-size: 34px;
  line-height: 1.2;
  color: #333333;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
}
.program .program-swiper .swiper-slide .txt p {
  font-size: 20px;
  line-height: 35px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 55px;
}
.program .program-swiper .swiper-slide .pic {
  width: 50%;
  height: 325px;
  border-radius: 20px;
  overflow: hidden;
}
.program .program-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.program .tabs-swiper .swiper-slide {
  width: 260px;
  height: 110px;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  transition-duration: .3s;
  cursor: pointer;
  padding: 0 17px;
  position: relative;
  overflow: hidden;
}
.program .tabs-swiper .swiper-slide .pic {
  width: 75px;
  height: 75px;
  background-color: #436eb2;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.program .tabs-swiper .swiper-slide .pic .img {
  width: 50px;
  height: 50px;
  /* object-fit: scale-down; */
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: top center;
  /* transition-duration: .3s; */
}
.program .tabs-swiper .swiper-slide .txt {
  position: relative;
  z-index: 1;
  width: 140px;
  margin-left: 11px;
}
.program .tabs-swiper .swiper-slide .txt h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #333333;
  font-weight: bold;
  margin-bottom: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.program .tabs-swiper .swiper-slide .txt h5 {
  font-size: 14px;
  line-height: 1.2;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.program .tabs-swiper .swiper-slide::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #436eb2;
  transition-duration: .8s;
}
.program .tabs-swiper .swiper-slide:hover::after {
  width: 500px;
  height: 500px;
}
.program .tabs-swiper .swiper-slide:hover .pic {
  background-color: #fff;
}
.program .tabs-swiper .swiper-slide:hover .pic .img {
  
  background-position: bottom center;
}
.program .tabs-swiper .swiper-slide.swiper-slide-active .pic {
  background-color: #fff;
}
.program .tabs-swiper .swiper-slide.swiper-slide-active .pic .img {
  
  background-position: bottom center;
}


.program .tabs-swiper .swiper-slide:hover h3 {
  color: #fff !important;
}
.program .tabs-swiper .swiper-slide:hover h5 {
  color: #fff  !important;
}
.program .tabs-swiper .swiper-slide.swiper-slide-active::after {
  width: 500px;
  height: 500px;
}
.program .tabs-swiper .swiper-slide.swiper-slide-active h3 {
  color: #fff !important;
}
.program .tabs-swiper .swiper-slide.swiper-slide-active h5 {
  color: #fff  !important;
}

.client {
  padding: 65px 0 100px;
}
.client .client-swiper {
  margin-top: 65px;
}
.client .client-swiper .swiper-slide {
  width: 240px;
  height: 125px;
  border: 1px solid #dddddd;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  align-items: center;
}
.client .client-swiper .swiper-slide:nth-child(2n) {
  background-color: #f7f7f7;
}
.client .client-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}

.footer {
  background-color: #333333;
  padding-top: 65px;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer .wrap:first-child {
  align-items: flex-start;
}
.footer .wrap .item {
  width: 20%;
}
.footer .wrap .item .tel {
  padding-left: 50px;
  font-size: 12px;
  line-height: 1.2;
  color: #a7a7a7;
  font-style: italic;
  background: url(../image/ico-tel02.png) no-repeat left center;
  margin-bottom: 30px;
}
.footer .wrap .item .name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;

}
.footer .wrap .item .name  a{
  margin-right: 10px;
  position: relative;
}
.footer .wrap .item .name  .ico{
  width: 40px;
  height: 40px;
  transition-duration: .3s;
}

.footer .wrap .item .name .code{
  display: none;
  position: absolute;
  bottom:45px;
  left:0;
  width: 120px;
  height: 120px;
  max-width: initial;

}
.footer .wrap .item .name  a:hover .ico{
  opacity: .8;
}
.footer .wrap .item .name  a:hover .code{
  display: block;
}


.footer .wrap .item .tel a {
  font-size: 20px;
  color: #436eb2;
}
.footer .wrap .item .social-share .social-share-icon {
  color: #c2c2c2;
  border-color: #c2c2c2;
}
.footer .wrap .item .social-share .social-share-icon {
  width: 45px;
  height: 45px;
  font-size: 22px;
  line-height: 44px;
  margin-right: 25px;
}
.footer .wrap .item .link {
  margin-top: 60px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 25px;
}
.footer .wrap .nav {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .wrap .nav dl {
  /* border-left: 1px solid #9e9c9c; */
  padding-left: 0;
  position: relative;
  max-width: 30%;
}
.footer .wrap .nav dl::after {
  content: '';
  display: block;
  width: 2px;
  height: 17px;
  /* background-color: #de7d19; */
  position: absolute;
  left: -2px;
  top: 0;
}
.footer .wrap .nav dl dt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;

}
.footer .wrap .nav dl dd img{
  width: 23px;
  height: 23px;
  object-fit: scale-down;
  margin-right: 5px;
}
.footer .wrap .nav dl dd {
  font-size: 12px;
  line-height: 23px;
  color: #fff;
  margin-bottom: 8px;
}
.footer .wrap .nav dl a:hover {
  color: #436eb2;
}
.footer > div:first-child {
  border-bottom: 1px solid #adadad;
}
.footer > div:nth-child(2) {
  padding: 40px 0 58px;
}
.footer > div:nth-child(2) .logo {
  width: 24.5%;
}
.footer > div:nth-child(2) .copy {
  width: 65%;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}
.footer > div:nth-child(2) .copy img {
  vertical-align: middle;
  margin-bottom: 3px;
}
.footer > div:nth-child(2) .copy .tel {
  margin-left: 5px;
}
.footer > div:nth-child(2) .copy .address {
  margin-left: 5px;
}
.footer > div:nth-child(2) .copy div {
  margin-bottom: 20px;
}

.formError {
  max-width: 280px;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10001;
  background-color: #f6f6f6;
  padding: 15px 30px;
  border-radius: 5px;
  opacity: 0;
  transition: .4s all;
  box-shadow: 0 5px 10px rgba(67, 65, 68, 0.9);
}

.formError.active {
  opacity: 1;
}

.formError h6 {
  font-size: 16px;
  color: #434144;
}

.slide-nav {
  position: fixed;
  right: 20px;
  top: 30%;
  z-index: 98;
}

.slide-nav .item {
  margin: 10px 0;
  width: 68px;
  height: 68px;
  border: 1px solid #bebebe;
  background-color: #fff;
  position: relative;
  transition: .4s all;
}

.slide-nav .item:hover {
  background-color: #436eb2;
}

.slide-nav .item:hover .icon {
  background-position: center bottom;
}

.slide-nav .item:hover h4 {
  color: #fff;
}

.slide-nav .goTop {
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}

.slide-nav .goTop.active {
  opacity: 1;
  visibility: visible;
}

.slide-nav .icon {
  margin: 6px auto 3px;
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 35px auto;
}

.slide-nav h4 {
  font-size: 12px;
  color: #4e4e4e;
  font-weight: 400;
  text-align: center;
}

.slide-nav .mask {
  margin-top: -1px;
  position: absolute;
  right: 100%;
  top: 0;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  white-space: nowrap;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.slide-nav .tel {
  padding: 0 30px;
  height: 68px;
  line-height: 68px;
  font-size: 14px;
  color: #4e4e4e;
  border: 1px solid #999;
  border-right: none;
  background-color: #fff;
}

.slide-nav .qr {
  margin-right: 2px;
  width: 140px;
  height: 140px;
  border: 1px solid #f2f2f2;
  overflow: hidden;
}

.slide-nav .qr img {
  display: block;
  width: 100%;
  height: 100%;
}

.slide-nav .item:hover {
  border-color: #215644;
}

.slide-nav .item:hover .icon {
  /* background-position: center -40px; */
}

.slide-nav .item:hover h4 {
  /* color: #fff; */
}

.slide-nav .item:hover .mask {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
}

.online {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.online .main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 850px;
  width: 96%;
  padding: 30px;
  background-color: #fff;
}

.online .main .tit {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.online .main .tit h3 {
  text-align: center;
  font-size: 24px;
  color: #434144;
  font-weight: bold;
}

.online .main .tit span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  position: relative;
  margin-top: 5px;
  text-align: center;
  font-family: "Arial";
  color: #787878;
  font-weight: bold;
}

.online .main .tit span b {
  color: #436eb2;
}

.online .main .tit span:before {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144;
}

.online .main .tit span:after {
  content: '';
  opacity: 1;
  display: block;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  width: 65px;
  height: 1px;
  background-color: #434144;
}

.online .main form {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  align-items: unset;
}

.online .main form figure {
  display: block;
  width: 45%;
  position: relative;
  padding: 20% 0;
}

.online .main form figure img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.online .main form ul {
  width: 52%;
}

.online .main form ul li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  height: 40px;
}

.online .main form ul li + li {
  margin-top: 15px;
}

.online .main form ul li .ind {
  width: 48%;
  height: 100%;
  border: 1px solid #bebebe;
  padding: 0 10px;
  background-color: transparent;
  color: #979797;
  font-size: 14px;
  transition: .2s all;
}

.online .main form ul li .ind.active {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6);
}

.online .main form ul li .ind:hover {
  box-shadow: 0 5px 10px rgba(43, 59, 120, 0.6);
}

.online .main form ul li .ind::-webkit-input-placeholder {
  color: #979797;
  font-size: 14px;
}

.online .main form ul li select {
  background: url(../image/ico-002.png) #fff 95% center no-repeat;
}

.online .main form ul li.phone input {
  width: 100%;
}

.online .main form ul li.textarea {
  height: 180px;
}

.online .main form ul li.textarea textarea {
  width: 100%;
  padding: 10px;
}

.online .main form ul li button {
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  background-color: #436eb2;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .4s all;
  border: 1px solid transparent;
}

.online .main form ul li button:hover {
  background-color: transparent;
  border-color: #999;
  border-radius: 5px;
  color: #666;
}

.online .close {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../image/close.png) no-repeat center center #436eb2;
  background-size: 60%;
  cursor: pointer;
}

.hd-btn {
  display: none;
}

.m-nav {
  display: none;
}

.m_search {
  width: 100%;
  background-color: #434144;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 101;
  overflow-y: scroll !important;
  display: none;
}

.m_search figure {
  width: 100%;
  height: 100%;
}

.m_search .title,
.m_search figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.m_search .title {
  margin: 0 auto;
}

.m_search .title img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.m_search .title h3 {
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  line-height: 36px;
}

.m_search .main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.m_search .main {
  width: 100%;
  padding: 6% 15% 0;
}

.m_search .search_close {
  margin: 6% auto 0;
  cursor: pointer;
}

.m_search .search_close span {
  margin: 0 auto;
  width: 50px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
}

.m_search .search_close span,
.m_search .search_close span::before {
  display: block;
  height: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background-color: #fff;
}

.m_search .main .m_header_submit {
  width: 100%;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #fff;
  color: #434144;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}

.m_search .search_close h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-top: 30%;
}

.m_search .search_close span::before {
  content: "";
  opacity: 1;
  width: 100%;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.m_search .main input {
  border: none;
  outline: 0;
  -webkit-appearance: none;
  width: 100%;
  margin-top: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f8f8f8;
  font-size: 24px;
  color: #cfcfcf;
  background-color: transparent;
}

.com-banner1 {
  position: relative;
  padding-bottom: 27.6%;
  /* margin-top: 76px; */
}
.com-banner1 .box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

/*.com-banner1 hr {
  width: 2px;
  height: 22px;
  background-color: #436eb2;
  border: none;
  margin-bottom: 25px;
}*/

.com-banner1 img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}

.com-banner1 h3 {
  color: #fff;
  font-size: 48px;
  line-height: 45px;
  text-align: center;
  font-weight: 600; 
  letter-spacing: 3px;
}

.com-banner1 h5 {
  color: #ffffff;
  font-size: 32px;
  line-height: 1.2;
  margin-top: 15px;
  /* padding-bottom: 12px; */
  /* border-bottom: 2px solid #FFFFFF; */
   font-weight: 600; 
  letter-spacing: 3px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.pc_search {
  width: 100%;
  padding: 0;
  background-color: #fff;
}
.pc_search .wrap {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0 13px;
}

.pc_search .tit {
  display: flex;
}

.pc_search .tit a {
  width: 130px;
  height: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #215644;
  background-color: #fff;
}

.pc_search .tit a.on,
.pc_search .tit a:hover {
  background-color: #215644;
  color: #fff;
}

.pc_search nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
}

.pc_search nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.pc_search nav ul li {
  font-size: 14px;
  line-height: 1;
  color: #333333;
}

.pc_search nav ul li a {
  font-size: 14px;
  color: #333333;
  transition: .4s all;
}

.pc_search nav ul li a:hover {
  color: #436eb2;
}

.pc_search nav form {
  position: relative;
}

.pc_search nav form input {
  line-height: 40px;
  width: 400px;
  border: 1px solid #a5a5a5;
  border-radius: 20px;
  color: #aaaaaa;
  font-size: 14px;
  background-color: transparent;
  padding-left: 15px;
  transition: .4s all;
}

.pc_search nav form button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /* background: url("https://www.zoomlogistics.cn/public/static/officialweb/img/pc_search.png") no-repeat #ffff00 center; */
  /* 背景图片待配置 */
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: .4s all;
  border: none;
}

.pc_search li:nth-of-type(n+3) {
  padding-left: 22px;
  position: relative;
  margin-left: 0;
}

.pc_search li:nth-of-type(n+3)::before {
  content: '';
  opacity: 1;
  display: block;
  position: absolute;
  top: 52%;
  left: 8px;
  transform: translateY(-50%);
  width: 8px;
  height: 7px;
  background: url("../image/jt.png") no-repeat;
  background-size: contain;
}

.pc_search .tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
}
.pc_search .tabs a {
  font-size: 16px;
  line-height: 1;
  color: #494747;
  padding: 7px 12px;
  border-radius: 5px;
  margin-left: 5px;
}
.pc_search .tabs a:hover,
.pc_search .tabs a.on {
  background-color: #436eb2;
  color: #fff;
}

.news_view {
  margin-top: 80px;
}
.news_view .list {
  margin-bottom: -30px;
}
.news_view .list li {
  margin-bottom: 30px;
}
.news_view .list a {
  overflow: hidden;
  background: #fff;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  border: 2px solid #dddddd;
  align-items: stretch;
  width: 100%;
}
.news_view .list .pic {
  width: 29%;
  padding-bottom: 24.25%;
  position: relative;
}
.news_view .list .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
}
.news_view .list .tit {
  width: 71%;
  padding: 0 45px;
  border-left: 2px solid #ddd;
}
.news_view .list .tit h3 {
  font-size: 24px;
  line-height: 1.2;
  color: #5c5c5c;
  font-weight: bold;
  margin-bottom: 16px;
  transition: .4s all;
  margin-top: 22px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news_view .list .tit h3:hover {
  color: #436eb2;
}
.news_view .list .tit p {
  font-size: 16px;
  line-height: 30px;
  color: #6a6a6a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
}

.news_view .list li .tit .box-time {
  position: relative;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  color: #636363;
  margin-bottom: 65px;
}

.news_view .list li .tit .box-time .time {
  float: left;
}

.news_view .list li .tit .box-time .more {
  text-align: center;
  display: block;
  text-transform: uppercase;
  /* line-height: 29px; */
  width: 90px;
  height: 30px;
  background-color: #9a9a9a;
  border-radius: 30px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  border-radius: 14px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position: absolute;
  top: 45px;
  left: 0;
  color: #fff;
}

.news_view .list li .tit .box-time .vis {
  display: block;
  padding-left: 28px;
  float: right;
  /* background: url(https://www.zoomlogistics.cn/public/static/officialweb/img/see-ico.png) no-repeat left center; */
  /* 背景图片待配置 */
}

.news_view .list li .tit .box-time .more:hover {
  background-color: #436eb2;
}

.m-pages {
  text-align: center;
  font-size: 14px;
  padding-top: 55px;
  padding-bottom: 55px;
  /* background-color: #192028; */
}

.m-pages ul {
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  margin-right: 25px;
}

.m-pages li {
  float: left;
  margin: 0 3px;
}

.m-pages li a {
  display: block;
  width: 37px;
  text-align: center;
  color: #fff;
  /* background-color: #ccc; */
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 3px;
  height: 35px;
  line-height: 33px;
  transition: .4s all;
  font-size: 16px;
  background-color: #cccccc;
}

.m-pages select {
  width: 55px;
  height: 36px;
  line-height: 33px;
  color: #000;
  color: #3f3837;
  padding-left: 10px;
  /* background: url(https://www.zoomlogistics.cn/public/static/officialweb/img/qwy-i4.png) #fff center right 10px no-repeat; */
  /* 背景图片待配置 */
  /* background-size: auto;
  background-size: 8px; */
  font-size: 16px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #c8c8c8;
  vertical-align: bottom;
}

.m-pages select option {
  width: 100%;
  height: 36px;
  font-size: 14px;
}

.m-pages li.active a,
.m-pages li a:hover {
  background-color: #436eb2;
  /* color: #fff; */
}

.m-pages li {
  font-size: 16px;
  color: #3f3837;
  letter-spacing: 2px;
  line-height: 34px;
  font-family: SourceHanSerifCN;
}

.m-pages li:last-child {
  margin-left: 15px;
}

.news-info_view {
  background-color: #f5f5f5;
  padding: 80px 0;
}
.news-info_view .content {
  padding: 25px 40px  40px;
  background-color: #fff;
}
.news-info_view .content .tit h1 {
  font-size: 18px;
  line-height: 1.2;
  color: #436eb2;
  padding-bottom: 20px;
  margin: 0 30px;
  border-bottom: 1px dashed #7c7c7c;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-info_view .content .tit > p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.2;
  color: #4e4e4e;
  text-align: center;
  margin-bottom: 20px;
}
.news-info_view .content .tit > p span {
  margin-right: 15px;
}
.news-info_view .content .tit .share-box {
  text-align: center;
}
.news-info_view .content .tit .share-box span {
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #4e4e4e;
  padding-left: 18px;
  background: url(../image/ico-news001.png) no-repeat left center;
}
.news-info_view .content .tit .social-share {
  display: inline-block;
}
.news-info_view .content .edit {
  margin: 20px 0;
}
.news-info_view .content .page-t1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #e2e2e2;
  padding: 10px 20px;
}
.news-info_view .content .page-t1 a {
  display: block;
  max-width: 50%;
  font-size: 12px;
  line-height: 1.1;
  color: #494747;
}
.news-info_view .content .page-t1 a:hover {
  color: #436eb2;
}
.news-info_view .content .box-blank {
  padding-top: 35px;
  text-align: center;
}
.news-info_view .content .box-blank a {
  display: inline-block;
  padding: 10px 18px 10px 55px;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  font-weight: bold;
  transition-duration: .3s;
  border: 1px solid #8ea8d1;
  background: url(../image/back-ico001.png) no-repeat left 16px center;
  background-color: #436eb2;
}
.news-info_view .content .box-blank a:hover {
  background-color: #c5690a;
  border-color: #c5690a;
}

.team_view {
  padding: 80px 0 0;
  background-color: #f5f5f5;
}
.team_view .list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: -45px;
  margin-right: -3.33%;
}





.team_view .list li {
  width: 30%;
  margin-right: 3.33%;
  margin-bottom: 45px;
}


.team_view .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 76.9%;
  overflow: hidden;
  transition-duration: .5s;
  border-bottom: 3px solid #dddddd;

  background-color: #eaeaea;
}

.team_view .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 18px 25px;
  transition-duration: .5s;
}
/* .team-info_view .list li .pic img:hover {
  transform: scale(1.2);
} */


.team_view .list li .pic:after{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../image/team-ico001.png) no-repeat center;
  background-color: rgba(0, 0,0, .4);
  opacity: 0;
  visibility: hidden;
  transition-duration: .3s;
}

.team_view .list li:hover .pic:after{
  opacity: 1;
  visibility: visible;
  border-bottom-color: #385c95;
}

.team_view .list li h3 {
  padding: 15px 0;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
  overflow: hidden;text-overflow: ellipsis;white-space: nowrap;
}

.team_view .list li:hover{
  background-color: #fff;
  box-shadow: 2px 2px 5px #999;
}
.team_view .list li:hover h3{
  color: #436eb2;
 
}

/*分页*/

/* #pageGro{ width:450px; height:25px; margin:0px auto; padding-top:30px;}
#pageGro div,#pageGro div ul li{ font-size:12px; color:#999; line-height:23px; float:left; margin-left:5px;}
#pageGro div ul li{ width:22px; text-align:center; border:1px solid #999; cursor:pointer;}
#pageGro div ul li.on{ color:#fff; background:#3c90d9; border:1px solid #3c90d9;}
#pageGro .pageUp,#pageGro .pageDown,#pageGro .pagestart,#pageGro .pageend{ width:63px; border:1px solid #999; cursor:pointer;}
 */
 .team-info_view .m-pages .pageUp,
 .team-info_view .m-pages .pageDown{
  
  float: initial;
  display: inline-block;
  vertical-align: middle;
  width: 37px;
  text-align: center;
  color: #fff;
  background-color: #ccc;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  border-radius: 3px;
  height: 35px;
  line-height: 33px;
  transition: .4s all;
  font-size: 16px;
  background-color: #cccccc;
  cursor: pointer;

 }
 .team-info_view .m-pages .pageUp:hover,
 .team-info_view .m-pages .pageDown:hover{
  background-color: #436eb2;
 }

 .team-info_view .page-t{
   display: inline-block;
   vertical-align: middle;
 }
 .team-info_view .m-pages ul {

  margin-right: 0;
}
 .team-info_view .m-pages  ul li {
  
  
  cursor: pointer;
    width: 37px;
    text-align: center;
    color: #fff;
    background-color: #ccc;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    -ms-border-radius: 1px;
    -o-border-radius: 1px;
    border-radius: 3px;
    height: 35px;
    line-height: 33px;
    transition: .4s all;
    font-size: 16px;
    background-color: #cccccc;
    
  display: inline-block;
 }

 .team-info_view .m-pages li:last-child {
  margin: 0 3px;
}
 .team-info_view .m-pages  ul li:hover,
 .team-info_view .m-pages  ul li.on {
  
  
    
  background-color: #436eb2;
}

.team-info_view {
  padding-top: 80px;
}
.team-info_view .list {
  /* display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -45px; */
}
.team-info_view .list .list-view {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: -45px;
}
.team-info_view .list .excerpt {
  width: 48%;
  margin-bottom: 45px;
}
.team-info_view .list li {
  /* width: 48%;
  margin-bottom: 45px; */
}
.team-info_view .list li .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  transition-duration: .5s;
  border: 2px solid #f0f0f0;
  border-bottom-width: 4px;
}
.team-info_view .list li .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 25px 28px;
  transition-duration: .5s;
}
.team-info_view .list li .pic img:hover {
  transform: scale(1.2);
}
.team-info_view .list li .pic:hover {
  border-bottom-color: #436eb2;
}
.team-info_view .list li h3 {
  margin-top: 27px;
  text-align: center;
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
}
.team-info_view .list li h3:hover {
  color: #436eb2;
}

.serve_view .tit {
  padding-top: 60px;
  padding-bottom: 35px;
  border-bottom: 2px solid #dddddd;
  text-align: center;
}
.serve_view .tit h1 {
  font-size: 36px;
  line-height: 1.2;
  color: #436eb2;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}
.serve_view .tit p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
  margin-top: 15px;
  text-align: center;
}
.serve_view .content {
  padding: 45px 0;
}

.process_view {
  padding: 80px 0;
}
.process_view .slogen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.process_view .slogen .pic {
  width: 40%;
  height: 474px;
}
.process_view .slogen .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process_view .slogen .txt {
  width: 60%;
  padding-left: 45px;
  padding-top: 20px;
}
.process_view .slogen .txt h3 {
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
}
.process_view .slogen .txt h3:last-of-type {
  margin-top: 70px;
}
.process_view .slogen .txt h5 {
  font-size: 16px;
  line-height: 1.2;
  color: #848484;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 10px;
  margin-bottom: 20px;
}
.process_view .slogen .txt p {
  font-size: 14px;
  line-height: 28px;
  color: #333333;
}
.process_view .slogen .txt p span {
  color: #436eb2;
  margin-right: 5px;
}
.process_view .require {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
}
.process_view .require .tit {
  width: 100%;
  text-align: center;
}
.process_view .require .tit h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #333;
  padding-top: 80px;
  padding-bottom: 18px;
}
.process_view .require .tit hr {
  width: 50px;
  height: 2px;
  background-color: #436eb2;
  margin: 0 auto 20px;
  border: none;
}
.process_view .require .tit p {
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 40px;
}
.process_view .require .pic {
  width: 53%;
}
.process_view .require .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process_view .require .txt {
  width: 47%;
  background-color: #f5f5f5;
  padding-left: 40px;
}
.process_view .require .txt p {
  font-size: 14px;
  line-height: 35px;
  color: #333;
  padding: 30px 10px 30px 0;
}
.process_view .require .txt p span {
  color: #436eb2;
}

.about_view .intro {
  background: url(../image/about-bg01.jpg) no-repeat center;
  padding: 90px 0 85px;
}
.about_view .intro .tabs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.about_view .intro .tabs::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #cbcbcb;
  position: absolute;
  top: 100px;
}
.about_view .intro .tabs a {
  width: 25%;
  text-align: center;
}
.about_view .intro .tabs a h3 {
  font-size: 36px;
  line-height: 1.2;
  color: #6c6b6c;
}
.about_view .intro .tabs a h3 sub {
  font-style: initial;
  font-size: 20px;
  position: relative;
  top: -7px;
  margin-left: 3px;
}
.about_view .intro .tabs a h5 {
  font-size: 16px;
  line-height: 1.2;
  color: #6c6b6c;
  margin-bottom: 24px;
}
.about_view .intro .tabs a div {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #b6b6b6;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.about_view .intro .tabs a:hover h3 {
  color: #436eb2;
}
.about_view .intro .tabs a:hover div {
  border-color: #436eb2;
  background-color: #436eb2;
}
.about_view .intro .tabs a:nth-child(2) sub {
  font-size: 30px;
}
.about_view .intro .txt h3 {
  margin-top: 70px;
  font-size: 34px;
  line-height: 1.1;
  color: #333;
  text-align: center;
  margin-bottom: 35px;
}
.about_view .intro .txt p {
  font-size: 16px;
  line-height: 38px;
  color: #333;
  text-indent: 2em;
}
.about_view .video {
  background: url(../image/about-bg001.jpg) no-repeat center;
  padding: 70px 0 100px;
  margin-bottom: 85px;
}
.about_view .video .tit h3 {
  color: #fff;
}
.about_view .video .tit p {
  color: #fff;
}
.about_view .video .video-box {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 57.5%;
  margin-top: 72px;
}
.about_view .video .video-box video {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  padding: 25px;
  background-color: #fff;
}
.about_view .honor {
  padding: 75px 0 110px;
}
.about_view .honor .honor-swiper {
  margin-top: 60px;
  padding-bottom: 50px;
}
.about_view .honor .honor-swiper .swiper-slide {
  width: 350px;
}
.about_view .honor .honor-swiper .swiper-slide .pic {
  display: block;
  width: 100%;
  position: relative;
  padding-bottom: 85.7%;
  background-color: #f0f0f0;
}
.about_view .honor .honor-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  padding: 20px 17px;
}
.about_view .honor .honor-swiper .swiper-slide h3 {
  font-size: 16px;
  line-height: 1;
  color: #333333;
  padding: 15px 0 10px;
  text-align: center;
}
.about_view .honor .honor-swiper .swiper-pagination-bullet-active {
  background: #dddddd;
}
.about_view .honor .honor-swiper .buton-box {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.about_view .honor .honor-swiper .buton-box > div {
  position: initial;
  margin-top: 0;
  display: inline-block;
}
.about_view .honor .honor-swiper .buton-box .swiper-pagination {
  margin: 0 10px;
}
.about_view .honor .honor-swiper .buton-box .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 100%;
  background: #ddd;
  opacity: .5;
}
.about_view .honor .honor-swiper .buton-box .swiper-pagination-bullet-active {
  opacity: 1;
  background: #436eb2;
}
.about_view .honor .honor-swiper .buton-box .swiper-button-prev {
  width: 20px;
  height: 25px;
  background: url(../image/left-ico001.png) no-repeat center;
}
.about_view .honor .honor-swiper .buton-box .swiper-button-next {
  width: 20px;
  height: 25px;
  background: url(../image/right-ico001.png) no-repeat center;
}

.contact_view .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  padding: 60px 0 100px;
}
.contact_view .info .txt {
  width: 46.5%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: #eeeeee;
}
.contact_view .info .txt img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 15px 0;
}
.contact_view .info .txt h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #436eb2;
  margin-bottom: 15px;
}
.contact_view .info .txt p {
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  margin-bottom: 15px;
}
.contact_view .info .form {
  width: 53.5%;
  padding-left: 55px;
}
.contact_view .info .form h3 {
  font-size: 19px;
  line-height: 1;
  color: #333333;
  padding-left: 30px;
  position: relative;
}
.contact_view .info .form h3:after {
  content: '';
  display: block;
  width: 15px;
  height: 1px;
  background-color: #436eb2;
  border: 1px solid #c0cfe5;
  position: absolute;
  left: 0;
  top: 49%;
}
.contact_view .info .form p {
  font-size: 12px;
  line-height: 1;
  color: #797979;
  padding-left: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.contact_view .info .form form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}
.contact_view .info .form form input {
  width: 100%;
  height: 40px;
  border: 2px solid #ececec;
  padding-left: 10px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.contact_view .info .form form textarea {
  width: 100%;
  height: 150px;
  border: 2px solid #ececec;
  padding: 15px 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  margin-bottom: 15px;
}
.contact_view .info .form form button {
  width: 130px;
  height: 34px;
  background-color: #dddddd;
  font-size: 12px;
  color: #545454;
  cursor: pointer;
  transition-duration: .3s;
  margin: 0 12px;
}
.contact_view .info .form form button:hover {
  background-color: #436eb2;
  color: #fff;
}
.contact_view .sales {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 100px;
}
.contact_view .sales .pic {
  width: 50%;
  height: 530px;
}
.contact_view .sales .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact_view .sales .txt {
  width: 50%;
  padding: 30px 40px;
  background-color: #f5f5f5;
}
.contact_view .sales .txt h3 {
  font-size: 18px;
  line-height: 1.2;
  color: #436eb2;
  margin-bottom: 7px;
}
.contact_view .sales .txt p {
  font-size: 14px;
  line-height: 22px;
  color: #333;
  margin-bottom: 7px;
}
.contact_view .map {
  width: 100%;
  height: 500px;
  margin: 0 auto;
  margin-bottom: 100px;
  max-width: 1200px;
  
}

@media screen and (max-width: 1800px) {
  body:after {
    background: yellow;
  }
}
@media screen and (max-width: 1440px) {
  body:after {
    background: blue;
  }

  .wrap {
    width: 1200px;
  }

  .accretion .item {
    padding-right: 12%;
  }
}
@media screen and (max-width: 1280px) {
  body:after {
    background: lightblue;
  }

  .wrap {
    width: 100%;
    padding: 0 20px;
  }

  .col-r {
    display: none;
  }

  .col-l {
    width: 100%;
  }

  .header .top .hd-tel {
    margin-left: initial;
  }

  .header .top .search-box {
    margin-right: initial;
  }

  .header .top .hd-code {
    margin: 0;
  }

  .accretion .item {
    padding-right: 50px;
    padding-left: 50px;
  }

  .footer > div:nth-child(2) {
    padding: 40px 20px 58px;
  }

  .footer > div:nth-child(2) .copy {
    width: 70%;
  }
}
@media screen and (max-width: 1024px) {
  /* 移动ipad */
  /* ..... */
  body:after {
    background: pink;
  }

  .footer-links {
    margin-bottom: 60px;
  }

  .header .top .hd-tel {
    display: none;
  }

  .header .top .hd-code img {
    display: none;
  }

  .header .top .search-box {
    display: none;
  }

  .header .top .lang {
    display: none;
  }

  .header .hd-nav {
    display: none;
  }

  .header::after {
    display: none;
  }

  #header,.header, .header-box{
    height: 55px;
  }

  .header .top .hd-logo {
    width: 150px;
  }

  .hd-btn {
    display: block;
    position: absolute;
    width: 115px;
    top: 16px;
    right: 20px;
    padding-left: 35px;
  }

  .hd-btn .search_btn {
    position: relative;
    width: 24px;
  }
  .hd-btn .lang-btn{
    font-size: 18px;
    color: #666;
    line-height: 1.2;
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
  }

  .qui-gh {
    float: right;
    height: 34px;
    width: 34px;
    /* right: 30px; */
    top: 50%;
    margin-top: -17px;
    position: absolute;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    cursor: pointer;
    right: 0;
  }

  .selected .qui-gh {
    transform: rotate(90deg);
  }

  .qui-gh a {
    background-color: #666;
    padding: 0 !important;
    display: block;
    height: 3px;
    margin-top: -2px;
    position: relative;
    top: 50%;
    transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    width: 100%;
    border-radius: 2px;
  }

  .qui-gh:hover a:before {
    transform: translateY(-2px) rotate(0deg);
    -webkit-transform: translateY(-2px) rotate(0deg);
    -ms-transform: translateY(-2px) rotate(0deg);
  }

  .qui-gh:hover a:after {
    transform: translateY(2px) rotate(0deg);
    -webkit-transform: translateY(2px) rotate(0deg);
    -ms-transform: translateY(2px) rotate(0deg);
  }

  .selected .qui-gh:hover a:before {
    transform: translateY(0px) rotate(-55deg);
    -webkit-transform: translateY(0px) rotate(-55deg);
    -ms-transform: translateY(0px) rotate(-55deg);
  }

  .selected .qui-gh:hover a:after {
    transform: translateY(0px) rotate(55deg);
    -webkit-transform: translateY(0px) rotate(55deg);
    -ms-transform: translateY(0px) rotate(55deg);
  }

  .qui-gh a:after,
  .qui-gh a:before {
    background-color: #666;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -webkit-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    -ms-transition: all 0.3s cubic-bezier(0.7, 0, 0.3, 1) 0s;
    width: 100%;
    border-radius: 2px;
  }

  .qui-gh a:after {
    top: 10px;
  }

  .qui-gh a:before {
    top: -10px;
  }

  .selected .qui-gh a:after,
  .selected .qui-gh a:before {
    top: 0;
  }

  .selected .qui-gh a:before {
    transform: translateY(0px) rotate(-45deg);
    -webkit-transform: translateY(0px) rotate(-45deg);
    -ms-transform: translateY(0px) rotate(-45deg);
  }

  .selected .qui-gh a:after {
    transform: translateY(0px) rotate(45deg);
    -webkit-transform: translateY(0px) rotate(45deg);
    -ms-transform: translateY(0px) rotate(45deg);
  }

  .selected .qui-gh a {
    background-color: transparent !important;
  }

  .m-nav {
    /* display: none; */
    width: 75%;
    height: 100vh;
    max-width: 420px;
    padding: 50px 0 70px;
    /* height: 100vh; */
    position: fixed;
    top: 55px;
    right: -100vw;
    transition: .4s all;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9;
    display: block;
  }

  .m-nav ul li:hover a {
    background-color: #436eb2;
  }

  .m-nav ul li a {
    display: block;
    width: 100%;
    padding: 10px 5%;
    box-sizing: border-box;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .m-nav.active {
    right: 0;
  }

  .m_search .title img {
    width: 30px;
    height: 30px;
  }

  .m_search .title h3 {
    font-size: 24px;
    margin-top: 10px;
    line-height: 28px;
  }

  .m_search .main .m_header_submit {
    font-size: 18px;
  }

  .m_search .search_close span {
    width: 40px;
  }

  .m_search .search_close h4 {
    font-size: 16px;
  }

  .m_search .main select {
    background-position: 100% 33%;
  }

  .m_search .main input,
  .m_search .main select {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .m_search .main .m_header_submit {
    font-size: 16px;
    padding: 10px 0;
  }

  .m_search .search_close {
    margin-top: 15%;
  }

  .m_search .search_close span,
  .m_search .search_close span:before {
    height: 3px;
    width: 30px;
  }

  .m_search .search_close h4 {
    font-size: 14px;
  }

  .waybill .wrap {
    position: initial;
    transform: translateX(0);
  }

  .waybill .wrap .item {
    width: 50%;
  }

  .waybill .wrap .links {
    width: 50%;
  }

  .footer > div:first-child {
    display: none;
  }

  .footer {
    padding-top: 0;
  }

  .footer > div:nth-child(2) .logo {
    display: none;
  }

  .footer > div:nth-child(2) .copy {
    width: 100%;
  }
  .footer > div:nth-child(2) .copy div {
    display: none;
  }
  .footer > div:nth-child(2) .copy p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .footer > div:nth-child(2) {
    padding: 20px;
  }

  .slide-nav {
    left: 0;
    top: auto;
    right: 0;
    bottom: 0;
    font-size: 0;
    text-align: center;
  }

  .slide-nav .item {
    margin: 0;
    border: none;
    opacity: 1 !important;
    border-top: 1px solid #000;
    border-radius: 0;
    border-left: 1px solid #000;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    height: 60px;
  }

  .slide-nav .item:first-child {
    border: none;
    border-top: 1px solid #000;
  }

  .slide-nav .goTop {
    display: inline-block !important;
  }

  .slide-nav .icon {
    width: 30px;
    height: 30px;
    -webkit-background-size: 30px auto;
    background-size: 30px auto;
  }

  .slide-nav .mask {
    left: 50%;
    right: auto;
    bottom: 100%;
    top: auto;
    -webkit-transform: translateX(-50%) scale(1, 0);
    -ms-transform: translateX(-50%) scale(1, 0);
    -o-transform: translateX(-50%) scale(1, 0);
    transform: translateX(-50%) scale(1, 0);
  }

  .slide-nav .tel {
    padding: 0 15px;
    border: 2px solid #000;
    height: 46px;
    line-height: 42px;
  }

  .slide-nav .qr {
    width: 120px;
    height: 120px;
  }

  .slide-nav .item:hover .icon {
    /* background-position:center -30px */
  }

  .slide-nav .item:hover .mask {
    -webkit-transform: scale(1, 1) translateX(-50%);
    -ms-transform: scale(1, 1) translateX(-50%);
    -o-transform: scale(1, 1) translateX(-50%);
    transform: scale(1, 1) translateX(-50%);
  }

  .slide-nav .item {
    width: 25%;
  }

  .slide-nav .wechat {
    display: none;
  }

  /* .slide-nav .nav-qq{display:none} */
  .slide-nav .icon {
    margin: 8px auto 3px;
  }

  .slide-nav .icon {
    /* background-position: center; */
  }

  .slide-nav .goTop {
    opacity: 1;
    visibility: visible;
  }

  .footer {
    margin-bottom: 60px;
  }

  .com-banner1 {
    padding-bottom: 62%;
    /* display: none; */
  }

  .com-banner1 h3 {
    font-size: 22px;
    line-height: 30px;
  }

  .com-banner1 h5 {
    font-size: 22px;
    line-height: 1.2;
    margin-top: 5px;
  }

  .com-banner1 hr {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  /* ..... */
  body:after {
    background: red;
  }

  .wrap {
    padding: 0 15px;
  }

  .banner {
    padding-bottom: 100%;
  }

  .banner .pc {
    display: none;
  }

  .banner .mobile {
    display: block;
  }

  .waybill .wrap .item {
    width: 100%;
    padding: 5px 0 15px;
  }

  .waybill .wrap .links {
    width: 100%;
  }

  .waybill .wrap .links li a img {
    width: 40px;
    height: 40px;
  }

  .waybill .wrap .links li a h3 {
    font-size: 12px;
    line-height: 25px;
  }

  .waybill .wrap .links li {
    height: 90px;
  }

  .waybill .wrap .item label {
    height: 35px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    background: initial;
    display: none;
  }

  .waybill .wrap .item input {
    height: 35px;
    padding: 0 10px;
    font-size: 14px;
  }

  .about {
    padding: 20px 0 30px;
  }

  .com-tit1 H3 {
    font-size: 18px;
  }

  .com-tit1 hr {
    width: 35px;
    margin: 10px auto;
  }

  .com-tit1 p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
  }
  .waybill-modal .search-box input{
    line-height: 50px;
  }
  .about .tabs a {
    width: 50%;
    padding-bottom: 0;
  }

  .about .tabs a h3 sub {
    font-size: 12px;
    top: -5px;
  }

  .about .tabs a:nth-child(2) sub {
    font-size: 14px;
  }

  .about .tabs a div {
    display: none;
  }

  .about .tabs::after {
    display: none;
  }

  .about .tabs a h3 {
    font-size: 20px;
  }

  .about .tabs a h5 {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .about .content .video-box {
    width: 100%;
    height: 200px;
  }

  .about .content .txt {
    width: 100%;
    padding-left: 0;
  }

  .about .content .video-box .start-btn {
    width: 40px;
  }

  .about .content .txt p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 24px;
    color: #333;
    margin-bottom: 20px;
  }

  .more-com01 {
    width: 120px;
    height: 35px;
    font-size: 12px;
    margin: 0 auto;
  }

  .more-com01::after {
    width: 100px;
    height: 47px;
  }

  .more-com01::before {
    width: 100%;
    height: 100%;
  }

  .more-com01:hover::before {
    width: 100%;
    height: 100%;
  }

  .more-com01:hover::after {
    width: 100px;
    height: 47px;
  }

  .about .tabs {
    margin-top: 15px;
  }

  .business {
    padding: 20px 0 30px;
  }

  .business .list {
    margin-top: 20px;
    justify-content: center;
    margin-bottom: -20px;
  }

  .business .list li {
    width: 100%;
    max-width: 400px;
    margin-bottom: 15px;
  }

  .business .list li .pic {
    padding-bottom: 100%;
  }

  .business .list li .pic h3 {
    font-size: 14px;
    padding: 10px 0;
  }

  .accretion .pic {
    display: none;
  }

  .accretion .item {
    width: 100%;
    padding: 20px 20px 30px;
  }

  .accretion .item ul {
    margin-top: 20px;
    margin-bottom: -20px;
  }

  .accretion .item ul li {
    width: 25%;
    /* width: 20%; */
    margin-bottom: 20px;
  }

  .accretion .item ul li a img {
    width: 40px;
    height: 40px;
  }

  .accretion .item ul li a h4 {
    font-size: 12px;
    margin-top: 10px;
  }

  .news .content .pic {
    display: none;
  }

  .news .content .item {
    width: 100%;
    padding-left: 0;
  }

  .news .content::after {
    display: none;
  }

  .news .content .item ul li h3 {
    padding: 10px 0;
    padding-right: 80px;
    font-size: 12px;
  }

  .news .content .item ul li span {
    font-size: 12px;
  }

  .news .content .item ul li:first-child h3 {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 12px;
  }

  .news .content {
    margin-top: 30px;
  }

  .news .content .item ul {
    margin-bottom: 20px;
  }

  .news {
    padding: 20px 0 30px;
  }

  .program {
    padding: 20px 0 30px;
  }

  .program .box-swiper {
    margin-top: 20px;
    padding: 0;
  }

  .program .program-swiper .swiper-slide .txt {
    width: 100%;
    padding-right: 0;
  }

  .program .program-swiper .swiper-slide .pic {
    width: 100%;
    height: 200px;
  }

  .program .box-swiper .swiper-button-prev {
    display: none;
  }

  .program .box-swiper .swiper-button-next {
    display: none;
  }

  .program .program-swiper .swiper-slide .txt .img {
    display: none;
  }

  .program .program-swiper .swiper-slide .txt h3 {
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .program .program-swiper .swiper-slide .txt p {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 10px;
    height: 75px;
  }

  .program .program-swiper {
    margin-bottom: 20px;
  }
  .program .tabs-swiper .swiper-slide {
    width: 90px;
    height: auto;
    border-radius: 10px;
    justify-content: center;
    flex-direction: row;
    padding: 10px 0;
}
  .program .tabs-swiper .swiper-slide {
    width: 90px;
    height: auto;
    border-radius: 10px;
    justify-content: center;
    flex-direction: row;
    padding: 10px 0;
  }

  .program .tabs-swiper .swiper-slide .txt {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-left: 0;
  }

  .program .tabs-swiper .swiper-slide .pic {
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
  }
  .program .tabs-swiper .swiper-slide .pic img {
    width: 100%;
    height: 100%;
    margin: 5px;
  }

  .program .tabs-swiper .swiper-slide .txt h5 {
    display: none;
  }

  .program .tabs-swiper .swiper-slide .txt h3 {
    text-align: center;
    font-size: 12px;
  }

  .client {
    padding: 20px 0 30px;
  }

  .client .client-swiper {
    margin-top: 20px;
  }

  .client .client-swiper .swiper-slide {
    height: 80px;
    padding: 10px;
  }

  .online .main form figure {
    display: none;
  }

  .online .main form ul {
    width: 100%;
  }

  .online .main {
    padding: 15px;
  }

  .online .main .tit h3 {
    font-size: 20px;
  }

  .online .main form ul li.textarea {
    height: 120px;
  }

  .news_view .list .pic {
    width: 100%;
    padding-bottom: 70.64%;
  }
  .news_view .list .pic img {
    object-fit: cover;
  }

  .news_view .list li .tit {
    width: 100%;
    padding: 0 10px;
    border-left: none;
    border-top: 2px solid #ddd;
  }

  .news_view .list li .tit .box-time {
    margin-bottom: 20px;
  }

  .news_view .list li .tit .box-time .more {
    display: none;
  }

  .news_view .list li .tit h3 {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .news_view .list li .tit p {
    font-size: 12px;
    line-height: 24px;
    margin-bottom: 0;
  }

  .news_view {
    margin-top: 20px;
  }

  .news_view .list {
    margin-bottom: -20px;
  }

  .news_view .list li {
    margin-bottom: 20px;
  }

  .m-pages {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .m-pages li {
    display: none;
  }

  .m-pages li.fengye {
    display: block;
  }

  .m-pages li {
    font-size: 14px;
    line-height: 33px;
  }

  .m-pages select {
    font-size: 14px;
  }

  .pc_search {
    display: none;
  }

  .news-info_view {
    padding: 20px 0;
  }

  .news-info_view .content {
    padding: 15px 15px;
  }

  .news-info_view .content .tit h1 {
    font-size: 16px;
    padding-bottom: 12px;
  }

  .news-info_view .content .tit .share-box {
    display: none;
  }

  .news-info_view .content .tit > p {
    margin-top: 10px;
    font-size: 12px;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .news-info_view .content .page-t1 a {
    max-width: initial;
    width: 100%;
    margin-bottom: 10px;
  }
  .news-info_view .content .page-t1 a:last-child {
    margin-bottom: 0;
  }

  .news-info_view .content .page-t1 {
    padding: 10px 10px;
  }

  .news-info_view .content .box-blank {
    padding-top: 20px;
  }

  .team-info_view {
    padding-top: 20px;
  }

  .team-info_view .list {
    margin-bottom: -15px;
  }

  .team-info_view .list li {
    width: 100%;
    margin-bottom: 15px;
  }

  .team-info_view .list li .pic img {
    padding: 0;
  }

  .team-info_view .list li h3 {
    margin-top: 10px;
    font-size: 14px;
  }

  .serve_view .tit {
    padding: 20px 15px;
  }

  .serve_view .tit h1 {
    font-size: 20px;
  }

  .serve_view .tit p {
    font-size: 14px;
    margin-top: 10px;
  }

  .serve_view .content {
    padding: 20px 0;
  }

  .process_view .slogen .pic {
    width: 100%;
    height: 200px;
  }

  .process_view .slogen .txt {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }

  .process_view {
    padding: 20px 0;
  }

  .process_view .slogen .txt h3:last-of-type {
    margin-top: 10px;
  }

  .process_view .slogen .txt h3 {
    font-size: 20px;
  }

  .process_view .slogen .txt h5 {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .process_view .slogen .txt p {
    font-size: 12px;
    line-height: 22px;
  }

  .process_view .require .tit h3 {
    font-size: 22px;
    padding-top: 30px;
    padding-bottom: 10px;
  }

  .process_view .require .tit hr {
    margin-bottom: 12px;
  }

  .process_view .require .tit p {
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
  }

  .process_view .require .pic {
    width: 100%;
    height: 200px;
  }

  .process_view .require .txt {
    width: 100%;
    padding-left: 0;
  }

  .process_view .require .txt p {
    font-size: 12px;
    line-height: 22px;
    padding: 10px 10px;
  }

  .about_view .intro .tabs a {
    width: 50%;
    padding-bottom: 0;
  }

  .about_view .intro .tabs a h3 sub {
    font-size: 12px;
    top: -5px;
  }

  .about_view .intro .tabs a:nth-child(2) sub {
    font-size: 14px;
  }

  .about_view .intro .tabs a div {
    display: none;
  }

  .about_view .intro .tabs::after {
    display: none;
  }

  .about_view .intro .tabs a h3 {
    font-size: 20px;
  }

  .about_view .intro .tabs a h5 {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .about_view .intro {
    padding: 20px 0;
  }

  .about_view .intro .txt h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .about_view .intro .txt p {
    font-size: 12px;
    line-height: 22px;
  }

  .about_view .video {
    padding: 20px 0;
  }

  .about_view .video .video-box {
    margin-top: 20px;
  }

  .about_view .video .video-box video {
    padding: 0px;
  }

  .about_view .honor {
    padding: 20px 15px;
  }

  .about_view .honor .honor-swiper .buton-box .swiper-pagination-bullet {
    margin: 0 3px;
  }

  .contact_view .info .txt {
    width: 100%;
    padding: 0 10px;
  }

  .contact_view .info .form {
    width: 100%;
    padding-left: 0;
    padding: 20px 0 0;
  }

  .contact_view .info {
    padding: 20px 0;
  }

  .contact_view .info .txt img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 20px 0 10px;
  }

  .contact_view .info .txt h3 {
    font-size: 14px;
    line-height: 1.2;
    color: #436eb2;
    margin-bottom: 9px;
  }

  .contact_view .info .txt p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact_view .info .txt p:last-of-type {
    margin-bottom: 15px;
  }

  .contact_view .info .form h3 {
    font-size: 16px;
    line-height: 1;
    color: #333333;
    padding-left: 0;
    position: relative;
  }

  .contact_view .info .form h3::after {
    display: none;
  }

  .contact_view .info .form p {
    padding-left: 0;
    margin-top: 5px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .contact_view .info .form form input {
    height: 35px;
    border: 1px solid #ececec;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .contact_view .info .form form textarea {
    height: 90px;
    border: 1px solid #ececec;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 10px;
  }

  .contact_view .info .form form button {
    width: 100px;
    height: 30px;
    margin: 0px 8px;
  }

  .contact_view .sales .pic {
    width: 100%;
    height: 220px;
  }

  .contact_view .sales .txt {
    width: 100%;
    padding: 10px;
    background-color: #f5f5f5;
  }

  .contact_view .sales .txt h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .contact_view .sales .txt p {
    font-size: 12px;
    line-height: 18px;
    color: #333;
    margin-bottom: 8px;
  }

  .contact_view .map {
    width: auto;
    height: 220px;
    margin: 0 15px 20px;
    padding: 0;
  }

  .contact_view .sales {
    padding-bottom: 20px;
  }
  .team_view {
    padding-top: 20px;
    
  }
  .team_view .list{
    margin-right: 0;
    margin-bottom: -15px;
  }
  .team_view .list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .about_view .video {
    
      margin-bottom: 20px;
  }

}

/*# sourceMappingURL=main.css.map */
