.swiper-fud .swiper-container {
	position: relative;
	--swiper-theme-color: #ff6600;
	--swiper-pagination-color: #00ff33;
	/* 两种都可以 */
	--swiper-theme-color: #ff6600;
	/* 设置Swiper风格 */
	--swiper-navigation-color: #00ff33;
	/* 单独设置按钮颜色 */
	--swiper-navigation-size: 30px;
	/* 设置按钮大小 */
}

.swiper-fud .swiper-slide {
	display: none;
}

.swiper-fud .swiper-pagination-bullet {
	background-color: #dcdcdc;
	border-radius: 100%;
}

.swiper-fud .swiper-pagination-bullet-active {
	background-color: #707070;
}

.itemd {
	width: calc((100% - 100px) / 3);
	margin-right: 50px;
	display: inline-block;
	margin-bottom: 0px;
}

.itemd:last-of-type {
	margin-right: 0;
}

@media screen and (max-width: 800px) {
	.swiper-fud .swiper-slide {
		display: block;
		width: 100%;
		overflow: hidden;
		padding-bottom: 50px;
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	.itemd {
		width: 100%;
		margin-right: 0;
		display: inline-block;
	}
}

.itemd-content {
	background-color: #fff;
}

.itemd-thumb {
	margin-bottom: 20px;
}

.itemd-th {
	object-fit: contain;
	text-align: center;
	position: relative;
}

.itemd-th img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.img-datad {
	border: 1px #fff solid;
	font-size: 12px;
	position: absolute;
	right: 3%;
	bottom: 4%;
}

.img-datad>span {
	margin: 3px;
	font-size: 12px;
	color: #fff;
}

.itemd-title {
	font-size: 18px;
	text-align: center;
	margin: 20px auto;
	color: #434343;
}

.itemd-desc {
	line-height: 30px;
	text-align: center;
	font-size: 16px;
	color: #707070;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}