/* 轮播新闻 */
.swiper-news-container {
	max-width: 1600px;
	margin: 0 auto;
	box-sizing: content-box;
}

.swiper-news-content {
	background-color: white;
}

.swiper-news-content .text-item .section .link {
	position: relative;
}

.swiper-news-content .text-item .section .link::before {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    display: block;
    content: '了解更多';
    font-size: 14px;
    color: white;
}

@media screen and (max-width: 1023px) {
	.swiper-news-container {
		padding: 0 10px;
		margin-top: 20px;
	}

	.swiper-news-content {
		position: relative;
		display: flex;
		flex-direction: column-reverse;
	}

	/* text */
	.swiper-news-content .text-content {
		position: relative;
		min-height: 320px;
		box-sizing: border-box;
	}

	.swiper-news-content .text-item {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		padding: 30px 14px 0;
		opacity: 0;
		transition: opacity 0.5s;
	}

	.swiper-news-content .text-item.active {
		opacity: 1;
		z-index: 1;
	}

	.swiper-news-content .text-item .calendar {
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.swiper-news-content .text-item .calendar .month,
	.swiper-news-content .text-item .calendar .day {
		position: relative;
		font-weight: bold;
		font-size: 20px;
		color: #222222;
		margin: 0;
	}

	.swiper-news-content .text-item .calendar .month::after {
		position: absolute;
		left: 0;
		bottom: -8px;
		display: block;
		content: '';
		width: 100%;
		height: 2px;
		background-color: #222222;
		transform: rotate(-30deg);
	}

	.swiper-news-content .text-item .calendar .day {
		margin-top: 16px;
	}

	.swiper-news-content .text-item .calendar .year {
		font-weight: 500;
		font-size: 16px;
		color: #222222;
		margin: 20px 0 0;
	}

	.swiper-news-content .text-item .section {
		flex-grow: 1;
		padding-left: 3.75rem;
	}

	.swiper-news-content .text-item .section .title {
		font-weight: bold;
		font-size: 20px;
		color: #209037;
		margin: 0;
	}

	.swiper-news-content .text-item .section .title a {
		color: inherit;
		text-decoration: none;
	}

	.swiper-news-content .text-item .section .label {
		max-width: 560px;
		font-weight: 500;
		font-size: 16px;
		color: #666666;
		line-height: 2;
		margin-top: 30px;
		-webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
	}

	.swiper-news-content .text-item .section .label a {
		color: inherit;
		text-decoration: none;
	}

	.swiper-news-content .text-item .section .link {
		display: block;
		margin-top: 20px;
	}

	.swiper-news-content .text-item .section .link::before {
        left: 6px;
        font-size: 11px;
    }

	.swiper-news-content .text-item .section .link .img {
		width: 80px;
	}

	/* banner */
	.swiper-news-content .banner-content {
		position: relative;
		padding-bottom: 50%;
	}

	.swiper-news-content .banner-content .carousel {
		position: absolute;
		top: 0;
		left: 0;
	}

	.swiper-news-content .banner-content .carousel,
	.swiper-news-content .banner-content .carousel .carousel-inner,
	.swiper-news-content .banner-content .carousel .carousel-inner .carousel-item,
	.swiper-news-content .banner-content .carousel .carousel-inner .carousel-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.swiper-news-content .banner-content .carousel-control-next-icon,
	.swiper-news-content .banner-content .carousel-control-prev-icon {
		width: 40px;
		height: 40px;
	}

	.swiper-news-content .carousel-indicators {
		height: calc(300px + 100%);
        justify-content: flex-start;
        margin: 0;
		left: 10px;
        bottom: auto;
        align-items: flex-end;
        pointer-events: none;
	}

	.swiper-news-content .carousel-indicators li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 2rem;
		height: 1.5rem;
		border-radius: 16px;
		border: 1px solid transparent;
		margin-right: 10px;
		cursor: pointer;
		pointer-events: auto;
	}

	.swiper-news-content .carousel-indicators li.active {
		border-color: #2CB053;
	}

	.swiper-news-content .carousel-indicators li::after {
		display: block;
		content: '';
		width: 8px;
		height: 8px;
		border-radius: 4px;
		background: #C6C6C7;
	}

	.swiper-news-content .carousel-indicators li.active::after {
		background: #2CB053;
	}
}

@media screen and (min-width: 1024px) {
	.swiper-news-container {
		height: 32.875rem;
		padding: 0 20px;
		margin-top: 9.375rem;
	}

	.swiper-news-content {
		position: relative;
		display: flex;
		height: 100%;
		border-radius: 20px;
		overflow: hidden;
	}

	/* text */
	.swiper-news-content .text-content {
		position: relative;
		flex-grow: 1;
		height: 100%;
	}

	.swiper-news-content .text-item {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		padding: 4.125rem 1.5rem 0;
		opacity: 0;
		transition: opacity 0.5s;
	}

	.swiper-news-content .text-item.active {
		opacity: 1;
		z-index: 1;
	}

	.swiper-news-content .text-item .calendar {
		flex-shrink: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.swiper-news-content .text-item .calendar .month,
	.swiper-news-content .text-item .calendar .day {
		position: relative;
		font-weight: bold;
		font-size: 1.625rem;
		color: #222222;
		margin: 0;
	}

	.swiper-news-content .text-item .calendar .month::after {
		position: absolute;
		left: 0;
		bottom: -8px;
		display: block;
		content: '';
		width: 100%;
		height: 2px;
		background-color: #222222;
		transform: rotate(-30deg);
	}

	.swiper-news-content .text-item .calendar .day {
		margin-top: 16px;
	}

	.swiper-news-content .text-item .calendar .year {
		font-weight: 500;
		font-size: 1rem;
		color: #222222;
		margin: 20px 0 0;
	}

	.swiper-news-content .text-item .section {
		flex-grow: 1;
		padding-left: 3.75rem;
	}

	.swiper-news-content .text-item .section .title {
		font-weight: bold;
		font-size: 1.625rem;
		color: #209037;
		margin: 0;
	}

	.swiper-news-content .text-item .section .title a {
		color: inherit;
		text-decoration: none;
	}

	.swiper-news-content .text-item .section .label {
		max-width: 560px;
		font-weight: 500;
		font-size: 1rem;
		color: #666666;
		line-height: 2;
		margin-top: 4rem;
		-webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
	}

	.swiper-news-content .text-item .section .label a {
		color: inherit;
		text-decoration: none;
	}

	.swiper-news-content .text-item .section .link {
		display: block;
		margin-top: 3.75rem;
	}

	/* banner */
	.swiper-news-content .banner-content {
		flex-shrink: 0;
		width: 42%;
		height: 100%;
	}

	.swiper-news-content .banner-content .carousel,
	.swiper-news-content .banner-content .carousel .carousel-inner,
	.swiper-news-content .banner-content .carousel .carousel-inner .carousel-item,
	.swiper-news-content .banner-content .carousel .carousel-inner .carousel-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.swiper-news-content .banner-content .carousel-control-next-icon,
	.swiper-news-content .banner-content .carousel-control-prev-icon {
		width: 40px;
		height: 40px;
	}

	.swiper-news-content .carousel-indicators {
		left: -136%;
		bottom: 4rem;
		justify-content: flex-start;
		margin: 0;
	}

	.swiper-news-content .carousel-indicators li {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 2rem;
		height: 1.5rem;
		border-radius: 16px;
		border: 1px solid transparent;
		margin-right: 10px;
		cursor: pointer;
	}

	.swiper-news-content .carousel-indicators li.active {
		border-color: #2CB053;
	}

	.swiper-news-content .carousel-indicators li::after {
		display: block;
		content: '';
		width: 8px;
		height: 8px;
		border-radius: 4px;
		background: #C6C6C7;
	}

	.swiper-news-content .carousel-indicators li.active::after {
		background: #2CB053;
	}
}