:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #888;
	--gray-light: #999;
    --gray-dark: #666;
    /* --primary: #11754f; */
	--primary: #00A692;
    --primary-gray: #509d7d;
    --primary-dark: #024a2f;
    --secondary: #cdb03d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f4f4f4;
    --light-b: #f8f9fa;
    --dark: #363636;
    --black: #000;
    --rgb-white: 255,255,255;
    --rgb-primary: 17,117,79;
    --rgb-primary-dark: 2,74,47;
    --rgb-dark: 54,54,54;
    --rgb-black: 0,0,0;
    --rgb-gray: 134,134,134;
    --rgb-secondary: 205,176,61;
    --breakpoint-xs: 0;
}

* {
  padding: 0;
  margin: 0;
}

a{
	color: var(--dark);
    text-decoration: none;
}
a:hover{
	color: var(--primary);
    text-decoration: none;
}

li {
  list-style: none;
}

p,li,ul{
	padding: 0;
	margin: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

body{
	font-family: "微软雅黑", Microsoft YaHei, PingFang SC, Heiti SC, tahoma, arial, Hiragino Sans GB, sans-serif;
	font-size: 16px !important;
	font-weight: 400;
	color: var(--dark);
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-ms-user-select: none;
}


._pc{
	display: none;
}
._web{
	display: block;
}
@media (min-width: 992px){
	._pc{
		display: block;
	}
	._web{
		display: none;
	}
}

/* .col-auto{
	flex-basis: 0;
	flex-grow: 1;
	min-width: 0;
	max-width: 100%;
} */

.mb-distance {
  margin-bottom: 20px;
}

/* 标题 */
.x-home-block .x-home-title-wrap{
	text-align: center;
}
.x-home-block .x-home-title-wrap .title{
	margin-bottom: 5px;
}
.x-home-title-wrap{
	margin-bottom: 10px;
}
.x-home-title-wrap .title{
	font-size: 22px;
	font-weight: 500;
}
.x-home-title-wrap .desc{
	font-size: 14px;
	color: var(--gray);
	font-style: italic;
}

/* 按钮1 */
.toggle-btn{
	padding-top: 10px;
	text-align: center;
	position: relative;
}
.toggle-btn span{
	display: inline-block;
	font-size: 14px;
	color: var(--white);
	text-align: center;
	border-radius: 20px;
	background-color: var(--dark);
	padding: 8px 24px;
}
.toggle-btn:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
}

@media (min-width: 992px){
	.x-home-title-wrap{
		margin-bottom: 20px;
	}
	.x-home-title-wrap .title{
		font-size: 30px;
		/* font-weight: 500; */
	}
	.x-home-title-wrap .desc{
		font-size: 16px;
		/* color: var(--gray); */
		/* font-style: italic; */
	}
	
	.mb-distance {
	  margin-bottom: 40px;
	}
}

/* swiper导航条 */
.swiper-pagination-bullet{
	width: 24px;
	height: 6px;
	border-radius: 6px;
}
.swiper-pagination-bullet-active{
	background-color: var(--primary);
}


/* 头部 */
.head-wrap{
	width: 100%;
	display: grid;
	grid-template-columns: 10% 80% 10%;
	align-items: center;
	padding: 10px 0;
}
.head-wrap .logo{
	text-align: center;
}
.head-wrap .logo a{
	display: inline-block;
}
.head-wrap .logo img{
	height: 34px;
}
.head-wrap .phone{
	text-align: right;
}
.head-wrap .phone span{
	font-size: 20px;
	font-weight: 500;
	margin-left: 5px;
}
.head-wrap .phone ._web i{
	font-size: 0.533rem;
	color: var(--black);
}
.head-wrap .nav{
	width: 100%;
}
.head-wrap .nav-list{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.head-wrap .nav-list li{
	margin-left: 30px;
	cursor: pointer;
}
.mobile-nav__toggler i{
	font-size: 0.533rem;
	color: var(--black);
}
.mobile-nav__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform 500ms ease;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
	z-index: 999;
	opacity: 0;
}
.mobile-nav__wrapper.expanded {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	opacity: 1;
}
.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background-color: #000;
  opacity: 0.8; */
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  cursor: pointer;
}
.mobile-nav__content {
  width: 315px;
  background-color: var(--white);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
}
.mobile-nav__content .navs {
	margin-left: 10px;
	margin-right: 10px;
}
.mobile-nav__content .navs li:not(:last-child) {
	border-bottom: 1px solid rgba(125, 125, 125, 0.15);
}
.mobile-nav__wrapper .mobile-navs li{
	padding: 15px 0;
}

/* 底部 */
footer{
	margin-bottom: 50px;
}
.foot-wrap{
	background-color: var(--dark);
	padding: 20px 0;
}
.foot-wrap .container{
	display: flex;
	flex-direction: column;
	justify-content: space-between;	
}
.foot-wrap .info-L{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.foot-wrap .info-L .logo img{
	height: 40px;
}
.foot-wrap .info-L .phone{
	display: flex;
	align-items: center;
	position: relative;
	color: var(--white);
	margin-left: 0px;
	margin-top: 10px;
}
.foot-wrap .info-L .phone::before{
	content: none;
}
.foot-wrap .info-L .phone>i{
	font-size: 30px;
	margin-right: 10px;
}
.foot-wrap .info-L .phone p span{
	display: block;
}
.foot-wrap .info-L .phone p span:nth-child(1){
	font-weight: 600;
}
.foot-wrap .info-L .phone p span:nth-child(2){
	font-size: 14px;
}
.foot-wrap .info-R{
	text-align: center;
	/* margin-top: 40px; */
}
.foot-wrap .info-R>img{
	height: 120px;
	margin-bottom: 10px;
	margin-top: 10px;
}
.foot-wrap .info-R>p{
	color: var(--white);
}
.foot-wrap .info-R>p span{
	display: block;
	font-size: 14px;
	line-height: 1.6;
}
.foot-root{
	background-color: #2e2e2e;
	padding: 15px 0;
	color: var(--white);
	font-size: 14px;
	text-align: center;
	line-height: 2;
}
.foot-root a{
	color: var(--white);
	font-size: 14px;
}
.foot-root .record{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.foot-root .record .beian{
	display: flex;
	flex-direction: column;
}
.foot-root .statement{
	font-size: 10px;
	color: var(--gray);
}

/* 底部悬浮导航 */
.navBar {
	width: 100%;
	position: fixed;
	bottom: 0px;
	left: 0px;
	z-index: 100;
	background: #FFFFFF;
}
.navBar .content {
    height: 100%;
    display: flex;
}
.navBar .content .item {
    width: 50%;
    height: 1.467rem;
    background: #23A620;
    position: relative;
}
.navBar .content .item:nth-child(2) {
    background: #F56223;
}
.navBar .content .item a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.48rem;
    color: #FFFFFF;
}
.navBar .content .item a i {
	font-size: 0.64rem;
	margin-right: 0.133rem;
	animation: img 2s infinite;
}
@keyframes img {
	from {
	  transform: scale(0.8);
	}
	to {
	  transform: scale(1);
	}
}
.navBar .content .item .roll_text {
    width: 7.8rem;
    height: 0.933rem;
    border-radius: 5px;
    background-color: #000;
    position: absolute;
    bottom: 100%;
    left: 0.171rem;
    font-size: 22px;
    display: flex;
	flex-direction: row-reverse;
    align-items: center;
    padding: 0 0.392rem 0 0.171rem;
    margin-bottom: 0.171rem;
}
.navBar .content .item .roll_text::before {
	content: "";
	position: absolute;
    top: 100%;
	border-left: 0.13333333rem solid transparent;
	border-right: 0.13333333rem solid transparent;
	border-top: 0.10666667rem solid #000000;
	left: 0.86666667rem;
}
.navBar .content .item .roll_text .off{
	line-height: 1;
}
.navBar .content .item .roll_text .off i{
	font-size: 18px;
	color: #FFFFFF;
}
.navBar .content .roll_text .swiper-container{
	width: 100%;
	height: 100%;
}
.navBar .content .roll_text .swiper-slide{
	font-size: 0.32rem;
	color: #FFFFFF;
	line-height: 0.933rem;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 992px){
	/* 头部 */
	.head-wrap{
		grid-template-columns: 20% 50% 30%;
	} 
	.head-wrap .logo{
		text-align: left;
	}
	.head-wrap .logo img{
		height: 40px;
	}
	.head-wrap .phone span{
		margin-left: 0px;
	}
	.head-wrap .phone{
		position: relative;
	}
	.head-wrap .phone::before {
	  content: '';
	  Position: absolute;
	  left: 50px;
	  top: 55%;
	  transform: translateY(-50%);
	  height: 20px;
	  width: 1px;
	  background: rgba(0, 0, 0, 0.2);
	}
	
	
	/* 底部 */
	footer {
	  margin-bottom: 0px;
	}
	.foot-wrap{
		padding: 40px 0;
	}
	.foot-wrap .container{
		flex-direction: row;
	}
	.foot-wrap .info-L{
		flex-direction: row;
	}
	.foot-wrap .info-L .logo img{
		height: 44px;
	}
	.foot-wrap .info-L .phone{
		display: flex;
		flex-direction: row;
		align-items: center;
		position: relative;
		color: var(--white);
		margin-left: 40px;
	}
	.foot-wrap .info-L .phone::before{
		content: "";
		height: 25px;
		width: 2px;
		background-color: var(--white);
		position: absolute;
		left: -20px;
		top: 50%;
		transform: translateY(-50%);
	}
	.foot-root .record{
		display: flex;
		flex-direction: row;
		justify-content: center;
	}
	.foot-root .record .beian{
		display: flex;
		flex-direction: row;
	}
	.foot-root .statement{
		font-size: 14px;
	}
}


