.main-swiper {
	width: 100%;
	height: 80vh;
}
.swiper{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}
.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 80vh;
	object-fit: cover;
}

.autoplay-progress {
	position: absolute;
	right: 16px;
	bottom: 16px;
	z-index: 10;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: var(--primary-color);
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0px;
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 4px;
	stroke: var(--primary-color);
	fill: none;
	stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}

.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-button-next, .swiper-button-prev{
	color: var(--primary-color);
}
@media (max-width: 768px) {
	.main-swiper {
		height: 35vh;
	}

	.swiper-container {
		height: 100%;
	}
}

/****/
.i_news_cont {
	padding: 0.1rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	height: 32rem;
}

.i_top_news {
	width: 28.5%;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

.i_top_news .img {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden
}

.i_top_news .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.i_top_news .txt {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: var(--mi-base-color);
	/* background: -webkit-linear-gradient(top, transparent, rgb(177 3 3 / 90%)); */
	background: linear-gradient(to bottom, transparent, rgb(211 67 70 / 90%));
	z-index: 2;
}

.i_top_news .txt span {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 0 1rem 1rem;
}

.i_top_news .txt h2 {
	font-size: 1.2rem;
	color: #FFF;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: .8rem;
}

.i_top_news .txt h6 {
	margin: .14rem 0 .5rem;
	font-size: .8rem;
	line-height: 1.2;
	color: #FFF;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.i_top_news:hover img {
	-webkit-transform: scale(1.15, 1.15);
	-moz-transform: scale(1.15, 1.15);
	transform: scale(1.15, 1.15)
}

.i_top_news .img img {
	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease
}


.i_news_time {
	margin-bottom: .8rem;
	position: relative;
}

.i_news_time h4 {
	font-size: 1.6rem;
	color: #FFF;
	margin-bottom: 0;
}

.i_news_time p {
	font-size: .6rem;
	color: #FFF;
}

.i_news_time h4,
.i_news_time p {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}


/* news more */
.news {
	background-color: #FFF;
	padding: var(--space-lg);
	padding-bottom: 4rem;
}

.index-news {
	padding: .8rem 0;
}

.i_news_cont .more {
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background: #3e3a39;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.i_news_cont .more::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--primary-color);
}

.i_news_cont .more i {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../icons/arrow_right_hollow_bai3.svg) no-repeat center;
	background-size: 1rem;
}

.i_top_news .more {
	background: #FFF
}

.i_top_news .more i {
	background: url(../icons/arrow_right_hollow_3.svg) no-repeat center;
	background-size: 1rem;
}

.i_news_list li:hover {
	box-shadow: 0 0 .1rem rgb(0 0 0 / 15%);
}

.i_news_list li:hover .more {
	background: #FFF;
}

.i_news_list li:hover .more::before {
	top: 0;
	bottom: initial;
	height: 100%;
}

.i_top_news:hover .more::before {
	top: 0;
	bottom: initial;
	height: 100%;
	background: #3e3a39;
}

.i_news_cont .more {
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease
}

.i_news_cont .more::before {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}


.i_news_list {
	margin: 0;
	width: 70%;
	padding: 0;
	height: 100%;
	margin-left: auto;
}

.i_news_list li {
	box-sizing: border-box;
	padding: 1rem 1rem .8rem;
	width: 57%;
	border: 1px solid #eeeeee;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
}

.i_news_list li:nth-child(2),
.i_news_list li:nth-child(3) {
	margin-bottom: 1.2rem;
}

.i_news_list .i_news_time h4,
.i_news_list .i_news_time p {
	color: #666;
	margin-bottom: 0;
}

.i_news_list li:first-child {
	float: left;
	width: 41%;
	margin-right: 2%;
	height: 100%;
}

.i_news_list li .img {
	display: none
}

.i_news_list li .img img {
	width: 100%;
	height: 15rem;
	object-fit: cover;
}

.i_news_list li:first-child .img {
	display: block;
	margin-top: 1.3rem;
}

.i_news_list li:not(:first-child) .txt {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap
}

.i_news_list .i_news_time {
	width: 20%;
}

.i_news_list li:not(:first-child) .i_news_time::after {
	content: '';
	position: absolute;
	top: 0;
	right: 1.6rem;
	width: 1px;
	height: 100%;
	background: #eeeeee;
}

.i_news_list span {
	width: 80%;
	margin-left: auto;
	padding-bottom: 0;
}

.i_news_list h2 {
	font-size: 1.1rem;
	color: #3e3a39;
	font-weight: bold;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-bottom: .6rem;
	line-height: 1.2;
	margin-top: 1rem;
}

.i_news_list h2.center {
	-webkit-line-clamp: 3;
}

.i_news_list h6 {
	margin: .5rem 0 1.2rem;
	font-size: .8rem;
	color: #5b5c5d;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-height: 1rem;
	font-weight: normal;
}

.i_news_list li:hover h4,
.i_news_list li:hover p,
.i_news_list li:hover h2 {
	color: var(--mi-base-color);
}

.i_news_list li:first-child:hover img {
	-webkit-animation: twinkle 1s 1 linear;
	animation: twinkle 1s 1 linear
}

@keyframes twinkle {
	0% {
		opacity: 1
	}

	50% {
		opacity: .6
	}

	100% {
		opacity: 1
	}
}

.i_news_list li img {
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease
}

.i_news .i_more {
	margin: .4rem auto 0;

}

@media screen and (max-width:1440px) {
	.i_news_time h4 {
		font-size: 2.5rem;
	}

	.i_news_time p {
		font-size: .8rem;
	}
}

@media screen and (max-width:1366px) {
	.i_news_list li {
		padding: .22rem .26rem .22rem
	}
}

@media screen and (max-width:1024px) {
	.i_news .i_more {
		margin: .4rem auto 0;
	}
}

@media screen and (max-width:959px) {
	.i_top_news {
		margin-bottom: .3rem;
		width: 100%;
	}

	.i_top_news .img {
		height: initial;
	}

	.i_top_news .img::before {
		content: '';
		display: block;
		padding-bottom: 75%;
	}

	.i_top_news .img img {
		position: absolute;
		left: 0;
		top: 0;
	}

	.i_news_list {
		margin-left: initial;
		width: 100%;
	}
}

@media screen and (max-width:767px) {
	.i_news_list li:first-child {
		float: none;
		width: 100%;
	}

	.i_news_list li {
		width: 100%;
		margin: 0 0 .2rem 0;
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
	}

	.i_news_list li .img {
		display: block;
		width: 200px;
		margin-top: 0 !important;
		order: 0;
	}

	.i_news_list li .img img {
		height: initial;
	}

	.i_news_list .txt {
		width: calc(100% - 230px);
		margin-left: auto;
		order: 1;
		display: block !important;
	}

	.i_news_list li:not(:first-child) .i_news_time::after {
		display: none;
	}

	.i_news_list .img {
		width: 40%;
	}
}

@media screen and (max-width:560px) {
	.i_news_list li .img {
		display: none !important;
	}

	.i_news_list .txt {
		width: 100%;
		display: flex !important;
	}

	.i_news .i_more {
		margin: .1rem auto 0;
	}
}

.team {
	margin: 3rem 0 4rem;
}

.team .section-header {
	margin-bottom: 2rem;
}

.team .team-cat {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}

.team .team-cat a {
	color: #000000;
	margin: 0 1rem;
	background-color: #eeeeee;
	color: #000000;
	padding: .2rem 1rem;
	border-radius: 5px;
	transition: color 0.3s ease;
}

.team .team-cat a.active {
	background-color: #D34346;
	color: #ffffff;
}

.team-grid {
	grid-template-columns: repeat(4, 1fr);
	gap: 1.2rem;
}

.team-grid .brand-card {
	margin-bottom: .1rem;
}

.team-grid .brand-card .team-cover {
	width: 100%;
	height: 200px;
	background: white;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	margin-bottom: .35rem;
}

.team-grid .brand-card .team-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(0.3);
	transition: filter 0.3s ease;
	border-radius: 5px;
}

.quanlity {
	width: 100%;
	height: 620px;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.quanlity img {
	width: 100%;
	height: auto;
	object-fit: cover;
}