.CM_LatestNews_Default.swiper-container {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.CM_LatestNews_Default.swiper-container .swiper-wrapper-overflow{
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;

    overflow: hidden;
}
.CM_LatestNews_Default.swiper-container:not(.swiper-container-initialized) .swiper-slide,
.CM_LatestNews_Default.swiper-container:not(.swiper-container-initialized) .swiper-pagination,
.CM_LatestNews_Default.swiper-container:not(.swiper-container-initialized) .swiper-button-next,
.CM_LatestNews_Default.swiper-container:not(.swiper-container-initialized) .swiper-button-prev,
.CM_LatestNews_Default.swiper-container:not(.swiper-container-initialized) .swiper-scrollbar{
    display: none;
}
.CM_LatestNews_Default.swiper-container .swiper-lazy-preloader + img{
    display: none;
}




/* Custom */
.CM_LatestNews_Default{
    --AccentColor: #ef8024;
    --FeaturedImageHeight: 250;
    --FeaturedImageWidth: 370;
}
.CM_LatestNews_Default.swiper-container{
    position: relative;
}
.CM_LatestNews_Default.swiper-container .swiper-button-next,
.CM_LatestNews_Default.swiper-container .swiper-button-prev{
	margin-top: -25px;
	width: 50px;
	height: 50px;
	color: var(--AccentColor);
	border: none;
	border-radius: 50%;
    background-image: none;
	background-color: #f4f4f4;
	transition: all 300ms ease-in-out;
}
.CM_LatestNews_Default.swiper-container .swiper-button-next{
	right: -80px;
}
.CM_LatestNews_Default.swiper-container .swiper-button-prev{
	left: -80px;
}
.CM_LatestNews_Default.swiper-container .swiper-button-next span,
.CM_LatestNews_Default.swiper-container .swiper-button-prev span{
    width: 15px;
    height: 15px;
    border-top: 1px solid currentColor;
    border-left: 1px solid currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    transform: rotate(-45deg) translate3d(0,0,0);
}
.CM_LatestNews_Default.swiper-container .swiper-button-next span{
	margin: -8px 0 0 -11px;
    transform: rotate(135deg) translate3d(0,0,0);
}
.CM_LatestNews_Default.swiper-container .swiper-button-prev span{
	margin: -8px 0 0 -4px;
}
.CM_LatestNews_Default.swiper-container .swiper-button-next:hover,
.CM_LatestNews_Default.swiper-container .swiper-button-prev:hover{
	color: #fff;
	border: none;
	background-color: var(--AccentColor);
}
.CM_LatestNews_Default.swiper-container .swiper-pagination{
	position: relative;
	inset: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: clamp(30px, 1.6666666666666667vw + 18px ,50px) 0 0;
}
.CM_LatestNews_Default.swiper-container .swiper-pagination .swiper-pagination-bullet{
	margin: 0 0 0;
}
.CM_LatestNews_Default.swiper-container .swiper-pagination .swiper-pagination-bullet-active{
	background-color: var(--AccentColor);
}


.CM_LatestNews_Default .swiper-slide {
    height: auto;
}
.CM_LatestNews_Default .slide-box{
	display: flex;
	flex-direction: column;
	width: 100%;
	text-align: left;
	background-color: #fff;
}
.CM_LatestNews_Default .slide-box .svg-icon{
	width: 1em;
	height: 1em;
	fill: currentColor;
	vertical-align: middle;
}
.CM_LatestNews_Default .slide-box .pic{
	position: relative;
	padding-bottom: calc( var(--FeaturedImageHeight) / var(--FeaturedImageWidth) * 100% );
}
.CM_LatestNews_Default .slide-box .pic img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.CM_LatestNews_Default .slide-box .content{
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 35px clamp(20px, 2vw + 8px, 40px) 35px;
	border: 1px solid #f0f0f0;
}
.CM_LatestNews_Default .slide-box .content::after{
	content: '';
	order: 1;
	width: 100%;
	flex-grow: 1;
}
.CM_LatestNews_Default .slide-box .pic + .content{
	border-top: 0;
}
.CM_LatestNews_Default .slide-box .content .date{
	margin-bottom: 10px;
	color: #787878;
	font-size: 1rem;
	line-height: 1.25;
}
.CM_LatestNews_Default .slide-box .content .date .svg-icon{
	margin-right: 5px;
	width: 1.25em;
	height: 1.25em;
	fill: var(--AccentColor);
	vertical-align: text-bottom;
}
.CM_LatestNews_Default .slide-box .content .title{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2; /* 显示2行 */
	overflow: hidden;
	text-overflow: ellipsis;

	font-size: 1.375rem;
	font-weight: normal;
	line-height: 1.545455;
	letter-spacing: calc( -1em * 0.03 );
}
.CM_LatestNews_Default .slide-box .content .title a:not(:hover){
	color: currentColor;
}
.CM_LatestNews_Default .slide-box .content .link{
	margin-top: 15px;
	order: 2;
	font-size: 1rem;
	line-height: 1.25;
}
.CM_LatestNews_Default .slide-box .content .link:not(:hover){
	color: #787878;
}
.CM_LatestNews_Default .slide-box .content .link .svg-icon{
	width: 1.25em;
	height: 1.25em;
	vertical-align: text-bottom;
}