/* 幻灯片 */
	.explore-banner{
		width: 100%;
	}
	
	.explore-banner .swiper-slide{
		width: 100%;
	}
	
	.explore-banner .swiper-slide img{
		width: 100%;
		height: 100%;
	}
	
	.explore-banner .swiper-slide img.mobile-images{
		display: none;
	}
	
	.explore-banner .swiper-slide img.computer-images{
		display: block;
	}

	/* 幻灯片-分页器 */
	.explore-banner .swiper-pagination{
		width: 405px;
		height: 44px;
		display: flex;
		align-items: center;
		border-radius: 22px;
		justify-content: center;
		transform: translateX(-50%);
		background-color: rgba(255, 255, 255, 0.6);
		bottom: 40px;
		left: 50%;
	}
	
	.explore-banner .swiper-pagination .swiper-pagination-bullet{
		opacity: 1;
		margin: 0%;
		width: 125px;
		height: 40px;
		display: flex;
		font-size: 14px;
		border-radius: 20px;
		align-items: center;
		justify-content: center;
		font-family: "SourceHanSansCN-Regular";
		background-color: rgba(255, 255, 255, 0);
	}

/* 探索星合 */
	.explore-wrapper{
		width: 100%;
		padding: 6.044% 0% 4.204%;
		background-color: rgba(0, 0, 0, 1);
	}

	/* 探索星合-头部-标题 */
	.explore-wrapper .header .title{
		width: 280px;
	}
	
	.explore-wrapper .header .title img{
		width: 100%;
		height: 100%;
	}

	/* 探索星合-头部-选项卡 */
	.explore-wrapper .header .tab{
		width: 100%;
		display: grid;
		grid-gap: 20px;
		/*margin-top: 60px;*/
		grid-template-columns: repeat(6, 1fr);
	}
	
	.explore-wrapper .header .tab .item{
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	
	.explore-wrapper .header .tab .item a{
		height: 40px;
		display: flex;
		line-height: 1;
		font-size: 20px;
		width: fit-content;
		align-items: center;
		justify-content: center;
		width: -moz-fit-content;
		width: -webkit-fit-content;
		color: rgba(255, 255, 255, 1);
		font-family: "SourceHanSansCN-Regular";
		position: relative;
	}

	/* 探索星合-内容 */
	.explore-wrapper .content-wrapper{
		width: 100%;
		margin-top: 85px;
	}
	
	.explore-wrapper .content-wrapper .on-data{
		width: 100%;
		font-size: 14px;
		line-height: 80px;
		text-align: center;
		color: rgba(175, 185, 191, 1);
	}
	
	.explore-wrapper .content-wrapper .content{
		gap: 20px;
		width: 100%;
		display: grid;
		grid-template-columns: repeat(4, minmax(0,1fr));
	}
	
	.explore-wrapper .content-wrapper .content .item{
		padding: 10px;
		display: flex;
		aspect-ratio: 1 / 1;
		align-items: flex-end;
		background-size: cover;
		grid-row: span 1 / span 1;
		justify-content: flex-start;
		background-position: center;
		background-repeat: no-repeat;
		grid-column: span 1 / span 1;
	}
	
	.explore-wrapper .content-wrapper .content .item.big{
		grid-row: span 2 / span 2;
		grid-column: span 2 / span 2;
	}

	/* 探索星合-内容-文案 */
	.explore-wrapper .content-wrapper .content .item .text{
		opacity: 0;
		width: 100%;
		height: auto;
		transition-duration: 0.7s;
		transition-property: opacity;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	}
	
	.explore-wrapper .content-wrapper .content .item .text .logo{
		width: 100%;
		height: 30px;
		margin-bottom: 10px;
	}
	
	.explore-wrapper .content-wrapper .content .item .text .logo img{
		height: 100%;
	}
	
	.explore-wrapper .content-wrapper .content .item .text p{
		line-height: 1;
		font-size: 14px;
		color: rgba(255, 255, 255, 1);
	}
	
	.explore-wrapper .content-wrapper .content .item .text p:last-child{
		margin-top: 5px;
	}

	/* 幻灯片-分页器-选中 */
	.explore-banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
		color: rgba(255, 255, 255, 1);
		background-color: rgba(0, 0, 0, 1);
	}

	/* 探索星合-头部-选项卡-选中 */
	.explore-wrapper .header .tab .item.current-item a::before{
		content: '';
		width: 100%;
		height: 1px;
		background-color: rgba(255, 255, 255, 1);
		position: absolute;
		bottom: 0%;
	}

	/* 探索星合-内容-文案-悬停 */
	.explore-wrapper .content-wrapper .content .item.current-hover-item .text{
		opacity: 1;
	}

/* 响应 1680 */	
@media screen and (max-width: 1680px) {}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 幻灯片 */

	/* 幻灯片-分页器 */
	.explore-banner .swiper-pagination{
		height: 42px;
		border-radius: 21px;
		bottom: 30px;
	}
	
	.explore-banner .swiper-pagination .swiper-pagination-bullet{
		height: 38px;
		font-size: 12px;
		border-radius: 19px;
	}

/* 探索星合 */
	.explore-wrapper{
		padding: 5.903% 0% 4.167%;
	}

	/* 探索星合-头部-标题 */
	.explore-wrapper .header .title{
		width: 250px;
	}

	/* 探索星合-头部-选项卡 */
	.explore-wrapper .header .tab{
		margin-top: 40px;
	}
	
	.explore-wrapper .header .tab .item a{
		font-size: 18px;
	}

	/* 探索星合-内容 */
	.explore-wrapper .content-wrapper{
		margin-top: 60px;
	}
	
	.explore-wrapper .content-wrapper .on-data{
		font-size: 12px;
		line-height: 65px;
	}

	/* 探索星合-内容-文案 */

	/* 幻灯片-分页器-选中 */

	/* 探索星合-头部-选项卡-选中 */

	/* 探索星合-内容-文案-悬停 */
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {}

/* 响应 1000 */
@media screen and (max-width: 1000px) {}

/* 响应 750 */
@media screen and (max-width: 750px) {}