/* 全局样式 */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

}



.section {
	text-align: center;
}
.scale150{
	scale: 65%;
	margin-top: -7vh;
}
:root {
	--llzc-color1: #2855AA;
	--llzc-color2: #50BE5A;
	--llzc-red: #ED3F3F;
}

body {
	color: #333;
	overflow-x: hidden;
}

ol,
ul {
	list-style-type: none;
}

a {
	text-decoration: none;
}

/* 各section背景 */
#slide1 {
	background: url(https://zqimg.browin.net.cn/web/banner_1.jpg) no-repeat center center;
	background-size: cover;
}

#slide2 {
	background: url(https://zqimg.browin.net.cn/web/banner_2.jpg) no-repeat center center;
	background-size: cover;
}
#slide3 {
	background: url(https://zqimg.browin.net.cn/web/banner_3.jpg) no-repeat center center;
	background-size: cover;
}

#section2 {
	background: url(https://zqimg.browin.net.cn/web/home_2.jpg) no-repeat;
	background-size: cover;
}

#section3 {
	background: url(https://zqimg.browin.net.cn/web/home_3.jpg) no-repeat;
	background-size: cover;
}

#section4 {
	background: linear-gradient( 180deg, #DDEEFF 0%, #FCFEFF 100%);
}

#section5 {
	background: url(https://zqimg.browin.net.cn/web/home_5.jpg) no-repeat;
	background-size: cover;
}

/* 导航栏 */
.header {
	width: 100%;
	height: auto;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(40, 85, 170, 0) 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1991620;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.header_logo {
	width: 12vh;
	margin-left: 5vw;
}

.header ul {
	float: right;
	width: auto;
	height: auto;
	overflow: hidden;
	margin-right: 5vw;
}

.header ul li {
	float: left;
	padding: 24px 20px;
	text-align: center;

}

.header ul li a {
	text-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	font-size: 1.6vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
}

.header_menu_btn{
	display: none;
}
#call{
	display: none;
}
/* 内容容器 */
.content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-left: 5vw;
}

.content h1 {
	font-size: 50px;
	margin-bottom: 10px;
	color: white;
	letter-spacing: 3px;
	opacity: 0;
	position: relative;
	top: 12px;
}

.active .content h1 {
	top: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}

.content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: white;
}

.content p {
	font-size: 20px;
	font-weight: lighter;
	line-height: 1.6;
	letter-spacing: 3px;
	margin-bottom: 60px;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	top: 12px;
	opacity: 0;
}

.active .content p {
	top: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.7s;
}

.btn,.btn2 {
	display: inline-block;
	padding: 15px 40px;
	background-color: var(--llzc-color1);
	border-radius: 6px;
	color: #fff;
	font-size: 17px;
	transition: all .3s;
}
.btn2{
	width: 152px;
	height: 50px;
	margin: 0 auto;
	font-size: 14px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn:hover,.btn2:hover{
	background-color: #153A80;
	box-shadow: rgba(0, 0, 0, 0.100);
}

.btn_active {
	position: relative;
	top: 12px;
	opacity: 0;
}

.active .btn_active {
	top: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.9s;
}

/* 第二屏 */
.home-title {
	width: 1200px;
	margin: 0 auto;
	font-size: 34px;
	color: #333;
	opacity: 0;
	position: relative;
	top: 10vh;
}

.active .home-title {
	top: 4vh;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home2-content{
	position: relative;
	left: 0;
	right: 0;
	margin: 0 auto;
	margin-top: 8vh;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 1200px;
	height: 640px;
}
.home2-content-left{
	position: relative;
	left: -30px;
	width: 640px;
	height: 100%;
	overflow: hidden;
	padding: 30px;
	background: linear-gradient( 180deg, #E8F6FF 0%, #FFFFFF 100%);
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.active .home2-content-left{
	left: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home2-content-right{
	position: relative;
	right: -30px;
	width: 540px;
	height: 100%;
	overflow: hidden;
	padding: 30px;
	background: linear-gradient( 180deg, #E4FCE7 0%, #FFFFFF 100%);
	opacity: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.active .home2-content-right{
	right: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home2-title{
	width: 100%;
	border-bottom: solid 1px var(--llzc-color1);
	text-align: start;
}
.home2-title b{
	display: inline-block;
	font-size: 26px;
	color: var(--llzc-color1);
	padding-bottom: 12px;
	border-bottom: solid 6px var(--llzc-color1);
}
.home2-title2{
	border-bottom: solid 1px var(--llzc-color2);
}
.home2-title2 b{
	color: var(--llzc-color2);
	border-bottom: solid 6px var(--llzc-color2);
}
.home2-text1{
	text-align: start;
	margin-top: 30px;
}
.home2-text1 b{
	font-size: 19px;
	color: #333;
}
.home2-text1 p{
	font-size: 14px;
	color: #666;
	margin-top: 4px;
}
.car-icon-list{
	margin-top: 30px;
	width: 100%;
	height: 70%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	grid-gap: 20px;
}
.car-icon1::after,.car-icon2::after,.car-icon3::after,.car-icon4::after{
	font-size: 26px;
	font-weight: bold;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(9, 33, 80, 0.60);
	width: 100%;
	height: 0;
	overflow: hidden;
	transition: all .3s;
}
.car-icon1:hover::after,.car-icon2:hover::after,.car-icon3:hover::after,.car-icon4:hover::after{
	height: 100%;
	transition: all .3s;
}
.car-icon1::after{
	content: "平板";
}
.car-icon2::after{
	content: "箱货";
}
.car-icon3::after{
	content: "冷藏";
}
.car-icon4::after{
	content: "高栏";
}
.car-icon1{
	background: url(https://zqimg.browin.net.cn/web/car_icon1.png)no-repeat center center;
	background-size: cover;
	cursor: pointer;
}
.car-icon2{
	background: url(https://zqimg.browin.net.cn/web/car_icon2.png)no-repeat center center;
	background-size: cover;
	cursor: pointer;
}
.car-icon3{
	background: url(https://zqimg.browin.net.cn/web/car_icon3.png)no-repeat center center;
	background-size: cover;
	cursor: pointer;
}
.car-icon4{
	background: url(https://zqimg.browin.net.cn/web/car_icon4.png)no-repeat center center;
	background-size: cover;
	cursor: pointer;
}
.home2-plan-list{
	display: grid;
	grid-template-rows: repeat(5,1fr);
	grid-gap: 12px;
	margin-top: 30px;
	height: 85%;
}
.home2-plan-list-box{
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: start;
	padding: 12px 16px;
	background-color: #fff;
	border: solid 1px #D1EFD5;
	cursor: pointer;
	transition: all .3s;
}
.home2-plan-list-box:hover{
	background-color: #F6FFF8;
	transition: all .3s;
}
.home2-plan-list-box img{
	width: 48px;
	height: 48px;
}
.home2-plan-box{
	display: flex;
	flex-direction: column;
	align-items: start;
	margin-left: 10px;
}
.home2-plan-box b{
	font-size: 17px;
	color: #333;
}
.home2-plan-box p{
	font-size: 13px;
	color: #999;
	margin-top: 2px;
}


/*第三屏*/
.home3-content{
	width: 1200px;
	margin: 0 auto;
	margin-top:4vh;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 16px;
	opacity: 0;
}
.active .home3-content{
	margin-top: 8vh;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home3-content-box{
	padding: 14px;
	background: #fff;
	display: flex;
	flex-direction: column;
	text-align: start;
	position: relative;
	top: 0;
	cursor: pointer;
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.1);
	transition: all .3s;
}
.home3-content-box:hover{
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.05);
	top: -8px;
	transition: all .3s;
}
.home3-content-box img{
	width: 100%;
	height: 220px;
	object-fit: cover;
}
.home3-content-box b{
	font-size: 20px;
	color: #333;
}
.home3-content-bottom{
	margin-top: 20px;
}
.home3-content-text{
	font-size: 13px;
	color: #666;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: start;
	margin-top: 12px;
}
.home3-content-text p{
	width: 95%;
}
.home3-content-text span{
	display: block;
	width: 16px;
	height: 16px;
	background: var(--llzc-color1);
	border-radius: 50%;
	border: solid 4px #D4DDEE;
	box-sizing: border-box;
	margin-right: 6px;
}



/*第四屏*/
.home4-content{
	width: 1200px;
	margin: 0 auto;
	margin-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
}
.active .home4-content{
	margin-top: 4vh;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home4-title{
	width: 100%;
	font-size: 20px;
	color: #333;
	text-align: start;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 5vh;
}
.home4-title p{
	margin: 0 20px 0 20px;
}
.home4-title img:nth-child(1){
	width: 120px;
	display: block;
}
.home4-title img:nth-child(3){
	width: 120px;
	display: block;
	transform: rotate(180deg);
}
.home4-list1{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(10,1fr);
	grid-gap: 2vw;
	margin-top: 4vh;
	font-size: 16px;
}

.home4-list1-box{
	width: 100%;
	text-wrap: nowrap;
	position: relative;
	top: 0;
	transition: all .3s;
	cursor: pointer;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.home4-list1-box:hover{
	top: -8px;
	transition: all .3s;
}
.home4-list1-box img{
	display: block;
	width: 64px;
	height: 64px;
	margin-bottom: 6px;
}
.home4-list2{
	width: 100%;
	margin-top: 4vh;
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 24px;
}

.home4-list2-box{
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 20px;
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.1);
	cursor: pointer;
	transition: all .3s;
	position: relative;
	top: 0;
}
.home4-list2-top{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.home4-list2-box:hover{
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.05);
	top: -8px;
	transition: all .3s;
}
.home4-list2-box img{
	display: block;
	width: 56px;
	height: 56px;
}

.home4-list2-box hr{
	width: 80px;
	height: 1px;
	border: none;
	margin: 20px 0;
	background: linear-gradient( 90deg, rgba(170,188,221,0) 0%, #AABCDD 50%, rgba(170,188,221,0) 100%);
}
.home4-list2-top-text b{
	font-size: 20px;
	color: #333;
	display: block;
	margin: 10px 0;
}
.home4-list2-top-text p:nth-child(2){
	font-size: 15px;
	color: #666;
}
.home4-list2-box p{
	font-size: 13px;
	color: #999;
	text-align: start;
	line-height: 160%;
}



/*第五屏*/
.home5-content{
	margin-top: 4vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.active .home5-content{
	margin-top: 8vh;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
}
.home5-tabs{
	display: flex;
	flex-direction: row;
}
.home5-tabs-box{
	padding: 12px 28px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 15px;
	border-radius: 6px;
	border: solid 1px rgba(255, 255, 255, .1);
	margin: 0 8px;
	cursor: pointer;
}
.home5-tabs-box img{
	width: 24px;
	height: 24px;
	display: block;
	margin-right: 10px;
}
.tab-select1{
	background: var(--llzc-color1);
}
.home5-tab-box{
	width: 620px;
	display: none;
}
.home5-tab-box input,.home5-tab-box textarea{
	background: rgba(255, 255, 255, 0.2);
	border: solid 1px rgba(255, 255, 255, .1);
	color: #fff;
}
.home5-tab-box input::placeholder,.home5-tab-box textarea::placeholder{
	color: rgba(255, 255, 255, 0.7);
}
.top-oselect{
	width: 48.5%;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border: solid 1px rgba(255, 255, 255, .1);
	border-radius: 6px;
	padding-left: 16px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 15px;
}
.show{
	display: block;
}
.top-oselect option{
	color: #333;
}
.home5-title2{
	font-size: 24px;
	color: #fff;
	margin-top: 3vh;
}
.home5-list1{
	display: flex;
	flex-direction: row;
	margin-top: 3vh;
}
.home5-list1-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.home5-list1-box p{
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 1.5vh;
	text-wrap: nowrap;
}
.home5-list1-box img{
	width: 52px;
	height: 52px;
	display: block;
	transition: all .6s;
}
.home5-list1-box img:hover{
	transform: rotateY(180deg);
	transition: all .6s;
}
.home5-row-icon{
	width: 20px;
	height: 20px;
	margin: 20px;
}





/*底部*/
.footer,.footer2{
	width: 100%;
	height: 8vh;
	background: #091C3F;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
}
.footer{
	position: absolute;
	bottom: -8vh;
	opacity: 0;
}
.active .footer{
	bottom: 0;
	opacity: 1;
	transition-duration: 0.5s;
	transition-delay: 0.5s;
} 
.footer-left{
	width:12vh;
}
.footer-center{
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 1.4vh;
	white-space: nowrap;
}
.footer-center-content{
	display: flex;
	align-items: center;
	margin-left: 1.5vw;
}
.footer-center-content img{
	width: 1.8vh;
	height: 1.8vh;
	margin-right: 4px;
}
.footer-right{
	display: flex;
	align-items: center;
}
.footer-right img{
	width: 4vh;
	height: 4vh;
}
.footer-phone{
	display: flex;
	flex-direction: column;
	align-items: start;
	color: #fff;
	margin-left: 10px;
}
.footer-phone p{
	font-size: 1.5vh;
}
.footer-phone b{
	font-size: 2.2vh;
}

/*------------------------------------------车型介绍页------------------------------------------*/

.top-box1{
	background: url(https://zqimg.browin.net.cn/web/top1.jpg)no-repeat;
	background-size: cover;
}
.top-box2{
	background: url(https://zqimg.browin.net.cn/web/top2.jpg)no-repeat;
	background-size: cover;
}
.top-box3{
	background: url(https://zqimg.browin.net.cn/web/top3.jpg)no-repeat;
	background-size: cover;
}
.top-box4{
	background: url(https://zqimg.browin.net.cn/web/top4.jpg)no-repeat;
	background-size: cover;
}
.top-box{
	width: 100%;
	height: 40vh;
	display: flex;
	align-items: center;
}
.top-img-text{
	color: #fff;
	margin-left: 5vw;
}
.top-img-text b{
	font-size: 40px;
}
.top-img-text p{
	font-size: 16px;
	font-weight: lighter;
}
.top-tabs{
	width: 100%;
	height: 64px;
	background: #f6f6f6;
	border-bottom: solid 1px #eee;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
}
.top-tabs-left{
	color: #999;
	display: flex;
	flex-direction: row;
	margin-left: 5vw;
	font-size: 15px;
}
.top-tabs-left a:visited,.top-tabs-right a{
	color: #999;
}
.top-tabs-right{
	font-size: 15px;
	margin-right: 5vw;
	display: flex;
	color: #666;
}
.top-tabs-right a {
	color: #333;
	margin-left: 30px;
	cursor: pointer;
	text-wrap: nowrap;
}
.top-tabs-select,.home-tab-select{
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #333;
	font-weight: bold;
}
.top-tabs-select::after,.home-tab-select::after{
	display: block;
	width: 34px;
	height: 6px;
	background: var(--llzc-color1);
	content: "";
	position: relative;
	top: 8px;
}
.home-tab-select::after{
	display: block;
	width: 16px;
	height: 4px;
	background: var(--llzc-color1);
	content: "";
	position: relative;
	top: 8px;
}
.car-Introduction-box{
	width: 100%;
	display: flex;
	flex-direction: column;
	color: #333;
	margin-bottom: 100px;
	background: linear-gradient( 180deg, #DDEEFF 0%, #FCFEFF 100%);
	padding: 5vw;
}
.car-Introduction-box b:nth-child(1),.cooperation-title{
	font-size: 36px;
	padding-bottom: 20px;
	border-bottom: solid 1px #D6E2F7;
}
.car-Introduction-box b:nth-child(2){
	font-size: 24px;
	margin-top: 20px;
}
.car-Introduction{
	width: 100%;
	margin-top: 20px;
}
.car-Introduction-left{
	font-size: 15px;
	float: left;
}
.Introduction-text{
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.Introduction-text p:nth-child(1){
	color: #999;
	width: 140px;
}
.Introduction-text p:nth-child(2){
	color: #999;
	max-width: 500px;
}
.car-Introduction img{
	width: 56vh;
	float: right;
}
.footer2{
	bottom: 0;
	opacity: 1;
}

/*------------------------------------------加盟合作------------------------------------------*/
.cooperation-box{
	width: 1200px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 100px;
}
.o-input{
	display: flex;
	justify-content: space-between;
	margin-bottom: 2vh;
	margin-top: 2vh;
}
.o-input input,.contact-input{
	width: 48.5%;
	height: 50px;
	border: solid 1px #e5e5e5;
	border-radius: 6px;
	padding-left: 16px;
	color: #333;
	font-size: 15px;
}
.o-textarea,.contact-textarea{
	width: 100%;
	height: 110px;
	border: solid 1px #e5e5e5;
	border-radius: 6px;
	padding: 16px;
	color: #333;
	font-size: 15px;
}






/*------------------------------------------关于我们------------------------------------------*/

.about-box{
	width: 100%;
	height: 56vh;
	background: url(https://zqimg.browin.net.cn/web/about.jpg)no-repeat center center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
}
.about-box-content{
	width: 1200px;
	margin: 0 auto;
}
.about-box-text1{
	color: var(--llzc-color1);
}
.about-box-text1 b{
	font-size: 34px;
}
.about-box-text1 p{
	font-size: 18px;
	‌text-transform: uppercase;
}
.about-box-text2{
	font-size: 14px;
	color: #666;
	margin-top: 20px;
	width: 50%;
}
.about-box-content2{
	display: flex;
	flex-direction: row;
	margin-top: 80px;
	width: 50%;
}
.about-box-icon{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 22%;
	margin-right: 40px;
	text-align: center;
}
.about-box-icon img{
	width: 56px;
	height: 56px;
}
.about-box-icon b{
	font-size: 18px;
	margin-top: 10px;
}
.about-box-icon p{
	font-size: 13px;
	margin-top: 2px;
	color: #666;
}
.advantage{
	width: 1200px;
	margin: 0 auto;
	padding-top: 40px;
}
.contact-box{
	width: 1200px;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 100px;
	display: flex;
	justify-content: space-between;
	align-items: end;
}
.contact-left{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.contact-left1{
	padding-bottom: 20px;
	border-bottom: solid 1px #e5e5e5;
}
.contact-left2{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}
.contact-left1 b{
	border: none;
	font-size: 28px;
}
.contact-left1 p{
	font-size: 28px;
	color: #999;
	font-weight: lighter;
}
.contact-type{
	display: flex;
	align-items: center;
	margin-top: 20px;
}
.contact-type img{
	width: 44px;
	margin-right: 10px;
}
.contact-type p{
	font-size: 16px;
	color: #999;
}
.contact-type b{
	font-size: 20px;
	color: #333;
}
.contact-left-box{
	width: 47%;
	display: flex;
	flex-direction: column;
}
.contact-right-box{
	width: 47%;
	display: flex;
	flex-direction: column;
}
.contact-input{
	margin-bottom: 12px;
	width: 100%;
}
.job-list{
	width: 100%;
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 40px 0;
}
#join{
	background: #f6f6f6;
	padding: 40px 0;
	margin-top: 100px;
}
.join-box{
	width: 1200px;
	margin: 0 auto;
}
.job-box{
	background: #fff;
	padding: 20px;
	border-radius: 6px;
	position: relative;
	transition: all .3s;
	top: 0;
	cursor: pointer;
}
.job-box:hover{
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.05);
	top: -4px;
	transition: all .3s;
}
.job-top{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.job-top b:nth-child(1){
	font-size: 20px;
	color: #333;
}
.job-top b:nth-child(2){
	font-size: 20px;
	color: var(--llzc-red);
}
.job-top span{
	font-size: 13px;
	font-weight: lighter;
}
.job-center,.job-bottom{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 15px;
	margin-top: 12px;
}
.job-center span{
	color: #333;
	margin-right: 16px;
}
.job-bottom p{
	color: #666;
}
.job-center img,.job-bottom img{
	width: 20px;
	height: 20px;
	margin-right: 6px;
}