/*首页头部导航*/

header {
	/* position: fixed;
	top: 0;
	left: 0; */
	width: 100%;
	z-index: 99;
	background: #fff;
	transition: 0.5s;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* header.header_fixed {
	transform: translateY(-100%);
} */

header .upper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 90px;
}


header .logo a img {
	max-height: 100px;
}

header .upper .tel {
	font-size: 14px;
	color: #25365d;
	background: url(../images/tel-icon.png)left center no-repeat;
	padding-left: 60px;
}

header .upper .tel h2 {
	font-family: Impact;
	font-size: 24px;
	color: #207ba9;
	font-weight: normal;
}

header .rightDiv {
	color: #fff;
	background: #25365d;
	position: absolute;
	width: 100%;
	z-index: 99;
	top: 90px;
}

body.on-fixed header .rightDiv {
	position: fixed;
	top: 0;
}

header .rightDiv .menu>ul>li {
	float: left;
	width: calc(100%/8);
	position: relative;
}

header .rightDiv .menu>ul>li>a {
	line-height: 64px;
	text-align: center;
	display: block;
	position: relative;
	text-transform: capitalize;
}

header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li:hover>a {
	background: #207ba9;
}

.menu>ul>li>ul {
	position: absolute;
	top: 74px;
	min-width: 100%;
	left: 0;
	z-index: 9;
	font-size: 14px;
	opacity: 0;
	visibility: hidden;
	transition: all .5s ease 0s;
	background: #fff;
	box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
}

.menu ul li:hover>ul {
	opacity: 1;
	visibility: visible;
	top: 64px;
}

.menu ul ul li a {
	display: block;
	white-space: nowrap;
	position: relative;
	line-height: 48px;
	padding: 0 10px;
	padding-left: 40px;
	position: relative;
	color: #333;
}

.menu ul ul li a:hover {
	background: #207ba9;
	color: #fff;
}

.menu ul ul li a::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	position: absolute;
	left: 15px;
	top: 47%;
	transform: rotate(45deg) translateY(-50%);
	transition: all 0.5s;
}

.menu ul ul li a:hover::before {
	border-color: #fff;
}

header .mbtn {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url(../images/menu.png) no-repeat center center;
	background-size: 18px auto;
	position: fixed;
	top: 0;
	right: 0;
	display: none;
}

header .mbtn:active {
	opacity: .8;
}

body.on-menu header .mbtn {
	background: url(../images/close.png) no-repeat center center;
	background-size: 18px auto;
}

header .hotLine {
	height: 80px;
	display: flex;
	align-items: center;
}

header .hotLine strong {
	display: inline-block;
	color: #fff;
	background: #72BB38;
	font-size: 14px;
	padding: 8px 17px;
}

/* banner */

.ui-homebanner {
	width: 100%;
	position: relative;
	margin-top: 62px;
}

.ui-homebanner .swiper-slide {
	overflow: hidden;
	position: relative;
}

.ui-homebanner .swiper-slide .img {
	width: 100%;
	display: block;
	height: 558px;

	background: none no-repeat center;
	background-size: cover;
	position: relative;
}


.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
	position: absolute;
	bottom: 20px;
}

.ui-homebanner .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: #fff;
	border-radius: 100px;
	opacity: 1;
	transition: all 0.5s;
	margin: 0 6px;
}


.ui-homebanner .swiper-pagination-bullet-active {
	background: #1269CA;
}

.ui-homebanner .swiper-button-next,
.ui-homebanner .swiper-button-prev,
.indexDiv5 .swiper-button-next,
.indexDiv5 .swiper-button-prev {
	width: 40px;
	height: 64px;
	background-color: rgba(0, 0, 0, 0.4);
	margin-top: -32px;
}

.swiper-button-prev {
	left: 0;
}

.swiper-button-next {
	right: 0;
	transform: rotate(180deg);
}



/*弹出层*/

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.5);
	color: #333;
}

.popup-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.popup.active {
	display: block;
}

.popup-content {
	max-width: 1000px;
	max-height: 80vh;
	padding: 15px;
	background: rgba(255, 255, 255, 0.85);
	text-align: center;
	margin: 0 auto;
	margin-top: 50vh;
	transform: translateY(-50%);
	position: relative;
	z-index: 2;
}

.popup-content .videoDiv video {
	width: 100%;
}

.popup-content .box-close {
	display: block;
	width: 45px;
	height: 36px;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #fff;
	position: absolute;
	right: -45px;
	top: 0;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	opacity: .85;
	filter: alpha(opacity=85);
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	background-image: url(http://www.jishizuche.com/img/close1.svg);
	background-size: 22px;
}

@media screen and (max-width: 1024px) {
	.popup-content .box-close {
		right: 0;
		z-index: 9;
		border-radius: 0 0 5px 5px;
		width: 35px;
		height: 26px;
		-webkit-background-size: 16px;
		background-size: 16px;
		top: auto;
		bottom: -26px;
	}
}

/* *热门租车车型* */
.indexDiv1 .upper {
	display: flex;
	justify-content: space-between;
}

.main_color {
	color: #207ba9;
}

.title>span {
	display: inline-block;
	margin-left: 20px;
}

.indexDiv1 .upper .tabs a {
	display: inline-block;
	width: 80px;
	line-height: 36px;
	background: #FFFFFF;
	border: 1px solid #EBEBEB;
	border-radius: 2px;
	text-align: center;
	font-size: 14px;
	margin: 5px;
}

.indexDiv1 .upper .tabs a:hover {
	color: #fff;
	background: #25365d;
	box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.2500);
}

.indexDiv1 .row a {
	display: block;
	background-color: #fff;
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1100);
	overflow: hidden;
	border-radius: 2px;
}

.indexDiv1 .row a:hover {
	transform: translateY(-10px);
}

.indexDiv1 .row a .text {
	padding: 20px;
}

.indexDiv1 .row a .text .title {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #f1f1f1;
	padding-bottom: 10px;
	margin-bottom: 7px;
}

.indexDiv1 .row a .text .title span {
	font-size: 18px;
	color: #000;
	margin-left: 0;
	flex: 0.8;
}

.indexDiv1 .row a .text .title strong {
	color: #FF4747;
}

.indexDiv1 .row a .text p {
	color: #666;
	font-size: 14px;
	padding: 5px 0;
}

.indexDiv1 .row a .text .btn {
	display: inline-block;
	width: 94px;
	line-height: 32px;
	background: #25365d;
	box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.2500);
	border-radius: 4px;
	font-size: 14px;
	color: #fff;
	padding: 0;
	margin-top: 30px;
	margin-bottom: 5px;
}

.coloraaa {
	color: #aaa;
}

.color686876 {
	color: ##686876;
}

/* 热门租车方案 */
.indexDiv2 {
	padding: 120px 0 60px;
	color: #fff;
}

.indexDiv2 .title strong span {
	color: #207ba9;
}

.indexDiv2 .swiper-slide a {
	display: block;
	position: relative;
	box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1700);
}

.indexDiv2 .swiper-slide a p {
	position: absolute;
	width: 100%;
	text-align: center;
	font-weight: bold;
	left: 0;
	bottom: 0;
	font-size: 24px;
	line-height: 70px;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 0 10px;
}

.indexDiv2 .swiper-button-prev {
	left: auto;
	right: 052px;
}

.indexDiv2 .swiper-button-prev,
.indexDiv2 .swiper-button-next {
	width: 36px;
	height: 36px;
	background-image: url(../images/arrow.png);
	background-size: 100%;
	top: 0;
	margin-top: -117px;
}

.indexDiv3 .right {
	width: 50%;
}

.indexDiv3 .title strong {
	display: block; 
}

.indexDiv3 .title>span {
	margin-left: 0;
}

.indexDiv3 .left {
	width: 46.2%;
}

.indexDiv3 .left .text {
	font-size: 15px;
	margin: 30px 0;
	color: #333;
	line-height:40px;
}

.indexDiv3 .left a {
	display: inline-block;
	font-size: 14px;
	color: #fff;
	width: 120px;
	line-height: 40px;
	background: #25365d;
	box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.2500);
	border-radius: 4px;
	text-align: center;
}


.section .upper {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	line-height: 1;
}

.section .upper strong {
	color: #25365d;
	font-weight: normal;
}

.section .upper a {
	font-size: 14px;
	color: #999999;
	display: block;
	margin-bottom: 5px;
}

.section .below {
	padding: 20px;
	background: #FAFAFA;
}

/* 行业资讯 */
.indexDiv4 {
	width: calc(74% - 20px);
}

.indexDiv4 .below {
	display: flex;
}

.indexDiv4 .below .imgDiv {
	width: 32.5%;
}

.indexDiv4 .below .imgDiv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.indexDiv4 .below ul {
	width: 67.5%;
	padding-left: 20px;
	margin: -16px 0;
}

.indexDiv4 ul li {
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}

.indexDiv4 ul li:last-child {
	border-bottom: none;
}

.indexDiv4 ul li a {
	display: flex;
	align-items: center;
	color: #000;
}

.indexDiv4 ul li a:hover {
	color: #207ba9;
}

.indexDiv4 ul li a .date {
	width: 80px;
	height: 80px;
	background: #EEEEEE;
	color: #999;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.indexDiv4 ul li a .date p {
	font-size: 30px;
}

.indexDiv4 ul li a .content {
	width: calc(100% - 80px);
	padding-left: 20px;
}

.indexDiv4 ul li a .content span {
	font-size: 14px;
	color: #999;
	margin-top: 10px;
}

/* 租车问答 */
.indexDiv5 {
	width: 26%;
}

.indexDiv5 .below {
	height: 460px;
}

.indexDiv5 .swiper-container {
	height: 100%;
}

.indexDiv5 .swiper-slide {
	padding: 16px 0;
	border-bottom: 1px solid #eee;
}

.indexDiv5 a p {
	position: relative;
	padding-left: 34px;
	margin-bottom: 5px;
	font-size: 16px;
	color: #000;
}
.indexDiv5 a:hover {
	color: #207ba9;
}

.indexDiv5 a p::before {
	content: "Q";
	width: 16px;
	height: 16px;
	background: #207ba9;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	position: absolute;
	left: 0;
	top: 3px;
	line-height: 16px;
	text-align: center;
}

.indexDiv5 a span {
	position: relative;
	padding-left: 34px;
	font-size: 14px;
	color: #aaa;
}

.indexDiv5 a span::before {
	content: "A";
	width: 16px;
	height: 16px;
	background: #25365d;
	border-radius: 4px;
	color: #fff;
	font-size: 12px;
	position: absolute;
	left: 0;
	top: 1px;
	line-height: 16px;
	text-align: center;
}

/* pages 翻页 */
.pages { width:100%; height:56px; line-height:56px; margin:0 auto; text-align:center; padding:10px; border-top: 0px double #f3f8fe; font-family:"MicroSoft YaHei"; font-size:14px; color:#666;}
.pages a{ font-family:"微软雅黑"; font-size:14px; color:#003399; text-decoration:none; padding:5px 10px; border:1px solid #dcdcdc;background:#fff; margin-right:6px;}
.pages a:hover{ color: #fff;background: #003399;border: 1px solid #003399;}
.pages span{font-family:"微软雅黑"; font-size:14px; color:#666; text-decoration:none; padding:5px 10px; border:1px solid #dcdcdc;background:#fff; margin-right:6px; }
.pages strong{ color:#cc0000; font-weight:500;background:#fff;}



/*底部*/

footer {
	background: #25365d;
	color: #ccc;
}

footer .upper {
	display: flex;
	justify-content: space-between;
	padding: 90px 0;
}

footer .upper ul {
	display: flex;
	margin: 0 -30px;
	width: 59%;
}

footer .upper ul li {
	width: 25%;
	padding: 0 30px;
}

footer .upper ul li strong {
	display: block;
	font-size: 18px;
	color: #fff;
	border-bottom: 1px solid rgba(201, 201, 201, 0.2);
	padding-bottom: 15px;
	margin-bottom: 15px;
}

footer .upper ul li a {
	display: block;
	font-size: 14px;
	padding: 10px 0;
}

footer .upper ul li a:hover {
	color: #fff;
}

footer .upper .code {
	padding: 0 20px;
}

footer .upper .code img {
	max-width: 153px;
}

footer .upper .code p {
	font-size: 14px;
	text-align: center;
	margin-top: 15px;
}

footer .upper .info {
	border-left: 1px solid rgba(201, 201, 201, 0.2);
	padding-left: 40px;
}

footer .upper .info .phone p {
	font-family: Impact;
	font-size: 36px;
	color: #fff;
	margin-bottom: 10px;
}

footer .upper .info>p {
	font-size: 14px;
	padding: 8px 0;
}

footer .below {
	margin: 0 -10px;
	padding-bottom: 25px;
}

footer .below span,
footer .below a {
	font-size: 12px;
	display: inline-block;
	padding: 2px 3px;
}

footer .copyright {
	font-size: 12px;
	text-align: center;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .copyright a {
	display: inline-block;
	margin-left: 10px;
}

footer .copyright a img {
	max-width: 16px;
	transform: translateY(-2px);
}

/* 右侧悬浮 */
.rightBox {
	position: fixed;
	top: 80%;
	transform: translateY(-50%);
	right: 0;
	z-index: 8;
}

.rightBox .butn {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 64px;
	height: 64px;
	background: #FFFFFF;
	box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.0800);
	border-radius: 4px;
	margin: 8px 0;
	cursor: pointer;
}

.rightBox .butn p {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
}

.rightBox .butn .mask {
	position: absolute;
	right: 100%;
	top: 0;
	min-height: 100%;
	white-space: nowrap;
	box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.2500);
	padding: 13px;
	background-color: #fff;
	transition: all 0.5s;
	border-radius: 4px;
	overflow: hidden;
	margin-right: 20px;
	visibility: hidden;
	opacity: 0;
}

.rightBox .butn .mask.code {
	padding: 0;
}

.rightBox .butn .mask.code img {
	max-width: 120px;
}

.rightBox .butn:hover .mask {
	visibility: visible;
	opacity: 1;
	margin-right: 12px;
}

.rightBox .butn .mask:hover {
	background-color: #207ba9;
}

.rightBox .butn .mask:hover a,
.rightBox .butn .mask:hover p {
	color: #fff;
}

/*列表页*/
.ny-main {
	margin-top: 64px;
}

.ny-banner {
	position: relative;
	height: 300px;
}


.breadcrumbs {
	font-size: 12px;
	background: #F7F7F7;
	padding: 20px 0;
	color: #888;

}

.breadcrumbs p {
	background: url(../images/home-icon.png)left center no-repeat;
	padding-left: 20px;
}

.img {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;

}

/*页码*/

.pageNum {
	margin-top: 60px;
	text-align: center;
}

.pageNum span,
.pageNum a {
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	background: #F1F1F1;
	border-radius: 50%;
	margin: 5px;
	font-size: 14px;
	color: #888;
}

.pageNum span,
.pageNum a:hover {
	background: #207ba9;
	color: #fff;
}

/* 租车车型    */
.car-type .content .tab {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid #EBEBEB;
}

.car-type .content .tab a {
	width: 25%;
	text-align: center;
	line-height: 46px;
	border-right: 1px solid #EBEBEB;
}

.car-type .content .tab a:nth-child(4n) {
	border: none;
}

.car-type .content .tab a:hover,
.car-type .content .tab a.active {
	color: #fff;
	background: #207ba9;
}

/* 租车车型 详情*/
.type {
	background-color: #f7f7f7;
}

.type .main .leftDiv {
	width: 280px;
}

.type .main .leftDiv h2 {
	line-height: 61px;
	color: #fff;
	font-size: 16px;
	background: #207ba9;
	padding: 0 20px;
}

.type .main .leftDiv ul {
	padding: 0 20px;
}

.type .main .leftDiv ul li a {
	display: block;
	line-height: 60px;
	font-size: 14px;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
}

.type .main .leftDiv ul li a:hover {
	color: #207ba9;
}

.type .main .leftDiv .ny_menu ul li a::before {
	content: "";
	border-left: 6px solid #bfbfbf;
	border-top: 6px solid #fff;
	border-bottom: 6px solid #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.type .main .leftDiv ul li:last-child a {
	border: none;
}

.type .main .leftDiv .newsDiv ul li a {
	line-height: 1.7;
	padding: 15px 0;
}

.type .main .rightDiv {
	width: calc(100% - 300px);
}

.type .main .rightDiv .indexDiv1 {
	padding: 0 30px;
	padding-bottom: 40px;
}

.type .main .rightDiv .upper {
	border-bottom: 1px solid #e5e5e5;
	padding: 30px 0;
	margin-bottom: 30px;
	line-height: 1;
}

.type .main .rightDiv .upper strong {
	position: relative;
	font-size: 24px;
	padding-left: 25px;
}

.type .main .rightDiv .upper strong::before {
	content: "";
	width: 4px;
	height: 20px;
	background: #207ba9;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.type .main .rightDiv .indexDiv1 .row a .text .title {
	border-bottom: none;
}

.type .main .rightDiv .indexDiv1 .row a .text .btn {
	margin-top: 5px;
}

.typeDiv1 {
	padding: 30px;
}

.typeDiv1 .left {
	width: 57%;
}

.typeDiv1 .thumbs .swiper-slide {
	border: 2px solid #fff;
}

.typeDiv1 .thumbs .swiper-slide-thumb-active {
	border: 2px solid #25365d;
}

.typeDiv1 .gallery {
	margin-bottom: 5px;
}

.typeDiv1 .left .imgWrapper {
	padding: 39% 50%;
}

.typeDiv1 .right {
	width: 38%;
}

.typeDiv1 .right .text {
	margin: 30px 0;
}

.typeDiv1 .right .text p {
	padding: 5px 0;
}

.typeDiv1 .right .hotLine {
	background: url(../images/tel.png)left bottom no-repeat;
	line-height: 1;
	font-size: 14px;
	padding-left: 25px;
	margin-top: 70px;
}

.typeDiv1 .right .hotLine a {
	font-size: 24px;
	font-family: Impact;
	color: #207ba9;
}

.typeDiv1 .right .butns {
	margin-top: 36px;
	display: flex;
}

.typeDiv1 .right .butns a {
	position: relative;
	border-radius: 4px;
	line-height: 40px;
	text-align: center;
}

.typeDiv1 .right .butns a.btn1 {
	color: #fff;
	background: #25365d;
	width: 120px;
	margin-right: 14px;
	box-shadow: 0px 0px 16px 0px rgba(130, 81, 25, 0.3000);
}

.typeDiv1 .right .butns a.btn2 {
	border: 1px solid #E6E6E6;
	text-align: center;
	font-size: 12px;
	width: 139px;
}

.typeDiv1 .right .butns a.btn2 span {
	display: inline-block;
	background: url(../images/code-icon.png) left center no-repeat;
	padding-left: 27px;
}

.typeDiv1 .right .butns a.btn2 img {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	box-shadow: 0px 0px 16px 0px rgba(113, 113, 113, 0.2400);
	top: 100%;
	margin-top: 14px;
	transition: all 0.5s;
	max-width: 120px;
	max-height: 120px;
}

.typeDiv1 .right .butns a.btn2:hover img {
	visibility: visible;
	opacity: 1;
}

.typeDiv2 {
	padding: 0 30px;
	padding-bottom: 40px;
}

/* 租车方案 */
.caseDiv1 .swiper-slide a {
	display: block;
	background: linear-gradient(0deg, #F9D48F 0%, #FEDFAA 100%);
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3000);
	border-radius: 4px;
	overflow: hidden;
}

.caseDiv1 .swiper-slide a p {
	line-height: 110px;
	font-size: 30px;
	color: #78472C;
	text-align: center;
}

.caseDiv1 .swiper-container {
	margin: -15px;
	padding: 15px;
	padding-bottom: 55px;
}


.caseDiv1 .swiper-pagination-bullet {
	width: 16px;
	height: 16px;
	background: #fff;
	opacity: 1;
	border: 1px solid #CCCCCC;
}

.caseDiv1 .swiper-pagination-bullet-active {
	background: #F9D490;
	border: 1px solid #F9D490;
}

.caseDiv1 .swiper-container-horizontal>.swiper-pagination-bullets {
	bottom: 0;
}

.caseDiv2 .row a {
	display: block;
	position: relative;
}

.caseDiv2 .row a:hover {
	transform: translateY(-10px);
}

.caseDiv2 .row a .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 20px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

.caseDiv2 .row a .text strong {
	white-space: nowrap;
	font-size: 24px;
	position: relative;
	padding-right: 16px;
	margin-right: 16px;
}

.caseDiv2 .row a .text strong::before {
	content: '';
	width: 3px;
	height: 26px;
	background: #207ba9;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.caseDiv2 .caseBtn a {
	display: flex;
	margin: 0 auto;
	width: 260px;
	height: 56px;
	background: #207ba9;
	box-shadow: 0px 6px 21px 0px rgba(0, 0, 0, 0.2500);
	border-radius: 4px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	align-items: center;
	justify-content: center;
}

.caseDiv2 .caseBtn a img {
	margin-right: 10px;
}


/* 行业资讯 */
.news .content .tab a {
	width: 50%;
	border: none;
}

.news .content .row {
	margin: -30px;
}

.news .content .row>div {
	padding: 30px;
	overflow: hidden;
}

.news .content .row a {
	display: block;
	box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1000);
	display: flex;
	height: 150px;
	align-items: center;
	width: calc(100% - 22px);
	float: right;
}

.news .content .row a .date {
	transition: all 0.5s;
	width: 108px;
	height: 129px;
	background: #25365d;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	transform: translate(-22px, -25px);
}

.news .content .row a:hover .date {
	background: #207ba9;
}

.news .content .row a .text {
	width: calc(100% - 108px);
	padding-left: 5px;
	padding-right: 30px;
}

.news .content .row a .text p {
	font-size: 20px;
	margin-bottom: 10px;
}

.news .content .row a .text span {
	font-size: 12px;
	color: #888;
}

/* 新闻详情 */
.news_detail .content .leftDiv,
.news_detail .content .below {
	width: 77%;
}

.news_detail .content .leftDiv {
	font-size: 16px;
	line-height: 1.8;
}

.news_detail .content .leftDiv .title {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.news_detail .content .leftDiv .title h2 {
	font-size: 30px;
}

.news_detail .content .leftDiv .title p {
	color: #999;
	padding: 10px 0;
	font-size: 14px;
}

.news_detail .content .leftDiv .fanhui a {
	display: flex;
	height: 56px;
	align-items: center;
	justify-content: center;
	background: #F9F9F9;
	color: #666;
	margin: 50px 0;
}

.news_detail .content .leftDiv .fanhui a img {
	width: 20px;
	margin-right: 10px;
}





.news_detail .content .rightDiv {
	width: 20%;
}

.news_detail .content .rightDiv .title {
	font-size: 18px;
	padding-bottom: 20px;
}

.news_detail .content .rightDiv .title strong {
	position: relative;
	padding-left: 20px;
}

.news_detail .content .rightDiv .title strong::before {
	content: "";
	width: 5px;
	height: 18px;
	background: #207ba9;
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.news_detail .content .rightDiv ul li a {
	display: block;
	font-size: 14px;
	border-top: 1px solid #eee;
	padding: 20px 0;
}

.news_detail .content .rightDiv ul li a:hover {
	color: #FF4747;
}

.news_detail .content .rightDiv ul li a span {
	font-size: 12px;
	color: #999;
	display: block;
	margin-top: 8px;
}

.news_detail .content .below .title {
	border-bottom: 1px solid #eee;
	font-size: 24px;
	margin-bottom: 60px;
	padding: 15px 0;
}

.news_detail .content .below .title strong {
	position: relative;
	padding-left: 15px;
}

.news_detail .content .below .title strong::before {
	content: "";
	width: 3px;
	height: 20px;
	background: #25365d;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/* 关于我们 */
.abDiv1 .rightDiv {
	width: 34%;
	box-shadow: 10px 13px 0 #e5e8f2;
}

.color0F3285 {
	color: #25365d;
}

.abDiv1 .leftDiv {
	width: 60%;
}

.abDiv1 .leftDiv .text p {
	padding: 10px 0;
	color: #333;
	line-height: 2.2;
}

.opacity60 {
	opacity: 0.6;
}

.abDiv2 ul {
	display: flex;
	margin: -15px;
}

.abDiv2 ul li {
	text-align: center;
	color: #fff;
	font-size: 12px;
	padding: 15px;
	position: relative;
}

.abDiv2 ul li::before {
	content: "";
	width: 30%;
	height: 1px;
	background: #FFFFFF;
	position: absolute;
	top: 62px;
	left: 85%;
}

.abDiv2 ul li:last-child::before {
	width: 0;
}

.abDiv2 ul li img {
	max-width: 93px;
	transition: all 0.5s;
}

.abDiv2 ul li:hover img {
	transform: translateY(-10px);
}

.abDiv2 ul li h2 {
	font-size: 20px;
	margin: 20px 0 25px;
}

.abDiv2 ul li p {
	opacity: 0.8;
}

.abDiv3 .row {
	margin: -40px;
}

.abDiv3 .row>div {
	padding: 40px;
}

.abDiv3 .content {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	color: #fff;
	font-size: 14px;
	transition: all 0.5s;
}

.abDiv3 .content:hover {
	transform: translateY(-10px);
}

.abDiv3 .content .text {
	position: absolute;
	width: 100%;
	bottom: 0;
	padding: 20px 24px;
}

.abDiv3 .content .text strong {
	font-size: 20px;
	display: block;
	margin-bottom: 10px;
}

/* 联系我们 */
.conDiv1,
.conDiv2 {
	box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1000);
}

.conDiv1 .leftDiv ul {
	margin: -15px 0;
}

.conDiv1 .leftDiv ul li {
	padding: 15px 0;
	padding-left: 60px;
}

.conDiv1 .leftDiv .phone {
	background: url(../images/con-icon1.png)left center no-repeat;
}

.conDiv1 .leftDiv .tel {
	background: url(../images/con-icon2.png)left center no-repeat;
}

.conDiv1 .leftDiv .email {
	background: url(../images/con-icon3.png)left center no-repeat;
}

.conDiv1 .leftDiv .add {
	background: url(../images/con-icon4.png)left center no-repeat;
}

.conDiv1 .leftDiv .code {
	padding-left: 0;
}

.conDiv1 .leftDiv .code img {
	max-width: 130px;
}

.conDiv1 .leftDiv ul li span {
	font-size: 14px;
	display: block;
	color: #999;
}

.conDiv1 .leftDiv ul li p {
	font-weight: bold;
	color: #3E4A5D;
	margin-top: 5px;
}

.conDiv1 .leftDiv {
	width: 35%;
}

.conDiv1 .rightDiv {
	width: 60%;
}

.conDiv1 .rightDiv ul {
	margin: -10px 0;
}

.conDiv1 .rightDiv ul li {
	padding: 10px 0;
	position: relative;
}

.conDiv1 .rightDiv ul li #canvas {
	position: absolute;
	right: 0;
	top: 10px;
}

.conDiv1 .rightDiv ul li.hasCanvas input {
	padding-right: 140px;
}

.conDiv1 {
	padding: 60px;
}

.conDiv1 input,
.conDiv1 textarea,
.conDiv1 button {
	display: block;
	width: 100%;
	border: none;
	background: #F7F7F7;
	font-size: 14px;
}

.conDiv1 input {
	height: 50px;
	padding: 0 20px;
}

.conDiv1 textarea {
	height: 180px;
	padding: 20px;
}

.conDiv1 button {
	line-height: 60px;
	color: #fff;
	font-size: 18px;
	background: #25365d;
}

.conDiv2 {
	padding: 25px;
	height: 570px;
	margin-top: 50px;
}

/*笔记本*/

@media all and (max-width:1280px) {
	.ui-homebanner .swiper-slide .img {
		height: 430px;
	}

}

@media all and (max-width:1024px) {
	.indexDiv2 .swiper-slide a p {
		font-size: 20px;
		line-height: 55px;
	}

	footer .upper ul li {
		padding: 0 20px;
	}
}

@media all and (max-width:992px) {
	header {
		position: fixed;
	}

	header .upper {
		height: 60px;
	}

	header .logo a img {
		max-height: 26px;
	}

	.menu ul {
		width: 100%;
		display: block;
		float: none;
	}

	.menu>ul>li>ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0;
		top: 0;
		border: 0;
		background: #fff;
		border-bottom: none;
		padding: 0;
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		display: none;
	}

	.menu>ul>li.has-sub::before {
		right: 28px;
		top: 28px;
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(0, 0, 0, .1)
	}

	.menu ul li:last-child {
		border-bottom: 1px solid rgba(0, 0, 0, .1)
	}

	.menu ul ul ul li a {
		padding-left: 40px
	}

	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		display: block;
		border-left: 1px solid rgba(0, 0, 0, .1);
		height: 60px;
		width: 60px;
		cursor: pointer
	}



	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 2px;
		height: 12px;
		background: #333;
		z-index: 99
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 12px;
		height: 2px;
		background: #333;
		z-index: 99
	}

	.menu .on .submenu-button::before,
	.menu .on .submenu-button::after {
		background-color: #fff;
	}

	.menu .has-sub:hover>ul {
		left: 0;
		margin-left: 0;
		top: 0;
		transform: translateX(0);
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	header .upper .tel {
		margin-right: 60px;
	}

	header .upper .tel h2 {
		font-size: 18px;
	}

	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 1;
	}

	header .rightDiv .menu {
		width: 100%;
		float: right;
		position: fixed;
		top: 60px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: #fff;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		overflow-y: auto;
	}

	header .rightDiv .menu ul li {
		padding: 0;
		margin: 0;
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 60px;
		height: 60px;
		text-align: left;
		font-size: 16px;
		padding: 0 20px;
	}

	header .rightDiv .menu ul ul li a {
		padding: 0 40px;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	header .rightDiv {
		color: #333;
	}

	header .rightDiv .menu>ul>li.on>a,
	header .rightDiv .menu>ul>li:hover>a {
		color: #fff;
	}

	.ui-homebanner,
	.ny-main {
		margin-top: 60px;
	}

	.ui-homebanner .swiper-slide .img {
		height: 320px;
	}

	.indexDiv1 .row a .text .title {
		display: block;
	}

	.indexDiv1 .row a .text .title strong {
		display: block;
	}

	.indexDiv4 .below .imgDiv {
		display: none;
	}

	.indexDiv4 .below ul {
		width: 100%;
		padding-left: 0;
	}

	.indexDiv4 {
		width: calc(60% - 10px);
	}

	.indexDiv5 {
		width: 40%;
	}

	footer .upper ul {
		display: none;
	}

	.indexDiv1 .upper {
		display: block;
	}

	.indexDiv1 .upper .tabs {
		margin: 0 -5px;
		margin-top: 20px;
	}

	html,
	body {
		font-size: 14px;
	}

	.indexDiv1 .row a .text .title span {
		white-space: inherit;
	}

	.ny-banner {
		height: 266px;
	}

	.caseDiv2 .row a .text strong {
		font-size: 16px;
		padding-right: 10px;
		margin-right: 16px;
	}

	.caseDiv1 .swiper-slide a p {
		line-height: 64px;
		font-size: 20px;
	}

	.news .content .row a .date {
		width: 90px;
		height: 110px;
	}

	.news .content .row a .text {
		width: calc(100% - 90px);
		padding-left: 0;
		padding-right: 20px;
	}

	.news .content .row a {
		height: 130px;
	}

	.news .content .row a .text p {
		font-size: 18px;
		margin-bottom: 7px;
	}

	.news .content .row {
		margin: -22px;
	}

	.news .content .row>div {
		padding: 22px;
	}

	.news_detail .content .leftDiv,
	.news_detail .content .below {
		width: 100%;
	}

	.news_detail .content .rightDiv {
		width: 100%;
	}
}


/*手机端*/

@media (max-width:767px) {
	.ui-homebanner .swiper-slide .img {
		height: 160px;
	}

	.ui-homebanner .swiper-pagination-bullet {
		width: 7px;
		height: 7px;
		margin: 0 3px;
	}

	.ui-homebanner .swiper-pagination-bullet-active {
		width: 20px;
	}

	.ui-homebanner .swiper-container-horizontal>.swiper-pagination-bullets {
		bottom: 5px;
	}

	.indexDiv1 .upper .tabs {
		display: flex;
	}

	.row.row15 {
		margin: -8px;
	}

	.row.row15>div {
		padding: 8px;
	}

	.indexDiv1 .row a img {
		width: 100%;
	}

	.indexDiv1 .row a .text p {
		display: none;
	}

	.indexDiv1 .row a .text {
		padding: 13px;
	}

	.indexDiv1 .row a .text .title {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.indexDiv1 .row a .text .title span {
		font-size: 16px;
	}

	.indexDiv2 {
		padding: 50px 0 100px;
		background-size: cover !important;
	}

	.indexDiv2 .swiper-button-prev,
	.indexDiv2 .swiper-button-next {
		top: 100%;
		margin-top: 30px;
	}

	.indexDiv2 .swiper-button-prev {
		width: 30px;
		left: 50%;
		right: auto;
		margin-left: -40px;
	}

	.indexDiv2 .swiper-button-next {
		width: 30px;
		right: 50%;
		margin-right: -40px;
	}

	.indexDiv3 .left {
		width: 100%;
	}

	.indexDiv3 .right {
		width: 100%;
		margin-top: 20px;
	}

	.indexDiv4,
	.indexDiv5 {
		width: 100%;
		padding: 20px 0;
	}

	.section .below {
		padding: 15px;
	}

	footer .upper {
		padding: 60px 0;
		flex-direction: column;
		align-items: center;
	}

	/* footer .upper .code {
		text-align: center;
	}
 */
	footer .upper .info {
		padding: 0;
		border: none;
		border-top: 1px solid rgba(201, 201, 201, 0.2);
		padding-top: 20px;
		margin-top: 20px;
		margin-bottom: -20px;
	}

	footer .upper .code img {
		max-width: 130px;
	}

	footer .copyright .fl,
	footer .copyright .fr {
		width: 100%;
	}

	header .upper .logo {
		width:70%;
	}
	header .upper .tel {
		background-size: 35px;
		padding-left: 45px;
		display:none;
	}

	.caseDiv1 .swiper-slide a p {
		line-height: 50px;
		font-size: 16px;
	}

	.caseDiv1 .swiper-slide a {
		box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 30%);
	}

	.caseDiv1 .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.mb20 {
		margin-bottom: 7px;
	}

	.caseDiv2 .row {
		margin: -10px;
	}

	.caseDiv2 .row>div {
		padding: 10px;
	}

	.ny-banner {
		height: 170px;
	}

	.car-type .content .tab a {
		line-height: 40px;
	}

	.news_detail .content .leftDiv .title h2 {
		font-size: 20px;
	}

	.abDiv1 .leftDiv {
		width: 100%;
	}

	.abDiv1 .rightDiv {
		width: 100%;
		margin-top: 20px;
	}

	.abDiv3 .row {
		margin: -10px;
	}

	.abDiv3 .row>div {
		padding: 10px;
	}

	.abDiv3 .content .text {
		padding: 14px;
	}

	.abDiv3 .content .text strong {
		font-size: 16px;
	}

	.abDiv2 ul {
		display: block;
	}

	.abDiv2 ul li {
		display: flex;
		align-items: center;
	}

	.abDiv2 ul li img {
		max-width: 66px;
	}

	.abDiv2 ul li .text {
		text-align: left;
		padding-left: 15px;
	}

	.abDiv2 ul li h2 {
		font-size: 16px;
		margin: 0px 0 10px;
	}

	.abDiv2 ul li::before {
		width: 1px;
		height: 15px;
		top: 93px;
		left: 48px;
	}

	.conDiv2 {
		padding: 10px;
		height: 310px;
	}

	.conDiv1 .leftDiv {
		width: 100%;
		margin-bottom: 50px;
	}

	.conDiv1 {
		padding: 25px;
	}

	.conDiv1 .rightDiv {
		width: 100%;
	}

	.conDiv1 .leftDiv ul li {
		padding: 10px 0;
		padding-left: 60px;
	}

	.type .main .leftDiv {
		width: 100%;
	}

	.type .main .leftDiv .newsDiv {
		display: none;
	}

	.type .main .rightDiv {
		width: 100%;
	}

	.typeDiv1 .left {
		width: 100%;
	}

	.typeDiv1 .right {
		width: 100%;
	}

	.typeDiv1 .right .text {
		margin: 20px 0;
	}

	.typeDiv1 .right .hotLine {
		margin-top: 55px;
	}

	.type .main .rightDiv .upper strong {
		position: relative;
		font-size: 18px;
		padding-left: 20px;
	}

	.type .main .rightDiv .upper {
		padding: 20px 0;
		margin-bottom: 20px;
	}

	.typeDiv2,
	.type .main .rightDiv .indexDiv1 {
		padding: 0 20px;
		padding-bottom: 30px;
	}

	.type .main .leftDiv ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.type .main .leftDiv ul li {
		width: 45%;
	}

	.type .main .leftDiv ul li:nth-last-child(2) a {
		border: none;
	}
	
	/* 右侧悬浮 */
.rightBox {
	top: 90%;
	transform: translateY(-90%);
}



}
