@charset 'utf-8';
@import url('font.css');

* {
	font-family: 'Inter', 'Roboto', 'Segoe UI', 'Source Han Sans SC', 'Helvetica Neue', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft Yahei', 'Lucida Grande', Verdana, sans-serif;
}
*:focus {
	outline: none;
}
html {
	overflow-x: hidden;
}
body, a {
	color: #333;
}
a:hover {
	color: #f7ac1b;
}
.wrapper {
	width: 1400px;
}
.wrap-gray {
	padding: 75px 0;
	background: #f5f5f5;
}
.wrap-blue {
	position: relative;
	min-height: 520px;
	padding-top: 70px;
	background: #fff;
}
.wrap-blue:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	display: block;
	height: 520px;
	background: #FFD600;
}
.wrap-blue .wrapper {
	position: relative;
	z-index: 1;
}
.wrap-white {
	padding: 70px 0;
	background: #fff;
}
/*头部样式*/
#header {
	position: sticky;
	top: 0;
	z-index: 99;
	height: 86px;
	background: #fff;
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .08);
}
#header .wrapper {
	height: 100%;
}
#logo img {
	height: 3vw;
}
#nav > ul {
	display: flex;
	gap: 0 3vw;
}
#nav > ul > li {
	position: relative;
	height: 86px;
	text-align: center;
}
#nav > ul > li > a {
	display: block;
	height: 86px;
	line-height: 86px;
	font-size: 18px;
	letter-spacing: 0.5px;
	overflow: hidden;
}
#nav > ul > li:hover > a {
	color: #f7ac1b;
}
#nav > ul > li.current > a {
	color: #101010;
}
#nav > ul > li.current:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	height: 4px;
	background: #FFD600;
}
#nav > ul > li ul {
	position: absolute;
	left: 50%;
	top: 86px;
	transform: translate(-50%, 20px);
	display: none;
	width: 230px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .08);
	opacity: 0;
	animation: NavAnimation 0.3s;
	animation-fill-mode: forwards;
}
#nav > ul > li ul > li:first-child {
	margin-top: 12px;
}
#nav > ul > li ul > li:last-child {
	margin-bottom: 12px;
}
#nav > ul > li:hover ul {
	display: block;
}
@keyframes NavAnimation {
	100% {
		transform: translate(-50%, 0);
		opacity: 1;
	}
}
#nav > ul > li ul li {
	height: 35px;
	line-height: 35px;
	font-size: 15px;
	overflow: hidden;
}
#nav > ul > li ul li a {
	display: block;
	padding: 0 18px;
	color: #464646;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.2s linear;
}
#nav > ul > li ul li:hover a {
	letter-spacing: 0.5px;
	color: #f7ac1b;
	transition: all 0.2s linear;
}
#search-btn {
	width: 20px;
	height: 20px;
	margin-left: 60px;
	background: url("../img/search.png") no-repeat center;
	cursor: pointer;
	transition: all 0.1s linear;
}
#search-btn:hover {
	background-image: url("../img/search-h.png");
	transition: all 0.1s linear;
}
#language {
	position: relative;
	z-index: 99;
	cursor: pointer;
}
#language h3 {
	display: flex;
	align-items: center;
	gap: 0 16px;
}
#language h3 span {
	height: 20px;
	line-height: 20px;
	padding-left: 30px;
	background: url("../img/language.png") no-repeat left center;
	font-size: 15px;
	color: #666;
	overflow: hidden;
	transition: all 0.1s linear;
}
#language h3 i {
	width: 12px;
	height: 7px;
	background: url("../img/arrow-b.png") no-repeat center;
	transition: background 0.1s linear, transform 0.2s linear;
}
#language:hover h3 span {
	background-image: url("../img/language-h.png");
	color: #FFD600;
	transition: all 0.1s linear;
}
#language:hover h3 i {
	background-image: url("../img/arrow-b-h.png");
	transform: rotate(180deg);
	transition: background 0.1s linear, transform 0.2s linear;
}
#language ul {
	position: absolute;
	left: 50%;
	top: 60px;
	transform: translate(-50%, 20px);
	display: none;
	width: 130px;
	padding: 12px 0;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .08);
	opacity: 0;
	animation: NavAnimation 0.3s;
	animation-fill-mode: forwards;
}
#language:hover ul {
	display: block;
}
#language ul li {
	height: 36px;
	line-height: 36px;
	font-size: 15px;
	text-align: center;
	overflow: hidden;
}
#language ul li a {
	display: block;
	padding: 0 18px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.2s linear;
}
#language ul li:hover a {
	letter-spacing: 1px;
	color: #FFD600;
	transition: all 0.2s linear;
}
#translate {
	width: 150px;
    margin-left: 30px;
    margin-right: 3px;
    cursor: pointer;
    z-index: 999;
}
#translate > .translateSelectLanguage {
    font-size: 15px;
    color: #333;
    padding: 5px 10px;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 3px;
}
#search {
	right: 0;
	top: 95px;
	z-index: 98;
	display: none;
	height: 64px;
	padding: 10px;
	background: rgba(255, 255, 255, .5);
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
	overflow: hidden;
}
#search input {
	width: 256px;
	height: 44px;
	line-height: 44px;
	padding: 0 16px;
	border: none;
	border-radius: 0;
	font-size: 15px;
	color: #464646;
}
#search input::-moz-placeholder {
	color: #999;
}
#search input::-webkit-input-placeholder {
	color: #999;
}
#search input::-ms-input-placeholder {
	color: #999;
}
#search button {
	width: 44px;
	height: 44px;
	background: url("../img/search1.png") no-repeat center #FFD600;
	background-size: 20px 20px;
	border: none;
	border-radius: 0;
}
#banner {
	width: 100%;
	height: 41.6667vw;
	overflow: hidden;
}
#banner .swiper-wrapper {
	height: 41.6667vw;
}
#banner .swiper-slide {
	width: 100%;
	height: 41.6667vw;
}
#banner .swiper-slide img {
	width: 100%;
	height: 41.6667vw;
}
#banner .swiper-slide video {
	width: 100%;
	height: 41.6667vw;
}
#banner .swiper-pagination {
	left: 50%;
	bottom: 50px;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 15px;
	width: auto;
}
#banner .swiper-pagination-bullet {
	width: 60px;
	height: 6px;
	margin: 0;
	background: #43464a;
	border: 1px solid rgb(0,0,0,0.3);
	border-radius: 3px;
	cursor: pointer;
	opacity: 1;
}
#banner .swiper-pagination-bullet-active {
	background: #FFD600;
	border: 1px solid rgb(243,155,2,0.5);
}
.title {
	width: 30%;
}
.title h2 {
	height: 32px;
	line-height: 68px;
	font-family: 'Roboto Condensed';
	font-size: 100px;
	font-weight: 800;
	text-transform: uppercase;
	color: #eee;
}
.title h3 {
	font-family: 'Roboto Condensed';
	font-size: 42px;
	font-weight: bold;
	height: 60px;
	line-height: 60px;
	color: #101010;
	overflow: hidden;
}
.title h4 {
	color: #777;
	font-size: 15px;
	line-height: 1.4;
    margin-top: 10px;
}
.title.white h2 {
	color: rgba(255, 255, 255, .08);
}
.title.white h3, .title.white h4 {
	color: #fff;
}
#product-tab {
	height: 60px;
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .12);
	overflow: hidden;
}
#product-tab ul {
	display: flex;
}
#product-tab ul li {
	cursor: pointer;
	text-align: center;
	padding: 20px 26px;
	overflow: hidden;
}
#product-tab ul li h3 {
	font-family: 'Roboto Condensed';
	font-size: 17px;
	color: #666;
	overflow: hidden;
}
#product-tab ul li h4 {
	height: 17px;
	line-height: 17px;
	margin-top: 6px;
	font-size: 15px;
	color: #c1c1c1;
	overflow: hidden;
}
#product-tab ul li:hover h3 {
	color: #101010;
}
#product-tab ul li:hover h4 {
	color: #b1b1b1;
}
#product-tab ul li.current {
	background: #FFD600;
	border-radius: 30px;
}
#product-tab ul li.current h3 {
	color: #101010;
}
#product-tab ul li.current h4 {
	color: rgba(255, 255, 255, .18);
}
#product {
	margin: 60px auto 10px;
}
#product .item {
	position: relative;
	display: none;
}
#product .item.current {
	display: block;
}
#product .swiper-container {
	overflow: hidden;
}
#product .swiper-slide {
	position: relative;
	width: 432px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}
#product .swiper-slide a {
	display: block;
	padding: 40px 30px 20px;
}
#product .swiper-slide h2 {
	color: #666;
	font-size: 14px;
	font-weight: 300;
	height: 20px;
	line-height: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#product .swiper-slide h3 {
	font-family: 'Roboto Condensed';
	font-size: 22px;
	font-weight: 600;
	height: 26px;
	line-height: 26px;
	color: #101010;
	overflow: hidden;
	margin-top: 10px;
}
#product .swiper-slide h4 {
	width: 140px;
    height: 32px;
    line-height: 32px;
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #999;
    background: #eee;
    border-radius: 16px;
    margin-top: 20px;
    overflow: hidden;
    transition: all 0.1s linear;
}
#product .swiper-slide h4 em {
	display: inline-block;
	padding-right: 25px;
	background: url("../img/arrow.png") no-repeat right center;
	transition: all 0.1s linear;
}
#product .swiper-slide img {
	position: relative;
	z-index: 1;
	display: block;
	height: 100%;
    margin: 0 auto;
}
#product .swiper-slide i {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(230px);
	display: none;
	height: 230px;
	opacity: 0;
	animation: ProductAnimation 0.4s;
	animation-fill-mode: forwards;
}
#product .swiper-slide i:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 170px;
	display: block;
	width: 0;
	height: 0;
	border-left: 235px solid transparent;
	border-top: 30px solid transparent;
	border-right: 219px solid #FFD600;
	border-bottom: 30px solid #FFD600;
}
#product .swiper-slide i:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	height: 170px;
	background: #FFD600;
}
#product .swiper-slide:hover h4 {
	background: #FFD600;
	color: #101010;
	transition: background 0.1s linear;
}
#product .swiper-slide:hover h4 em {
	background-image: url("../img/arrow-h.png");
}
#product .swiper-slide:hover i {
	display: block;
}
@keyframes ProductAnimation {
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
#product .swiper-button-prev, #product .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #dcdcdc;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
	transition: all 0.1s linear;
}
#product .swiper-button-prev:after, #product .swiper-button-next:after {
	display: none;
}
#product .swiper-button-prev {
	left: -78px;
	background-image: url("../img/prev.png");
}
#product .swiper-button-next {
	right: -78px;
	background-image: url("../img/next.png");
}
#product .swiper-button-prev:hover {
	background-color: #FFD600;
	transition: all 0.1s linear;
}
#product .swiper-button-next:hover {
	background-color: #FFD600;
	transition: all 0.1s linear;
}
#news-tab {
	height: 60px;
	background: #fff;
	border-radius: 30px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .12);
	overflow: hidden;
}
#news-tab ul {
	display: flex;
}
#news-tab ul li {
	width: 200px;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	text-align: center;
	color: #666;
	cursor: pointer;
	overflow: hidden;
}
#news-tab ul li:hover {
	color: #FFD600;
}
#news-tab ul li.current {
	background: #FFD600;
	border-radius: 30px;
	color: #fff;
}
#news {
	margin-top: 40px;
}
#news .item {
	position: relative;
	display: none;
}
#news .item.current {
	display: block;
}
#news .swiper-container {
	overflow: hidden;
}
#news .swiper-slide {
	background: #fff;
	overflow: hidden;
	transition: all 0.1s linear;
}
#news .swiper-slide a {
	display: block;
	padding: 20px 20px 30px;
}
#news .swiper-slide span {
	display: block;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
#news .swiper-slide img {
	width: 400px;
	max-width: none;
	aspect-ratio: 3 / 2;
	transition: transform 0.3s linear;
}
#news .swiper-slide h3 {
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-weight: 500;
	height: 25px;
	line-height: 25px;
	margin-top: 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.1s linear;
}
#news .swiper-slide h4 {
	font-family: 'Roboto Condensed';
	font-size: 15px;
	height: 20px;
	line-height: 20px;
	color: #999;
	margin-top: 10px;
	overflow: hidden;
	transition: all 0.1s linear;
}
#news .swiper-slide p {
	height: 46px;
	line-height: 1.5;
	font-size: 14px;
	color: #868686;
	margin-top: 20px;
	transition: all 0.1s linear;
}
#news .swiper-slide:hover {
	background: #FFD600;
	transition: all 0.1s linear;
}
#news .swiper-slide:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#news .swiper-slide:hover h3, #news .swiper-slide:hover h4, #news .swiper-slide:hover p {
	color: #101010;
	transition: all 0.1s linear;
}
#news .swiper-button-prev, #news .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 36px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	opacity: 1;
	transition: all 0.1s linear;
}
#news .swiper-button-prev:after, #news .swiper-button-next:after {
	display: none;
}
#news .swiper-button-prev {
	left: -40px;
	background-image: url("../img/prev1.png");
}
#news .swiper-button-next {
	right: -40px;
	background-image: url("../img/next1.png");
}
#news .swiper-button-prev:hover {
	background-image: url("../img/prev1-h.png");
	transition: all 0.1s linear;
}
#news .swiper-button-next:hover {
	background-image: url("../img/next1-h.png");
	transition: all 0.1s linear;
}
.index-about {
	padding: 70px 0;
	background: url("../img/index_about_bg.jpg") no-repeat;
}
.index-about .title h3 {
	color: #fff;
	margin-top: 30px;
}
.index-about .section-head {
	margin-bottom: 40px;
}
.index-about .section-head h2 {
	font-family: 'Roboto Condensed';
	font-size: 30px;
    font-weight: bold;
	line-height: 1.2;
    color: #ddd;
}
.index-about .section-head h3 {
	font-family: 'Roboto Condensed';
	color: #cdcdcd;
	font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.5px;
	margin: 10px 0 40px;
}
.index-about .section-head h3:after {
    content: "";
    display: block;
    width: 95px;
    height: 3px;
    background: #eee;
    margin: 20px 0;
}
.index-about .section-head .about-con {
	color: #ddd;
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 40px;
}
.index-about .btn {
    font-size: 15px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #FFD600;
    border: 1px solid #FFD600;
    color: #101010;
    overflow: hidden;
    position: relative;
    letter-spacing: 0.6px;
    border-radius: 2px;
    z-index: 2;
    transition: all .3s;
    text-align: center;
}
.index-about .btn::after {
    content: '';
    width: 0;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    z-index: -1;
}
.index-about .btn:hover {
    color: #FFD600;
	border:1px solid #FFD600;
}
.index-about .btn:hover > a {
    color: #FFD600;
}
.index-about .btn:hover::after {
    width: 100%;
}
#partner {
	margin-top: 60px;
}
#partner ul {
	display: flex;
	flex-wrap: wrap;
}
#partner ul li {
	width: 200px;
	height: 120px;
	background: #fff;
	overflow: hidden;
	margin: 0 15px 30px 15px;
}
#partner ul li img {
	width: 200px;
	height: 120px;
}
#partner ul li:hover img {
	transform: rotateY(360deg);
	transition: transform 0.6s linear;
}
.picMarquee-left {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.picMarquee-left .hd {
	display: none;
}
.picMarquee-left .bd {
	padding: 10px;
}
.picMarquee-left .bd .tempWrap {
	width: 100% !important;
}
.picMarquee-left .bd ul {
	overflow: hidden;
	zoom: 1;
}
.picMarquee-left .bd ul li {
	margin: 0 8px;
	float: left;
	_display: inline;
	overflow: hidden;
	text-align: center;
}
.picMarquee-left .bd ul li .pic {
	text-align: center;
}
.picMarquee-left .bd ul li .pic img {
	width: 120px;
	height: 90px;
	display: block;
	padding: 2px;
	border: 1px solid #ccc;
}
.picMarquee-left .bd ul li .pic a:hover img {
	border-color: #999;
}
.picMarquee-left .bd ul li .title {
	line-height: 24px;
}
/*内页样式*/
#yg-banner {
	display: flex;
	align-items: center;
	height: 20.8333vw;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	overflow: hidden;
}
#yg-banner.about {
	background-image: url("../img/sp-about.jpg");
}
#yg-banner.product {
	background-image: url("../img/sp-product.jpg");
}
#yg-banner.service {
	background-image: url("../img/sp-service.jpg");
}
#yg-banner.news {
	background-image: url("../img/sp-news.jpg");
}
#yg-banner h2 {
	height: 60px;
	line-height: 60px;
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	overflow: hidden;
	text-shadow: rgb(0, 0, 0, 0.3) 2px 0 5px;
}
#yg-banner h3 {
	height: 26px;
	line-height: 26px;
	margin-top: 16px;
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	overflow: hidden;
}
#yg-banner .item {
    font-size: 15px;
    color: #fff;
	height: 18px;
    line-height: 18px;
    margin-top: 25px;
    overflow: hidden;
    text-shadow: rgb(0, 0, 0, 0.3) 2px 0 5px;
}
#yg-banner .item a {
	color: #fff;
}
#yg-banner .item a:hover {
	color: #ddd;
}

#location {
	position: relative;
	height: 70px;
	background: #f5f5f5;
	overflow: hidden;
}
#location .weo-flex {
	height: 70px;
}
#location .menu {
	display: flex;
	gap: 0 60px;
}
#location .menu a {
	font-size: 17px;
	height: 70px;
	line-height: 70px;
	overflow: hidden;
}
#location .menu a:hover {
	color: #101010;
}
#location .menu a.current {
	position: relative;
	z-index: 1;
	color: #101010;
}
#location .menu a.current:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	height: 3px;
	background: #FFD600;
}
#location .item {
    font-size: 14px;
    color: #666;
	height: 18px;
    line-height: 18px;
    padding-left: 25px;
    background: url("../img/home.png") no-repeat left 0;
    overflow: hidden;
}
#location .item a {
	color: #666;
}
#location .item a:hover {
	color: #FFD600;
}
#promenu {
	position: relative;
	height: 90px;
	background: #f5f5f5;
}
#promenu .nav {
    position: relative;
	display: flex;
	padding: 15px 0;
}
#promenu .nav li {
    position: relative;
    font-family: 'Roboto Condensed';
    font-size: 16px;
	list-style-type: none;
	display: block;
	padding-right: 45px;
	line-height: 1.8;
	color: #777;
	cursor: pointer;
	float: left;
}
#promenu .nav li a {
	color: #666;
}
#promenu .nav li a.current {
	color: #101010;
}
#promenu .nav li i {
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("../img/icon_arr_down.svg") no-repeat right 2px;
	background-size: 15px;
	margin-left: 5px;
}
#promenu .nav li a:hover {
	color: #101010;
}
#promenu .nav li:hover i {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/icon_arr_up.svg") no-repeat right 2px;
    background-size: 15px;
    margin-left: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#promenu .nav a.current::before {
	content: '';
    width: 50%;
    height: 3px;
    background: #FFD600;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.36s;
}
#promenu .nav .droplist {
	position: absolute;
	background: #fff;
	display: none;
	float: none;
	z-index: 99;
	padding: 15px 0;
	transition: all 0.36s;
	box-shadow: 0 5px 10px 1px rgb(0 0 0 / 5%);
}
#promenu .nav .droplist ul li {
	height: 35px;
	line-height: 35px;
	padding: 0 1.5vw;
}
#promenu .nav li:hover .droplist {
	display: block;
	transition: all 0.36s;
}
#promenu .nav li .droplist ul a {
    position: relative;
    display: block;
	color: #666;
	list-style-type: none;
	text-decoration: none;
    font-size: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	-o-text-overflow:ellipsis;
}
#promenu .nav li .droplist ul a:hover {
	color: #FFD600;
}
.wrap-white.p1 {
	padding: 50px 0 70px 0;
}
.weo-page {
	margin-top: 70px;
}
.weo-page a {
	min-width: 42px;
	height: 42px;
	line-height: 40px;
	margin-left: 10px;
	padding: 0 14px;
	border-color: #ccc;
	border-radius: 0;
	font-size: 14px;
	color: #666;
}
.weo-page a:hover {
	border-color: #FFD600;
	color: #FFD600;
}
.weo-page a.count {
	border-color: #ccc;
	color: #666;
}
.weo-page a.weo-page-on {
	background: #FFD600;
	border-color: #FFD600;
	color: #fff;
}

#product-list ul {
	display: flex;
	flex-wrap: wrap;
}
#product-list ul li {
	width: 22.75%;
	margin-right: 3%;
	margin-bottom: 2.8%;
	border-radius: 10px;
	border: 1px solid #F5F5F5;
	background: #f7f7f7;
	overflow: hidden;
}
#product-list ul li:nth-child(4n) {
	margin-right: 0;
}
#product-list ul li img {
	display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 20px;
    margin: 0 auto;
    transition: all 0.5s;
}
#product-list ul li h3 {
	height: 70px;
	line-height: 70px;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
    background: #f1f1f1;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: background-color 0.1s linear;
	padding: 0 30px;
}
#product-list ul li:hover h3 {
	padding: 0 110px 0 30px;
	background: url("../img/arrow-r1.png") no-repeat right 40px center #FFD600;
	text-align: left;
	color: #101010;
	transition: background-color 0.1s linear;
}
#pd-info {
	display: flex;
	align-items: center;
	gap: 0 60px;
}
#pd-info .left {
	position: relative;
	width: 600px;
	height: 400px;
	padding: 0;
	border: 1px solid #e5e5e5;
	overflow: hidden;
}
#pd-info .left .swiper-container {
	height: 400px;
	overflow: hidden;
}
#pd-info .left .swiper-wrapper {
	height: 400px;
}
#pd-info .left .swiper-slide {
	height: 400px;
	overflow: hidden;
}
#pd-info .left .swiper-slide img {
	display: block;
	height: 400px;
	margin: 0 auto;
}
#pd-info .left .swiper-pagination {
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	width: auto;
}
#pd-info .left .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0;
	background: #d2d2d2;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
}
#pd-info .left .swiper-pagination-bullet-active {
	background: #FFD600;
}
#pd-info .right {
	flex: 1;
}
#pd-info .right h1 {
	font-family: 'Roboto Condensed';
	font-size: 30px;
	font-weight: 800;
	height: 35px;
	line-height: 35px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#pd-info .right i {
	display: block;
	width: 50px;
	height: 5px;
	margin-top: 20px;
	background: #FFD600;
}
#pd-info .right .desp {
    color: #666;
    font-size: 15px;
    height: 205px;
    line-height: 2;
    margin-top: 30px;
    -webkit-line-clamp: 4;
}
#pd-info .right .desp p {
	background: url("../img/icon_item.svg") no-repeat left;
    background-size: 2%;
    float: left;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px dashed #ddd;
    padding: 11px 0 9px 30px;
}
#pd-info .right h4 {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	background: #FFD600;
	font-size: 16px;
	text-align: center;
	padding: 0 30px;
	margin-top: 50px;
}
#pd-info .right h4 a {
	display: block;
	color: #101010;
}
#pd-info .right h4 a:hover {
	cursor: pointer;
}
#pd-info .right h4 em {
	display: inline-block;
	padding-left: 35px;
	background: url("../img/consult.png") no-repeat left 15px;
}
#pd-tab {
	height: 60px;
	margin-top: 50px;
	background: #f5f5f5;
	overflow: hidden;
}
#pd-tab ul {
	display: flex;
}
#pd-tab ul li {
	flex: 1;
	height: 60px;
	line-height: 60px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: center;
	cursor: pointer;
	overflow: hidden;
}
#pd-tab ul li:hover {
	color: #101010;
}
#pd-tab ul li.current {
	background: #FFD600;
	color: #101010;
}
#pd-item {
	margin-top: 40px;
}
#pd-item .item {
	display: none;
}
#pd-item .item.current {
	display: block;
}
#pd-item .text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
}
#pd-item .text img {
    margin: 15px 0;
}
#pd-item .text table {
    width: 60%;
    max-width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 20px auto;
}
#pd-item .text table th {
	font-size: 15px;
    font-weight: 600;
    background: #f1f1f1;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 10px 12px 8px;
}
#pd-item .text table tr.firstRow {
    background: #f6f6f6;
}
#pd-item .text table tr.firstRow td {
    font-size: 14px;
}
#pd-item .text table td {
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: 8px 12px 7px;
}
#pd-item .text .tips {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.5px;
	border: 1px solid #e1e1e1;
	color: #55a365;
	border-radius: 5px;
	overflow: hidden;
	padding: 10px 15px;
	margin-top: .5rem;
}
#pd-item .text .tips a {
	color: #468f55;
	font-weight: 500;
}
#pd-item .slide {
	padding-top: 14px;
}
#pd-item .slide .swiper-slide ul {
	display: flex;
	gap: 0 32px;
}
#pd-item .slide .swiper-slide ul li {
	width: 326px;
	height: 288px;
	border: 1px solid #e5e5e5;
	overflow: hidden;
	transition: all 0.1s linear;
}
#pd-item .slide .swiper-slide ul li span {
	display: block;
	width: 324px;
	height: 234px;
	overflow: hidden;
}
#pd-item .slide .swiper-slide ul li img {
	width: 324px;
	max-width: none;
	height: 234px;
	transition: transform 0.3s linear;
}
#pd-item .slide .swiper-slide ul li h3 {
	height: 52px;
	line-height: 52px;
	padding: 0 20px;
	background: #f5f5f5;
	font-size: 15px;
	text-align: center;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: background 0.1s linear;
}
#pd-item .slide .swiper-slide ul li:hover {
	border-color: #FFD600;
	transition: all 0.1s linear;
}
#pd-item .slide .swiper-slide ul li:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#pd-item .slide .swiper-slide ul li:hover h3 {
	background: #FFD600;
	color: #fff;
	transition: background 0.1s linear;
}
#pd-item .slide .swiper-pagination {
	position: initial;
	display: flex;
	justify-content: center;
	gap: 0 12px;
	margin-top: 36px;
	height: 12px;
	overflow: hidden;
}
#pd-item .slide .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	margin: 0;
	background: #7f7f7f;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
}
#pd-item .slide .swiper-pagination-bullet:first-child {
	margin-left: 0;
}
#pd-item .slide .swiper-pagination-bullet-active {
	background: #2f345c;
}
#pd-item .video {
	padding-top: 14px;
}
#pd-item .video video {
	display: block;
	width: 1400px;
	height: 788px;
}
#wrap-about {
	background: url("../img/about-bg.png") no-repeat bottom 0 center;
	padding-bottom: 100px;
	margin-bottom: -120px;
}
#about-since {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#about-since img {
	height: 55px;
}
#about-since h3 {
	font-family: 'Roboto Condensed';
	height: 26px;
	line-height: 26px;
	color: #101010;
	font-size: 24px;
	font-weight: 600;
	margin-top: 20px;
	overflow: hidden;
}
#about-since h2 {
	height: 102px;
	line-height: 102px;
	margin-bottom: 8px;
	font-family: 'Roboto Condensed';
	font-weight: 700;
	font-size: 120px;
	text-transform: uppercase;
	color: #f1f1f1;
}
#about {
	display: flex;
	margin-top: 40px;
	gap: 0 50px;
}
#about .left {
	width: 600px;
	height: 338px;
	overflow: hidden;
}
#about .left video {
	width: 600px;
	height: 338px;
}
#about .right {
	flex: 1;
	font-size: 16px;
	line-height: 1.8;
	color: #666;
}
.about-title h2 {
	font-family: 'Roboto Condensed';
	font-weight: 600;
    font-size: 40px;
    line-height: 50px;
	height: 50px;
}
.about-title h3 {
	height: 22px;
	line-height: 22px;
	margin-top: 16px;
	font-size: 19px;
	text-transform: uppercase;
	color: #999;
	overflow: hidden;
}
.about-title h4 {
	height: 18px;
	line-height: 18px;
	margin-top: 24px;
	font-size: 15px;
	color: #666;
	overflow: hidden;
}
.about-title.white h2, .about-title.white h3, .about-title.white h4 {
	color: #fff;
}
#advantage {
	padding-top: 130px;
}
#culture {
	margin-top: 60px;
}
#culture ul {
	display: flex;
	gap: 0 24px;
}
#culture ul li {
	position: relative;
	width: 332px;
	height: 486px;
	border-radius: 16px;
	overflow: hidden;
}
#culture ul li img {
	width: 332px;
	max-width: none;
	height: 486px;
	transition: transform 0.3s linear;
}
#culture ul li section {
	position: absolute;
	left: 30px;
	right: 30px;
	top: 110px;
	color: #fff;
	overflow: hidden;
}
#culture ul li section h3 {
	font-family: 'Roboto Condensed';
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	height: 28px;
	line-height: 28px;
	overflow: hidden;
}
#culture ul li section span {
	display: block;
	width: 56px;
	height: 56px;
	margin: 30px auto;
}
#culture ul li section .adv_1 {
	background: url("../img/icon_biz_1.svg") no-repeat;
	background-size: 100%;
}
#culture ul li section .adv_2 {
	background: url("../img/icon_biz_2.svg") no-repeat;
	background-size: 100%;
}
#culture ul li section .adv_3 {
	background: url("../img/icon_biz_3.svg") no-repeat;
	background-size: 100%;
}
#culture ul li section .adv_4 {
	background: url("../img/icon_biz_4.svg") no-repeat;
	background-size: 100%;
}
#culture ul li section .text {
	font-size: 15px;
	text-align: center;
	line-height: 1.7;
	max-height: 215px;
	margin-top: 20px;
	overflow-y: auto;
}
#culture ul li section .text::-webkit-scrollbar {
	display: none;
}
#culture ul li:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#products {
	padding-top: 80px;
}
#wrap-history {
	padding-top: 70px;
	background: url("../img/history-bg.jpg") no-repeat top center;
}
#history {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 160px auto 0;
}
#history .swiper-container {
	width: 100%;
	height: 40px;
	overflow: hidden;
}
#history .swiper-wrapper {
	height: 38px;
}
#history .swiper-slide {
	font-family: 'Roboto Condensed';
	width: 120px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	color: rgba(255, 255, 255, .6);
	overflow: hidden;
}
#history .swiper-slide-active {
	color: #fff;
}
#history .swiper-button-prev, #history .swiper-button-next {
	position: static;
	width: 50px;
	height: 50px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 20px;
	border: 1px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
}
#history .swiper-button-prev:after, #history .swiper-button-next:after {
	display: none;
}
#history .swiper-button-prev {
	background-image: url("../img/prev.png");
}
#history .swiper-button-next {
	background-image: url("../img/next.png");
}
#history-item {
	position: relative;
	width: 80%;
	margin-top: 60px;
}
#history-item:before {
	content: '';
	position: absolute;
	left: 150px;
	top: -16px;
	display: block;
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	background: #FFD600;
	border: 6px solid #fff;
	border-radius: 50%;
}
#history-item:after {
	content: '';
	position: absolute;
	left: 155px;
	top: 36px;
	display: block;
	width: 18px;
	height: 10px;
	background: url("../img/arrow-b1.png") no-repeat center;
}
#history-item .item {
	display: none;
}
#history-item .item.current {
	display: block;
}
#history-item .left {
	width: 310px;
	padding: 110px 0;
}
#history-item .left h2 {
	font-family: 'Roboto Condensed';
	height: 50px;
	line-height: 1.4;
	font-size: 32px;
	font-weight: 600;
	text-align: center;
	color: #FFD600;
}
#history-item .right {
	position: relative;
	flex: 1;
	margin-left: 50px;
	padding: 90px 0;
}
#history-item .right:before {
	content: '';
	position: absolute;
	left: 9px;
	top: 0;
	bottom: 0;
	display: block;
	width: 2px;
	background: #e5e5e5;
}
#history-item .right ul li {
	position: relative;
	font-size: 16px;
	line-height: 1.75;
	color: #666;
	padding-left: 60px;
	margin-top: 36px;
}
#history-item .right ul li:first-child {
	margin-top: 0;
}
#history-item .right ul li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 4px;
	z-index: 1;
	display: block;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	background: #fff;
	border: 2px solid #e5e5e5;
	border-radius: 50%;
}
#history-item .right ul li:after {
	content: '';
	position: absolute;
	left: 20px;
	top: 13px;
	z-index: 1;
	display: block;
	width: 16px;
	height: 2px;
	background: #e5e5e5;
}
#certificate {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 50px;
	margin-top: 60px;
}
#certificate-item {
	position: relative;
	width: 930px;
	height: 460px;
	overflow: hidden;
}
#certificate-item ul li {
	position: absolute;
	left: 932px;
	top: 90px;
	display: none;
	width: 0;
	height: 0;
	border: 2px solid #e5e5e5;
	cursor: pointer;
	overflow: hidden;
}
#certificate-item ul li:nth-child(1) {
	display: block;
	left: 0;
	top: 60px;
	width: 244px;
	height: 340px;
	z-index: 96;
}
#certificate-item ul li:nth-child(2) {
	display: block;
	left: 110px;
	top: 30px;
	width: 288px;
	height: 400px;
	z-index: 97;
}
#certificate-item ul li:nth-child(3) {
	display: block;
	left: 300px;
	top: 0;
	width: 330px;
	height: 460px;
	z-index: 98;
}
#certificate-item ul li:nth-child(4) {
	display: block;
	left: 532px;
	top: 30px;
	width: 288px;
	height: 400px;
	z-index: 97;
}
#certificate-item ul li:nth-child(5) {
	display: block;
	left: 686px;
	top: 60px;
	width: 244px;
	height: 340px;
	z-index: 96;
}
#certificate-item ul li:after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;
	background: rgba(0, 0, 0, .1);
}
#certificate-item ul li.on:after {
	display: none;
}
#certificate-item ul li img {
	width: 0;
	max-width: none;
	height: 0;
}
#certificate-item ul li:nth-child(1) img {
	width: 240px;
	height: 336px;
}
#certificate-item ul li:nth-child(2) img {
	width: 284px;
	height: 396px;
}
#certificate-item ul li:nth-child(3) img {
	width: 326px;
	height: 456px;
}
#certificate-item ul li:nth-child(4) img {
	width: 284px;
	height: 396px;
}
#certificate-item ul li:nth-child(5) img {
	width: 240px;
	height: 336px;
}
#c-prev, #c-next {
	width: 52px;
	height: 52px;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.1s linear;
}
#c-prev {
	background-image: url("../img/prev2.png");
}
#c-next {
	background-image: url("../img/next2.png");
}
#c-prev:hover {
	background-image: url("../img/prev2-h.png");
	border-color: #FFD600;
	transition: all 0.1s linear;
}
#c-next:hover {
	background-image: url("../img/next2-h.png");
	border-color: #FFD600;
	transition: all 0.1s linear;
}
#wrap-honor {
	padding: 70px 0;
	background: url("../img/honor-bg.jpg") no-repeat top center;
	background-size: cover;
}
#honor {
	position: relative;
	margin-top: 60px;
}
#honor .swiper-container {
	width: 1272px;
	height: 584px;
	margin: 0 auto;
	overflow: hidden;
}
#honor .swiper-wrapper {
	height: 584px;
}
#honor .swiper-slide {
	height: 584px;
	overflow: hidden;
}
#honor .swiper-slide ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
#honor .swiper-slide ul li {
	width: 300px;
	height: 280px;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}
#honor .swiper-slide ul li a {
	display: block;
	padding: 40px;
}
#honor .swiper-slide ul li span {
	display: block;
	width: 212px;
	height: 152px;
	margin: 0 auto;
	border: 1px solid #e5e5e5;
	overflow: hidden;
}
#honor .swiper-slide ul li img {
	width: 210px;
	max-width: none;
	height: 150px;
	transition: transform 0.3s linear;
}
#honor .swiper-slide ul li h3 {
	height: 18px;
	line-height: 18px;
	margin-top: 30px;
	font-size: 16px;
	text-align: center;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#honor .swiper-slide ul li:hover h3 {
	color: #FFD600;
}
#honor .swiper-slide ul li:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#honor .swiper-button-prev, #honor .swiper-button-next {
	top: 50%;
	width: 52px;
	height: 52px;
	margin: 0;
	background-repeat: no-repeat;
	background-position: center;
	border: 1px solid #aaa;
	border-radius: 50%;
	cursor: pointer;
	opacity: 1;
	transition: all 0.1s linear;
}
#honor .swiper-button-prev:after, #honor .swiper-button-next:after {
	display: none;
}
#honor .swiper-button-prev {
	left: -12px;
	background-image: url("../img/prev3.png");
}
#honor .swiper-button-next {
	right: -12px;
	background-image: url("../img/next3.png");
}
#honor .swiper-button-prev:hover {
	background-image: url("../img/prev3-h.png");
	border-color: #FFD600;
	transition: all 0.1s linear;
}
#honor .swiper-button-next:hover {
	background-image: url("../img/next3-h.png");
	border-color: #FFD600;
	transition: all 0.1s linear;
}
#contact {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#contact .left h2 {
	font-family: 'Roboto Condensed';
	font-size: 30px;
    font-weight: 500;
	height: 36px;
	line-height: 36px;
	overflow: hidden;
}
#contact .left h3 {
	height: 18px;
	line-height: 18px;
	margin-top: 18px;
	font-size: 16px;
	color: #999;
	overflow: hidden;
}
#contact .left .item {
	width: 72%;
	margin-top: 10px;
}
#contact .left .item ul li {
	color: #666;
	font-size: 16px;
	line-height: 1.7;
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 10px;
}
#contact .left .item ul li:first-child {
	margin-top: 0;
}
#contact .left .item ul li.c-icon1 {
	background-image: url("../img/c-icon1.png");
}
#contact .left .item ul li.c-icon2 {
	background-image: url("../img/c-icon2.png");
}
#contact .left .item ul li.c-icon3 {
	background-image: url("../img/c-icon3.png");
}
#contact .right ul {
	display: flex;
	gap: 0 40px;
}
#contact .right ul li {
	padding: 20px;
	border: 1px solid #e5e5e5;
}
#contact .right ul li img {
	display: block;
	width: 125px;
	height: 126px;
	margin: 0 auto;
}
#contact .right ul li h4 {
	height: 18px;
	line-height: 18px;
	margin-top: 14px;
	font-size: 15px;
	text-align: center;
	color: #666;
	overflow: hidden;
}
#map {
	height: 450px;
	margin: 60px 0 20px;
	overflow: hidden;
}
#map img {
	max-width: none;
}
.anchorBL {
	display: none;
}
/*服务体系*/
.service-title h2 {
	height: 38px;
	line-height: 38px;
	font-size: 36px;
	overflow: hidden;
}
.service-title h3 {
	height: 18px;
	line-height: 18px;
	margin-top: 16px;
	font-size: 16px;
	text-align: center;
	color: #666;
	overflow: hidden;
}
#network {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 60px;
}
#network .left {
	width: 692px;
	height: 588px;
	overflow: hidden;
}
#network .left ul li {
	display: none;
	width: 692px;
	height: 588px;
	overflow: hidden;
}
#network .left ul li.current {
	display: block;
}
#network .left ul li img {
	width: 692px;
	height: 588px;
}
#network .right {
	width: 560px;
	margin-top: 30px;
}
#network-tab ul {
	display: flex;
}
#network-tab ul li {
	flex: 1;
	height: 50px;
	line-height: 48px;
	border: 1px solid #c9c9c9;
	border-right: none;
	font-size: 16px;
	text-align: center;
	color: #666;
	cursor: pointer;
	overflow: hidden;
}
#network-tab ul li:last-child {
	border-right: 1px solid #c9c9c9;
}
#network-tab ul li:hover {
	color: #FFD600;
}
#network-tab ul li.current {
	background: #FFD600;
	border-color: #FFD600;
	color: #fff;
}
#network-tab ul li.current + li {
	border-left-color: #FFD600;
}
#network-item {
	margin-top: 40px;
}
#network-item .item {
	display: none;
}
#network-item .item.current {
	display: block;
}
#network-item h2 {
	height: 22px;
	line-height: 22px;
	font-size: 20px;
	font-weight: bold;
	overflow: hidden;
}
#network-item .text {
	margin-top: 30px;
}
#network-item .text ul li {
	margin-top: 24px;
}
#network-item .text ul li:first-child {
	margin-top: 0;
}
#network-item .text ul li h3 {
	height: 20px;
	line-height: 20px;
	font-size: 17px;
	overflow: hidden;
}
#network-item .text ul li section {
	line-height: 30px;
	margin-top: 8px;
	font-size: 15px;
	color: #666;
}
#network-global {
	margin-top: 60px;
}
#network-global img {
	display: block;
	width: 964px;
	height: 478px;
	margin: 0 auto;
}
#pre-sale {
	display: flex;
	align-items: center;
	gap: 0 70px;
}
#pre-sale .left {
	flex: 1;
}
#pre-sale .left h2 {
	font-family: 'Roboto Condensed';
	height: 50px;
	line-height: 50px;
	font-size: 42px;
	font-weight: bold;
	color: #FFD600;
	overflow: hidden;
}
#pre-sale .left h3 {
	height: 20px;
	line-height: 20px;
	margin-top: 12px;
	font-size: 18px;
	text-transform: uppercase;
	color: #999;
	overflow: hidden;
}
#pre-sale .left i {
	display: block;
	width: 50px;
	height: 5px;
	margin-top: 30px;
	background: #FFD600;
}
#pre-sale .left .text {
	color: #666;
	font-size: 16px;
	line-height: 2;
	margin-top: 60px;
}
#pre-sale .right {
	width: 800px;
	height: 420px;
	overflow: hidden;
}
#pre-sale .right ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#pre-sale .right ul li {
	position: relative;
	width: 420px;
	height: 200px;
	overflow: hidden;
}
#pre-sale .right ul li:nth-child(2), #pre-sale .right ul li:nth-child(3) {
	width: 360px;
}
#pre-sale .right ul li img {
	width: 420px;
	max-width: none;
	height: 200px;
	transition: transform 0.3s linear;
}
#pre-sale .right ul li:nth-child(2) img, #pre-sale .right ul li:nth-child(3) img {
	width: 360px;
}
#pre-sale .right ul li h3 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 46px;
	line-height: 46px;
	padding: 0 18px;
	background: rgba(48, 75, 70, .7);
	font-size: 16px;
	text-align: center;
	color: #fff;
	overflow: hidden;
}
#pre-sale .right ul li:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#wrap-service {
	padding: 86px 0;
	background: url("../img/service-bg.jpg") no-repeat center;
	background-size: cover;
}
#after-sale .text h2, #spage .text h2 {
	font-family: 'Roboto Condensed';
	height: 45px;
	line-height: 45px;
	font-size: 42px;
	font-weight: bold;
	color: #fff;
	overflow: hidden;
}
#after-sale .text h3, #spage .text h3 {
	height: 20px;
	line-height: 20px;
	font-size: 18px;
	text-transform: uppercase;
	color: #fff;
	margin-top: 12px;
	overflow: hidden;
}
#after-sale .item {
	margin-top: 60px;
}
#after-sale .item ul {
	display: flex;
	gap: 0 40px;
}
#after-sale .item ul li {
    width: 25%;
	background: #fff;
	padding: 40px 30px;
	border-radius: 8px;
	overflow: hidden;
}
#after-sale .item ul li i {
	display: block;
	width: 110px;
	height: 110px;
	margin: 0 auto;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #FFD600;
	border-radius: 50%;
}
#after-sale .item ul li i.sale-icon1 {
	background-image: url("../img/sale-icon1.png");
}
#after-sale .item ul li i.sale-icon2 {
	background-image: url("../img/sale-icon2.png");
}
#after-sale .item ul li i.sale-icon3 {
	background-image: url("../img/sale-icon3.png");
}
#after-sale .item ul li i.sale-icon4 {
	background-image: url("../img/sale-icon4.png");
}
#after-sale .item ul li h3 {
	font-family: 'Roboto Condensed';
	font-weight: 500;
	height: 25px;
	line-height: 25px;
	font-size: 20px;
	text-align: center;
	margin-top: 30px;
	overflow: hidden;
}
#after-sale .item ul li p {
	color: #666;
	font-size: 15px;
	line-height: 1.7;
	-webkit-line-clamp: 8;
	margin-top: 16px;
}
#after-sale .item ul li:hover i {
	transform: rotateY(360deg);
	transition: transform 0.6s linear;
}
#after-sale .item ul li:hover h3 {
	color: #FFD600;
}
#spage {
	padding: 50px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.03);
}
#spage .text {
	color: #686868;
	font-size: 16px;
	line-height: 1.8;
}

#spage .text .list-paddingleft-2 li {
	margin-left: 19px;
}
#spage .text .bline {
	font-family: 'Roboto Condensed';
    font-size: 1.5em !important;
    font-weight: 600;
    color: #FFD600;
    position: relative;
    padding: 15px 0 10px;
    margin-bottom: 20px;
}
#spage .text .bline:before {
    content: "";
    width: 50px;
    height: 5px;
    border-radius: 5px;
    background: #FFD600;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
#faq .left h2 {
	font-family: 'Roboto Condensed';
	height: 50px;
	line-height: 50px;
	font-size: 42px;
	font-weight: bold;
	text-align: center;
	color: #FFD600;
	overflow: hidden;
}
#faq .left i {
	display: block;
	width: 50px;
	height: 5px;
	margin: 20px auto 0;
	background: #FFD600;
}
.faq_list {
	padding: 20px 0;
}
.faq_list li {
	border-bottom: 1px solid #e5e5e5
}
.faq_list li h3 {
	color: #555;
	font-size: 17px;
	min-height: 60px;
	line-height: 30px;
	padding: 20px 0;
	position: relative;
	cursor: pointer
}
.faq_list li h3 em {
	position: absolute;
	right: 0;
	top: 50%;
	font-style: normal;
	display: block;
    height: 20px;
    width: 20px;
	background: url("../img/icon_arr_down.svg") no-repeat;
    background-size: 100%;
	transform: translateY(-50%);
	transition: all .3s cubic-bezier(.04, .79, 1, 1) !important
}
.faq_list li .txt {
	color: #666;
	font-size: 16px;
	background: #f9f9f9;
	line-height: 1.8;
	padding: 30px 30px 28px;
	transition: all .3s cubic-bezier(.04, .79, 1, 1) !important;
	display: none
}
.faq_list li.on h3 {
	color: #FFD600;
	font-weight: 500;
	transition: all .3s;
}
.faq_list li.on h3:active {
	transition: all .3s;
}
.faq_list li.on h3 em {
	transform: rotate(180deg) translateY(50%);
}
.faq_form {
	background: #f9f9f9;
	padding: .3rem .3rem .5rem;
	border: 1px solid #e5e5e5;
}
@media (max-width:992px) {
	.faq_form {
		padding: 30px 20px
	}
}
.faq_form h2 {
	font-size: .24rem;
	margin-bottom: .3rem
}
@media (max-width:1200px) {
	.faq_form h2 {
		font-size: 18px
	}
}
@media (max-width:768px) {}
.faq_form .cell {
	margin-bottom: .2rem
}
.faq_form .cell input {
    width: 100%;
	height: 48px;
    font-size: 15px;
    padding-left: 12px;
    background: #fff;
    border: 1px solid #eaeaea;
}
.faq_form .cell textarea {
    width: 100%;
	height: 188px;
	font-size: 15px;
    background: #fff;
    border: 1px solid #eaeaea;
	resize: none;
	padding: 12px
}
.faq_form input::-webkit-input-placeholder, .faq_form textarea::-webkit-input-placeholder {
	color: #999
}
.faq_form input:-moz-placeholder, .faq_form textarea:-moz-placeholder {
	color: #999
}
.faq_form input::-moz-placeholder, .faq_form textarea::-moz-placeholder {
	color: #999
}
.faq_form input:-ms-input-placeholder, .faq_form textarea:-ms-input-placeholder {
	color: #999
}
.faq_form .btn {
	width: 100%;
	font-size: 16px;
	letter-spacing: 1px;
	text-align: center;
	line-height: 32px;
	background-color: #f7ac1b;
	color: #fff;
	border-radius: 4px;
}
.faq_form .btn:hover {
	background: #f48d2c;
	color: #fff;
}

#news-list ul li {
	position: relative;
	margin-top: 36px;
	padding-bottom: 36px;
	border-bottom: 1px solid #e5e5e5;
}
#news-list ul li:first-child {
	margin-top: 0;
}
#news-list ul li:after {
	content: '';
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -1px;
	display: block;
	height: 1px;
	background: #FFD600;
	opacity: 0;
	transition: all 0.3s linear;
}
#news-list ul li a {
	display: flex;
	align-items: center;
}
#news-list ul li span {
	width: 382px;
	height: 240px;
	border-radius: 10px;
	overflow: hidden;
}
#news-list ul li img {
	width: 382px;
	max-width: none;
	height: 240px;
	transition: transform 0.3s linear;
}
#news-list ul li section {
	flex: 1;
	margin-left: 36px;
	width: 1000px
}
#news-list ul li section h3 {
	font-family: 'Roboto Condensed';
	font-weight: 600;
	font-size: 24px;
    line-height: 1.2;
	/* white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	transition: all 0.1s linear; */
}
#news-list ul li section h4 {
	height: 18px;
	line-height: 18px;
	margin-top: 14px;
	font-size: 16px;
	color: #666;
	overflow: hidden;
}
#news-list ul li section p {
	color: #999;
	font-size: 15px;
	height: 60px;
	line-height: 1.8;
	margin-top: 30px;
}
#news-list ul li section h5 {
	display: flex;
	align-items: center;
	gap: 0 24px;
	margin-top: 36px;
}
#news-list ul li section h5 em {
	height: 18px;
	line-height: 18px;
	font-size: 15px;
	color: #666;
	overflow: hidden;
	transition: all 0.1s linear;
}
#news-list ul li section h5 i {
	width: 22px;
	height: 7px;
	background: url("../img/arrow-r.png") no-repeat center;
	transition: all 0.1s linear;
}
#news-list ul li:hover:after {
	right: 0;
	opacity: 1;
	transition: all 0.3s linear;
}
#news-list ul li:hover img {
	transform: scale(1.08);
	transition: transform 0.3s linear;
}
#news-list ul li:hover section h3 {
	color: #101010;
	transition: all 0.1s linear;
}
#news-list ul li:hover section h5 em {
	color: #101010;
	transition: all 0.1s linear;
}
#news-list ul li:hover section h5 i {
	background-image: url("../img/arrow-r-h.png");
	transition: all 0.1s linear;
}
#article-title {
	font-family: 'Roboto Condensed';
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
	text-align: center;
}
#article-info {
	height: 18px;
	line-height: 18px;
	margin-top: 20px;
	font-size: 15px;
	text-align: center;
	color: #999;
	overflow: hidden;
}
#article {
	font-size: 16px;
	line-height: 1.8;
	padding-top: 30px;
	margin-top: 31px;
	border-top: 1px dotted #dcdcdc;
	color: #666;
}
#article img {
	max-width: 100%;
	margin: 20px 0;
}
#prev-next {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
	margin-top: 50px;
	border-top: 1px solid #dcdcdc;
	border-bottom: 1px solid #dcdcdc;
	overflow: hidden;
}
#prev-next span {
	max-width: calc((100% - 60px) / 2);
	height: 18px;
	line-height: 18px;
	font-size: 15px;
	color: #666;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
#prev-next a {
	color: #666;
}
#prev-next a:hover {
	color: #FFD600;
}

#footer {
	padding: 70px 0 50px 0;
	background: #313131;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	clear: both;
}
#f-qrcode ul {
	display: flex;
	gap: 0 20px;
}
#f-qrcode ul li span {
	display: block;
	width: 130px;
	height: 130px;
	margin: 0 auto;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, .1);
	overflow: hidden;
}
#f-qrcode ul li img {
	width: 104px;
	height: 104px;
}
#f-qrcode ul li h4 {
	height: 16px;
	line-height: 16px;
	margin-top: 20px;
	font-size: 14px;
	text-align: center;
	color: #fff;
	overflow: hidden;
}
#f-contact {
    width: 40%;
	margin-left: 30px;
}
#f-contact ul li {
	margin-top: 25px;
}
#f-contact ul li:first-child {
	margin-top: 0;
}
#f-contact ul li h4 {
	height: 16px;
	line-height: 16px;
	font-size: 14px;
	color: #aaa;
	overflow: hidden;
}
#f-contact ul li h2 {
	font-family: 'Roboto Condensed';
	height: 32px;
	line-height: 32px;
	margin-top: 10px;
	font-size: 30px;
	font-weight: bold;
	color: #eee;
	overflow: hidden;
}
#f-contact ul li h3 {
	height: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #eee;
    margin-top: 10px;
    overflow: hidden;
}
#f-menu {
	display: flex;
	gap: 0 70px;
}
#f-menu dl dt {
	height: 18px;
	line-height: 18px;
	font-size: 17px;
	font-weight: 500;
	color: #eee;
	overflow: hidden;
}
#f-menu dl dd {
	height: 16px;
	line-height: 16px;
	margin-top: 16px;
	font-size: 14px;
	overflow: hidden;
}
#f-menu dl dt + dd {
	margin-top: 26px;
}
#f-menu dl dd a {
	display: inline-block;
	color: #aaa;
}
#f-menu dl dd a:hover {
	color: #fff;
}
#copyright {
	height: 74px;
	line-height: 74px;
    font-weight: 300;
    letter-spacing: 0.5px;
	background: #313131;
	color: #fff;
	overflow: hidden;
}
#copyright a {
	color: #fff;
}
#sidebar {
	z-index: 99;
	right: 15px;
	bottom: 15px;
}
#sidebar ul li {
	width: 50px;
	height: 50px;
	margin-top: 10px;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #FFD600;
	border-radius: 6px;
	cursor: pointer;
	overflow: hidden;
}
#sidebar ul li:first-child {
	margin-top: 0;
}
#sidebar ul li.sb-icon1 {
	background-image: url("../img/sb-icon1.png");
}
#sidebar ul li.sb-icon2 {
	background-image: url("../img/sb-icon2.png");
}
#sidebar ul li.sb-icon3 {
	background-image: url("../img/sb-icon3.png");
}
#sidebar ul li.sb-icon4 {
	background-image: url("../img/sb-icon4.png");
}
#sidebar ul li a {
    display: block;
	width: 50px;
	height: 50px;
}
#sidebar .tel {
	position: absolute;
	right: 66px;
	top: 60px;
	display: none;
	width: 192px;
	height: 50px;
	line-height: 50px;
	color: #101010;
	background: #FFD600;
	border-radius: 6px;
	font-family: 'Roboto Condensed';
	font-size: 20px;
	font-weight: 500;
	text-align: center;
}
#sidebar .tel:after {
	content: '';
	position: absolute;
	right: -7px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid #FFD600;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
#sidebar .qrcode {
	position: absolute;
	right: 80px;
	top: 76px;
	display: none;
	width: 140px;
	height: 140px;
	padding: 10px;
	background: #FFD600;
	border-radius: 8px;
}
#sidebar .qrcode:after {
	content: '';
	position: absolute;
	right: -7px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 0;
	height: 0;
	border-left: 7px solid #FFD600;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}
#sidebar .qrcode img {
	width: 120px;
	height: 120px;
}
#sidebar .slide {
	display: block;
	right: 80px;
	animation: SidebarSlideRight 0.3s;
	animation-fill-mode: forwards;
}
@keyframes SidebarSlideRight {
	100% {
		right: 70px;
	}
}
#quote {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	width: 450px;
	padding: 30px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}
#quote i {
	position: absolute;
	right: 20px;
	top: 20px;
	display: block;
	width: 20px;
	height: 20px;
	background: url("../img/close.png") no-repeat center;
	cursor: pointer;
	transition: all 0.1s linear;
}
#quote i:hover {
	background-image: url("../img/close-h.png");
	transition: all 0.1s linear;
}
#quote h2 {
	font-family: 'Roboto Condensed';
	height: 30px;
    line-height: 30px;
    font-size: 28px;
	font-weight: 600;
	color: #101010;
	overflow: hidden;
}
#quote h3 {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    color: #999;
    margin-top: 12px;
}
#quote .item {
	margin-top: 25px;
}
#quote .input {
	height: 50px;
	margin-bottom: 10px;
	overflow: hidden;
}
#quote .input input, #quote .input select {
	display: block;
	width: 100%;
	height: 46px;
    line-height: 46px;
    padding: 0 15px;
	background: #f5f5f5;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	color: #464646;
}
#quote .input input::-moz-placeholder {
	color: #999;
}
#quote .input input::-webkit-input-placeholder {
	color: #999;
}
#quote .input input::-ms-input-placeholder {
	color: #999;
}
#quote .textarea {}
#quote .textarea textarea {
	display: block;
	width: 100%;
	height: 120px;
	line-height: 1.5;
	padding: 15px;
	background: #f5f5f5;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	color: #464646;
}
#quote .textarea textarea::-moz-placeholder {
	color: #999;
}
#quote .textarea textarea::-webkit-input-placeholder {
	color: #999;
}
#quote .textarea textarea::-ms-input-placeholder {
	color: #999;
}
#quote .code {
	display: flex;
	align-items: center;
	gap: 0 20px;
	height: 60px;
	margin-top: 14px;
	overflow: hidden;
}
#quote .code input {
	flex: 1;
	display: block;
	width: auto;
	height: 60px;
	line-height: 60px;
	padding: 0 20px;
	background: #f5f5f5;
	border: none;
	border-radius: 8px;
	font-size: 15px;
	color: #464646;
}
#quote .code input::-moz-placeholder {
	color: #999;
}
#quote .code input::-webkit-input-placeholder {
	color: #999;
}
#quote .code input::-ms-input-placeholder {
	color: #999;
}
#quote .button {
	height: 50px;
	margin-top: 20px;
	overflow: hidden;
}
#quote .button button {
	display: block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	padding: 0 20px;
	background: #FFD600;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	letter-spacing: 1px;
	color: #101010;
}
.weo-tip {
	height: 52px;
	padding: 0 20px;
	border-radius: 5px;
}
.weo-tip-text {
	height: 52px;
}
.weo-tip-text i {
	width: 22px;
	height: 22px;
	margin-right: 12px;
	background-size: 22px 22px;
}
.weo-tip-text span {
	height: 18px;
	line-height: 18px;
	font-size: 15px;
}
.pagination {
	margin-top: 30px;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	padding-left: 0;
	list-style: none;
	border-radius: .25rem
}
.page-link {
	position: relative;
	margin-left: 7px;
	background: #fff;
	border-radius: 3px;
	text-align: center;
	display: block;
	min-width: 34px;
	height: 34px;
	line-height: 34px;
	padding: 0 12px;
	font-size: 14px;
	color: #666;
}
.page-link:hover {
	z-index: 2;
	border-color: #0076e2;
	color: #0076e2;
	border: 1px solid #0062be
}
.page-link:focus {
	z-index: 2;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}
.page-link:not(:disabled):not(.disabled) {
	cursor: pointer
}
.page-item:first-child .page-link {
	margin-left: 0;
	border-top-left-radius: .25rem;
	border-bottom-left-radius: .25rem
}
.page-item:last-child .page-link {
	border-top-right-radius: .25rem;
	border-bottom-right-radius: .25rem
}
.page-item.disabled .page-link {
	color: #6c757d;
	pointer-events: none;
	cursor: auto;
	background-color: #fff;
	border-color: #dee2e6
}
.page-item.active .page-link {
	z-index: 1;
	background: #0076e2;
	border-color: #0076e2;
	color: #fff;
}
.pagination-lg .page-link {
	padding: .75rem 1.5rem;
	font-size: 1.25rem;
	line-height: 1.5
}
.pagination-lg .page-item:first-child .page-link {
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem
}
.pagination-lg .page-item:last-child .page-link {
	border-top-right-radius: .3rem;
	border-bottom-right-radius: .3rem
}
.pagination-sm .page-link {
	padding: .25rem .5rem;
	font-size: .875rem;
	line-height: 1.5
}
.pagination-sm .page-item:first-child .page-link {
	border-top-left-radius: .2rem;
	border-bottom-left-radius: .2rem
}
.pagination-sm .page-item:last-child .page-link {
	border-top-right-radius: .2rem;
	border-bottom-right-radius: .2rem
}
#toolbar {
    display: none;
}
#page {
	display: none;
}
#sj-location {
	display: none;
}
@media (max-width:1440px) {
	.wrapper {
		width: 1280px;
	}
}
@media (max-width:1180px) {
	html {
		font-size: 100% !important;
	}
	body {
		font-size: 16px;
		font-size: 1.2rem;
	}
	#header {
		display: none;
	}
	#page {
		display: block;
		position: fixed;
		z-index: 99999;
		top: 0;
	}
	.pf {
		position: fixed
	}
	.pr {
		position: relative
	}
	.pa {
		position: absolute
	}
	.hidden {
		overflow: hidden
	}
	#sj-header {
		height: 3.75rem;
		background: #fff;
		z-index: 999;
		box-shadow: 0 0 10px 0 #ccc;
	}
	#sj-logo {
		left: 0.75rem;
		top: 1.5rem;
		height: 1.5rem;
		overflow: hidden;
	}
	#sj-logo img {
		width: auto;
		height: 1.25rem;
	}
	#nav-btn {
		right: 1rem;
		top: 1.3125rem;
		width: 1.875rem;
		height: 1.375rem;
		background: url("../img/nav-btn.png") no-repeat center;
		background-size: 80%;
		cursor: pointer;
	}
	#nav-btn.close {
		width: 1.375rem;
		height: 1.375rem;
		background-image: url("../img/close.png");
		background-size: 80%;
	}
	#sj-language {
		position: absolute;
		z-index: 99;
		height: 60px;
		right: 60px;
		padding: 20px 0;
		cursor: pointer;
	}
	#sj-language h3 {
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	#sj-language h3 span {
		height: 20px;
		line-height: 20px;
		padding-left: 30px;
		background: none;
		font-size: 15px;
		color: #666;
		overflow: hidden;
		transition: all 0.1s linear;
	}
	#sj-language h3 i {
		width: 12px;
		height: 7px;
		background: url("../img/arrow-b.png") no-repeat center;
		transition: background 0.1s linear, transform 0.2s linear;
	}
	#sj-language:hover h3 span {
		background-image: none;
		color: #FFD600;
		transition: all 0.1s linear;
	}
	#sj-language:hover h3 i {
		background-image: url("../img/arrow-b-h.png");
		transform: rotate(180deg);
		transition: background 0.1s linear, transform 0.2s linear;
	}
	#sj-language ul {
		position: absolute;
		left: 50%;
		top: 60px;
		transform: translate(-50%, 20px);
		display: none;
		width: 100px;
		padding: 12px 0;
		background: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, .08);
		opacity: 0;
		animation: NavAnimation 0.3s;
		animation-fill-mode: forwards;
	}
	#sj-language:hover ul {
		display: block;
	}
	#sj-language ul li {
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		text-align: center;
		overflow: hidden;
	}
	#sj-language ul li a {
		display: block;
		padding: 0 18px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		transition: all 0.2s linear;
	}
	#sj-language ul li:hover a {
		letter-spacing: 1px;
		color: #FFD600;
		transition: all 0.2s linear;
	}
	#sj-nav {
		left: 0;
		right: 0;
		top: 3.75rem;
		margin-left: auto;
		margin-right: auto;
		padding: 0 1rem;
		background: #fff;
		border-top: 0.0625rem solid #e1e1e1;
		box-sizing: border-box;
		z-index: 1000;
		overflow-y: auto;
		display: none;
	}
	#sj-nav ul li {
		display: flex;
		flex-wrap: wrap;
		line-height: 3rem;
		border-bottom: 0.0625rem dashed #e1e1e1;
		font-size: 15px;
	}
	#sj-nav ul li:last-child {
		border-bottom: none;
	}
	#sj-nav ul li a {
		flex: auto;
	}
	#sj-nav ul li a:hover {
		color: #3075dc;
	}
	#sj-nav ul li em {
		width: 1rem;
		height: 3rem;
		margin-left: 1rem;
		background: url("../img/add.png") no-repeat center;
		background-size: 1rem 1rem;
		cursor: pointer;
	}
	#sj-nav ul li em.del {
		background-image: url("../img/del.png");
	}
	#sj-nav ul li ul {
		width: 100%;
		display: none;
	}
	#sj-nav ul li ul li:first-child {
		border-top: 0.0625rem dashed #e1e1e1;
	}
	#sj-nav ul li ul li a {
		padding: 0;
		display: flex;
		justify-content: space-between;
		padding-left: 1.25rem;
		color: #666;
	}
	#sj-nav ul li ul li a span {
		width: 4rem;
		height: 3rem;
		text-align: center;
	}
	#sj-nav ul li ul li a span img {
		width: auto;
		height: 100%;
	}
	#sj-nav ul li ul li a h3 {
		flex: 1;
		font-size: 0.875rem;
		padding-left: 1rem;
	}
	#banner {
		padding-top: 3.75rem;
		height: 31.375rem;
	}
	#banner .swiper-pagination {
		bottom: 10px;
	}
	#banner .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	#banner .swiper-pagination-bullet-active {
		width: 30px;
	}
	.wrapper {
		width: 100%;
		padding: 0 15px;
	}
	#sj-search {
		width: 100%;
		margin-top: 20px;
	}
	#sj-search input {
		width: 88%;
		height: 44px;
		line-height: 44px;
		padding: 0 16px;
		border-radius: 0;
		font-size: 15px;
		color: #464646;
		border: 1px #e5e5e5 solid;
	}
	#sj-search input::-moz-placeholder {
		color: #999;
	}
	#sj-search input::-webkit-input-placeholder {
		color: #999;
	}
	#sj-search input::-ms-input-placeholder {
		color: #999;
	}
	#sj-search button {
		width: 44px;
		height: 44px;
		background: url("../img/search1.png") no-repeat center #FFD600;
		background-size: 20px 20px;
		border: none;
		border-radius: 0;
	}
	.wrap-gray {
		padding: 30px 0;
	}
	/*.noweo-flex{ display: block;}*/
	.title h2 {
		font-size: 40px;
		height: 20px;
		line-height: 55px;
	}
	.title h3 {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
	}
	.title h4 {
		line-height: 18px;
		margin-top: 6px;
		font-size: 14px;
		height: auto;
	}
	#product-tab {
		margin-top: 20px;
		height: 60px;
		margin-left: 50px;
		width: 50%;
	}
	#product-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#product-tab ul::-webkit-scrollbar {
		display: none;
	}
	#product-tab ul li {
		padding: 11px 15px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		overflow: visible;
		width: auto;
	}
	#product-tab ul li h3 {
		font-size: 14px;
	}
	#product-tab ul li h4 {
		font-size: 12px;
		margin-top: 0;
	}
	#product {
		margin-top: 32px;
	}
	#product .swiper-container, #product .swiper-wrapper, #product .swiper-slide {
		height: 440px;
	}
	#product .swiper-slide a {
		padding: 15px 20px;
	}
	#product .swiper-slide h2 {
		font-size: 14px;
	}
	#product .swiper-slide h3 {
		margin-top: 0px;
		font-size: 18px;
	}
	#product .swiper-slide h4 {
		width: 90px;
		height: 32px;
		line-height: 32px;
		margin-top: 15px;
		font-size: 14px;
	}
	#product .swiper-slide img {
		height: auto;
		width: 90%;
		margin: 20px auto 0 auto;
	}
	#product .swiper-slide i:before {
		bottom: 100px;
	}
	#product .swiper-slide i:after {
		height: 100px;
	}
	#product .swiper-button-prev {
		left: -10px;
		background-size: 8px;
	}
	#product .swiper-button-prev, #product .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#product .swiper-button-next {
		right: -10px;
		background-size: 8px;
	}
	.wrap-blue {
		padding-top: 30px;
	}
	.wrap-blue:before {
		height: 440px;
	}
	#scope {
		margin-top: 20px;
		padding: 20px;
	}
	#scope-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#scope-tab ul::-webkit-scrollbar {
		display: none;
	}
	#scope-tab ul li {
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		padding: 0 10px;
		overflow: visible;
	}
	#scope-item .left {
		width: 40%;
		height: 270px;
	}
	#scope-item .left img {
		width: 100%;
		height: 270px;
	}
	#scope-item .right {
		margin-left: 25px;
		margin-top: 0px;
	}
	#scope-item .right h2 {
		font-size: 18px;
	}
	#scope-item .right .text {
		height: auto;
		line-height: 24px;
		margin-top: 10px;
		font-size: 12px;
	}
	#scope-item .right .list {
		height: auto;
		margin-top: 15px;
	}
	#scope-item .right .list ul li {
		width: calc((100% - 40px) / 3);
		height: 85px;
		padding: 10px
	}
	#scope-item .right .list ul li h3 {
		font-size: 15px;
	}
	#scope-item .right .list ul li p {
		height: 40px;
		line-height: 20px;
		margin-top: 5px;
		font-size: 12px;
		-webkit-line-clamp: 2;
	}
	.wrap-white {
		padding: 40px 0;
	}
	#news-tab {
		height: 50px;
		margin-top: 20px;
		width: 50%;
	}
	#news-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#news-tab ul::-webkit-scrollbar {
		display: none;
	}
	#news-tab ul li {
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		overflow: visible;
		padding: 0 10px;
	}
	#news {
		margin-top: 20px;
	}
	#news .swiper-container, #news .swiper-wrapper, #news .swiper-slide {
		height: auto;
	}
	#news .swiper-slide a {
		padding: 10px;
	}
	#news .swiper-slide span {
		width: 100%;
		height: 160px;
	}
	#news .swiper-slide img {
		width: 100%;
		height: 100%;
	}
	#news .swiper-slide h3 {
		margin-top: 15px;
		font-size: 15px;
	}
	#news .swiper-slide h4 {
		margin-top: 5px;
		font-size: 12px;
	}
	#news .swiper-slide p {
		line-height: 24px;
		margin-top: 15px;
		font-size: 14px;
	}
	#news .swiper-button-prev {
		left: -15px;
		background-size: 15px;
	}
	#news .swiper-button-prev, #news .swiper-button-next {
		width: 15px;
		height: 25px;
	}
	#news .swiper-button-next {
		right: -15px;
		background-size: 15px;
	}
	#partner {
		margin-top: 25px;
	}
	#partner ul li {
		width: 22%;
		height: 65px;
		margin: 0 10px 20px 10px;
	}
	#partner ul li img {
		width: 100%;
		height: 100%;
	}
	#footer {
		padding: 40px 0;
	}
	#f-menu {
		display: none;
	}
	#f-qrcode ul li span {
		width: 160px;
		text-align: center;
	}
	#f-qrcode ul li h4 {
		margin-top: 15px;
	}
	#f-contact {
		margin-left: 30px;
		margin-top: 0px;
	}
	#copyright {
		height: auto;
		line-height: 24px;
		padding: 10px 0;
		font-size: 14px;
	}
	#sidebar {
		right: 10px;
	}
	#sidebar ul li {
		width: 50px;
		height: 50px;
		background-size: 25px;
		background-color: rgba(46, 52, 94, 0.8);
	}
	#sidebar ul li.sb-icon4 {
		background-size: 15px;
	}
	#sidebar .slide {
		right: 60px !important;
	}
	#sidebar .tel {
		top: 55px;
		width: 165px;
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	#sidebar .qrcode {
		top: 90px;
		width: 120px;
		height: 120px;
	}
	#sidebar .qrcode img {
		width: 100px;
		height: 100px;
	}
	#feedback {
		width: 85%;
		padding: 25px;
	}
	#feedback h2 {
		font-size: 20px;
	}
	#feedback h3 {
		height: auto;
		margin-top: 10px;
		font-size: 12px;
	}
	#feedback .item {
		margin-top: 20px;
	}
	#feedback .input {
		height: 40px;
	}
	#feedback .input input {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .button {
		height: 40px;
	}
	#feedback .button button {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .code {
		height: 40px;
	}
	#feedback .code input {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .textarea textarea {
		height: 80px;
	}
	.ny-banner {
		padding-top: 3.75rem;
	}
	#yg-banner {
		height: 130px;
		background-size: cover !important;
	}
	#yg-banner h2 {
		height: 40px;
		line-height: 40px;
		font-size: 24px;
	}
	#yg-banner h3 {
		margin-top: 0;
		font-size: 14px;
	}
	#location {
		display: none;
	}
	#sj-location {
		display: block;
		background-color: #f5f5f5;
	}
	#sj-location .item {
		height: 40px;
		line-height: 40px;
		padding-left: 26px;
		background: url("../img/home.png") no-repeat left center;
		font-size: 14px;
		color: #666;
		overflow: hidden;
	}
	#sj-location .item a {
		color: #666;
	}
	#sj-location .item a:hover {
		color: #FFD600;
	}
	#sj-location .menu {
		display: flex;
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		gap: 0 20px;
	}
	#sj-location .menu::-webkit-scrollbar {
		display: none;
	}
	#sj-location .menu a {
		height: 50px;
		line-height: 50px;
		font-size: 15px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		padding: 0;
		overflow: visible;
	}
	#sj-location .menu a:hover {
		color: #FFD600;
	}
	#sj-location .menu a.current {
		position: relative;
		z-index: 1;
		color: #FFD600;
	}
	#sj-location .menu a.current:after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		height: 3px;
		background: #FFD600;
	}
	#product-list ul {
		gap: 40px 20px
	}
	#product-list ul li {
		width: 31%;
		height: auto;
	}
	#product-list ul li img {
		width: 70%;
		height: auto;
	}
	#product-list ul li h3 {
		height: 45px;
		line-height: 45px;
		margin-top: 25px;
		font-size: 14px;
	}
	#product-list ul li:hover h3 {
		padding: 0 50px 0 15px;
		background: url("../img/arrow-r1.png") no-repeat right 15px center #FFD600;
		background-size: 20px;
	}
	#pd-info .left {
		width: 40%;
		height: 380px;
	}
	#pd-info .left .swiper-container, #pd-info .left .swiper-wrapper, #pd-info .left .swiper-slide {
		height: auto;
		max-height: 324px;
	}
	#pd-info .left .swiper-slide img {
		width: 70%;
		height: auto;
		max-height: 324px;
	}
	#pd-info .right {
		margin-top: 20px;
		width: 55%;
	}
	#pd-info .right h1 {
		font-size: 18px;
	}
	#pd-info .right h4 {
		font-size: 14px;
	}
	#pd-tab ul li {
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}
	#pd-item {
		margin-top: 10px;
	}
	#pd-item .video video {
		width: 100%;
		height: auto;
	}
	#pd-item .slide .swiper-slide ul {
		flex-wrap: wrap;
	}
	#pd-item .slide .swiper-slide ul li {
		width: 45%;
		height: auto;
		margin-bottom: 20px;
	}
	#pd-item .slide .swiper-slide ul li span {
		width: 100%;
		height: 130px;
	}
	#pd-item .slide .swiper-slide ul li img {
		width: 100%;
		height: 100%;
	}
	#pd-item .slide .swiper-slide ul li h3 {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#wrap-about {
		background-size: 100%;
		padding-bottom: 75px;
	}
	#about-since {
		display: block;
	}
	#about-since img {
		width: auto;
		height: 38px;
	}
	#about-since h3 {
		font-size: 20px;
		margin-top: 18px;
	}
	#about {
		display: block;
		margin-top: 30px;
	}
	#about .left {
		width: 100%;
		height: 338px;
	}
	#about .left video {
		width: 100%;
		height: 338px;
	}
	#about-since h2 {
		display: none;
	}
	#about .right {
		width: 100%;
		margin-top: 20px;
		font-size: 14px;
		line-height: 28px;
	}
	.about-title h2 {
		font-size: 24px;
	}
	.about-title h3 {
		font-size: 14px;
		margin-top: 5px;
	}
	#culture {
		margin-top: 35px;
	}
	#culture ul li {
		height: 250px;
		margin-bottom: 20px;
	}
	#culture ul li img {
		width: 100%;
		height: 100%;
	}
	#culture ul li section {
		top: 20px;
		left: 15px;
		right: 15px;
	}
	#culture ul li section h3 {
		font-size: 16px;
	}
	#culture ul li section i {
		margin: 15px auto 0 auto;
	}
	#culture ul li section .text {
		line-height: 24px;
		margin-top: 16px;
		font-size: 14px;
		max-height: 145px;
	}
	#wrap-history {
		padding-top: 30px;
		background-size: 136%;
	}
	#history {
		width: 520px;
		margin: 60px auto 0 auto;
	}
	#history-item:before {
		left: 230px;
		top: 14px
	}
	#history-item:after {
		left: 237px;
		top: 51px;
	}
	#history .swiper-slide {
		font-size: 24px;
	}
	#history .swiper-container {
		width: 80%;
	}
	#history .swiper-button-prev, #history .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#history-item {
		width: 100%;
		margin-top: 0;
	}
	#history-item .left {
		width: 100px;
	}
	#history-item .left h2 {
		font-size: 32px;
	}
	#history-item .right {
		margin-left: 20px;
		padding: 50px 0;
		margin-top: 32px;
	}
	#history-item .right ul li {
		line-height: 24px;
		padding-left: 45px;
		font-size: 14px;
	}
	#certificate {
		gap: 0 4px;
		margin-top: 30px;
	}
	#c-prev, #c-next {
		width: 30px;
		height: 30px;
		background-size: 15px;
	}
	#certificate-item {
		width: 276px;
		height: 230px;
	}
	#certificate-item ul li:nth-child(1) {
		left: 0;
		top: 45px;
		width: 110px;
		height: 135px;
	}
	#certificate-item ul li:nth-child(2) {
		left: 25px;
		top: 30px;
		width: 120px;
		height: 160px;
	}
	#certificate-item ul li:nth-child(3) {
		left: 50px;
		top: 0px;
		width: 160px;
		height: 215px;
	}
	#certificate-item ul li:nth-child(4) {
		left: 115px;
		top: 30px;
		width: 120px;
		height: 160px;
	}
	#certificate-item ul li:nth-child(5) {
		left: 150px;
		top: 45px;
		width: 110px;
		height: 135px;
	}
	#certificate-item ul li img {
		width: 100% !important;
		height: 100% !important;
	}
	.about-title h4 {
		height: auto;
		line-height: 24px;
		font-size: 14px;
	}
	#wrap-honor {
		padding: 30px 0;
	}
	#honor {
		margin-top: 30px;
	}
	#honor .swiper-container {
		width: 100%;
		height: 300px;
	}
	#honor .swiper-wrapper, #honor .swiper-slide {
		height: 300px;
	}
	#honor .swiper-slide ul {
		gap: 15px;
	}
	#honor .swiper-slide ul li {
		width: 23%;
		height: 140px;
	}
	#honor .swiper-slide ul li a {
		padding: 15px;
	}
	#honor .swiper-slide ul li span {
		width: 100%;
		height: 89px;
	}
	#honor .swiper-slide ul li img {
		width: 100%;
		height: 100%;
	}
	#honor .swiper-slide ul li h3 {
		margin-top: 10px;
		font-size: 14px;
	}
	#honor .swiper-button-prev, #honor .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	#contact .left h2 {
		font-size: 18px;
	}
	#contact .left h3 {
		height: auto;
		line-height: 24px;
		font-size: 14px;
		margin-top: 10px;
	}
	#contact .left .item {
		margin-top: 30px;
	}
	#contact .left .item ul li {
		font-size: 14px;
		background-size: 30px;
		line-height: 30px;
		padding-left: 40px;
	}
	#contact .right {
		margin-left: 20px;
	}
	#contact .right ul {
		gap: 0 15px
	}
	#contact .right ul li {
		padding: 15px;
	}
	#contact .right ul li img {
		width: 130px;
		height: 130px;
	}
	#contact .right ul li h4 {
		font-size: 14px;
	}
	#map {
		height: 230px;
		margin-top: 40px;
	}
	#pre-sale .left h2 {
		font-size: 24px;
	}
	#pre-sale .left h3 {
		font-size: 14px;
		margin-top: 0;
	}
	#pre-sale .left i {
		margin-top: 20px;
	}
	#pre-sale .left .text {
		margin-top: 25px;
		font-size: 14px;
		line-height: 28px;
	}
	#pre-sale .right {
		width: 50%;
		margin-top: 20px;
		height: auto;
	}
	#pre-sale .right ul li {
		width: 57%;
		height: 100px;
	}
	#pre-sale .right ul li:nth-child(2), #pre-sale .right ul li:nth-child(3) {
		width: 40%;
	}
	#pre-sale .right ul li img {
		width: 100%;
		height: 100%;
	}
	#pre-sale .right ul li h3 {
		font-size: 14px;
	}
	#wrap-service {
		padding: 30px 0;
	}
	#after-sale .text h2 {
		font-size: 24px;
	}
	#after-sale .text h3 {
		font-size: 14px;
		margin-top: 0;
	}
	#after-sale .item {
		margin-top: 30px;
	}
	#after-sale .item ul {
		gap: 0 20px;
		flex-wrap: wrap;
	}
	#after-sale .item ul li {
		width: 47%;
		height: auto;
		margin-bottom: 20px;
		padding: 15px;
	}
	#after-sale .item ul li i {
		width: 60px;
		height: 60px;
		background-size: 25px;
	}
	#after-sale .item ul li h3 {
		margin-top: 10px;
		font-size: 15px;
	}
	#after-sale .item ul li p {
		line-height: 24px;
		height: auto;
		max-height: 192px;
		overflow-y: auto;
		-webkit-line-clamp: 10;
		margin-top: 10px;
		font-size: 14px;
	}
	.service-title h2 {
		font-size: 24px;
	}
	.service-title h3 {
		height: auto;
		font-size: 14px;
		margin-top: 0;
		line-height: 24px;
	}
	#network {
		display: block;
		margin-top: 0;
	}
	#network .left {
		display: none;
	}
	#network .right {
		width: 100%;
	}
	#network-tab ul li {
		font-size: 14px;
	}
	#network-item {
		margin-top: 30px;
	}
	#network-item h2 {
		font-size: 16px;
	}
	#network-item .text {
		margin-top: 20px;
	}
	#network-item .text ul li h3 {
		font-size: 15px;
	}
	#network-item .text ul li section {
		font-size: 14px;
		line-height: 28px;
	}
	#network-global {
		margin-top: 30px;
	}
	#network-global img {
		width: 100%;
		height: auto;
	}
	#news-list ul li {
		margin-top: 25px;
		padding-bottom: 25px;
	}
	#news-list ul li span {
		width: 140px;
		height: 110px;
	}
	#news-list ul li img {
		width: 100%;
		height: 100%;
	}
	#news-list ul li section {
		margin-left: 25px;
		width: 48%;
	}
	#news-list ul li section h3 {
		font-size: 16px;
	}
	#news-list ul li section h4 {
		margin-top: 0;
		font-size: 12px;
	}
	#news-list ul li section p {
		height: 50px;
		line-height: 25px;
		margin-top: 10px;
		font-size: 14px;
	}
	#news-list ul li section h5 {
		display: none;
	}
	#article-title {
		font-size: 20px;
	}
	#article-info {
		font-size: 12px;
	}
	#article {
		line-height: 30px;
		margin-top: 30px;
		padding-top: 30px;
		font-size: 14px;
	}
	#prev-next {
		display: block;
		height: auto;
		padding: 10px 0;
	}
	#prev-next a {
		display: block;
		width: 100%;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		max-width: 100%;
	}
}
@media (max-width:750px) {
	html {
		font-size: 100% !important;
	}
	body {
		font-size: 16px;
		font-size: 1.2rem;
		margin: 0 auto 56px;
	}
	#header {
		display: none;
	}
	#page {
		display: block;
		position: fixed;
		z-index: 99999;
		top: 0;
	}
	.pf {
		position: fixed
	}
	.pr {
		position: relative
	}
	.pa {
		position: absolute
	}
	.hidden {
		overflow: hidden
	}
	#sj-header {
		height: 3.75rem;
		background: #fff;
		z-index: 999;
		box-shadow: 0 0 10px 0 #ccc;
	}
	#sj-logo {
		left: 0.75rem;
		top: 1rem;
		height: 2rem;
		overflow: hidden;
	}
	#sj-logo img {
		width: auto;
		height: 2rem;
	}
	#nav-btn {
		right: 1rem;
		top: 1.3125rem;
		width: 1.875rem;
		height: 1.375rem;
		background: url("../img/nav-btn.png") no-repeat center;
		background-size: 80%;
		cursor: pointer;
	}
	#nav-btn.close {
		width: 1.375rem;
		height: 1.375rem;
		background-image: url("../img/close.png");
		background-size: 80%;
	}
	#sj-language {
		position: absolute;
		z-index: 99;
		height: 60px;
		right: 60px;
		padding: 20px 0;
		cursor: pointer;
	}
	#sj-language h3 {
		display: flex;
		align-items: center;
		gap: 0 5px;
	}
	#sj-language h3 span {
		height: 20px;
		line-height: 20px;
		padding-left: 30px;
		background: none;
		font-size: 15px;
		color: #666;
		overflow: hidden;
		transition: all 0.1s linear;
	}
	#sj-language h3 i {
		width: 12px;
		height: 7px;
		background: url("../img/arrow-b.png") no-repeat center;
		transition: background 0.1s linear, transform 0.2s linear;
	}
	#sj-language:hover h3 span {
		background-image: none;
		color: #FFD600;
		transition: all 0.1s linear;
	}
	#sj-language:hover h3 i {
		background-image: url("../img/arrow-b-h.png");
		transform: rotate(180deg);
		transition: background 0.1s linear, transform 0.2s linear;
	}
	#sj-language ul {
		position: absolute;
		left: 50%;
		top: 60px;
		transform: translate(-50%, 20px);
		display: none;
		width: 100px;
		padding: 12px 0;
		background: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, .08);
		opacity: 0;
		animation: NavAnimation 0.3s;
		animation-fill-mode: forwards;
	}
	#sj-language:hover ul {
		display: block;
	}
	#sj-language ul li {
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		text-align: center;
		overflow: hidden;
	}
	#sj-language ul li a {
		display: block;
		padding: 0 18px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
		transition: all 0.2s linear;
	}
	#sj-language ul li:hover a {
		letter-spacing: 1px;
		color: #FFD600;
		transition: all 0.2s linear;
	}
	#sj-nav {
		left: 0;
		right: 0;
		top: 3.75rem;
		margin-left: auto;
		margin-right: auto;
		padding: 0 1rem;
		background: #fff;
		border-top: 0.0625rem solid #e1e1e1;
		box-sizing: border-box;
		z-index: 1000;
		overflow-y: auto;
		display: none;
	}
	#sj-nav ul li {
		display: flex;
		flex-wrap: wrap;
		line-height: 3.6rem;
		border-bottom: 1px dashed #e1e1e1;
		font-size: 16px;
	}
	#sj-nav ul li:last-child {
		border-bottom: none;
	}
	#sj-nav ul li a {
		flex: auto;
	}
	#sj-nav ul li a:hover {
		color: #3075dc;
	}
	#sj-nav ul li em {
		width: 1rem;
		height: 3.6rem;
		margin-left: 1rem;
		background: url("../img/add.png") no-repeat center;
		background-size: 1rem 1rem;
		cursor: pointer;
	}
	#sj-nav ul li em.del {
		background-image: url("../img/del.png");
	}
	#sj-nav ul li ul {
		width: 100%;
		display: none;
	}
	#sj-nav ul li ul li:first-child {
		border-top: 0.0625rem dashed #e1e1e1;
	}
	#sj-nav ul li ul li a {
		display: flex;
		justify-content: space-between;
		padding-left: 0 0 0 1.2rem;
		font-size: 14px;
		color: #666;
	}
	#sj-nav ul li ul li a span {
		width: 4rem;
		height: 3rem;
		text-align: center;
	}
	#sj-nav ul li ul li a span img {
		width: auto;
		height: 100%;
	}
	#sj-nav ul li ul li a h3 {
		flex: 1;
		font-size: 0.875rem;
		padding-left: 1rem;
	}
	#banner {
		padding-top: 3.75rem;
		height: auto;
	}
	#banner .swiper-pagination {
		bottom: 15px;
	}
	#banner .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}
	#banner .swiper-pagination-bullet-active {
		width: 30px;
	}
	#yg-banner .item {
		font-size: 13px;
    	margin-top: 0;
	}
	.wrapper {
		width: 100%;
		padding: 0 10px;
	}
	#sj-search {
		width: 100%;
		margin: 20px 0 10px;
	}
	#sj-search input {
		width: 88%;
		height: 40px;
		line-height: 40px;
		padding: 0 16px;
		border-radius: 0;
		font-size: 13px;
		color: #464646;
		border: 1px #e5e5e5 solid;
	}
	#sj-search input::-moz-placeholder {
		color: #999;
	}
	#sj-search input::-webkit-input-placeholder {
		color: #999;
	}
	#sj-search input::-ms-input-placeholder {
		color: #999;
	}
	#sj-search button {
		width: 40px;
		height: 40px;
		background: url("../img/search1.png") no-repeat center #FFD600;
		background-size: 20px 20px;
		border: none;
		border-radius: 0;
	}
	#advantage {
    	padding-top: 0;
	}
	#product {
		padding-top: 0;
	}
	.wrap-gray {
		padding: 20px 0;
	}
	.noweo-flex {
		display: block;
	}
	.title {
		width: 100%;
	}
	.title h2 {
		font-size: 40px;
		height: 20px;
		line-height: 55px;
	}
	.title h3 {
		font-size: 20px;
		height: 40px;
		line-height: 40px;
		font-weight: 600;
		letter-spacing: 0.5px;
		text-transform: uppercase;
	}
	.title h4 {
		font-size: 13.5px;
		height: auto;
		line-height: 1.4;
		margin-top: 0;
	}
	#product-tab {
        width: 100%;
        height: 39px;
		margin-top: 15px;
        margin-left: 0;
        border-radius: 0px;
	}
	#product-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#product-tab ul::-webkit-scrollbar {
		display: none;
	}
	#product-tab ul li {
		padding: 11px 15px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		overflow: visible;
		width: auto;
	}
	#product-tab ul li.current {
		border-radius: 0;
	}
	#product-tab ul li h3 {
		font-size: 14px;
	}
	#product-tab ul li h4 {
		font-size: 12px;
		margin-top: 0;
	}
	#product {
		margin-top: 20px;
	}
	#product .swiper-container, #product .swiper-wrapper, #product .swiper-slide {
		height: auto;
	}
	#product .swiper-slide a {
		padding: 15px;
	}
	#product .swiper-slide h2 {
		font-size: 13px;
	}
	#product .swiper-slide h3 {
		margin-top: 0px;
		font-size: 18px;
	}
	#product .swiper-slide h4 {
        font-size: 12px;
		width: 100%;
        height: 30px;
        line-height: 30px;
        margin-top: 15px;
	}
	#product .swiper-slide img {
		height: auto;
		width: 100%;
		margin: 10px auto 0;
	}
	#product .swiper-slide i:before {
		bottom: 100px;
	}
	#product .swiper-slide i:after {
		height: 100px;
	}
	#product .swiper-button-prev {
		left: -10px;
		background-size: 8px;
	}
	#product .swiper-button-prev, #product .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#product .swiper-button-next {
		right: -10px;
		background-size: 8px;
	}
	.wrap-blue {
		padding-top: 15px;
	}
	#scope {
		padding: 15px;
		margin: 10px 0;
	}
	#scope-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#scope-tab ul::-webkit-scrollbar {
		display: none;
	}
	#scope-tab ul li {
		height: 36px;
		line-height: 36px;
		font-size: 14px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		padding: 0 12px;
		overflow: visible;
	}
	#scope-item {
    	margin-top: 20px;
	}
	#scope-item .left {
		width: 80%;
        margin: 0 auto;
	}
	#scope-item .left img {
		width: 100%;
		height: 270px;
	}
	#scope-item .right {
		text-align: center;
		margin-top: 5px;
		margin-left: 0;
	}
	#scope-item .right h2 {
		font-size: 20px;
	}
	#scope-item .right .text {
		font-size: 13px;
		text-align: left;
		height: auto;
		line-height: 1.5;
		margin: 10px 0 25px;
	}
	#scope-item .right .list {
		height: auto;
		margin-top: 15px;
	}
	#scope-item .right .list ul {
		gap: 10px;
	}
	#scope-item .right .list ul li {
		width: calc((100% - 10px) / 2);
		height: 120px;
		padding: 10px
	}
	#scope-item .right .list ul li h3 {
		font-size: 16px;
	}
	#scope-item .right .list ul li p {
		height: 80px;
		line-height: 1.5;
		font-size: 12px;
		margin-top: 5px;
		-webkit-line-clamp: 5;
	}
	.wrap-white {
		padding: 20px 0;
	}
	#news-tab {
		height: 50px;
		margin-top: 20px;
		width: 100%;
	}
	#news-tab ul {
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
	}
	#news-tab ul::-webkit-scrollbar {
		display: none;
	}
	#news-tab ul li {
		height: 50px;
		line-height: 50px;
		font-size: 14px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		overflow: visible;
		padding: 0 10px;
	}
	#news {
		margin-top: 10px;
	}
	#news .swiper-container, #news .swiper-wrapper, #news .swiper-slide {
		height: auto;
	}
	#news .swiper-slide a {
		padding: 10px;
	}
	#news .swiper-slide span {
		width: 100%;
		height: 110px;
	}
	#news .swiper-slide img {
		width: 100%;
		height: 100%;
	}
	#news .swiper-slide h3 {
		font-size: 15px;
		margin-top: 10px;
	}
	#news .swiper-slide h4 {
		font-size: 13px;
		margin-top: 5px;
	}
	#news .swiper-slide p {
		font-size: 13px;
		height: 58px;
		line-height: 1.4;
		margin-top: 5px;
	}
	#news .swiper-button-prev {
		left: -10px;
		background-size: 10px;
	}
	#news .swiper-button-prev, #news .swiper-button-next {
		width: 10px;
		height: 20px;
	}
	#news .swiper-button-next {
		right: -10px;
		background-size: 10px;
	}
	.index-about {
		display: none;
	}
	#partner {
		margin-top: 25px;
	}
	#partner ul li {
		width: 27%;
		height: 65px;
		margin: 0 10px 20px;
	}
	#partner ul li img {
		width: 100%;
		height: 100%;
	}
	#footer {
		padding: 12px 0;
	}
	#f-menu {
		display: none;
	}
	#f-qrcode ul li span {
		width: 160px;
		text-align: center;
	}
	#f-qrcode ul li h4 {
		margin-top: 15px;
	}
	#f-contact {
	    width: 100%;
		margin-left: 0;
		margin-top: 10px;
	}
	#f-contact ul li {
    	margin-top: 0;
	}
	#f-contact ul li:nth-child(2) {
    	display: none;
	}
	#f-contact ul li h2 {
		font-size: 22px;
		font-weight: 600;
        height: 23px;
        line-height: 23px;
        margin: 0 0 10px;
	}
	#f-contact ul li h3 {
        display: inline-block;
		font-size: 13px;
    	line-height: 1.5;
        margin-top: 0;
	}
	#f-contact ul li h4 {
        display: inline-block;
	    font-size: 12px;
	    height: 16px;
        line-height: 12px;
	}
	#copyright {
		height: auto;
		font-size: 12px;
		line-height: 1.5;
		padding: 15px 0;
	}
	#sidebar {
		display: none;
		right: 10px;
	}
	#sidebar ul li {
		width: 50px;
		height: 50px;
		background-size: 25px;
		background-color: rgba(46, 52, 94, 0.8);
	}
	#sidebar ul li.sb-icon4 {
		background-size: 15px;
	}
	#sidebar .slide {
		right: 60px !important;
	}
	#sidebar .tel {
		top: 55px;
		width: 165px;
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	#sidebar .qrcode {
		top: 90px;
		width: 120px;
		height: 120px;
	}
	#sidebar .qrcode img {
		width: 100px;
		height: 100px;
	}

	#quote {
	    width: 99%;
	    padding: 15px;
	}
	#quote h2 {
		font-size: 24px;
	}
	#quote h3 {
	    font-size: 14px;
	    line-height: 1.35;
	}
	#feedback {
		width: 85%;
		padding: 25px;
	}
	#feedback h2 {
		font-size: 20px;
	}
	#feedback h3 {
		height: auto;
		margin-top: 10px;
		font-size: 12px;
	}
	#quote .input input {
	    font-size: 14px;
	    height: 44px;
	    line-height: 44px;
	    border-radius: 6px;
	    padding: 0 10px;
	}
	#quote .textarea textarea {
	    height: 90px;
	    line-height: 1.4;
	    font-size: 14px;
	    border-radius: 6px;
	    padding: 10px;
	}
	#quote .button button {
	    height: 42px;
	    line-height: 42px;
	    border-radius: 6px;
	    font-size: 15px;
	    color: #101010;
	}
	.layui-layer-title {
		height: 42px;
		line-height: 42px;
		font-size: 15px;
    }
	#feedback .item {
		margin-top: 20px;
	}
	#feedback .input {
		height: 40px;
	}
	#feedback .input input {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .button {
		height: 40px;
	}
	#feedback .button button {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .code {
		height: 40px;
	}
	#feedback .code input {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#feedback .textarea textarea {
		height: 80px;
	}
	.ny-banner {
		padding-top: 3.75rem;
	}
	#yg-banner {
		height: 130px;
		background-size: cover !important;
	}
	#yg-banner h2 {
		font-family: 'Roboto Condensed';
		font-size: 22px;
		height: 40px;
		line-height: 40px;
	}
	#yg-banner h3 {
		margin-top: 0;
		font-size: 14px;
	}
	#promenu {
		height: auto;
	}
	#promenu .nav {
		display: none;
	}
	#location {
		display: none;
	}
	#sj-location {
		display: block;
		background-color: #f5f5f5;
		border-bottom: 1px solid #ddd;
	}
	#sj-location .item {
		height: 40px;
		line-height: 40px;
		padding-left: 26px;
		background: url("../img/home.png") no-repeat left center;
		font-size: 12px;
		color: #666;
		overflow: hidden;
	}
	#sj-location .item a {
		color: #666;
	}
	#sj-location .item a:hover {
		color: #FFD600;
	}
	#sj-location .menu {
		display: flex;
		justify-content: flex-start;
		flex-wrap: nowrap;
		overflow-x: auto;
		overflow-y: hidden;
		white-space: nowrap;
		gap: 0 20px;
		background: #fff;
		margin: 0 -20px;
		padding: 0 20px;
	}
	#sj-location .menu::-webkit-scrollbar {
		display: none;
	}
	#sj-location .menu a {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
		text-align: center;
		cursor: pointer;
		box-sizing: border-box;
		padding: 0;
		overflow: visible;
	}
	#sj-location .menu a:hover {
		color: #FFD600;
	}
	#sj-location .menu a.current {
		position: relative;
		z-index: 1;
		color: #FFD600;
	}
	#sj-location .menu a.current:after {
		content: '';
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		display: block;
		height: 3px;
		background: #FFD600;
	}
	#product-list ul {
		gap: 20px 0;
	}
	#product-list ul li {
		float: left;
		width: 48%;
		height: auto;
		margin-right: 4%;
	}
	#product-list ul li:nth-child(2n) {
		margin-right: 0;
	}
	#product-list ul li img {
		width: 100%;
		height: auto;
    	padding: 10px;
	}
	#product-list ul li h3 {
        font-size: 13px;
		height: 40px;
        line-height: 40px;
        padding: 0 10px;
        margin-top: 0;
	}
	#product-list ul li:hover h3 {
		padding: 0 50px 0 15px;
		background: url("../img/arrow-r1.png") no-repeat right 15px center #FFD600;
		background-size: 20px;
	}
	#pd-info {
		display: block;
	}
	#pd-info .left {
		width: 100%;
        height: auto;
	}
	#pd-info .left .swiper-container, #pd-info .left .swiper-wrapper, #pd-info .left .swiper-slide {
		height: auto;
		max-height: 324px;
	}
	#pd-info .left .swiper-slide img {
		width: 100%;
		height: auto;
		max-height: 324px;
	}
	#pd-info .right {
		margin-top: 20px;
		width: 100%;
	}
	#pd-info .right i {
		margin: 10px auto 0;
	}
	#pd-info .right h1 {
		font-size: 18px;
        text-align: center;
	}
	#pd-info .right h4 {
		font-size: 14px;
        text-align: center;
		display: block;
        width: 60%;
    	height: 42px;
	    line-height: 42px;
	    border-radius: 21px;
        margin: 25px auto 0;
	}
	#pd-info .right h4 a {
	    display: block;
	    color: #101010;
	}
	#pd-info .right h4 em {
	    padding-left: 32px;
	    background: url(../img/consult.png) no-repeat left 11px;
	}
	#pd-info .right .desp {
    	font-size: 14px;
    	height: auto;
    	line-height: 1.6;
    	margin-top: 20px;
	}
	#pd-info .right .desp p {
    	background: url("../img/icon_item.svg") no-repeat 10px center;
	    background-size: 4%;
	    font-size: 14px;
	    padding: 12px 0 11px 35px;
	}
	#pd-tab {
	    height: 42px;
	    margin-top: 30px;
    }
	#pd-tab ul li {
		height: 42px;
		line-height: 42px;
		font-size: 13px;
	}
	#pd-item {
		margin-top: 18px;
	}
	#pd-item .video video {
		width: 100%;
		height: auto;
	}
	#pd-item .slide .swiper-slide ul {
		flex-wrap: wrap;
	}
	#pd-item .slide .swiper-slide ul li {
		width: 45%;
		height: auto;
		margin-bottom: 20px;
	}
	#pd-item .slide .swiper-slide ul li span {
		width: 100%;
		height: 130px;
	}
	#pd-item .slide .swiper-slide ul li img {
		width: 100%;
		height: 100%;
	}
	#pd-item .slide .swiper-slide ul li h3 {
		height: 40px;
		line-height: 40px;
		font-size: 14px;
	}
	#pd-item .text {
		font-size: 14px;
		line-height: 1.7;
	}
	#pd-item .text table {
	    width: 100%;
	    margin: 10px 0;
	}
	#pd-item .text table tr td {
	    font-size: 13px;
	    line-height: 1.3;
	    padding: 7px 8px 6px;
	}
	#wrap-about {
		background-size: 100%;
		padding-bottom: 60px;
        margin: 0 -10px;
	}
	#about-since {
		display: block;
		text-align: center;
	}
	#about-since img {
		width: auto;
		height: 40px;
		margin-top: 5px;
	}
	#about-since h3 {
		font-size: 15px;
		margin-top: 10px;
	}
	#about {
		display: block;
		margin-top: 15px;
	}
	#about .left {
		width: 100%;
		height: 178px;
	}
	#about .left video {
		width: 100%;
		height: 178px;
	}
	#about-since h2 {
		display: none;
	}
	#about .right {
		width: 100%;
		font-size: 14px;
		line-height: 1.6;
        margin-top: 10px;
        margin-bottom: -40px;
	}
	.about-title h2 {
		font-size: 20px;
    	line-height: 40px;
    	height: 40px;
	}
	.about-title h3 {
		font-size: 14px;
		margin-top: 5px;
	}
	#culture {
		margin-top: 15px;
	}
	#culture ul {
		display: block;
	}
	#culture ul li {
		float: left;
		width: 48%;
		height: 200px;
		margin-right: 4%;
		margin-bottom: 15px;
	}
	#culture ul li:nth-child(2n) {
		margin-right: 0;
	}
	#culture ul li img {
		width: 100%;
		height: 100%;
	}
	#culture ul li section {
		top: 20px;
		left: 15px;
		right: 15px;
	}
	#culture ul li section h3 {
		font-size: 16px;
        height: 40px;
		line-height: 1.3;
	}
	#culture ul li section i {
		margin: 15px auto 0;
	}
	#culture ul li section span {
		margin: 20px auto;
	}
	#culture ul li section .text {
		display: none;
		font-size: 14px;
		line-height: 1.4;
		max-height: 100px;
		margin-top: 10px;
	}
	#wrap-history {
		padding-top: 30px;
		background-size: 300%;
	}
	#products {
	    padding-top: 10px;
	    clear: both;
	}
	#history {
		width: 100%;
		margin: 88px auto 0;
	}
	#history .swiper-slide {
		font-size: 18px;
	}
	#history .swiper-container {
		width: 80%;
	}
	#history .swiper-button-prev, #history .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#history-item {
		width: 100%;
		margin-top: 0;
	}
	#history-item .left {
		width: 100px;
	}
	#history-item .left h2 {
		font-size: 18px;
	}
	#history-item .right {
		margin-left: 20px;
		padding: 50px 0;
		margin-top: 32px;
	}
	#history-item .right ul li {
		font-size: 14px;
		line-height: 1.5;
		padding-left: 45px;
	}
	#certificate {
		gap: 0 4px;
		margin-top: 30px;
	}
	#c-prev, #c-next {
		width: 30px;
		height: 30px;
		background-size: 15px;
	}
	#certificate-item {
		width: 276px;
		height: 230px;
	}
	#certificate-item ul li:nth-child(1) {
		left: 0;
		top: 45px;
		width: 110px;
		height: 135px;
	}
	#certificate-item ul li:nth-child(2) {
		left: 25px;
		top: 30px;
		width: 120px;
		height: 160px;
	}
	#certificate-item ul li:nth-child(3) {
		left: 50px;
		top: 0px;
		width: 160px;
		height: 215px;
	}
	#certificate-item ul li:nth-child(4) {
		left: 115px;
		top: 30px;
		width: 120px;
		height: 160px;
	}
	#certificate-item ul li:nth-child(5) {
		left: 150px;
		top: 45px;
		width: 110px;
		height: 135px;
	}
	#certificate-item ul li img {
		width: 100% !important;
		height: 100% !important;
	}
	.about-title h4 {
		height: auto;
		line-height: 24px;
		font-size: 14px;
	}
	#wrap-honor {
		padding: 30px 0;
	}
	#honor {
		margin-top: 30px;
	}
	#honor .swiper-container {
		width: 100%;
		height: 620px;
	}
	#honor .swiper-wrapper, #honor .swiper-slide {
		height: 620px;
	}
	#honor .swiper-slide ul {
		gap: 15px;
	}
	#honor .swiper-slide ul li {
		width: 47%;
		height: 140px;
	}
	#honor .swiper-slide ul li a {
		padding: 15px;
	}
	#honor .swiper-slide ul li span {
		width: 100%;
		height: 89px;
	}
	#honor .swiper-slide ul li img {
		width: 100%;
		height: 100%;
	}
	#honor .swiper-slide ul li h3 {
		margin-top: 10px;
		font-size: 14px;
	}
	#honor .swiper-button-prev, #honor .swiper-button-next {
		width: 40px;
		height: 40px;
	}
	#contact {
		display: block;
	}
	#contact .left h2 {
		font-size: 18px;
	}
	#contact .left h3 {
		height: auto;
		line-height: 24px;
		font-size: 14px;
		margin-top: 10px;
	}
	#contact .left .item {
		margin-top: 0;
	}
	#contact .left .item ul li {
		font-size: 14px;
        background-size: 30px;
        height: auto;
        line-height: 1.5;
        padding-left: 5px;
	}
	#contact .right {
		margin-top: 20px;
        margin-left: 3px;
	}
	#contact .right ul {
		gap: 0 15px
	}
	#contact .right ul li {
		padding: 15px;
	}
	#contact .right ul li img {
		width: 130px;
		height: 130px;
	}
	#contact .right ul li h4 {
		font-size: 14px;
	}
	#map {
		height: 300px;
        margin-top: 30px;
        margin-bottom: 1px;
	}
	#pre-sale {
		display: block;
	}
	#pre-sale .left h2 {
		font-size: 22px;
		height: 30px;
    	line-height: 30px;
	}
	#pre-sale .left h3 {
		font-size: 14px;
		margin-top: 0;
	}
	#pre-sale .left i {
		margin-top: 10px;
	}
	#pre-sale .left .text {
        font-size: 14px;
        line-height: 1.7;
		margin-top: 15px;
	}
	#pre-sale .right {
		width: 100%;
		margin-top: 20px;
		height: auto;
	}
	#pre-sale .right ul {
		gap: 10px;
	}
	#pre-sale .right ul li {
		width: 57%;
		height: 100px;
	}
	#pre-sale .right ul li:nth-child(2), #pre-sale .right ul li:nth-child(3) {
		width: 40%;
	}
	#pre-sale .right ul li img {
		width: 100%;
		height: 100%;
	}
	#pre-sale .right ul li h3 {
		font-size: 14px;
		height: 36px;
    	line-height: 36px;
	}
	#wrap-service {
		padding: 20px 0 10px;
	}
	#after-sale .text h2 {
		font-size: 22px;
	}
	#after-sale .text h3 {
		font-size: 14px;
		margin-top: 0;
	}
	#after-sale .item {
		margin-top: 15px;
	}
	#after-sale .item ul {
		gap: 0 15px;
		flex-wrap: wrap;
	}
	#after-sale .item ul li {
		width: 100%;
		height: auto;
		margin-bottom: 15px;
		padding: 15px;
	}
	#after-sale .item ul li i {
		width: 32px;
        height: 32px;
        background-size: 15px;
        display: inline-block;
	}
	#after-sale .item ul li h3 {
        display: inline-block;
        font-size: 17px;
        line-height: 1.2;
        padding-left: 5px;
		margin-top: 5px;
	}
	#after-sale .item ul li p {
		font-size: 13px;
		height: auto;
		line-height: 1.6;
		max-height: 175px;
		overflow-y: auto;
		-webkit-line-clamp: 10;
		margin-top: 5px;
	}
	#faq .left h2 {
		font-size: 22px;
        height: 30px;
        line-height: 30px;
	}
	#faq .left i {
	    display: block;
	    width: 50px;
	    height: 5px;
	    margin-top: 10px;
	    background: #FFD600;
	}
	.faq_list li h3 {
	    color: #555;
	    font-size: 14px;
	    min-height: 30px;
	    line-height: 20px;
	    padding: 12px 0;
	}
	.faq_list li h3 em {
		height: 14px;
		width: 14px;
	}
	.faq_list li .txt {
		font-size: 13px;
		padding: 10px;
	}
	.service-title h2 {
		font-size: 24px;
	}
	.service-title h3 {
		height: auto;
		font-size: 14px;
		margin-top: 0;
		line-height: 24px;
	}
	#spage {
	    border: none;
	    box-shadow: none;
	    padding: 12px;
	}
	#spage .text {
	    font-size: 14px;
	    line-height: 1.6;
	}
	#spage .text .bline {
        font-size: 1.3em !important;
        padding: 12px 0;
        margin-bottom: 12px;
    }
    #spage .text .bline:before {
        height: 3px;
        border-radius: 3px;
    }
	#network {
		display: block;
		margin-top: 0;
	}
	#network .left {
		display: none;
	}
	#network .right {
		width: 100%;
	}
	#network-tab ul li {
		font-size: 14px;
	}
	#network-item {
		margin-top: 30px;
	}
	#network-item h2 {
		font-size: 16px;
	}
	#network-item .text {
		margin-top: 20px;
	}
	#network-item .text ul li h3 {
		font-size: 15px;
	}
	#network-item .text ul li section {
		font-size: 14px;
		line-height: 28px;
	}
	#network-global {
		margin-top: 30px;
	}
	#network-global img {
		width: 100%;
		height: auto;
	}
	#news-list ul li {
		margin-top: 25px;
		padding-bottom: 25px;
	}
	#news-list ul li span {
		width: 30%;
		height: auto;
	}
	#news-list ul li img {
		width: 100%;
		height: 100%;
	}
	#news-list ul li section {
		margin-left: 15px;
		width: 65%;
	}
	#news-list ul li section p {
		display: none;
	}
	#news-list ul li section h3 {
		font-size: 15px;
		font-weight: 500;
    	height: 60px;
        -webkit-line-clamp: 3;
	}
	#news-list ul li section h4 {
		margin-top: 5px;
		font-size: 12px;
	}
	#news-list ul li section p {
		height: 50px;
		line-height: 25px;
		margin-top: 10px;
		font-size: 14px;
	}
	#news-list ul li section h5 {
		display: none;
	}
	#article-title {
		font-size: 18px;
        line-height: 1.3;
	}
	#article-info {
		font-size: 12px;
		margin-top: 10px;
	}
	#article {
        font-size: 14px;
		line-height: 1.7;
        margin-top: 15px;
        padding-top: 15px;
	}
	#prev-next {
		display: block;
		height: auto;
		padding: 10px 0;
    	margin-top: 20px;
	}
	#prev-next a {
		display: block;
		width: 100%;
		height: 32px;
		line-height: 32px;
		font-size: 14px;
		max-width: 100%;
	}
	#prev-next span {
		display: block;
		width: 100%;
		max-width: 100%;
		height: 20px;
		line-height: 20px;
    	font-size: 13px;
	}
	#history-item:before {
		display: none;
	}
	#history-item:after {
		display: none;
	}
	.icon {
        background: url("../img/icon.png") no-repeat;
        display: inline-block;
        background-size: 155px auto;
        vertical-align: middle;
    }
    #toolbar {
        display: block;
    	position: fixed;
    	bottom: 0;
    	background: #3e3938;
    	width: 100%;
    	z-index: 888;
        height: 56px;
    	left: 0;
    }
    #toolbar .list {
    	width: 100%;
    	max-width: 640px;
    	min-width: 320px;
    	margin: 0 auto;
    }
    #toolbar .list li {
    	float: left;
    	text-align: center;
    	line-height: 60px;;
    }
    #toolbar .list li:nth-child(1) {
    	width: 19%;
    }
    #toolbar .list li:nth-child(2) {
    	width: 23%;
    }
    #toolbar .list li:nth-child(3) {
    	width: 34%;
    	background: #FFD600;
    }
    #toolbar .list li:last-child {
    	width: 24%;
    }
    #toolbar .list a {
    	display: block;
        height: 56px;
        line-height: 1.4;
        font-size: 14px;
        padding-top: 10px;
    }
    #toolbar .list li:nth-child(3) a span {
    	color: #101010;
    	font-weight: 600;
    }
    #toolbar .list a span {
        display: block;
    	font-size: 13px;
    	font-weight: 300;
    	text-align: center;
    	color: #fff;
    }
    #toolbar .list a s {
    	margin-left: auto;
    	margin-right: auto;
    	width: 20px;
    	height: 18px;
        display: inline-block;
    	margin-bottom: 3px;
        background-size: 128px auto;
    	background-position: 0 -10px;
    }
    #toolbar .list li:nth-child(1) s {
        background-size: 128px auto;
    	background-position: -40px -10px;
    	width: 20px;
    	height: 20px;
    }
    #toolbar .list li:nth-child(2) s {
        background-size: 128px auto;
    	background-position: -64px -10px;
    }
    #toolbar .list li:nth-child(3) s {
        background-size: 142px auto;
        background-position: -22px -12px;
    }
    #toolbar .list li:hover {
    	background: #333;
    }
}