:root {
	--white: #ffffff;
	--main: #347e9f;
	--sub: #8bcae6;
	--black: #4f4f4f;
	--grey: #9d9d9d;
	--orange: #df691b;
}

@font-face {
	font-family: 'frank';
	src: url('../fonts/FranklinGothicEF-Demi.ttf');
}

@font-face {
	font-family: 'avant';
	src: url('../fonts/AvantGarGotItcTEE.ttf');
}

@font-face {
	font-family: 'scHei-regular';
	src: url('../fonts/scHei-R.ttf');
}

@font-face {
	font-family: 'scHei-light';
	src: url('../fonts/scHei-L.ttf');
}

@font-face {
	font-family: 'scHei-bold';
	src: url('../fonts/scHei-B.ttf');
}

.font-frank {
	font-family: 'frank';
}

.font-avant {
	font-family: 'avant';
}

.font-default {
	font-family: 'scHei-regular';
}

.font-light {
	font-family: 'scHei-light';
}

.font-bold {
	font-family: 'scHei-bold';
	font-weight: bold;
}

* {
	margin: 0;
	padding: 0;
}

html,
body {
	width: 100%;
	position: relative;
}

body {
	font-size: 16px;
	font-family: "scHei-regular";
	font-style: normal;
	line-height: unset;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

ul,
li {
	list-style: none;
}

ul,
dl,
p {
	margin-bottom: 0;
}

a,
a:visited,
a:link,
a:hover {
	text-decoration: none;
}


.line-limit {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

[line-clamp='1'] {
	-webkit-line-clamp: 1;
}

[line-clamp='2'] {
	-webkit-line-clamp: 2;
}

[line-clamp='3'] {
	-webkit-line-clamp: 3;
}

[line-clamp='4'] {
	-webkit-line-clamp: 4;
}

[line-clamp='5'] {
	-webkit-line-clamp: 5;
}


.swiper-slide {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.swiper-slide img {
	width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	outline: none;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	/* display: none; */
	color: var(--white);
}

.thumb-img {
	overflow: hidden;
}

.thumb-img img {
	width: 100%;
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.thumb-img:hover img,
a:hover .thumb-img img {
	transform: scale(1.08, 1.08);
}

/* The main style */
.bg-white {
	background-color: var(--white);
}

.bg-grey {
	background-color: #f6f6f6;
}

.section-padding {
	padding: 80px 0;
}

.section-padding-large {
	padding: 120px 0;
}

.flex-container {
	position: relative;
	border-bottom: 1px solid #ececec;
}

.flex-container .welcome-text {
	position: absolute;
	top: 20px;
	left: 10px;
}

.flex-container .welcome-text span {
	display: inline-block;
	background-color: var(--orange);
	font-size: 14px;
	color: var(--white);
	padding: 3px 15px;
	border-radius: 15px;
}

.flex-container .header-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.header-wrapper .logo a {
	display: block;
}

.header-wrapper .logo img {
	display: block;
	max-height: 60px;
}

.header-wrapper .hot-line span {
	display: block;
	text-align: right;
	color: var(--grey);
}

.header-wrapper .hot-line .tel {
	font-size: 30px;
	color: var(--main);
}

.nav-parents-container {
	padding: 0;
}

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

.nav-parents-ul li {
	display: block;
	padding: 10px 0;
}

.nav-parents-ul li a {
	display: inline-block;
	color: var(--black);
	padding: 3px 12px;
	border-radius: 15px;
}

.nav-parents-ul li.active a,
.nav-parents-ul li:hover a {
	background-color: var(--main);
	color: var(--white);
}

.nav-parents-ul li.user {
	display: flex;
	align-items: center;
	position: relative;
}

.nav-parents-ul li.user::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 16px;
	border-left: 1px solid #ececec;
}

.nav-parents-ul li.logged::after {
	display: none;
}

.nav-parents-ul li.user a {
	font-size: 0;
	width: 20px;
	height: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px;
	padding: 0;
}

.nav-parents-ul li.user a:first-of-type {
	margin-right: 15px;
}

.nav-parents-ul li.user a:last-child {
	margin-left: 15px;
}

.nav-parents-ul li.logged a {
	margin-right: 0;
}

.nav-parents-ul li.user:hover a {
	background-color: transparent;
}

.nav-parents-ul li.user .login {
	background-image: url(../images/icon-login.png);
}

.nav-parents-ul li.user .loginout {
	background-image: url(../images/icon-loginout.png);
}

.nav-parents-ul li.user .register {
	background-image: url(../images/icon-register.png);
}

.nav-parents-ul li.toolbar {
	display: flex;
	align-items: center;
	position: relative;
}

.nav-parents-ul li.toolbar::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 16px;
	border-left: 1px solid #ececec;
}

.nav-parents-ul li.toolbar .lang-select {
	position: relative;
	margin-right: 10px;
}

.nav-parents-ul li.toolbar .lang-select img {
	display: block;
	width: 100%;
	max-width: 20px;
}

.nav-parents-ul li.toolbar .lang-select .lang-active {
	margin: 0 5px;
}

.nav-parents-ul li.toolbar .lang-select .lang-ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: 0;
	background-color: var(--white);
	overflow: hidden;
	transition: .5s;
	z-index: 996;
}

.nav-parents-ul li.toolbar .lang-select:hover .lang-ul {
	max-height: 500px;
}

.nav-parents-ul li.toolbar .lang-select .lang-ul a {
	display: block;
	width: 20px;
	padding: 5px 0;
	margin: 0 auto;
}

.nav-parents-ul li.toolbar:hover .lang-select .lang-ul a,
.nav-parents-ul li.toolbar .lang-select:hover .lang-ul a {
	background-color: transparent;
}

.nav-parents-ul li.toolbar .search {
	position: relative;
	margin-left: 10px;
}

.nav-parents-ul li.toolbar .search .search-btn {
	font-size: 0;
	width: 30px;
	height: 20px;
	background: url(../images/icon-search.png) no-repeat center center;
	background-size: 20px;
}

.nav-parents-ul li.toolbar .search .search-plat {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background-color: var(--white);
	padding: 10px;
	transform: rotateX(90deg);
	transition: .5s;
	z-index: 996;
}

.nav-parents-ul li.toolbar .search.open .search-plat {
	transform: rotateX(0deg);
}

.nav-parents-ul li.toolbar .search .search-plat form {
	display: flex;
	align-items: center;
}

.nav-parents-ul li.toolbar .search .search-plat form input,
.nav-parents-ul li.toolbar .search .search-plat form button {
	outline: none;
}

.nav-parents-ul li.toolbar .search .search-plat form input {
	display: block;
	width: 200px;
	height: 30px;
	line-height: 30px;
	padding: 5px 10px;
}

.nav-parents-ul li.toolbar .search .search-plat form button {
	width: 30px;
	height: 30px;
	background: var(--main) url(../images/icon-search-white.png) no-repeat center center;
	background-size: 20px;
	border: 0;
}

.scroll-banner-swiper .swiper-button-prev,
.scroll-banner-swiper .swiper-button-next {
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: rgba(0, 0, 0, .2);
	visibility: hidden;
	opacity: 0;
	outline: none;
	border-radius: 50%;
	transition: .5s;
}

.scroll-banner-swiper .swiper-button-prev::after,
.scroll-banner-swiper .swiper-button-next::after {
	font-size: 20px;
	color: var(--white);
}

.scroll-banner-swiper:hover .swiper-button-prev,
.scroll-banner-swiper:hover .swiper-button-next {
	visibility: visible;
	opacity: 1;
}

.scroll-banner-swiper .swiper-pagination-bullets {
	bottom: 30px;
}

.scroll-banner-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	background-color: var(--sub);
	width: 30px;
	height: 5px;
	border-radius: 5px;
}

.scroll-banner-swiper .banner-item {
	position: relative;
}

.scroll-banner-swiper .banner-item .banner-item-text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(0, -50%);
	margin-left: 120px;
	color: var(--white);
}

.scroll-banner-swiper .banner-item .banner-item-text .title {
	font-size: 60px;
}

.scroll-banner-swiper .banner-item .banner-item-text .more-btn {
	margin-top: 30px;
}

.scroll-banner-swiper .banner-item .banner-item-text .more-btn a {
	display: inline-block;
	background-color: var(--white);
	color: var(--main);
	padding: 8px 50px;
	border-radius: 50px;
}

.static-banner {
	position: relative;
}

.static-banner img {
	display: block;
	width: 100%;
	max-width: 100%;
}

.static-banner .banner-title {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	font-size: 60px;
	font-weight: bold;
	text-align: center;
	color: var(--white);
}

.section-topic-title {
	font-size: 50px;
	color: var(--black);
	text-align: center;
}

.section-topic-desc {
	padding-top: 20px;
	color: var(--black);
	text-align: center;
}

.color-white {
	color: var(--white);
}

.index-search-platform {
	margin: 30px 0;
}

.index-search-platform form {
	display: flex;
	align-content: center;
	width: 100%;
	margin: 0 auto;
}

.index-search-platform form input {
	width: 80%;
	color: var(--grey);
	padding: 15px 20px;
	outline: none;
}

.index-search-platform form button {
	width: 20%;
	background: var(--main) url(../images/icon-search-white.png) no-repeat center center;
	background-size: 30px;
	border: 0;
	outline: none;
}

.index-quick-links {
	display: flex;
	align-items: center;
	align-content: center;
	margin-top: 50px;
}

.index-quick-links .quick-item {
	width: calc((100% - 90px) / 4);
	transition: .5s;
}

.index-quick-links .quick-item:hover {
	transform: translateY(-10px);
}

.index-quick-links .quick-item:not(:nth-child(4n)) {
	margin-right: 30px;
}

.index-quick-links .quick-item .item-bg {
	display: block;
	width: 100%;
	max-width: 100%;
}

.index-quick-links .quick-item .item-circle {
	position: relative;
	display: block;
	border: 2px solid var(--white);
	border-radius: 50%;
	margin: -80px auto 0;
}

.index-quick-links .quick-item .item-content {
	border: 1px solid #ececec;
	margin-top: 20px;
	padding: 0 20px 50px;
}

.index-quick-links .quick-item .item-content .title {
	font-size: 20px;
	color: var(--black);
	text-align: center;
	padding: 20px 0 0;
}

.index-quick-links .quick-item .item-content .desc {
	color: var(--grey);
	text-align: center;
	line-height: 30px;
	margin: 10px 0 20px;
}

.index-quick-links .quick-item .item-content .more-btn {
	text-align: center;
}

.index-quick-links .quick-item .item-content .more-btn a {
	display: inline-block;
	border: 1px solid #ececec;
	border-radius: 30px;
	color: var(--grey);
	padding: 10px 50px;
}

.index-quick-links .quick-item .item-content .more-btn a:hover {
	background-color: var(--main);
	color: var(--white);
	border: 1px solid var(--main);
}

.index-product {
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
	padding: 120px 0;
}

.index-product-tab {
	margin-top: 50px;
}

.index-product-tab .tabs-name {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

.index-product-tab .tabs-name a {
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	padding-bottom: 10px;
}

.index-product-tab .tabs-name a.active {
	border-bottom: 2px solid var(--white);
}

.index-product-tab .tabs-name a:not(:last-child) {
	margin-right: 30px;
}

.index-product-tab .tabs-container {
	border-radius: 30px;
}

.index-product-tab .tabs-container .tabs-list {
	display: none;
	flex-wrap: wrap;
	padding: 50px 50px 30px;
}

.index-product-tab .tabs-container .tabs-list.active {
	display: flex;
}

.index-product-tab .tabs-container .tabs-list .tabs-item {
	display: block;
	width: calc((100% - 60px) / 4);
	background-color: var(--white);
	border: 1px solid #ececec;
	margin-bottom: 20px;
	padding: 0 20px;
}

.index-product-tab .tabs-container .tabs-list .tabs-item:not(:nth-child(4n)) {
	margin-right: 20px;
}

.index-product-tab .tabs-container .tabs-list .tabs-item .thumb-img {
	margin: 20px 0;
}

.index-product-tab .tabs-container .tabs-list .tabs-item .thumb-remark {
	text-align: center;
	color: #777777;
	margin-bottom: 10px ;
}

.index-product-tab .tabs-container .tabs-list .tabs-item .thumb-name {
	font-family: 'scHei-light';
	color: var(--black);
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ececec;
}

.index-about {
	background: #f6f6f6 url(../images/about-bg.jpg) no-repeat right center;
	background-size: 50% 100%;
	padding: 80px 0;
}

.index-about-flex {
	display: flex;
}

.index-about-flex .about-left,
.index-about-flex .about-right {
	width: 50%;
}

.index-about-flex .about-left {
	padding-right: 100px;
}

.index-about-flex .about-left .title {
	font-size: 50px;
	font-weight: bold;
	color: var(--main);
}

.index-about-flex .about-left .desc {
	line-height: 30px;
	padding: 30px 0;
}

.index-about-flex .about-left .more-btn a {
	color: var(--black);
}

.index-about-flex .about-right .title {
	display: flex;
	padding-left: 50px;
}

.index-about-flex .about-right .title::before {
	content: "";
	width: 120px;
	border-top: 3px solid var(--white);
	margin-top: 40px;
}

.index-about-flex .about-right .title .title-info {
	padding-left: 30px;
}

.index-about-flex .about-right .title .title-info span {
	display: block;
	font-size: 20px;
	color: var(--white);
}

.index-about-flex .about-right .title .title-info span.year {
	font-size: 60px;
	font-weight: bold;
}

.index-about-data {
	margin-top: 50px;
	display: flex;
	align-items: center;
}

.index-about-data .item-data {
	background-color: var(--white);
	width: 25%;
	border-right: 1px solid #ececec;
	box-sizing: border-box;
	padding: 30px 0 30px 50px;
}

.index-about-data .item-data img {
	display: block;
	max-width: 30px;
}

.index-about-data .item-data .title {
	padding: 10px 0;
}

.index-about-data .item-data .title .num {
	font-size: 60px;
	font-weight: bold;
}

.index-list-pic .item-pic {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.index-list-pic .item-pic:not(:last-child) {
	margin-bottom: 50px;
}

.index-list-pic .item-pic:nth-child(even) {
	flex-direction: row-reverse;
}

.index-list-pic .item-pic .thumb-img {
	width: 50%;
}

.index-list-pic .item-pic .thumb-desc {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: calc(50% + 50px);
	background-color: var(--white);
}

.index-list-pic .item-pic:nth-child(odd) .thumb-desc {
	right: 0;
	padding: 30px 50px 30px 80px;
}

.index-list-pic .item-pic:nth-child(even) .thumb-desc {
	left: 0;
	padding: 30px 80px 30px 50px;
}

.index-list-pic .item-pic .thumb-desc .title {
	font-size: 30px;
}

.index-list-pic .item-pic .thumb-desc .title::after {
	content: "";
	display: block;
	width: 60px;
	border-top: 2px solid var(--sub);
	margin-top: 10px;
	margin-bottom: 20px;
}

.index-list-pic .item-pic .thumb-desc .desc {
	color: var(--grey);
	line-height: 30px;
}

.index-choose {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	padding: 80px 0;
}

.index-choose .choose-icon-list {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.index-choose .choose-icon-list .item-icon {
	display: block;
	width: calc((100% - 100px) / 6);
}

.index-choose .choose-icon-list .item-icon .icon {
	position: relative;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--white);
	margin: 0 auto;
}

.index-choose .choose-icon-list .item-icon .icon img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	max-width: 30px;
}

.index-choose .choose-icon-list .item-icon .icon-text {
	text-align: center;
	color: var(--white);
	margin-top: 20px;
}

.index-choose .choose-icon-list .item-icon .icon-text .title {
	font-size: 20px;
	margin-bottom: 10px;
}

.index-news-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	margin-top: 50px;
}

.index-news-list .news-thumb,
.index-news-list .news-list {
	width: 50%;
}

.index-news-list .news-thumb {
	padding-right: 50px;
}

.index-news-list .news-list {
	padding-left: 50px;
	border-left: 1px solid #ececec;
}

.index-news-list a {
	display: block;
}

.index-news-list .news-thumb .news-title {
	font-size: 20px;
	font-weight: bold;
	color: var(--black);
	padding: 30px 0 0;
}

.index-news-list .news-thumb .news-desc {
	padding: 20px 0;
	color: var(--grey);
}

.index-news-list .news-thumb .news-date {
	color: var(--grey);
}

.index-news-list .news-list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.index-news-list .news-list a:not(:last-child) {
	border-bottom: 1px solid #ececec;
	margin-bottom: 20px;
}

.index-news-list .news-list .topic {
	display: flex;
	justify-content: space-between;
}

.index-news-list .news-list .topic span {
	display: block;
	font-size: 20px;
	font-weight: bold;
	color: var(--black);
}

.index-news-list .news-list .desc {
	color: var(--grey);
	line-height: 20px;
	margin: 10px 0 20px
}

.list-flag-news a {
	display: flex;
	align-items: center;
	background-color: var(--white);
	padding: 30px;
}

.list-flag-news .thumb-img,
.list-flag-news .thumb-desc {
	width: 50%;
}

.list-flag-news .thumb-desc {
	padding-left: 50px;
}

.list-flag-news .thumb-desc .title {
	font-size: 30px;
	font-weight: bold;
	color: var(--black);
}

.list-flag-news .thumb-desc .desc {
	margin: 20px 0;
	line-height: 30px;
	color: var(--grey);
}

.list-flag-news .thumb-desc .date {
	color: var(--grey);
}

.list-news {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

.list-news .item-news {
	width: calc((100% - 100px) / 3);
	margin-bottom: 50px;
}

.list-news .item-news:not(:nth-child(3n)) {
	margin-right: 50px;
}

.list-news .item-news .thumb-desc {
	background-color: var(--white);
	padding: 30px 20px;
}

.list-news .item-news .thumb-desc .title {
	font-size: 20px;
	font-weight: bold;
	color: var(--black);
}

.list-news .item-news .thumb-desc .desc {
	color: var(--grey);
	margin: 15px 0;
}

.list-news .item-news .thumb-desc .date {
	color: var(--grey);
}

.list-category-news {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.list-category-news a {
	display: inline-block;
	background-color: var(--white);
	border: 1px solid #ececec;
	color: var(--black);
	margin-bottom: 20px;
	padding: 5px 30px;
}

.list-category-news a:not(:last-child) {
	margin-right: 30px;
}

.list-category-news a:hover,
.list-category-news a.active {
	background-color: var(--main);
	border-color: var(--main);
	color: var(--white);
}

.section-list-news .page {
	margin-top: 30px;
}

.section-show-news {
	display: flex;
	align-content: center;
}

.section-show-news .news-container {
	background-color: var(--white);
	width: 70%;
	padding: 80px;
}

.section-show-news .news-container .title {
	font-size: 30px;
	font-weight: bold;
	color: var(--black);
}

.section-show-news .news-container .date {
	padding: 20px 0;
}

.section-show-news .news-container .content img {
	display: block;
	width: 100%;
	max-width: 100%;
}

.section-show-news .news-container .related-links {
	margin-top: 30px;
}

.section-show-news .news-container .related-links p:not(:last-child) {
	margin-bottom: 20px;
}

.section-show-news .news-container .related-links a {
	display: block;
	color: var(--black);
}

.section-show-news .news-hot {
	background-color: var(--white);
	width: 30%;
	border-left: 10px solid #f6f6f6;
	padding: 50px 30px;
}

.section-show-news .news-hot .hot-title {
	font-size: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ececec;
}

.section-show-news .news-hot .hot-list .item-hot {
	display: block;
	padding: 20px 0;
}

.section-show-news .news-hot .hot-list .item-hot:not(:last-child) {
	border-bottom: 1px solid #ececec;
}

.section-show-news .news-hot .hot-list .item-hot .title {
	font-size: 18px;
	font-weight: bold;
	color: var(--black);
}

.section-show-news .news-hot .hot-list .item-hot .desc {
	color: var(--grey);
	padding: 10px 0 0;
}

.section-contact {
	padding: 80px 0 50px;
}

.section-contact .contact-map {
	background-color: var(--main);
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}

.section-contact .contact-map .thumb-map,
.section-contact .contact-map .contact-info {
	width: 50%;
}

.section-contact .contact-map .thumb-map img {
	display: block;
	width: 100%;
}

.section-contact .contact-map .contact-info {
	padding-left: 50px;
	color: var(--white);
}

.section-contact .contact-map .contact-info .title {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
}

.section-contact .contact-map .contact-info .desc {
	line-height: 30px;
}

.section-contact .contact-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}

.section-contact .contact-list .item-contact {
	width: calc((100% - 60px) / 3);
	background-color: var(--white);
	color: var(--black);
	line-height: 30px;
	margin-bottom: 30px;
	padding: 50px 30px;
}

.section-contact .contact-list .item-contact:not(:nth-child(3n)) {
	margin-right: 30px;
}

.section-contact .contact-list .item-contact p.title {
	font-size: 20px;
	font-weight: 500;
}

.section-contact .contact-list .item-contact p, .section-contact .contact-list .item-contact p a {
	display: block;
	color: var(--black);
	word-break: break-word;
}

.section-list-product {
	margin: 50px 0 80px;
	background-color: var(--white);
}

.section-list-product .list-product-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
	border-bottom: 1px solid #ececec;
}

.section-list-product .list-product-head .total-products {
	color: var(--black);
}

.section-list-product .list-product-head .total-products span {
	font-size: 36px;
}

.section-list-product .list-product-head .search-products {
	width: 60%;
}

.section-list-product .list-product-head .search-products form {
	display: flex;
	align-content: center;
}

.section-list-product .list-product-head .search-products input,
.section-list-product .list-product-head .search-products button {
	display: block;
	outline: none;
}

.section-list-product .list-product-head .search-products input {
	width: calc(100% - 100px);
	color: var(--grey);
	padding: 10px 20px;
	border: 1px solid #ececec;
}

.section-list-product .list-product-head .search-products button {
	width: 100px;
	background: var(--main) url(../images/icon-search-white.png) no-repeat center center;
	background-size: 20px;
	border: 0;
}

.section-list-product .list-category-name {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px;
}

.section-list-product .list-category-name a {
	display: inline-block;
	border: 1px solid #ececec;
	margin-bottom: 20px;
	padding: 5px 15px;
	color: var(--black);
}

.section-list-product .list-category-name a.active {
	background-color: var(--main);
	color: var(--white);
	border-color: var(--main);
}

.section-list-product .list-products {
	display: flex;
	flex-wrap: wrap;
	padding: 0 30px;
}

.section-list-product .list-products .item-product {
	position: relative;
	display: block;
	width: calc((100% - 60px) / 4);
	background-color: var(--white);
	border: 1px solid #ececec;
	margin-bottom: 20px;
	padding: 0 20px;
}

.section-list-product .list-products .item-product:not(:nth-child(4n)) {
	margin-right: 20px;
}

.section-list-product .list-products .item-product .tag-shop{
	position: absolute;
	left: 0 ;
	top: 0 ;
	width: 50px ;
	height: 50px ;
	background: var(--main) url(../images/icon-shop.png) no-repeat center center;
	background-size: 30px ;
	cursor: pointer;
	z-index: 999 ;
}

.section-list-product .list-products .item-product .thumb-img {
	margin: 20px 0;
}

.section-list-product .list-products .item-product .thumb-remark {
	text-align: center;
	color: #777777;
	margin-bottom: 10px;
}

.section-list-product .list-products .item-product .thumb-name {
	font-family: 'scHei-light';
	color: var(--black);
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ececec;
}

.section-list-product .page {
	padding: 30px 0 50px;
}

.section-show-product {
	margin: 50px 0 80px;
	background-color: var(--white);
}

.section-show-product .show-product-detail {
	display: flex;
	flex-wrap: wrap;
	padding: 50px 50px 80px;
}

.section-show-product .show-product-detail .product-thumb,
.section-show-product .show-product-detail .product-desc {
	width: 50%;
}

.section-show-product .show-product-detail .product-thumb {
	border: 1px solid #ececec;
	height: fit-content;
}

.section-show-product .show-product-detail .product-thumb img {
	display: block;
	width: 100%;
	max-width: 100%;
}

.section-show-product .show-product-detail .product-thumb span{
	display: block;
	color: #777777;
	text-align: center;
	padding: 10px 0 ;
}

.section-show-product .show-product-detail .product-desc {
	padding-left: 80px;
}

.section-show-product .show-product-detail .product-desc .title {
	font-size: 30px;
	color: var(--black);
	border-bottom: 1px solid #ececec;
	padding-bottom: 20px;
}

.section-show-product .show-product-detail .product-desc .params {
	padding: 20px 0 20px;
	color: var(--grey);
	line-height: 30px;
}

.section-show-product .show-product-detail .product-desc .params p {
	display: flex;
	align-items: baseline;
}

.section-show-product .show-product-detail .product-desc .params p span {
	display: block;
}

.section-show-product .show-product-detail .product-desc .params p span.name {
	margin-right: 15px;
}

.section-show-product .show-product-detail .product-desc .file-review{
	display: flex;
	align-items: center;
	margin-bottom: 20px ;
}

.section-show-product .show-product-detail .product-desc .file-review a{
	display: block;
	color: var(--grey);
}

.section-show-product .show-product-detail .product-desc .file-review a:not(:last-child){
	margin-right: 10px ;
}

.section-show-product .show-product-detail .product-desc .file-review a img{
	display: block;
	max-width: 30px ;
}

.section-show-product .show-product-detail .product-desc .more a {
	display: inline-block;
	font-weight: bold;
	color: var(--white);
	background-color: var(--main);
	padding: 10px 50px;
}

.section-show-product .show-product-detail .product-desc .more a:not(:last-child){
	margin-right: 20px ;
}

.section-show-product .show-product-content {
	padding: 0 50px;
}

.section-show-product .show-product-content .topic-title {
	font-size: 30px;
	text-align: center;
	padding: 0 0 20px;
	border-bottom: 1px solid #ececec;
}

.section-show-product .show-product-content .content {
	padding: 50px 0;
}

.section-show-product .show-product-content .content img {
	display: block;
	width: 100%;
}

.section-related-products .topic-title {
	font-size: 30px;
	text-align: center;
}

.section-related-products .list-products {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 80px;
}

.section-related-products .list-products .item-product {
	display: block;
	width: calc((100% - 60px) / 4);
	background-color: var(--white);
	border: 1px solid #ececec;
	margin-bottom: 20px;
	padding: 0 20px;
}

.section-related-products .list-products .item-product:not(:nth-child(4n)) {
	margin-right: 20px;
}

.section-related-products .list-products .item-product .thumb-img {
	margin: 20px 0;
}

.section-related-products .list-products .item-product .thumb-name {
	font-family: 'scHei-light';
	color: var(--black);
	text-align: center;
	padding: 20px 0;
	border-top: 1px solid #ececec;
}

/* Page */
.page {
	display: flex;
	justify-content: center;
	align-items: center;
}

.page li,
.page li a {
	display: block;
}

.page li:not(:last-child) {
	margin-right: 10px;
}

.page li a {
	min-width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: var(--black);
	border: 1px solid #ececec;
	padding: 0 10px ;
}

.page li.active a,
.page li:hover a {
	background-color: var(--main);
	border: 1px solid var(--main);
	color: var(--white);
}

.section-bom-page .topic-title {
	font-size: 40px;
	font-weight: bold;
	color: var(--main);
	text-align: center;
}

.section-bom-page .topic-desc {
	color: var(--black);
	text-align: center;
}

.section-bom-page .drag-box {
	background-color: var(--white);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	padding: 120px 50px 60px;
}

.section-bom-page .drag-box .drag-tips .icon-file-list {
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-bom-page .drag-box .drag-tips .icon-file-list img {
	display: block;
	max-width: 50px;
}

.section-bom-page .drag-box .drag-tips .icon-file-list img:not(:last-child) {
	margin-right: 20px;
}

.section-bom-page .drag-box .drag-tips .allow-file-notice {
	text-align: center;
}

.section-bom-page .drag-box .drag-tips .allow-file-notice .title {
	font-size: 30px;
	font-weight: 300;
	color: var(--black);
	padding: 10px 0;
}

.section-bom-page .drag-box .drag-tips .allow-file-notice .desc {
	color: var(--grey);
}

.section-bom-page .drag-box .drag-tips .upload-btn {
	margin-top: 80px;
	text-align: center;
}

.section-bom-page .drag-box .drag-tips .upload-btn .drag-message-input {
	display: none;
}

.section-bom-page .drag-box .drag-tips .upload-btn .drag-message-manual {
	display: inline-block;
	background-color: var(--main);
	font-weight: bold;
	color: var(--white);
	padding: 10px 50px;
	border-radius: 50px;
}

.section-bom-page .drag-box .drag-tips .drag-result {
	padding: 50px 0 0;
}

.section-bom-page .drag-box .drag-tips .drag-result .item-drag-file {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0;
	border: 1px solid #ececec;
	border-bottom: 0;
}

.section-bom-page .drag-box .drag-tips .drag-result .item-drag-file:last-child {
	border-bottom: 1px solid #ececec;
}

.section-bom-page .insert-box {
	background-color: var(--white);
	padding: 50px;
	margin-top: 50px;
}

.section-bom-page .insert-box .notice-tips {
	font-size: 20px;
	color: var(--black);
}

.section-bom-page .insert-box form textarea {
	display: block;
	width: 100%;
	border: 0;
	outline: none;
	font-size: 20px;
	color: var(--grey);
	line-height: 30px;
	margin-top: 20px;
}

.section-bom-page .insert-box form button {
	outline: none;
}

.section-bom-page .insert-box .form-line button {
	background-color: #dcdcdc;
	border: 1px solid #dcdcdc;
	font-weight: bold;
	color: var(--white);
	margin-top: 30px;
	padding: 10px 50px;
	border-radius: 50px;
}

.section-pcba-topic,
.section-page-topic {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
}

.scroll-pcba-swiper {
	margin-top: 50px;
}

.scroll-pcba-swiper .thumb-name {
	text-align: center;
	border: 1px solid #ececec;
	border-top: 0;
	padding: 20px 0;
}

.scroll-pcba-swiper .swiper-button-prev,
.scroll-pcba-swiper .swiper-button-next {
	position: initial;
	margin-top: 0;
}

.scroll-pcba-swiper .swiper-buttons {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 20px 0 0;
}

.scroll-pcba-swiper .swiper-buttons::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	border-left: 1px solid #ececec;
	height: 12px;
}

.scroll-pcba-swiper .swiper-buttons .swiper-button-prev,
.scroll-pcba-swiper .swiper-buttons .swiper-button-next {
	width: 50px;
	text-align: center;
}

.scroll-pcba-swiper .swiper-buttons .swiper-button-prev::after,
.scroll-pcba-swiper .swiper-buttons .swiper-button-next::after {
	font-size: 20px;
	color: var(--grey);
}

.service-list-advantages,
.application-list {
	display: flex;
	flex-wrap: wrap;
	padding: 30px 0 0;
}

.service-list-advantages .item-service {
	display: block;
	width: calc((100% - 60px) / 4);
	background-color: var(--white);
	padding: 50px 20px;
}

.service-list-advantages .item-service:not(:nth-child(4n)) {
	margin-right: 20px;
}

.service-list-advantages .item-service img {
	display: block;
	max-width: 60px;
	margin: 0 auto;
}

.service-list-advantages .item-service .title {
	font-size: 24px;
	font-weight: bold;
	color: var(--main);
	text-align: center;
	padding: 10px 0;
}

.service-list-advantages .item-service .desc {
	color: var(--black);
	text-align: center;
}

.application-list .item-application {
	display: block;
	width: calc((100% - 60px) / 3);
	background-color: var(--white);
}

.application-list .item-application:not(:nth-child(3n)) {
	margin-right: 30px;
}

.application-list .item-application img {
	display: block;
	width: 100%;
}

.application-list .item-application .title {
	margin-top: 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.process-list {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 30px;
}

.process-list .item-process .icon {
	background-color: var(--white);
	border-radius: 50%;
	width: fit-content;
	padding: 30px;
	margin: 0 auto 20px;
}

.process-list .item-process .icon img {
	display: block;
	max-width: 50px;
}

.process-list .item-process .title {
	font-size: 20px;
	text-align: center;
	color: var(--grey);
}

.process-list .item-process-arrow {
	width: 30px;
	height: 30px;
	background: url(../images/icon-arrow-right.png) no-repeat center center;
	background-size: 20px;
	margin-top: -40px;
}

.cycle-table {
	margin: 30px 0 50px;
}

.cycle-table .cycle-th,
.cycle-table .cycle-tr {
	display: flex;
}

.cycle-table .cycle-tr {
	border: 1px solid #dcdcdc;
	border-top: 0;
}

.cycle-table .cycle-th .thead,
.cycle-table .cycle-tr .tbody {
	width: 50%;
	font-size: 20px;
	text-align: center;
	color: var(--grey);
	padding: 15px 0;
}

.cycle-table .cycle-th .thead {
	background-color: var(--main);
	font-weight: bold;
	color: var(--white);
}

.cycle-more {
	text-align: center;
}

.cycle-more a {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	background-color: var(--main);
	padding: 10px 50px;
}

.detection-process {
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.detection-process .item-detection .icon {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 150px;
	margin: 0 auto 20px;
}

.detection-process .item-detection .icon svg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.detection-process .item-detection .icon img {
	display: block;
	max-width: 60px;
}

.detection-process .item-detection .name {
	font-size: 20px;
	text-align: center;
	color: var(--grey);
}

.detection-process .item-detection-arrow {
	width: 50px;
	height: 50px;
	background: url(../images/icon-double-right.png) no-repeat center center;
	background-size: 30px;
	margin-top: -30px;
}

.detection-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 0;
}

.detection-btns a {
	display: inline-block;
	font-size: 20px;
	font-weight: bold;
	color: var(--white);
	background-color: var(--main);
	padding: 10px 50px;
}

.detection-btns a:not(:last-child) {
	margin-right: 30px;
}

.section-detection-project {
	padding: 80px 0 50px;
}

.detection-project {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.detection-project .item-project {
	background-color: var(--white);
	width: calc((100% - 60px) / 3);
	margin-bottom: 30px;
}

.detection-project .item-project:not(:nth-child(3n)) {
	margin-right: 30px;
}

.detection-project .item-project .thumb-desc {
	padding: 30px 15px 50px;
}

.detection-project .item-project .thumb-desc .title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
}

.detection-project .item-project .thumb-desc .desc {
	text-align: center;
	line-height: 30px;
	word-wrap: break-word;
}

.section-design-page {
	padding: 80px 0;
}

.section-design-page .list-categor-design {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.section-design-page .list-categor-design a {
	display: inline-block;
	background-color: var(--white);
	border: 1px solid #ececec;
	color: var(--black);
	margin-bottom: 20px;
	padding: 5px 30px;
}

.section-design-page .list-categor-design a:not(:last-child) {
	margin-right: 30px;
}

.section-design-page .list-categor-design a:hover,
.section-design-page .list-categor-design a.active {
	background-color: var(--main);
	border-color: var(--main);
	color: var(--white);
}

.list-design-project {
	margin: 50px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
}

.list-design-project .content {
	width: 100%;
	background-color: var(--white);
	padding: 50px;
}

.list-design-project .content img {
	display: block;
	width: 100%;
}

.list-design-project .item-project {
	display: block;
	background-color: var(--white);
	width: calc((100% - 60px) / 3);
	margin-bottom: 30px;
}

.list-design-project .item-project:not(:nth-child(3n)) {
	margin-right: 30px;
}

.list-design-project .item-project .thumb-desc {
	padding: 30px 15px 50px;
}

.list-design-project .item-project .thumb-desc .title {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 10px;
	color: var(--black);
}

.list-design-project .item-project .thumb-desc .desc {
	text-align: center;
	line-height: 30px;
	color: var(--grey);
}

.section-cooperate-page {
	background: url(../images/cooperate-bg.jpg) no-repeat center center;
	background-size: 100% 100%;
}

.list-cooperate-tips {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.list-cooperate-tips .item-tips {
	position: relative;
	display: block;
	background-color: var(--white);
	padding: 20px 30px;
	min-width: 250px;
	max-width: calc(50% - 50px);
	margin-bottom: 120px;
}

.list-cooperate-tips .item-tips::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 30px;
	border-top: 60px solid var(--white);
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
}

.list-cooperate-tips .item-tips.point::after {
	border-top: 40px solid var(--white);
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
}

.list-cooperate-tips .item-tips .title {
	font-size: 20px;
}

.list-cooperate-tips .item-tips .tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0 0;
}

.list-cooperate-tips .item-tips .tags span {
	display: inline-block;
	background-color: var(--main);
	font-weight: bold;
	color: var(--white);
	padding: 5px 10px;
	border-radius: 15px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.list-cooperate-tips .item-tips .notice {
	font-size: 20px;
	padding: 10px 0 0;
}

/* Form */

.form-elements .form-line {
	display: flex;
	align-items: center;
}

.form-elements .form-line:not(:last-child) {
	margin-bottom: 30px;
}

.form-elements .form-line input,
.form-elements .form-line textarea,
.form-elements .form-line button {
	outline: none;
}

.form-elements .form-line input,
.form-elements .form-line textarea {
	display: block;
	width: 100%;
	background-color: var(--white);
	border: 1px solid #ececec;
	padding: 10px 20px;
}

.form-elements .form-line input:not(:last-child) {
	margin-right: 30px;
}

.form-elements .form-line-left {
	justify-content: flex-start;
}

.form-elements .form-line-center {
	justify-content: center;
}

.form-elements .form-line-right {
	justify-content: flex-end;
}

.form-elements .form-line button {
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	padding: 10px 30px;
	border: 1px solid var(--main);
}

.section-cooperate-form {
	background-color: var(--white);
}

.section-cooperate-form .form-elements {
	padding: 50px;
}

.section-cooperate-form .form-elements .form-elements-topic {
	font-size: 30px;
	color: var(--black);
	margin-bottom: 30px;
}

.section-cooperate-form .form-elements .form-line button {
	width: 30%;
}

.section-about-desc {
	position: relative;
	background-color: var(--white);
	width: 100%;
	padding: 50px 60px;
	/* margin-top: -22%;
	margin-left: 30%; */
	z-index: 996;
}

.section-about-desc .title {
	font-size: 50px;
	font-weight: bold;
	color: var(--black);
	margin-bottom: 30px;
}

.section-about-desc .desc {
	line-height: 30px;
}

.section-about-apply {
	margin: 120px 0;
	position: relative;
}

.section-about-apply .apply-thumb {
	width: 70%;
}

.section-about-apply .apply-thumb img {
	display: block;
	width: 100%;
}

.section-about-apply .apply-desc {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: var(--white);
	width: calc(50% - 50px);
	padding: 50px 80px;
}

.section-about-apply .apply-desc .title {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
}

.section-about-apply .apply-desc .desc {
	line-height: 30px;
}

.showVideoArea {}

.showVideo {
	position: relative;
	margin: 0 auto;
}

.showVideo video {
	display: block;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	outline: none;
}

.showVideo .playMask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .1);
	cursor: pointer;
}

.showVideo .playBtn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .5);
	transition: .5s;
	z-index: 9999;
}

.showVideo .playBtn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-left: 28px solid #ffffff;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	margin-left: 5px;
}

.section-about-topic {
	font-size: 40px;
	font-weight: bold;
	text-align: center;
}

.section-why-choose {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-top: 50px;
}

.section-why-choose .item-icon-why {
	width: 25%;
	border-right: 1px solid #ececec;
	padding: 10px 0;
}

.section-why-choose .item-icon-why:first-of-type {
	border-left: 1px solid #ececec;
}

.section-why-choose .item-icon-why img {
	display: block;
	max-width: 60px;
	margin: 0 auto;
}

.section-why-choose .item-icon-why .title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}

.section-why-choose .item-icon-why .desc {
	line-height: 30px;
	text-align: center;
	color: var(--grey);
	padding: 0 20px;
}

.section-about-application {
	background: var(--main) url(../images/about-application-bg.jpg) no-repeat right center;
	background-size: 50% 100%;
	padding: 120px 0;
}

.section-about-application .application-grid {
	display: flex;
	align-items: center;
}

.section-about-application .application-grid .application-left {
	width: 40%;
}

.section-about-application .application-grid .application-left .section-about-topic {
	text-align: left;
}

.section-about-application .application-grid .application-left .application-desc {
	padding: 30px 60px 0 0;
	line-height: 30px;
	color: var(--white);
}

.section-about-application .application-grid .application-right {
	background-color: var(--white);
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	position: relative;
}

.section-about-application .application-grid .application-right::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	border-top: 1px solid #ececec;
}

.section-about-application .application-right .item-application {
	width: calc(100% / 3);
	padding: 50px 0;
}

.section-about-application .application-right .item-application:not(:nth-child(3n)) {
	border-right: 1px solid #ececec;
}

.section-about-application .application-right .item-application img {
	display: block;
	max-width: 80px;
	margin: 0 auto;
}

.section-about-application .application-right .item-application .name {
	font-size: 20px;
	text-align: center;
	color: var(--grey);
	margin-top: 10px;
}

.section-about-service {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-top: 50px;
}

.section-about-service .item-service {
	background-color: var(--white);
	width: calc((100% - 60px) / 3);
	margin-bottom: 30px;
	padding: 30px;
}

.section-about-service .item-service:not(:nth-child(3n)) {
	margin-right: 30px;
}

.section-about-service .item-service .title {
	font-size: 28px;
	font-weight: bold;
	color: var(--main);
	text-align: center;
}

.section-about-service .item-service .title::after {
	content: "";
	display: block;
	width: 50px;
	border-top: 3px solid var(--main);
	margin: 10px auto 20px;
}

.section-about-service .item-service .desc {
	line-height: 30px;
	color: var(--grey);
	text-align: center;
}

.scroll-certificate-swiper,
.scroll-environment-swiper {
	margin-top: 50px;
}

.scroll-certificate-swiper img,
.scroll-environment-swiper img {
	display: block;
	width: 100%;
}

.scroll-certificate-swiper .swiper-buttons,
.scroll-environment-swiper .swiper-buttons {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 20px 0 0;
}

.scroll-certificate-swiper .swiper-buttons::after,
.scroll-environment-swiper .swiper-buttons::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	border-left: 1px solid #ececec;
	height: 12px;
}

.scroll-certificate-swiper .swiper-buttons .swiper-button-prev,
.scroll-certificate-swiper .swiper-buttons .swiper-button-next,
.scroll-environment-swiper .swiper-buttons .swiper-button-prev,
.scroll-environment-swiper .swiper-buttons .swiper-button-next {
	position: initial;
	width: 50px;
	text-align: center;
	margin-top: 0;
}

.scroll-certificate-swiper .swiper-buttons .swiper-button-prev::after,
.scroll-certificate-swiper .swiper-buttons .swiper-button-next::after,
.scroll-environment-swiper .swiper-buttons .swiper-button-prev::after,
.scroll-environment-swiper .swiper-buttons .swiper-button-next::after {
	font-size: 20px;
	color: var(--grey);
}

footer {
	background-color: #022239;
	padding: 50px 0;
}

.footer-contact {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #354e61;
}

.footer-contact .contact-main {
	width: 30%;
}

.footer-contact .contact-main .title {
	font-size: 36px;
	font-weight: bold;
	color: var(--white);
}

.footer-contact .contact-main .desc {
	padding: 20px 0;
	color: var(--white);
}

.footer-contact .contact-main .desc span {
	display: block;
	line-height: 30px;
}

.footer-contact .contact-main .social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.footer-contact .contact-main .social-links a {
	position: relative;
	display: block;
	margin-bottom: 20px ;
}

.footer-contact .contact-main .social-links a:not(:last-child) {
	margin-right: 15px;
}

.footer-contact .contact-main .social-links a img {
	max-width: 30px;
}

.footer-contact .contact-main .social-links a .qrcode {
	display: none;
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translate(-50%, 0);
}

.footer-contact .contact-main .social-links a:hover .qrcode {
	display: block;
}

.footer-contact .contact-main .social-links a .qrcode img {
	display: block;
	max-width: 100px;
}

.footer-contact .contact-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 70%;
}

.footer-contact .contact-list .item-contact {
	color: var(--white);
	line-height: 30px;
	margin-bottom: 50px;
}

.footer-contact .contact-list .item-contact .title {
	font-size: 20px;
	font-weight: bold;
}

.footer-contact .contact-list .item-contact a {
	color: var(--white);
}

.footer-copy {
	font-size: 14px;
	color: var(--white);
	margin-top: 50px;
}

.footer-copy a {
	color: var(--white);
}

.gotoTop {
	position: fixed;
	right: 80px;
	bottom: 50px;
	visibility: hidden;
	opacity: 0;
	transition: .5s;
	z-index: 998;
	cursor: pointer;
}

.gotoTop.visible {
	visibility: visible;
	opacity: 1;
}

.gotoTop img {
	display: block;
	max-width: 50px;
}


.rfq {
	position: fixed;
	top: 25%;
	right: 0;
	display: block;
	background-color: #de691a;
	padding: 5px 15px;
	cursor: pointer;
	z-index: 999;
}

.rfq img {
	display: block;
	max-width: 30px;
	margin: 0 auto;
}

.rfq p {
	font-weight: bold;
	color: var(--white);
}

.rfq-layer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	display: none;
	z-index: 1000;
}

.rfq-layer-display {
	display: block;
}

.rfq-layer .layer-form {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	background-color: var(--white);
	padding: 20px 50px;
	z-index: 1002;
}

.rfq-layer .layer-form .close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: url(../images/icon-close.png) no-repeat center center;
	background-size: 30px;
	opacity: 1;
}

.rfq-layer .layer-form form {
	display: block;
}

.rfq-layer .layer-form .layer-group:not(:last-child) {
	margin-bottom: 20px;
}

.rfq-layer .layer-form .layer-form-label {
	font-size: 20px;
	font-weight: bold;
	color: var(--black);
	margin-bottom: 20px;
}

.rfq-layer .layer-form .layer-form-line {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.rfq-layer .layer-form .layer-form-line:last-child {
	margin-bottom: 0;
}

.rfq-layer .layer-form .layer-form-line .line-group {
	display: flex;
	align-items: center;
	width: 50%;
}

.rfq-layer .layer-form .layer-form-line .line-group-column {
	align-items: baseline;
}

.rfq-layer .layer-form .layer-form-line .line-group:not(:last-child) {
	margin-right: 80px;
}

.rfq-layer .layer-form .layer-form-line .line-group span,
.rfq-layer .layer-form .layer-form-line .line-group input,
.rfq-layer .layer-form .layer-form-line .line-group gap-line {
	display: block;
	outline: none;
}

.rfq-layer .layer-form .layer-form-line .line-group span {
	width: 80px;
	white-space: nowrap;
	margin-right: 10px;
	text-align: right;
}

.rfq-layer .layer-form .layer-form-line .line-group span::before {
	content: "*";
	color: var(--white);
}

.rfq-layer .layer-form .layer-form-line .line-group span.line-required::before {
	content: "*";
	color: red;
}

.rfq-layer .layer-form .layer-form-line .line-group .line-input {
	display: flex;
	align-items: center;
	width: 300px;
}

.rfq-layer .layer-form .layer-form-line .line-group .line-column {
	flex-direction: column;
	align-items: baseline;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul {
	position: relative;
	width: 100%;
	border: 1px solid #dfdfdf;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul .select-option-value {
	position: relative;
	color: var(--black);
	line-height: 20px;
	padding: 10px;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul .select-option-value::after {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
	content: "";
	border-top: 10px solid #000000;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul .select-options {
	position: absolute;
	top: calc(100% + 1px);
	left: -1px;
	width: calc(100% + 2px);
	background-color: var(--white);
	padding: 0 10px;
	max-height: 0;
	overflow: hidden;
	z-index: 999;
	transform: .5s;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul.open .select-options {
	padding: 10px;
	border: 1px solid #dfdfdf;
	border-top: 0;
	max-height: 500px;
}

.rfq-layer .layer-form .layer-form-line .line-group .select-ul .select-options li {
	padding: 0 0 10px;
	cursor: pointer;
}

.rfq-layer .layer-form .layer-form-line .line-group .label-tip {
	display: block;
	width: fit-content;
	font-size: 14px;
	margin-left: 10px;
	margin-right: 0;
	white-space: nowrap;
	color: var(--grey);
}

.rfq-layer .layer-form .layer-form-line .line-group .line-column .label-tip {
	margin-left: 0;
	padding-left: 10px;
	padding-top: 5px;
}

.rfq-layer .layer-form .layer-form-line .line-group a.label-tip {
	color: blue;
}

.rfq-layer .layer-form .layer-form-line .line-group .gap-line {
	margin: 0 10px;
}

.rfq-layer .layer-form .layer-form-line .line-group input {
	width: 100%;
	height: 42px;
	padding: 10px;
	border: 1px solid #dfdfdf;
}

.rfq-layer .layer-form .layer-form-line .line-group input.input-phone {
	border-left: 1px solid transparent;
}

.rfq-layer .layer-form .layer-form-line .line-group label.file-upload {
	width: 100%;
	font-weight: normal;
	color: var(--grey);
	border: 1px solid #dfdfdf;
	line-height: 20px;
	padding: 10px;
	margin-bottom: 0;
}

.rfq-layer .layer-form .layer-form-line .line-group label.images-upload {
	width: 60px;
	/* height: 60px; */
	border: 1px solid #dfdfdf;
	padding: 5px 0;
	margin-right: 10px;
}

.rfq-layer .layer-form .layer-form-line .line-group label.images-upload img {
	display: block;
	max-width: 30px;
	margin: 0 auto;
}

.rfq-layer .layer-form .layer-form-line .line-group label.images-upload p {
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	color: var(--grey);
}

.rfq-layer .layer-form .layer-form-line .line-group input[type="file"] {
	display: none;
}

.rfq-layer .layer-form .layer-form-line .line-group button {
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	border-radius: 5px;
	padding: 5px 50px;
	border: 0;
	outline: none;
}

.rfq-layer .layer-form .layer-form-line .line-once .line-input {
	width: calc(100% - 80px);
}

.rfq-layer .layer-form .layer-form-line .line-once .line-input textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #dfdfdf;
	outline: none;
}

.section-rfq .rfq-layer {
	position: initial;
	display: block;
	background-color: transparent;
}

.section-rfq .rfq-layer .layer-form {
	position: initial;
	width: 100%;
	transform: translate(0, 0);
}

/* Memeber */
.page-wrapper-login {}

.topic-member-title {
	font-size: 40px;
	font-weight: bold;
	color: var(--main);
	text-align: center;
	margin-bottom: 50px;
}

.login-form {
	background-color: var(--white);
	padding: 80px;
}

.login-form form {
	display: block;
	width: 50%;
	margin: 0 auto;
}

.login-form .form-line {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-bottom: 30px;
}

.login-form .form-line span.item {
	display: block;
	white-space: nowrap;
	min-width: 100px;
}

.login-form .form-line input {
	display: block;
	width: 100%;
	padding: 10px 20px;
	outline: none;
}

.login-form .form-line img {
	display: block;
}

.login-form .form-line-between {
	justify-content: space-between;
}

.login-form .form-line .remember-me {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.login-form .form-line .remember-me input[type="checkbox"] {
	display: none;
}

.login-form .form-line .remember-me input[type="checkbox"]+span {
	display: block;
	width: 20px;
	height: 20px;
	border: 1px solid #dfdfdf;
	margin-right: 10px;
	position: relative;
}

.login-form .form-line .remember-me input[type="checkbox"]:checked+span::after {
	content: "";
	display: block;
	width: 10px;
	height: 20px;
	border: 2px solid var(--main);
	border-top: 0;
	border-left: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.login-form .form-line button {
	display: inline-block;
	background-color: var(--main);
	color: var(--white);
	border: 0;
	padding: 10px 50px;
	border-radius: 5px;
	outline: none;
}

.login-form .form-line a {
	display: inline-block;
	color: var(--black);
}

.login-form .form-line a:not(:last-child) {
	margin-right: 30px;
}


.account-wrapper {
	background-color: var(--white);
	padding: 80px;
}

.account-wrapper h1 {
	margin-bottom: 30px;
}

.account-wrapper .account-links {
	display: flex;
	align-items: center;
}

.account-wrapper .account-links a {
	color: var(--black);
}

.account-wrapper .account-links a:not(:last-child) {
	margin-right: 30px;
}

.page-bar {
	margin-bottom: 50px;
}

.page-bar .page-breadcrumb {
	display: flex;
	align-items: center;
}

.page-bar .page-breadcrumb li:not(:last-child) {
	margin-right: 20px;
}

.page-bar .page-breadcrumb a {
	color: var(--black);
}