@font-face {
    font-family: 'CenturyGothic';
    src: url('./fonts/CenturyGothicBd.otf');
    src: url('./fonts/CenturyGothicBd.otf?#iefix') format('embedded-opentype'),
    url('./fonts/CenturyGothicBd.otf') format('woff');
    font-weight: bold;
} 
#product img{
	width: 100%;
}
.module-title {
	font-size: 44px;
	font-weight: bold;
	color: #232222;
	text-align: center;
	padding: 60px 0;
}

.product-list {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 40px;
}

.product-list .product-list-item-1,
.product-list .product-list-item-2 {
	width: 49.3%;
}

.product-list .product-list-item-3,
.product-list .product-list-item-4,
.product-list .product-list-item-5 {
	width: 32.4%;
}

.product-list .product-list-item {
	margin-bottom: 20px;
	height: 50%;
	position: relative;
	cursor: pointer;
}
.product-list .product-list-item .product-list-item-img{
	transition: all 0.4s;
	background-position: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.product-list .product-list-item .product-list-item-img  img{
	opacity: 0;
}

.product-list .product-list-item .product-list-item-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	transition: all 0.5s;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-title {
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	padding: 12px 0;
	background: rgba(255, 255, 255, 0.7);
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info {
	transition: all 0.4s;
	display: none;
	padding: 0 10%;
	height: 100%;
	color: #FFFFFF;
	flex-direction: column;
	justify-content: center;
}

.product-list .product-list-item-1 .product-list-item-info,
.product-list .product-list-item-2 .product-list-item-info {
	max-width: 70%;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .product-list-item-info-title {
	font-size: 22px;
	padding-bottom: 22px;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .product-list-item-info-title span {
	border-bottom: 2px solid #FFFFFF;
	font-style: italic;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .product-list-item-info-subtitle {
	font-size: 36px;
	font-weight: bold;
	line-height: 72px;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .product-list-item-info-text {
	font-size: 18px;
	padding-bottom: 30px;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .learn-more-btn {
	text-decoration: none;
	color: #00327D;
	font-weight: 600;
	text-align: center;
	background: #FFFFFF;
	width: 128px;
	padding: 12px;
	border-radius: 30px;
}

.product-list .product-list-item .product-list-item-mask .product-list-item-info .learn-more-btn:hover {
	background: #00327D;
	color: #FFFFFF;
}

.product-list .product-list-item:hover .product-list-item-mask {
	background: rgba(123, 123, 123, 0.5);
	box-shadow: 2px 7px 28px 1px rgba(0, 0, 0, 0.1);
}

.product-list .product-list-item:hover .product-list-item-title {
	display: none;
}

.product-list .product-list-item:hover .product-list-item-info {
	display: flex;
}

.product-list .product-list-item:hover .product-list-item-img {
	filter: blur(2px);
	background-size: 110% 110%;
}

.product-list .product-list-item:hover {
	/* background-size: 110% 110%; */
	/* filter: blur(2.1px); */
}

.find-more {
	width: 100%;
	height: 160px;
	padding: 40px 0 60px;
	text-align: center;
}

.find-more a {
	text-decoration: none;
	font-size: 30px;
	color: #00327D;
	font-weight: bold;
	transition: all 0.3s;
	border-bottom: 2px solid #00327D;
}

.find-more a:hover {
	font-size: 32px;
	color: #00327D;
}

.about-us {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.about-us .about-us-bg {
	width: 100%;
	transition: all 0.4s;
}
.about-us:hover .about-us-bg{
	transform: scale(1.1);
}
.about-us .about-us-info {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 58%;
}

.about-us .about-us-info .about-us-info-title {
	padding: 14px 0 14px 64px;
	margin-bottom: 20px;
	font-size: 24px;
	color: #FFFFFF;
	background: url('https://static-ussite.tineco.com/94490d5b-e920-48bc-be01-248ed86cdd30.png') no-repeat;
	background-size: 100% 100%;
}

.about-us .about-us-info .about-us-info-title span {
	font-size: 26px;
	font-weight: bold;
	color: #FFDC00;
}

.about-us .about-us-info .about-us-info-subtitle {
	font-size: 56px;
	color: #00327D;
	font-weight: bold;
	padding-left: 64px;
	margin-bottom: 36px;
}

.about-us .about-us-info .about-us-info-text {
	padding-left: 64px;
	font-size: 26px;
	line-height: 38px;
}

.about-us .about-us-info .about-us-info-why {
	padding: 40px 0 40px 64px;
	display: flex;
	align-items: center;
}

.about-us .about-us-info .about-us-info-why .about-us-info-why-btn {
	padding: 12px 34px;
	font-size: 20px;
	text-decoration: none;
	color: #FFFFFF;
	background: #00327D;
	border: 1px solid #00327D;
	border-radius: 30px;
	transition: 0.4s;
}

.about-us .about-us-info .about-us-info-why .about-us-info-why-btn:hover {
	background: #FFFFFF;
	color: #00327D;
}

.about-us .about-us-info .about-us-info-why .about-us-info-why-video {
	width: 64px;
	height: 64px;
	margin-left: 30px;
	cursor: pointer;
	transition: all 0.4s;
	overflow: hidden;
}

.about-us .about-us-info .about-us-info-why .about-us-info-why-video:hover img{
	transform: translateX(-64px);
	filter: drop-shadow(#FFFFFF 64px 0);
}

.about-us .about-us-info .about-us-info-tips {
	padding: 0 0 20px 64px;
}

.about-us:hover {
	box-shadow: 2px 7px 28px 1px rgba(0, 0, 0, 0.1);
	background-size: 110% 110%;
}

.news-events {
	display: flex;
	padding-bottom: 40px;
}

.news-events .news-events-item {
	width: 33%;
	cursor: pointer;
	padding-bottom: 12px;
	margin-right: 18px;
	transition: all 0.4s;
}

.news-events .news-events-item:last-of-type {
	margin-right: 0;
}

.news-events .news-events-item .news-events-item-img {
	overflow: hidden;
}

#product .news-events .news-events-item .news-events-item-img img {
	width: auto;
	height: 311px;
	transition: all 0.4s;
}
#product .news-events .news-events-item .news-events-item-img img:hover{
	transform: scale(1.1);
}

.news-events .news-events-item .news-events-item-title {
	font-size: 16px;
	line-height: 28px;
	font-weight: bold;
	padding: 10px 12px 12px;
	min-height: 78px;
}

.news-events .news-events-item .news-events-item-text {
	display: flex;
	align-items: flex-end;
	padding: 0 12px;
}

.news-events .news-events-item .news-events-item-text span {
	display: inline-block;
	width: 100%;
	line-height: 20px;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.news-events .news-events-item .news-events-item-btn {
	width: 80px;
	height: 30px;
	line-height: 26px;
	text-align: center;
	display: none;
	text-decoration: none;
	background: #00327D;
	border-radius: 20px;
	color: #FFFFFF;
	transition: all 0.4s;
}

.news-events .news-events-item:hover {
	box-shadow: 2px 7px 28px 1px rgba(0, 0, 0, 0.1);
}

.news-events .news-events-item:hover .news-events-item-img {
	background-size: 110% 110%;
}

.news-events .news-events-item:hover .news-events-item-btn {
	display: block;
}

.view-more {
	display: flex;
	justify-content: center;
}

.view-more a {
	padding: 12px 30px;
	border-radius: 30px;
	background: #00327D;
	border: 1px solid #00327D;
	color: #FFFFFF !important;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.4s;
}

.view-more a:hover {
	background: #FFFFFF;
	color: #00327D !important;
}

#meetSwiper {
	padding-bottom: 48px;
	border-bottom: 1px solid #dddddd;
	position: relative;
}
#meetSwiper .swiper-button-prev1{
	position: absolute;
	left: 0;
	top: 40%;
	height: 40px;
	width: 30px;
	background-image: url(https://static-ussite.tineco.com/ce612d63-95f8-4b40-8bca-bee2686477f7.svg);
	background-repeat: no-repeat;
}
#meetSwiper .swiper-button-next1 {
	position: absolute;
	right: 0;
	top: 40%;
	height: 40px;
	width: 30px;
	background-repeat: no-repeat;
	background-image: url(https://static-ussite.tineco.com/74a5c351-e408-4348-85a9-84a6c8296949.svg);
}
#indexMeetSwiperContainer{
	position: unset !important;
	width: 88% !important;
}
.index-meet-box {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: all 0.4s;
}

.index-meet-box img.bg {
	opacity: 0;
}

.index-meet-box:hover {
	background-size: 110% 110%;
	box-shadow: 2px 7px 18px 1px rgba(0, 0, 0, 0.2);
}

.index-meet-box img.look-hover-phone {
	display: none !important;
	opacity: 0 !important;
	width: 30px !important;
	height: 30px !important;
	left: unset;
	top: unset;
	bottom: 12px;
	right: 12px;
}

.platform-list {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
}

.platform-list a {
	overflow: hidden;
}

.platform-list a img {
	padding: 0 16px;
	height: 34px;
	transform: translateY(34px);
	filter: drop-shadow(#00327D 0px -34px 0px);
}

.support-list {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
}

.support-list .support-list-item {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 15%;
	padding: 30px 0;
	cursor: pointer;
	transition: all 0.4s;
}

#product .support-list .support-list-item img {
	height: 64px;
	width: unset;
	padding-bottom: 16px;
}

.support-list .support-list-item .support-list-item-text {
	font-size: 16px;
	color: #9F9F9F;
	font-weight: bold;
}

.support-list .support-list-item .support-list-item-active-img {
	display: none;
}

.support-list .support-list-item:hover {
	box-shadow: 2px 7px 28px 1px rgba(0, 0, 0, 0.1);
}

.support-list .support-list-item:hover .support-list-item-text {
	color: #00327D;
}

.support-list .support-list-item:hover .support-list-item-img {
	display: none;
}

.support-list .support-list-item:hover .support-list-item-active-img {
	display: block;
}

#brands {
	background: #EBEEF1;
	opacity: 1;
	padding: 15px 0px;
}

#brands .w1280,#brands .w1280-v2 {
	display: flex;
	justify-content: space-evenly;
	flex-direction: row;
	align-items: center;
}

#brands .brand-item {
	display: flex;
	align-items: center;
	height: 100%;
}

#brands .brand-item a {
	text-decoration: none;
}
#brands .w1280{
	position: relative;
}
#indexBrandSwiper {
			    background: #EBEEF1;
			    opacity: 0.5;
			    padding: 0px 0px;
			}
			#indexBrandSwiper .brand-item {
			    display: flex;
				align-items: center;
				height: 68px;
			}
			#indexBrandSwiper .brand-item a{
				text-decoration: none;
			}
			#indexBrandSwiper .brand-item .brand-item-text{
				font-size: 24px;
				font-weight: bold;
				color: #738DB5;
			}
#brands .brand-item a img,#indexBrandSwiper .brand-item a img{
	height:100%;
	width: auto;
}

			#brands .swiper-button-prev2 {
				position: absolute;
				top: 50%;
				z-index: 20;
				width: 50px;
				height: 50px;
				background-image: url('https://us.tineco.com/imgs/leftIc.png');
				background-size: 100%;
				cursor: pointer;
				transform: translate(0, -50%);
				left: 20px;
			}

			#brands .swiper-button-next2 {
				position: absolute;
				top: 50%;
				z-index: 20;
				right: 0;
				width: 50px;
				height: 50px;
				background-size: 100%;
				cursor: pointer;
				transform: translate(0, -50%);
				background-image: url('https://us.tineco.com/imgs/rigIc.png');
				right: 20px;
			}
#brands .brand-item .brand-item-text {
	font-size: 24px;
	font-weight: bold;
	color: #738DB5;
}

.pb-20 {
	padding-bottom: 20px !important;
}

.w1280-v2 {
	width: 1280px;
	margin: 0 auto;
}

@media (max-width:1440px) {
	.about-us .about-us-info .about-us-info-title{
		font-size: 14px;
		padding: 4px 0 4px 64px;
	}
	.about-us .about-us-info .about-us-info-title span{
		font-size: 18px;
	}
}
