* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}

@font-face {
	font-family: "Montserrat";
	src: url('../fonts/Montserrat-Regular-8.otf');
}

@font-face {
	font-family: "Montserrat-SemiBold";
	src: url('../fonts/Montserrat-SemiBold-9.otf');
}

@font-face {
	font-family: "MontserratLight";
	src: url('../fonts/Montserrat-Light-6.otf');
}

@font-face {
	font-family: "Montserrat-Bold";
	src: url('../fonts/Montserrat-Bold-3.otf');
}

@font-face {
	font-family: "Montserrat-Medium";
	src: url('../fonts/Montserrat-Medium-7.otf');
}

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	font-family: Montserrat;
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 1px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: rgba(228, 0, 17, 1);
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.content1416 {
	margin: 0 auto;
	width: 1416px;
	max-width: 94%;
}

.content520 {
	padding: 0 5.2%;
}

.content312 {
	padding: 0 3.12%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font36 {
	font-size: 36px;
}

.font32 {
	font-size: 32px;
}

.font40 {
	font-size: 40px;
}

.font42 {
	font-size: 42px;
}

.font44 {
	font-size: 44px;
}

.font52 {
	font-size: 52px;
}

.font54 {
	font-size: 54px;
}

.font60 {
	font-size: 60px;
}

.font68 {
	font-size: 68px;
}

.font72 {
	font-size: 72px;
}

.font62 {
	font-size: 62px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font200 {
	font-size: 200px;
}

header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
}


header .container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 90px;
}

header .container .logo {
	position: relative;
	z-index: 3;
}

header .container .logo img {
	display: block;
	width: 156px;
}

header .r {
	display: flex;
	align-items: center;
}

header .nav-links {
	display: flex;
	gap: 0 3.9vw;
}

header .nav-links>li>a {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	color: #333333;
	line-height: 90px;
	transition: all 0.3s ease;
}

header .nav-links>li.active>a,
header .nav-links>li:hover>a {
	color: #DF0515;
}

/* Dropdown menu styles */
header .nav-links>li.dropdown {
	position: relative;
}

header .nav-links>li.dropdown .dropdown-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	background: white;
	/* border: 1px solid #e0e0e0; */
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	min-width: 292px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: all 0.3s ease;
	padding: 11px 20px;
}

header .nav-links>li.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

header .nav-links>li.dropdown .dropdown-menu a {
	display: block;
	line-height: 35px;
	font-family: Montserrat;
	font-weight: 400;
	font-size: 14px;
	color: rgba(102, 102, 102, 1);
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
	white-space: normal;
}

header .nav-links>li.dropdown .dropdown-menu a:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

header .nav-links>li.dropdown .dropdown-menu a:hover {
	/* background: #f8f9fa; */
	color: #DF0515;
}

header .contact-btn {
	margin-left: 74px;
	line-height: 44px;
	padding: 0 28px;
	background: #DF0515;
	border-radius: 22px;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
}

header .search-box {
	position: relative;
	margin-left: 17px;
}

header .search-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(50, 59, 64, .25);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 24px;
	color: rgba(51, 51, 51, 1);
}

header .search-icon:hover {
	color: #DF0515;
	border-color: #DF0515;
}

header .search-input-container {
	position: absolute;
	top: 150%;
	right: 0;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	display: flex;
	align-items: center;
	padding: 5px;
	min-width: 250px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

header .search-box.active .search-input-container {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

header .search-input-container input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 8px 12px;
	font-size: 14px;
	outline: none;
	transition: all 0.3s ease;
}

header .search-input-container input:focus {
	border-color: #DF0515;
}

header .search-btn {
	background: #DF0515;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 8px 15px;
	margin-left: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

header .search-btn:hover {
	background: #c00014;
}

.footer {
	background: RGBA(253, 253, 253, 1);
}

.footer-grid {
	padding: 65px 0 110px;
	display: flex;
	justify-content: space-between;
}

.footer-grid .footer-services {
	width: 57.5%;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.footer-grid .footer-subscribe h4,
.footer-grid .footer-services h4 {
	font-weight: 400;
	font-size: 16px;
	color: #222222;
	line-height: 30px;
}

.footer-grid .footer-services ul {
	margin-top: 15px;
}

.footer-grid .footer-services ul li>a {
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 14px;
	color: #666666;
	line-height: 34px;
	transition: all .3s ease;
}

.footer-grid .footer-services ul li>a:hover {
	color: #DF0515;
}

.footer-grid .footer-services .company-msg {
	font-family: MontserratLight;
	font-size: 14px;
	color: #666666;
	line-height: 20px;
	margin-top: 25px;
}

.footer-grid .footer-services .company-msg-item:not(:last-child) {
	margin-bottom: 14px;
}

.footer-grid .footer-services .social-icons {
	margin-top: 15px;
	display: flex;
	gap: 18px;
}

.footer-grid .footer-services .social-icons a {
	width: 40px;
	height: 40px;
	background: rgba(161, 161, 161, .5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: all .3s ease;
}

.footer-grid .footer-services .social-icons a:hover {
	background: rgba(228, 0, 17, 1);
}

.footer-grid .footer-services .social-icons a .iconfont {
	font-size: 24px;
}

.footer-grid .footer-subscribe {
	width: 400px;
}

.footer-grid .footer-subscribe .subscribe-form {
	margin-top: 29px;
	border-radius: 24px;
	background: rgba(245, 245, 245, .88);
	padding: 40px 20px 20px;
}

.footer-grid .footer-subscribe .subscribe-form .input {
	position: relative;
}

.footer-grid .footer-subscribe .subscribe-form .input label {
	position: absolute;
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 14px;
	color: #222222;
	line-height: 20px;
	left: 20px;
	top: 0;
	transform: translateY(-50%);
	background: rgba(245, 245, 245, 1);
	padding: 0 7px;
}

.footer-grid .footer-subscribe .subscribe-form .input label span {
	color: rgba(223, 5, 21, 1);
}

.footer-grid .footer-subscribe .subscribe-form .input input {
	height: 44px;
	border-radius: 8px;
	border: 1px solid rgba(136, 136, 136, .5);
	padding: 0 27px;
	background: transparent;
	outline: none;
	display: block;
	width: 100%;
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 12px;
	color: #333;
	line-height: 20px;
}

.footer-grid .footer-subscribe .subscribe-form .input input::placeholder {
	color: #747B80;
}

.footer-grid .footer-subscribe .subscribe-form .subscribe-agree {
	margin-top: 13px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 12px;
	color: #888888;
	line-height: 20px;
}

.footer-grid .footer-subscribe .subscribe-form .subscribe-agree input {
	position: relative;
	width: 15px;
	height: 15px;
	background: #FFFFFF;
	border-radius: 3px;
	border: none;
}

.footer-grid .footer-subscribe .subscribe-form .subscribe-agree input::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid rgba(136, 136, 136, .3);
	border-radius: 3px;
}

.footer-grid .footer-subscribe .subscribe-form .btn-red {
	display: inline-flex;
	margin-top: 14px;
	line-height: 40px;
	background: #E40011;
	border: 0;
	border-radius: 20px;
	padding: 0 18px;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	gap: 6px;
	cursor: pointer;
	transition: all .3s ease;
}

.footer-grid .footer-subscribe .subscribe-form .btn-red:hover {
	background: rgba(228, 0, 17, .8);
}

.footer-bottom {
	border-top: 1px solid rgba(180, 180, 180, .12);
	padding: 27px 0 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-bottom .footer-logo img {
	display: block;
	width: 107px;
}

.footer-bottom .footer-legal {
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 14px;
	color: #888888;
	line-height: 34px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	flex: 1;
	gap: 10px 33px;
}

.footer-bottom .footer-legal a {
	color: #888888;
	transition: all .3s ease;
}

.footer-bottom .footer-legal a:hover {
	color: #DF0515;
}

.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-c .list .li-title:hover a,
.pc-aslide-content-t .close:hover {
	color: rgba(228, 0, 17, 1);
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
	display: flex;
	justify-content: space-between;
}

.pc-aslide-content-c .list .li-title {
	color: #333333;
}

.pc-aslide-content-c .list .li-title a {
	color: #333333;
}

.pc-aslide-content-c .list .li-title .iconfont::before {
	font-size: 20px;
	display: block;
}

.pc-aslide-content-c .list li.active .li-title .iconfont {
	transform: rotate(90deg);
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	display: block;
	line-height: 2.5;
	transition: all .6s;
	text-align: left;
}

.innerBanner {
	position: relative;
}

.innerBanner .pic img {
	display: block;
	width: 100%;
	min-height: 340px;
	object-fit: cover;
}

.innerBanner .banner-box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.innerBanner .banner-box .title {
	font-weight: bold;
	color: #FFFFFF;
	line-height: 1.2;
	text-align: center;
	z-index: 3;
}

.section-title {
	text-align: center;
	font-family: Montserrat-Bold;
	color: rgba(0, 0, 0, 1);
	line-height: 1;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 9999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}

.pagination ul {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pagination ul li>a {
	width: 36px;
	height: 36px;
	background: #FFFFFF;
	border-radius: 6px;
	border: 1px solid #E6E6E6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 18px;
	color: #808080;
	transition: all .6s;
}

.pagination ul li .iconfont {
	font-size: 18px;
}

.pagination ul li:hover a,
.pagination ul li.active a {
	background-color: rgba(228, 0, 17, 1);
	border-color: rgba(228, 0, 17, 1);
	color: #fff;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.m-right-buttom {
	display: none;
}

.slideBox-buttons .btn {
	display: flex;
	align-items: center;
	height: 44px;
	border-radius: 22px;
	border: 2px solid rgba(223, 5, 21, 1);
	padding: 0 20px;
	gap: 0 11px;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	transition: all 0.3s ease-in-out;
	background-color: rgba(223, 5, 21, 1);
}

.slideBox-buttons .btn.active,
.slideBox-buttons .btn:hover {
	background-color: #000;
	border-color: #000;
}

.subscribe-section {
	padding: 70px 0;
	background-color: rgba(223, 5, 21, 1);
}

.subscribe-section h2 {
	color: #FFFFFF;
	line-height: 1.72;
	font-family: Montserrat-SemiBold;
	text-align: center;
}

.subscribe-section .subscribe-form {
	margin: 30px auto 0;
	display: flex;
	width: 601px;
	max-width: 100%;
	height: 54px;
	background: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	padding: 2px;
}

.subscribe-section .subscribe-form input {
	flex: 1;
	border: none;
	outline: none;
	width: 100%;
	height: 100%;
	padding: 0 22px;
	font-weight: 300;
	font-size: 16px;
	color: #333;
}

.subscribe-section .subscribe-form input::placeholder {
	color: #CCCCCC;
}

.subscribe-section .subscribe-form .subscribe-btn {
	background: #DF0515;
	border: 0;
	border-radius: 6px;
	width: 66px;
	line-height: 50px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}

.subscribe-section .subscribe-form .subscribe-btn .iconfont {
	font-size: 36px;
}

.qa-section {
	padding: 90px 0 130px;
	background-color: RGBA(247, 249, 250, 1);
}

.qa-section .qa-layout {
	margin-top: 45px;
	display: flex;
	justify-content: space-between;
}

.qa-section .qa-layout .qa-list {
	width: 48.75%;
}

.qa-section .qa-layout .qa-list .acc-item {
	padding: 25px 25px 25px 40px;
	cursor: pointer;
}

.qa-section .qa-layout .qa-list .acc-item.active {
	background-color: rgba(223, 5, 21, .1);
	/* padding-top: 25px; */
	/* padding-bottom: 25px; */
}

.qa-section .qa-layout .qa-list .acc-item.active .acc-header .icon-jian {
	display: block;
}

.qa-section .qa-layout .qa-list .acc-item .acc-header .icon-jian,
.qa-section .qa-layout .qa-list .acc-item.active .acc-header .icon-jia {
	display: none;
}

.qa-section .qa-layout .qa-list .acc-header {
	font-weight: 400;
	font-size: 18px;
	color: #333333;
	line-height: 28px;
	display: flex;
	align-items: center;
}

.qa-section .qa-layout .qa-list .acc-item.active .acc-header {
	font-family: Montserrat-Bold;
	transition: all 0.3s ease-in-out;
	color: #c00014;
}

.qa-section .qa-layout .qa-list .acc-header .text {
	flex: 1;
	margin-right: 20px;
}

.qa-section .qa-layout .qa-list .acc-body {
	font-family: MontserratLight;
	font-size: 16px;
	color: #474747;
	line-height: 22px;
	margin-top: 10px;
	display: none;
}

.advantages-section {
	padding: 90px 0;
	background-color: RGBA(247, 249, 250, 1);
}

.advantages-section .adv-grid {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 50px;
}

.advantages-section .adv-grid .adv-card {
	background: #FFFFFF;
	border-radius: 10px;
	border-top: 5px solid rgba(223, 5, 21, 1);
	overflow: hidden;
	padding: 40px;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.advantages-section .adv-grid .adv-card:hover {
	background: rgba(223, 5, 21, 1);
}

.advantages-section .adv-grid .adv-card .icon {
	width: 67px;
	height: 67px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.advantages-section .adv-grid .adv-card .icon img {
	max-width: 100%;
	max-height: 100%;
	transition: all 0.3s ease-in-out;
}

.advantages-section .adv-grid .adv-card:hover .icon img {
	filter: brightness(0) invert(1);
	;
}

.advantages-section .adv-grid .adv-card h3 {
	font-family: Montserrat-Medium;
	font-weight: 400;
	color: #DF0515;
	margin-top: .83em;
	line-height: 1.33;
	transition: all 0.3s ease-in-out;
}

.advantages-section .adv-grid .adv-card p {
	font-family: MontserratLight;
	font-size: 18px;
	color: #808080;
	line-height: 30px;
	margin-top: .5em;
	transition: all 0.3s ease-in-out;
}

.advantages-section .adv-grid .adv-card:hover p,
.advantages-section .adv-grid .adv-card:hover h3 {
	color: #fff;
}

.smt-table-section {
	background-color: RGBA(247, 249, 250, 1);
	padding: 75px 0 100px;
}

.smt-table-section .table-container {
	border: 1px solid rgba(223, 5, 21, 1);
}

.smt-table-section .table-header {
	background-color: rgba(223, 5, 21, 1);
	color: white;
	text-align: center;
	padding: 0 20px;
	font-size: 24px;
	/* font-weight: 600; */
	line-height: 44px;
}

.smt-table-section .table-row {
	display: flex;
	border-bottom: 1px solid rgba(223, 5, 21, 1);
}

.smt-table-section .table-row:last-child {
	border-bottom: none;
}

.smt-table-section .table-cell-left {
	width: 200px;
	padding: 15px 20px;
	border-right: 1px solid rgba(223, 5, 21, 1);
	display: flex;
	align-items: center;
	font-size: 18px;
	/* font-weight: 600; */
	color: rgba(29, 29, 29, 1);
	line-height: 26px;
}

.smt-table-section .table-cell-right {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.smt-table-section .table-cell-right .cell-item {
	padding: 12px 20px;
	border-bottom: 1px solid rgba(223, 5, 21, 1);
	font-size: 16px;
	line-height: 24px;
	color: rgba(128, 128, 128, 1);
	line-height: 1.5;
}

.smt-table-section .table-cell-right .cell-item:last-child {
	border-bottom: none;
}

/* Table element styles */
.smt-table-section .smt-table {
	width: 100%;
	border-collapse: collapse;
}

.smt-table-section .smt-table tr {
	border-bottom: 1px solid rgba(223, 5, 21, 1);
}

.smt-table-section .smt-table tbody tr:last-child {
	border-bottom: none;
}

.smt-table-section .smt-table tbody tr th:nth-child(1){
	width: 18%;
}
.smt-table-section .smt-table tbody tr td:nth-child(2){
	width: 20%;
}
.smt-table-section .smt-table tbody tr td:nth-child(3){
	width: 24%;
}
.smt-table-section .smt-table tbody tr td:nth-child(4){
	width: 38%;
}

.smt-table-section .smt-table th {
	padding: 15px 20px;
	border-right: 1px solid rgba(223, 5, 21, 1);
	font-size: 18px;
	color: rgba(29, 29, 29, 1);
	line-height: 26px;
	text-align: center;
	font-weight: 400;
}

.smt-table-section .smt-table td {
	padding: 12px 20px;
	border-right: 1px solid rgba(223, 5, 21, 1);
	border-bottom: 1px solid rgba(223, 5, 21, 1);
	font-size: 16px;
	line-height: 24px;
	font-family: MontserratLight;
	color: rgba(128, 128, 128, 1);
}

.smt-table-section .smt-table tr:last-child td {
	border-bottom: none;
}

.smt-table-section .smt-table tr td:last-child {
	border-right: none;
}

.smt-table-section .smt-table th[rowspan] {
	vertical-align: middle;
}

.capabilities-section {
	padding: 90px 0;
}

.capabilities-section .capabilities-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 45px;
}

.capabilities-section .capabilities-image {
	width: 42.5%;
	position: sticky;
	top: 131px;
}

.capabilities-section .capabilities-image .pic {
	border-radius: 10px;
}

.capabilities-section .capabilities-text {
	/* flex: 1; */
	/* margin-left: 28px; */
	padding-top: 59px;
	font-weight: 300;
	font-size: 16px;
	color: #3A444A;
	line-height: 26px;
	width: 55.75%;
	font-family: MontserratLight;
}

.capabilities-section .capabilities-text * {
	all: revert;
}
.smt-table-section .section-title {
	margin-bottom: 1.25em;
}

.service-field {
	padding: 90px 0;
}

.service-field .service-desc {
	font-family: MontserratLight;
	font-size: 16px;
	color: #3A444A;
	line-height: 26px;
	margin-top: 1.25em;
}

.service-field .field-grid {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}

.service-field .field-grid .field-card {
	position: relative;
}

.service-field .field-grid .field-card .picCover {
	padding-top: 160%;
}

.service-field .field-grid .field-card .field-content {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(223, 5, 21, .8);
	padding: 29.33% 30px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	display: flex;
	flex-direction: column;
}

.service-field .field-grid .field-card:hover .field-content {
	opacity: 1;
}

.service-field .field-grid .field-card .field-content h3 {
	font-family: Montserrat-Medium;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 30px;
	font-weight: 400;
	text-align: center;
}

.service-field .field-grid .field-card .field-content p {
	font-family: MontserratLight;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 22px;
	margin-top: 1.5em;
	flex: 1;
	overflow: auto;
	flex-shrink: 0;
}

.update-card {
	position: relative;
	background: #FFFFFF;
	border-radius: 24px;
	overflow: hidden;
	transition: all .6s;
	display: block;
}

.update-card .pic {
	border-radius: 24px;
}

.update-card .pic img {
	height: 318px;
	object-fit: cover;
}

.update-card .update-content {
	padding: 31px 37px;
	transition: all .6s;
}

.update-card:hover {
	background: rgba(223, 5, 21, 1);
}

.update-card .update-title {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 1.55;
	margin-top: 14px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.3s ease-in-out;
}

.update-card .tag-red {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 36px;
	background: #DF0515;
	padding: 0 19px;
	font-family: MontserratLight;
	font-weight: 400;
	font-size: 14px;
	color: #FFFFFF;
	border-radius: 24px 0 24px 0;
	z-index: 2;
}

.update-card .update-date {
	font-weight: 400;
	font-size: 15px;
	color: #888888;
	line-height: 1;
	opacity: 0.5;
}

.update-card:hover .update-link,
.update-card:hover .update-date,
.update-card:hover .update-title {
	color: #fff !important;
	opacity: 1 !important;
	transition: all 0.3s ease-in-out;
}

.update-card .update-link {
	margin-top: 80px;
	display: flex;
	align-items: center;
	gap: 5px;
	font-weight: 400;
	font-size: 16px;
	color: #E40011;
	line-height: 30px;
	transition: all .6s;
}

@media (max-width:1770px) {}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1660px) {}

@media (max-width:1600px) {
	header .nav-links {
		gap: 0 2vw;
	}
}

@media (max-width:1560px) {}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	.service-field .field-grid .field-card .field-content{
		padding: 19% 15px;
	}
	.service-field .field-grid .field-card .field-content p{
		margin-top: 1em;
	}
	.update-card .pic img {
		height: 240px;
	}

	.update-card .update-link {
		margin-top: 30px;
	}

	header .contact-btn {
		margin-left: 30px;
	}

	.content312 {
		padding: 0 3%;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 36px;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 32px;
	}

	.font62,
	.font60 {
		font-size: 48px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font200 {
		font-size: 150px;
	}

	.content520 {
		padding: 0 3%;
	}

	.footer-grid .footer-services {
		width: 65%;
	}

	.footer-grid .footer-subscribe {
		width: 32%;
	}
}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}

}

@media (max-width:1280px) {
	header .nav-links {
		gap: 0 20px;
	}

	header .contact-btn {
		margin-left: 20px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 18px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 30px;
	}

	.font62,
	.font60 {
		font-size: 36px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}

	.font200 {
		font-size: 120px;
	}

	.font32,
	.font30 {
		font-size: 28px;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 30px;
	}

	.capabilities-section .capabilities-text {
		padding-top: 30px;
	}
}

@media (max-width:1199px) {
	.service-field .field-grid .field-card .field-content h3{
		font-size: 22px;
	}
	.service-field .field-grid{
		grid-template-columns: repeat(3,1fr);
	}
	.smt-table-section .table-header {
		font-size: 22px;
	}

	.smt-table-section,
	.capabilities-section {
		padding: 75px 0;
	}

	.capabilities-section .capabilities-text {
		padding-top: 0;
		;
	}

	.update-card .update-content {
		padding: 20px;
	}

	.footer-grid {
		padding-bottom: 75px;
	}

	.footer-bottom {
		padding: 20px 0;
	}

	.footer-grid .footer-services {
		width: 58%;
		grid-template-columns: 1fr;
	}

	.footer-grid .footer-subscribe {
		width: 38%;
	}

	.footer-grid .footer-services .footer-col:not(:last-child) {
		display: none;
	}

	.m-right-buttom {
		display: block;
	}

	header .nav-links {
		display: none;
	}

	header .container {
		height: 70px;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 28px;
	}

	.font62,
	.font60 {
		font-size: 30px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}

	.font200 {
		font-size: 90px;
	}

	.font32,
	.font30 {
		font-size: 26px;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 28px;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: RGBA(179, 184, 189, 1);
		transition: top .2s linear
	}

	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: RGBA(109, 110, 111, 1);
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}

	.qa-section,
	.advantages-section {
		padding: 75px 0;
	}
	.advantages-section .adv-grid{
		gap: 35px;
	}
	.advantages-section .adv-grid .adv-card{
		padding: 35px;
	}
	.advantages-section .adv-grid .adv-card .icon{
		width: 50px;
		height: 50px;
	}
	.qa-section .qa-layout{
		flex-direction: column;
	}
	.qa-section .qa-layout .qa-list{
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.service-field .field-grid .field-card .field-content h3{
		font-size: 20px;
	}
	.qa-section .qa-layout .qa-list .acc-item{
		padding: 20px;
	}
	.advantages-section .adv-grid{
		grid-template-columns: repeat(2,1fr);
	}
	.advantages-section .adv-grid{
		gap: 30px;
	}
	.advantages-section .adv-grid .adv-card{
		padding: 30px;
	}
	.advantages-section .adv-grid .adv-card p{
		font-size: 16px;
		line-height: 24px;
	}
	.qa-section,
	.advantages-section {
		padding: 65px 0;
	}

	.qa-section .qa-layout,
	.advantages-section .adv-grid {
		margin-top: 40px;
	}

	.smt-table-section .table-header {
		font-size: 20px;
	}

	.smt-table-section,
	.capabilities-section {
		padding: 65px 0;
	}

	.capabilities-section .capabilities-content {
		margin-top: 15px;
		flex-direction: column;
		gap: 20px;
	}

	.capabilities-section .capabilities-image {
		position: relative;
		top: 0;
		width: 100%;
	}

	.capabilities-section .capabilities-text {
		width: 100%;
	}

	.footer-grid .footer-services .company-msg {
		margin-top: 15px;
	}

	.footer-grid .footer-subscribe .subscribe-form {
		margin-top: 19px;
	}

	.footer-grid .footer-services {
		width: 51%;
	}

	.footer-grid .footer-subscribe {
		width: 45%;
	}

	.footer-grid {
		padding: 55px 0;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 26px;
	}

	.font62,
	.font60 {
		font-size: 28px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}

	.font200 {
		font-size: 70px;
	}

	.font32,
	.font30 {
		font-size: 24px;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 26px;
	}

	.footer-bottom .footer-legal {
		gap: 0 10px;
		line-height: 24px;
	}

	.subscribe-section {
		padding: 65px 0;
	}

	.subscribe-section h2 {
		line-height: 1.4;
	}
}


@media (max-width: 768px) {
	.service-field .field-grid{
		grid-template-columns: repeat(2,1fr);
	}
	.service-field .field-grid .field-card .field-content p{
		font-size: 14px;
		line-height: 20px;
		margin-top: .6em;
	}
	.qa-section .qa-layout .qa-list .acc-header{
		font-size: 16px;
		line-height: 24px;
	}
	.qa-section .qa-layout .qa-list .acc-body{
		font-size: 14px;
		line-height: 20px;
		margin-top: 5px;
	}
	.advantages-section .adv-grid .adv-card .icon{
		width: 42px;
		height: 42px;
	}
	.advantages-section .adv-grid .adv-card{
		padding: 25px;
	}
	.advantages-section .adv-grid{
		gap: 25px;
		grid-template-columns: repeat(1,1fr);
	}
	.qa-section,
	.advantages-section {
		padding: 55px 0;
	}

	.qa-section .qa-layout,
	.advantages-section .adv-grid {
		margin-top: 30px;
	}
	.subscribe-section {
		padding: 55px 0;
	}

	.smt-table-section .table-header {
		font-size: 18px;
	}

	.smt-table-section .smt-table th {
		padding: 10px 15px;
		font-size: 16px;
	}

	.smt-table-section .smt-table td {
		padding: 10px 15px;
		font-size: 14px;
		line-height: 20px;
	}

	.smt-table-section,
	.capabilities-section {
		padding: 55px 0;
	}

	.capabilities-section .capabilities-content {
		/* margin-top: 30px; */
		gap: 10px;
	}

	.update-card .pic img {
		height: auto;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.footer-bottom .footer-legal {
		justify-content: center;
	}

	.footer-grid {
		padding: 45px 0;
	}

	.footer-grid .footer-services .company-msg {
		margin-top: 5px;
	}

	.footer-grid .footer-subscribe .subscribe-form {
		margin-top: 9px;
	}

	.footer-grid {
		flex-direction: column;
		gap: 30px;
	}

	.footer-grid .footer-services,
	.footer-grid .footer-subscribe {
		width: 100%;
	}

	.modal .close {
		right: 0;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 24px;
	}

	.font62,
	.font60 {
		font-size: 26px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}

	.font200 {
		font-size: 50px;
	}

	.font32,
	.font30 {
		font-size: 22px;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		z-index: 99;
		background-color: transparent;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}

}

@media (max-width: 500px) {
	.service-field .field-grid{
		grid-template-columns: repeat(1,1fr);
	}
	.service-field .field-grid{
		gap: 15px;
	}
	.update-card .update-date{
		font-size: 14px;
	}
	.qa-section .qa-layout .qa-list .acc-item{
		padding: 15px;
	}
	.advantages-section .adv-grid .adv-card .icon{
		width: 36px;
		height: 36px;
	}
	.qa-section,
	.advantages-section {
		padding: 45px 0;
	}

	.qa-section .qa-layout,
	.advantages-section .adv-grid {
		margin-top: 25px;
	}
	.subscribe-section .subscribe-form .subscribe-btn .iconfont {
		font-size: 24px;
	}

	.subscribe-section .subscribe-form .subscribe-btn {
		line-height: 40px;
		width: 50px;
	}

	.subscribe-section .subscribe-form input {
		padding: 0 15px;
	}

	.subscribe-section .subscribe-form {
		margin-top: 20px;
		height: 44px;
	}

	.subscribe-section h2 {
		font-size: 20px;
	}

	.smt-table-section .smt-table th {
		font-size: 14px;
		line-height: 20px;
	}

	.smt-table-section .smt-table td {
		font-size: 12px;
		line-height: 18px;
	}

	.smt-table-section,
	.capabilities-section {
		padding: 45px 0;
	}

	.capabilities-section .capabilities-content {
		/* margin-top: 0; */
		gap: 10px;
	}

	.update-card .update-link {
		margin-top: 10px;
	}

	.update-card .update-title {
		font-size: 16px;
		line-height: 1.4;
	}

	.slideBox-buttons .btn {
		font-size: 14px;
		border-width: 1px;
		height: 40px;
		padding: 0 14px;
		gap: 0 5px;
	}

	.footer-grid {
		gap: 25px;
	}

	.footer-bottom .footer-legal {
		line-height: 20px;
	}

	.footer-grid {
		padding: 35px 0;
	}

	header .container {
		height: 50px;
	}

	header .container .logo img {
		width: 119px;
	}

	header .contact-btn {
		line-height: 34px;
		font-size: 14px;
		padding: 0 18px;
	}

	header .search-icon {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.font44,
	.font42,
	.font40,
	.font36 {
		font-size: 22px;
	}

	.font62,
	.font60 {
		font-size: 24px;
	}

	.font72,
	.font68,
	.font80 {
		font-size: 26px;
	}

	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font32,
	.font30 {
		font-size: 20px;
	}

	.font52,
	.font54,
	.font48 {
		font-size: 22px;
	}
}