body {
	background-color: #0e0242;
	overflow-x: hidden;
	width: 100%;
}

html {
	overflow-x: hidden;
}

#stars {
	/* margin: 0 auto; */
	/* max-width: 1600px; */
	position: absolute;
	z-index: 500;
	top: 0;
	right: 0;
}

.star {
	display: block;
	width: 2px;
	background: transparent;
	/* position: relative; */
	opacity: ;
	animation: star-fall 3s linear infinite;
	-webkit-animation: star-fall 3s linear infinite;
	-moz-animation: star-fall 3s linear infinite;
}

.star2 {
	display: block;
	width: 2px;
	background: transparent;
	/* position: relative; */
	opacity: ;
	animation: star-fall2 5s linear infinite;
	-webkit-animation: star-fall2 5s linear infinite;
	-moz-animation: star-fall2 5s linear infinite;
}

.star:after {
	content: '';
	display: block;
	border: 0px solid #fff;
	border-width: 0px 180px 3px 180px;
	border-color: transparent transparent transparent rgba(255, 255, 255, .5);
	box-shadow: 0 0 1px 0 rgba(255, 255, 255, .1);

	transform: rotate(-30deg) translate3d(1px, 3px, 0);
	-webkit-transform: rotate(-30deg) translate3d(1px, 3px, 0);
	-moz-transform: rotate(-30deg) translate3d(1px, 3px, 0);
	transform-origin: 0% 100%;
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
}

.star2:after {
	content: '';
	display: block;
	border: 0px solid #fff;
	border-width: 0px 120px 3px 120px;
	border-color: transparent transparent transparent rgba(255, 255, 255, .5);
	box-shadow: 0 0 1px 0 rgba(255, 255, 255, .1);

	transform: rotate(-30deg) translate3d(1px, 30px, 0);
	-webkit-transform: rotate(-30deg) translate3d(1px, 30px, 0);
	-moz-transform: rotate(-30deg) translate3d(1px, 30px, 0);
	transform-origin: 0% 100%;
	-webkit-transform-origin: 0% 100%;
	-moz-transform-origin: 0% 100%;
}

@keyframes star-fall {
	0% {
		opacity: ;
		transform: scale(0.5) translate3d(0, 0, 0);
		-webkit-transform: scale(0.5) translate3d(0, 0, 0);
		-moz-transform: scale(0.5) translate3d(0, 0, 0);
	}

	50% {
		opacity: ;
		transform: translate3d(-200px, 200px, 0);
		-webkit-transform: translate3d(-200px, 200px, 0);
		-moz-transform: translate3d(-200px, 200px, 0);
	}

	100% {
		opacity: ;
		transform: scale(1.2) translate3d(-300px, 300px, 0);
		-webkit-transform: scale(1.2) translate3d(-300px, 300px, 0);
		-moz-transform: scale(1.2) translate3d(-300px, 300px, 0);
	}
}

@-webkit-keyframes star-fall {
	0% {
		opacity: ;
		transform: scale(0.5) translate3d(0, 0, 0);
		-webkit-transform: scale(0.5) translate3d(0, 0, 0);
		-moz-transform: scale(0.5) translate3d(0, 0, 0);
	}

	50% {
		opacity: ;
		transform: translate3d(-200px, 200px, 0);
		-webkit-transform: translate3d(-200px, 200px, 0);
		-moz-transform: translate3d(-200px, 200px, 0);
	}

	100% {
		opacity: ;
		transform: scale(1.2) translate3d(-300px, 300px, 0);
		-webkit-transform: scale(1.2) translate3d(-300px, 300px, 0);
		-moz-transform: scale(1.2) translate3d(-300px, 300px, 0);
	}
}

@keyframes star-fall2 {
	0% {
		opacity: ;
		transform: scale(0.8) translate3d(0, 0, 0);
		-webkit-transform: scale(0.8) translate3d(0, 0, 0);
		-moz-transform: scale(0.8) translate3d(0, 0, 0);
	}

	50% {
		opacity: ;
		transform: translate3d(-200px, 200px, 0);
		-webkit-transform: translate3d(-200px, 200px, 0);
		-moz-transform: translate3d(-200px, 200px, 0);
	}

	100% {
		opacity: ;
		transform: scale(1.4) translate3d(-300px, 300px, 0);
		-webkit-transform: scale(1.4) translate3d(-300px, 300px, 0);
		-moz-transform: scale(1.4) translate3d(-300px, 300px, 0);
	}
}

@-webkit-keyframes star-fall2 {
	0% {
		opacity: ;
		transform: scale(0.8) translate3d(0, 0, 0);
		-webkit-transform: scale(0.8) translate3d(0, 0, 0);
		-moz-transform: scale(0.8) translate3d(0, 0, 0);
	}

	50% {
		opacity: ;
		transform: translate3d(-200px, 200px, 0);
		-webkit-transform: translate3d(-200px, 200px, 0);
		-moz-transform: translate3d(-200px, 200px, 0);
	}

	100% {
		opacity: ;
		transform: scale(1.4) translate3d(-300px, 300px, 0);
		-webkit-transform: scale(1.4) translate3d(-300px, 300px, 0);
		-moz-transform: scale(1.4) translate3d(-300px, 300px, 0);
	}
}

.banner {
	position: relative;
	padding-top: 60px;
}

.banner .star-l {
	position: absolute;
	left: 12%;
	top: 30%;
	animation: star-o 2s linear infinite;
	-webkit-animation: star-o 2s linear infinite;
	-moz-animation: star-o 2s linear infinite;
}



@keyframes star-o {
	0% {
		opacity: .2;
		transform: scale(.75)
	}

	to {
		opacity: .8;
		transform: scale(.8)
	}
}

@-webkit-keyframes star-o {
	0% {
		opacity: .2;
		transform: scale(.75)
	}

	to {
		opacity: .8;
		transform: scale(.8)
	}
}

.banner-bg {
	animation: big 1s ease-out;
	-webkit-animation: big 1s ease-out;
	-moz-animation: big 1s ease-out;
	-o-animation: big 1s ease-out;
	-ms-animation: big 1s ease-out;
	/* overflow: hidden; */
	position: relative;
}

@keyframes big {
	0% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes big {
	0% {
		transform: scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.banner .banner-text {
	width: 50%;
	position: absolute;
	left: 15%;
	top: 8%;
}

.title {
	margin-bottom: 30px;
	font-size: 40px;
	font-weight: bold;
	position: relative;
}

.intro {
	/* padding-top: 180px; */
	padding-bottom: 80px;
	background-color: #0f0a5e;
}

.intro>.container {
	background: #1d3bb1;
	padding: 50px;
	position: relative;
	margin-top: -60px;
}

.intro-text {
	padding-left: 40px;
}

.intro-text-cnt {
	font-size: 16px;
	line-height: 30px;
	text-align: justify;

	/* margin-top: -45px; */
}

.intro-video {
	position: relative;
}

.intro-video .video-play-btn {
	width: 256px;
	height: 80px;
	background: #000000;
	border-radius: 40px;
	font-weight: 600;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 30px;
	left: 100px;
	cursor: pointer;

}

.video-play-btn span {
	width: 36px;
	height: 36px;
	border-radius: 36px;
	background: #015aff;
	text-align: center;
	line-height: 38px;
	margin-right: 8px;
	font-size: 20px;
	padding-left: 2px;
}

.intro-video .video-play-btn:hover span {
	background-image: linear-gradient(-45deg, #1627c2, #1f34d5 18%, #009fff 72%, #00feff);
}

.highlight {
	position: relative;
	width: 100%;
	padding: 100px 0 50px 0;
	background-color: #000;
	height: 900px;
}

.highlight .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.highlight .bg_num {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/53.png);
	background-color: #000;
	background-size: auto 50%;
	background-position: 0% -50px;
	background-attachment: fixed;
	-webkit-animation: moveNum 2s linear normal infinite;
	animation: moveNum 2s linear normal infinite;
}

@-webkit-keyframes moveNum {
	0% {
		background-position: 0% 0%
	}

	100% {
		background-position: 100% 0%
	}
}

@keyframes moveNum {
	0% {
		background-position: 0% 0%
	}

	100% {
		background-position: 100% 0%
	}
}

.highlight .bg_up {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 300px;
	/* background-image: -webkit-gradient(linear, left top, right top, from(#34275B), color-stop(50%), color-stop(#551F7D), color-stop(80%), to(#32285B));
    background-image: linear-gradient(90deg, #34275B, 50%, #551F7D, 80%, #32285B); */
	background-color: #0f0a5e;
	-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
	clip-path: polygon(0 0, 100% 100%, 100% 0);
}

.highlight .bg_down {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 300px;
	/*  background-image: -webkit-gradient(linear, left top, right top, from(#34275B), color-stop(50%), color-stop(#551F7D), color-stop(80%), to(#32285B));
    background-image: linear-gradient(90deg, #34275B, 50%, #551F7D, 80%, #32285B); */
	background-color: #0e0242;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
	clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

.light-cnt {
	position: relative;
	width: 100%;
	height: 400px;
	background: linear-gradient(45deg, #1627c2, #0f0a5e);
	margin-top: -900px;

}

.h-text {
	font-size: 18px;
	line-height: 30px;
	text-align: justify;
	padding: 100px 90px;
	padding-right: 0;
	position: relative;
}

.h-text .comma {
	position: absolute;
	left: 90px;
	top: 70px;
	opacity: .6;
}

.h-text .comma2 {
	position: absolute;
	right: 0;
	top: 270px;
	opacity: .6;
}

.h-text .line {
	display: block;
	width: 76%;
	background-color: #4455dc;
	height: 1px;
	position: absolute;
	left: 90px;
	top: 280px;
}

.h-img {
	padding-top: 20px;
}

.str {
	position: relative;
	margin-top: -920px;
}

/* .section-forwards {
    display: flex;
    justify-content: space-between;
} */

.section-forwards {
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	justify-content: space-between;
	margin-top: 40px;
}

.section-forwards-left {
	width: 24%;
	overflow: hidden;
	/* background: url(../images/f01.png) 0% 0% / cover no-repeat; */
	    background: linear-gradient(-45deg, #40d6ff 10%, #015aff);
	    background: -webkit-linear-gradient(-45deg, #40d6ff 10%, #015aff);
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* padding: 250px 20px 0px 20px; */
}

/*  margin-right: 20px;
    height: 380px;
    flex-shrink: 0;
    
    padding: 280px 0px 0px 30px; */
.section-forwards ul li {
	font-size: 14px;
	color: #fff;
	line-height: 28px;
	position: relative;
	padding-left: 10px;
}

.section-forwards ul li:before {
	content: '';
	width: 6px;
	height: 6px;
	background-color: #008fff;
	border-radius: 6px;
	position: absolute;
	left: 0;
	top: 10px;
}

.section-forwards .title {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 6px;
	line-height: 28px;
}

.section-forwards-left .title {
	/* text-align: center; */
	font-size: 24px;
	font-weight: bold;
	/* line-height: 414px; */
}

.section-forwards .desc {
	font-size: 14px;
	margin-bottom: 16px;
	/* font-weight: bold; */
}

.apppoint-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 96px;
	height: 32px;
	background-image: linear-gradient(-45deg, #1627c2, #1f34d5 18%, #009fff 72%, #00feff);
	background-image: -webkit-linear-gradient(-45deg, #1627c2, #1f34d5 18%, #009fff 72%, #00feff);
	/* font-weight: 600; */
	font-size: 14px;
	border: none;
	color: #fff;
}

.section-forwards-left>a,
.forward-item>a {
	width: 108px;
	height: 38px;
	border-radius: 2px;
	color: #fff;
}

.apppoint-btn:hover {
	background-image: linear-gradient(-45deg, #1627c2, #00feff);
	background-image: -webkit-linear-gradient(-45deg, #1627c2, #00feff);
	color: #fff;
}

.section-forwards-right {
	/* display: flex;
    flex-wrap: wrap; */
	width: 74%;
	float: left;
}

.forward-item {
	width: 100%;
	height: 220px;
	background-size: cover;
	padding: 24px 24px;
	padding-right: 0;
	float: left;
	/* background-size: cover !important; */
	transition: all .5s ease;
	transition-delay: .1s;
}
.forward-item strong{
	font-size: 22px;
	display: block;
	margin-bottom: 10px;
	letter-spacing: 2px;
}
    
.tui {
	/*  position: relative;
	    display: flex; */
	height: 120px;
	margin-top: 20px;
	width: 100%;
}

.tui .title {
	/* position: absolute;
	left: 25%;
	top: 50%;
	transform: translate(-50%, -50%); */
	font-size: 20px;
	align-content: center;
}

.forward-item .time {
	height: 16px;
	margin-bottom: 16px;
}

.forward-item:hover {
	/* transform: scale(1.02);
	-webkit-transform: scale(1.02); */
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.50);
	-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.50);
}

.map {
	margin-top: 80px;
}

.map img {
	width: 100%;
}

.sponsor {
	/* margin-top: 60px; */
	
    margin-top: -900px;
}

.sponsor li {
	padding: 5px;
	height: 110px;
	width: 20%;
}

.sponsor li img {
	width: 100%;
	height: 99px;
	/* border-radius: 6px; */
	background-color: #fff;
}

.contact {
	margin-top: 60px;
}

.contact ul li {
	width: 49%;
	/* float: left; */
	margin-right: 2%;
	height: 240px;
}

.contact ul li:last-child {
	margin-right: 0;
}

.contact .contact-cnt {
	padding: 34px;
	background-color: #1d3bb1;
}

.contact li .contact-title {
	font-size: 18px;
	font-weight: bold;
	color: #40d6ff;
	/* text-align: center; */
	margin-bottom: 14px;
	position: relative;
}


.contact-cnt .name {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}

.contact li p {
	color: #fff;
	font-size: 14px;
	line-height: 28px;
}

.org {
	background-color: #0c092a;
	margin-top: 60px;
	padding-top: 60px;
	position: relative;
	overflow: hidden;
}

.org .bottom_bg {
	position: absolute;
	bottom: -100%;
	left: 102%;
	width: 100%;
	transform: scale(2);
	mix-blend-mode: screen;
	opacity: .35;
}

.org ul {
	overflow: hidden;
	padding-bottom: 40px;
	/* border-bottom: 1px solid rgba(16, 39, 133, .8); */
	margin-bottom: 40px;
}

.org ul:last-child {
	border-bottom: none;
}

.org ul li {
	color: #f2f2f2;
	font-size: 20px;
	font-weight: bold;
	float: left;
	margin-right: 40px;
}


.org .sub-title {
	font-size: 18px;
	color: #fff;
	font-weight: bold;
	margin-bottom: 20px;
	position: relative;

}

.org .aspencore {
	margin-top: 20px;
}


.org .aspencore .h_r {

	margin-top: 12px;
}

.org .aspencore p {
	float: left;
	margin-right: 50px;
}

.org-logo i {
	display: inline-block;
	overflow: hidden;
	background: #FFF;
	padding: 20px;
	margin-right: 10px;
	max-height: 68px;
}

.org-logo i img {
	/* max-height: 100%; */
	max-height: 40px;
}

.footer {
	text-align: center;
	background-color: #000000;
	color: #ccc;
	font-size: 14px;
	padding: 30px 0;
}

.layui-layer {
	-webkit-overflow-scrolling: touch;
	top: 20%;
	left: 50%;
	margin: 0;
	padding: 0;
	background-color: #fff;
	-webkit-background-clip: content;
	box-shadow: 1px 1px 50px rgba(0, 0, 0, .3);
	border-radius: 8px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	position: fixed;
	display: none;
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	z-index: 1050;
	width: 600px;
	margin-left: -300px;
	color: #333;
	background: url(../images/layer-img.png) no-repeat 0 0;
	background-size: cover;
	border: 4px solid #009fff;

}

.layui-layer-content {
	padding: 30px;

}

.layui-layer-content .head p {
	color: #666;
}

.layui-layer-content .cnt {
	color: #808080;
	font-size: 14px;
	line-height: 24px;
	padding-top: 14px;
	border-top: 1px solid #ebebeb;
	text-align: justify;
}

.layui-layer h3 {
	margin-top: 0;
	margin-bottom: 14px;
	color: #015aff;
}

.layui-layer .close {
	position: absolute;
	top: 16px;
	right: 30px;
	font-size: 18px;
	width: 70px;
	height: 70px;
	border-radius: 500px;
	line-height: 70px;
	color: #999;
	opacity: 0.6 !important;
	text-align: center;
	cursor: pointer;
	width: 30px;
	height: 30px;
	border: 1px solid #808080;
	text-align: center;
	line-height: 28px;
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		transform: scale(.5);
	}

	100% {
		opacity: 1;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@media (max-width: 1920px) {
	.banner .banner-text {
		width: 50%;
		position: absolute;
		left: 15%;

	}
}

@media (max-width: 1600px) {
	.intro {
		padding-top: 130px;
	}

	.intro>.container {
		margin-top: -60px;
	}

	.banner .banner-text {
		width: 55%;
		position: absolute;
		left: 10%;

	}

	.banner .star-l {
		left: 5%;
	}
}

@media (max-width: 1280px) {
	.h-text {
		font-size: 16px;
	}
}

@media (max-width: 1240px) {
	.intro-text-cnt {
		font-size: 14px;
		line-height: 24px;
		text-align: justify;
		margin-top: -45px;
	}
}

@media (max-width: 1199px) {
	.banner .banner-text {
		top: 10%;
	}

	.h-text .comma2 {
		top: 320px;
	}

	.h-text .line {
		top: 330px;
	}

	.menu-item>a {

		font-size: 16px !important;


		padding-right: 20px;
	}

	.intro-video .video-play-btn {
		left: 20%;
		width: 220px;
		height: 60px;
	}

	.intro-title {
		display: none;
	}

	.intro-text-cnt {
		margin-top: 0;
	}

	.h-text .line {
		width: 68%;
	}

	.section-forwards-left .title {
		font-size: 24px;

	}

	.section-forwards .title {
		font-size: 16px;
	}

	.sponsor li img {
		height: 78px;
	}

}

@media (max-width: 991px) {
	.btm-wrapper-xs {
		display: block;
		width: 100%;
		height: 58px;
		color: rgb(255, 255, 255);
		text-align: center;
		line-height: 58px;
		position: fixed;
		bottom: 0px;
		left: 0px;
		right: 0px;
		z-index: 500;
		box-shadow: rgba(55, 99, 170, 0.05) 8px 8px 20px, rgb(250, 250, 250) 4px 4px 10px;
		background: -webkit-linear-gradient(-90deg, rgb(243, 245, 248), rgb(255, 255, 255)) rgb(243, 245, 248);
		/* animation: 1s ease-out 0s 1 normal none running box; */
		border-radius: 30px 30px 0px 0px;
		border-width: 2px;
		border-style: solid;
		border-color: rgb(255, 255, 255);
		border-image: initial;
	}

	.change-btn,
	.r-btn {
		color: rgb(51, 51, 51);
		height: 58px;
		line-height: 58px;
		display: block;
		width: 100%;
		float: left;
		text-align: center;
		position: relative;
		border-width: initial;
		border-style: none;
		border-color: initial;
		border-image: initial;
		padding: 0px;
		border-radius: 0px 30px 0px 0px;
		margin: 0px 0px 0px;
		font-weight: bold;
	}

	.change-btn,
	.r-btn {
		width: 50%;
	}

	.change-btn::after {
		content: "";
		width: 1px;
		height: 40px;
		background-color: rgb(229, 229, 229);
		position: absolute;
		right: 0px;
		top: 10px;
	}

	.sponsor li img {
		height: 58px;
	}

	.sponsor li {
		height: 68px;
	}

	.banner {
		position: relative;
		padding-top: 80px;
	}

	.intro>.container {
		padding: 30px;
	}

	.intro-video {
		display: none;
	}

	.intro-text {
		width: 100%;
		padding-left: 0;
	}

	.section-forwards-left {
		        width: 100%;
		        height: 150px;
		        padding: 0;
		        line-height: 150px;

	}



	.section-forwards-right {
		width: 100%;
		float: left;
		margin-top: 20px;
	}

	.h-text {
		font-size: 14px;
		line-height: 24px;
		text-align: justify;
		padding: 60px 50px;
		padding-right: 0
	}

	.h-text .comma {

		left: 50px;
		top: 50px;

	}

	.h-text .comma2 {
		top: 220px;
	}

	.h-text .line {

		position: absolute;
		left: 50px;
		top: 230px;
	}

	.light-cnt {
		height: 300px;
	}


	.section-forwards .title {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.container {
		margin-left: 24px;
		margin-right: 24px;
	}

	.title {
		font-size: 30px;
	}

	/* .banner {
		margin-top: 50px;
	} */

	.banner .banner-text {
		width: 80%;
		left: 5%;
		top: -10px;
	}

	.banner-bg {
		height: auto;
		transform: scale(1.5);
		-webkit-transform: scale(1.5);
	}

	.intro {
		margin-top: 0;
		padding-bottom: 40px;
		padding-top: 50px;
	}

	.intro-text {
		padding-left: 0;
	}

	.intro>.container {
		margin-top: 10px;
		padding: 20px;

	}

	.h-img {

		display: none;
	}

	.h-text {
		font-size: 16px;
		line-height: 30px;
		text-align: justify;
		padding: 50px 30px;
		padding-right: 30px;
		position: relative;
		width: 100%;
	}

	.h-text .comma {
		left: 30px;
		top: 24px;
	}

	.h-text .comma2 {
		top: 300px;
		right: 30px;
	}

	.h-text .line {
		left: 30px;
		top: 310px;
	}

	.light-cnt {
		height: auto;
	}



	.forward-item {
		width: 100%;
		padding: 24px;
		height: auto;
		        background-image: none !important;
	}

	.section-forwards .title {
		font-size: 16px;
	}

	

	.sponsor li {
		height: 70px;
		width: 50%;
		float: left;
	}

	.sponsor li img {
		height: 60px;
	}

	.contact ul li {
		width: 100%;
	}

	.map {
		margin-top: 30px;
	}

	.org {
		margin-top: 0;
	}

	.org .aspencore img {
		clear: both;
	}

	.org .aspencore .h_r {
		margin-left: 0;
		margin-top: 30px;
	}

	.org ul li {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-content: space-between;
		margin-right: 0;
	}

	.org ul li i {
		width: calc(50% - 10px);
		margin-bottom: 10px;
	}

	.contact .contact-cnt {
		padding: 24px;
	}

	.layui-layer {
		width: 310px;
		margin-left: -155px;
	}

	.layui-layer h3 {
		font-size: 18px;
		max-width: 85%;
		line-height: 24px;
	}

	.layui-layer-content {
		padding: 20px;
	}

	.layui-layer .close {
		top: 10px;
		right: 20px;

	}
}
