* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: OPPOSans, -apple-system, BlinkMacSystemFont, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Segoe UI, PingFang SC, Hiragino Sans GB,
    Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
li {
	list-style: none;
}

img {
	user-select: none;
}

#wrap {
	width: 100%;
	min-height: 100vh;
	background-color: #191931;
	background-image: url("../img/bg_img_home.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: top center;
}

.container {
	width: 85%;
	max-width: 1460px;
	margin: 0 auto;
}

.header {
	background: #16172c;
	color: #fff;
	padding: 14px 0;
}

.header .container {
	display: flex;
	justify-content: space-between;
}

.header .others {
	display: flex;
	align-items: center;
	font-size: 20px;
}

.header .others .currentTime {
	display: flex;
	align-items: center;
	margin-left: 42.5px;
	color: #1adea1;
}

.header .others .currentTime img {
	margin-right: 8.25px;
}

.main {
	padding-bottom: 100px;
}

.main .top_wrap {
	margin-top: 40px;
	text-align: center;
}

.main .top_wrap .title {
	font-size: 60px;
	color: #edf1f5;
}

.main .top_wrap .title span {
	color: #1adea1;
}

.main .top_wrap p {
	margin-top: 10px;
	color: #ffffff;
}

.main .top_wrap .ins {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main .top_wrap .ins .item {
	position: relative;
	padding-left: 10px;
}

.main .top_wrap .ins .item span+span {
	margin-left: 10px;
}

.main .top_wrap .ins .item+.item {
	margin-left: 20px;
}

.main .top_wrap .ins .item::before {
	content: "";
	position: absolute;
	width: 4px;
	height: 20px;
	background-color: #1adea1;
	left: 0;
	top: 50%;
	margin-top: -10px;
}

.main .content_wrap {
	margin-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 25px;
	row-gap: 43px;
}

.main .content_wrap .content_item {
	position: relative;
	width: calc(100% / 4 - 25px);
	height: 462px;
	transition: all 0.1s;
}

.main .content_wrap .content_item:hover {
	width: calc(100% / 4);
	height: 490px;
	background: url("../img/bg_pop.png");
	background-size: 100% 100%;
}

.main .content_wrap .content_item:hover .bg {
	display: none;
}

.main .content_wrap .content_item:hover .content .title {
	color: #142b2f;
}

.main .content_wrap .content_item:hover .content .ins {
	color: #142b2f;
}

.main .content_wrap .content_item:hover .content .view button {
	background: #142b2f;
	color: #1adea1;
}

.main .content_wrap .content_item .bg {
	width: 100%;
	height: 100%;
}

.main .content_wrap .content_item .bg img {
	width: 100%;
	height: 100%;
}

.main .content_wrap .content_item .content {
	position: absolute;
	left: 50%;
	top: 75px;
	z-index: 1;
	transform: translateX(-50%);
	text-align: center;
}

.main .content_wrap .content_item .content .pic {
	width: 100px;
	margin: 0 auto;
	margin-bottom: 60px;
}

.main .content_wrap .content_item .content .pic img {
	width: 100%;
	display: none;
}

.main .content_wrap .content_item .content .pic .active {
	display: block;
}

.main .content_wrap .content_item .content .title {
	color: #edf1f5;
	font-size: 30px;
	margin-bottom: 10px;
}

.main .content_wrap .content_item .content .ins {
	color: #c5c5ff;
	font-size: 20px;
}

.main .content_wrap .content_item .content .view {
	margin-top: 40px;
}

.main .content_wrap .content_item .content .view button {
	border: 2px solid #2e2e54;
	background: #20203b;
	border-radius: 347px;
	width: 221px;
	height: 65px;
	font-size: 20px;
	color: #c5c5ff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.main .content_wrap .content_item .content .view button img {
	display: none;
	width: 20px;
	height: 20px;
	margin-left: 6px;
}

.main .content_wrap .content_item .content .view .active {
	display: block;
}

.footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 63px;
	background: #16172c;
}

.footer {
	font-size: 16px;
	color: #c5c5ff;
}

.popup {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
	display: none;
}

.popup.active {
	display: block;
}

.popup .mask {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.popup .popup_box {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 460px;
	padding: 30px;
	z-index: 1;
	color: #edf1f5;
	background: linear-gradient(149deg,
			rgba(33, 33, 57, 0.96) 6%,
			rgba(25, 25, 51, 0.96) 98%);
	border: 2px solid #585d71;
	border-radius: 10px;
	opacity: 1;
}

.popup .popup_box .popop_close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 38px;
	height: 38px;
	cursor: pointer;
}

.popup .popup_box .popop_close img {
	width: 100%;
	height: 100%;
}

.popup .popup_box .popup_title {
	font-size: 24px;
	text-align: center;
	margin-bottom: 40px;
}

.popup .popup_box .popup_content a {
	display: block;
	width: 400px;
	height: 69px;
	line-height: 69px;
	text-align: center;
	border-radius: 10px;
	background: #323753;
	margin-bottom: 20px;
}

.popup .popup_box .popup_content a:hover {
	color: #1adea1;
}