
.modalContent .tit div{
	margin-top: 1rem;
	border-radius: 360px;
	border: 0.2rem solid #FA4949;
}
.modalBox * {
	box-sizing: border-box;
}

.modalBox {
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 999;
	display: none;
}

.modalBox.active {
	display: block;
}

.modalClose {
	position: absolute;
	right: 20vw;
	top: 2vw;
	width: 2vw;
	height: 2vw;
	border-radius: 50%;
	background: white;
	cursor: pointer;
}

.modalClose::before,
.modalClose::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1vw;
	height: 2px;
	background: #333333;
	border-radius: 5vw;
	transform-origin: center;
}

.modalClose::before {
	transform: translate(-50%, -50%) rotate(45deg)
}

.modalClose::after {
	transform: translate(-50%, -50%) rotate(-45deg)
}

.modalContent {
	width: 50vw;
	height: 80vh;
	background: white;
	overflow-y: scroll;
	padding: 3vw;
	position: absolute;
	border-radius: .5vw;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.modalBox .modalContent .tit {
	text-align: center;
	font-size: 1.5vw;
	font-weight: bold;
}

.modalBox .modalContent .des {
	margin: 2vw 0 0 0;
	font-size: 1vw;
	line-height: 2;
	text-indent: 37px;
}

.modalBox .modalContent .info {
	text-align: right;
	font-size: 1.2vw;
	font-weight: bold;
}

.modalContent::-webkit-scrollbar {
	display: none;
}


/* 第一屏视频 */
.index_banner {
	height: 100vh !important;
	position: relative;
}

.bannerText {
	text-align: center;
	position: absolute;
	width: 100%;
	font-family: SourceHanSansCN-Regular;
	font-size: 3rem;
	line-height: 3rem;
	letter-spacing: 1.8rem;
	color: #ffffff;
	z-index: 1;
	top: 50%;
	transform: translateY(-50%);
}

.index_banner img {
	position: absolute;
	z-index: 1;
	bottom: 9rem;
	left: 50%;
	transform: translateX(-50%);
}

.banner-video {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	object-fit: fill;
}

@media screen and (max-width: 1140px) {

	/* 第一屏视频 */
	.bannerText {
		font-size: 4.042rem;
		line-height: 4.894rem;
		letter-spacing: 2.425rem;
	}

	.index_banner img {
			width: 5.558rem;
			height: 7.411rem;
			bottom: 5.762rem;
	}

}
