/*初始化*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
div,
p,
ul,
li,
table,
tbody,
tr,
td,
textarea,
form,
input,
h1,
h2,
h3,
h4,
h5,
dl,
dt,
dd,
img,
iframe,
header,
nav,
section,
article,
footer,
figure,
figcaption,
menu {
	margin: 0;
	padding: 0;
	list-style: none
}

header,
nav,
section,
article,
footer,
figure,
figcaption {
	display: block
}

ol,
ul {
	margin: 0;
	padding: 0
}

@font-face{font-family:"all";src:url('../font/DFGAMETYPE-MEDIUM.TTF')}

.body {
	font-size: 12px;
	-webkit-text-size-adjust: none;
	min-width: 320px;
	-webkit-text-size-adjust: none;
}

body,
html {
	height: 100%;
	overflow: hidden;
	background: #000;
	-webkit-overflow-scrolling: touch;
	font-family: 'all';
}

.wrapper {
	width: 100%;
	height: 100%;
	position: relative;
}

.nav {
	width: 100vw;
	position: absolute;
	top: 0;
	z-index: 999;
	padding: calc(24 / 1920* 100vw) calc(64 / 1920* 100vw) 0 calc(64 / 1920* 100vw);
}

.nav-wrapper {
	display: flex;
	justify-content: space-between;
}

.nav .nav-left {
	display: flex;
}

.nav .logo {
	background: url(../ossweb-img/logo.png) top center no-repeat;
	background-size: 100%;
	width: calc(242 / 1920* 100vw);
	height: calc(47 / 1920* 100vw);

}

.nav .discord {
	display: block;
	background: url(../ossweb-img/discord.png) top center no-repeat;
	background-size: 100%;
	width: calc(26 / 1920* 100vw);
	height: calc(27 / 1920* 100vw);
	margin-left: calc(28 / 1920* 100vw);
	margin-top: calc(16 / 1920* 100vw);
}

.nav .nav-right {
	display: flex;
	align-items: center;
}

.nav .login {
	display: flex;
	align-items: center;
}

.nav .login .login-btn {
	font-size: calc(18 / 1920* 100vw);
	color: #ffffff;
	margin-right: calc(28 / 1920* 100vw);
	text-decoration: none;
}

.nav .login .login-btn:hover {
	color: #0ff796;
}

.nav .login .user {
	display: none;
	margin-right: calc(28 / 1920* 100vw);
}

.nav .login .username {
	color: #ffffff;
	font-size: calc(18 / 1920* 100vw);
	cursor: pointer;
}

.nav .login .logout-btn {
	display: none;
	color: #e3e3e3;
	font-size: calc(18 / 1920* 100vw);
	line-height: calc(24 / 1920* 100vw);
	text-decoration: none;
	padding: calc(3 / 1920* 100vw) calc(10 / 1920* 100vw);
	border-left: 1px #7a7773 solid;
    border-right: 1px #7a7773 solid;
    border-bottom: 1px #7a7773 solid;
    background-color: rgba(16, 16, 16, .77);
    box-sizing: border-box;
	position: absolute;
	right: calc(326 / 1920* 100vw);
}

.nav .login .logout-btn:hover {
	color: #0ff796;
    background-color: rgba(127, 135, 135, .6);
}

.language-btn {
	width: auto;
}

.nav .language {
	display: block;
	width: calc(51 / 1920* 100vw);
	height: calc(40 / 1920* 100vw);
	display: flex;
	background-color: rgba(37, 37, 37, .45);
    border: .02rem rgba(255, 255, 255, .6) solid;
    border-radius: .05rem;
	transition: width .5s;
	cursor: pointer;
}

.nav .language:hover {
	background-color: rgba(127, 135, 135, .6);
	width: calc(164 / 1920* 100vw);
}

.nav .language:before {
	content: "";
	position: absolute;
	background: url(../ossweb-img/language_icon.png?v=1.0) center center no-repeat;
	background-size: 100%;
	width: calc(35 / 1920* 100vw);
	height: calc(35 / 1920* 100vw);
	margin: calc(2 / 1920 * 100vw) calc(8 / 1920 * 100vw) auto calc(6 / 1920 * 100vw);
	transition: left .5s;
}

.nav .language .language-text {
	font-size: calc(15 / 1920* 100vw);
	color: rgb(196, 197, 197);
	margin: auto calc(12 / 1920 * 100vw) auto calc(48 / 1920 * 100vw);
	opacity: 0;
	min-width: calc(64 / 1920 * 100vw);
}

.nav .language:hover .language-text {
	animation: language_opacity .5s linear forwards;
}

.nav .language:after {
	content: "";
	background: url(../ossweb-img/arrow.png) center center no-repeat;
	background-size: 100%;
	width: calc(19 / 1920* 100vw);
	height: calc(15 / 1920* 100vw);
	margin: auto calc(8 / 1920 * 100vw) auto 0;
	opacity: 0;
	position: absolute;
	right: calc(70 / 1920* 100vw);
	top: calc(42 / 1920* 100vw);
}

.nav .language:hover:after {
	animation: language_opacity .5s linear forwards;
}

@keyframes language_opacity {
	0% {
		opacity: 0;
	}
	60% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.line {
	background: url(../ossweb-img/line.png) center center no-repeat;
	background-size: 100%;
	width: calc(1794 / 1920* 100vw);
	height: calc(3 / 1920* 100vw);
	margin-top: calc(10 / 1920* 100vw);
}

.language ul {
	position: relative;
	width: calc(162 / 1920* 100vw);
	cursor:pointer;
	top: calc(40 / 1920* 100vw);
	left: calc(-124 / 1920* 100vw);
	display: none;
}

.nav .language:hover ul {
	transition: display 2s;
	display: block;
}

.language ul li {
	color: #fff;
	font-size: calc(16 / 1920* 100vw);
	line-height: calc(32 / 1920* 100vw);
	padding: 0 6px;
	border-left: 1px #7a7773 solid;
    border-right: 1px #7a7773 solid;
    border-bottom: 1px #7a7773 solid;
	background-color: rgba(16, 16, 16, .77);
    box-sizing: border-box;
	width: calc(162 / 1920* 100vw);
	text-align: center;
}

.language ul .on, .language ul li:hover {
	color: #0ff796;
    background-color: rgba(127, 135, 135, .6);
}

.section {
	position: relative;
	overflow: hidden;
}

.part1 {
	background: url(../ossweb-img/bg1.jpg) center/cover no-repeat;
}

.content {
	width: 100%;
	height: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}

.part1 .slogan1 {
	background: url(../ossweb-img/slogan1_en.png) center center no-repeat;
	background-size: 100%;
	position: relative;
	width: calc(1011 / 1920* 100vw);
	height: calc(78 / 1920* 100vw);
	top: calc(-90 / 1920* 100vw);
	z-index: 999;
	left: calc(426 / 1920* 100vw);
}

.lang-de .part1 .slogan1 {
	background: url(../ossweb-img/slogan1_de.png) center center no-repeat;
	background-size: 100%;
}

.lang-es .part1 .slogan1 {
	background: url(../ossweb-img/slogan1_es.png) center center no-repeat;
	background-size: 100%;
}

.lang-ru .part1 .slogan1 {
	background: url(../ossweb-img/slogan1_ru.png) center center no-repeat;
	background-size: 100%;
}

.lang-fr .part1 .slogan1 {
	background: url(../ossweb-img/slogan1_fr.png) center center no-repeat;
	background-size: 100%;
}

.part1 .person {
	text-align: center;
	cursor: pointer;
}

.part1 .person img {
	width: calc(127 / 1920* 100vw);
	height: calc(127 / 1920* 100vw);
}

.part1 .person .name {
	color: #ffffff;
	font-size: calc(24 / 1920* 100vw);
	line-height: calc(30 / 1920* 100vw);
}

.part1 .person-group {
	display: flex;
	justify-content: center;
	margin-top: calc(120 / 1920* 100vw);
	position: relative;
	top: calc(-130 / 1920* 100vw);
}

.part1 .person1 {
	width: calc(127 / 1920* 100vw);
}

.part1 .person2 {
	width: calc(127 / 1920* 100vw);
	margin: 0 calc(60 / 1920* 100vw);
}

.part1 .person3 {
	width: calc(127 / 1920* 100vw);
}

.part1 .twitch {
	display: block;
	background: url(../ossweb-img/btn1_bg.png) center center no-repeat;
	background-size: 100%;
	width: calc(394 / 1920* 100vw);
	height: calc(57 / 1920* 100vw);
	position: relative;
	top: calc(-90 / 1920* 100vw);
	left: calc(766  / 1920* 100vw);
	font-size: calc(22 / 1920* 100vw);
	color: #161616;
	text-decoration: none;
	font-weight: bold;
	line-height: calc(56 / 1920* 100vw);
	text-align: center;
}

.part1 .sign-up {
	display: block;
	background: url(../ossweb-img/btn2_bg.png) center center no-repeat;
	background-size: 100%;
	width: calc(394 / 1920* 100vw);
	height: calc(49 / 1920* 100vw);
	position: relative;
	top: calc(-75 / 1920* 100vw);
	left: calc(766  / 1920* 100vw);
	font-size: calc(22 / 1920* 100vw);
	color: #ffffff;
	text-decoration: none;
	font-weight: bold;
	line-height: calc(49 / 1920* 100vw);
	text-align: center;
}

.lang-ru .part1 .sign-up {
	font-size: calc(18 / 1920* 100vw);
}

.part1 .next {
	min-width: calc(87 / 1920* 100vw);
	position: absolute;
	bottom: calc(47 / 1920* 100vw);
	left: 50%;
	transform: translateX(-50%);
}

.part1 .next .next-icon {
	display: block;
	background: url(../ossweb-img/next_icon.png) center center no-repeat;
	background-size: 100%;
	/* width: calc(26 / 1920* 100vw);
	height: calc(45 / 1920* 100vw); */
	width: calc(15 / 1920* 100vw);
	height: calc(8 / 1920* 100vw);
	margin: auto;
	margin-bottom: calc(2 / 1920* 100vw);
}

.part1 .next .next-icon1 {
	animation: an_opacity1 2s linear infinite;
}

.part1 .next .next-icon2 {
	animation: an_opacity2 2s linear infinite;
}

.part1 .next .next-icon3 {
	animation: an_opacity3 2s linear infinite;
}

.part1 .next .next-icon4 {
	animation: an_opacity4 2s linear infinite;
}

@keyframes an_opacity1 {
	0% {
		background: url(../ossweb-img/next_icon_on.png) center center no-repeat;
		background-size: 100%;
		width: calc(26 / 1920* 100vw);
		height: calc(14 / 1920* 100vw);
	}
	25% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	50% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	75% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	100% {
		background: url(../ossweb-img/next_icon_on.png) center center no-repeat;
		background-size: 100%;
		width: calc(26 / 1920* 100vw);
		height: calc(14 / 1920* 100vw);
	}
}

@keyframes an_opacity2 {
	0% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	25% {
		background: url(../ossweb-img/next_icon_on.png) center center no-repeat;
		background-size: 100%;
		width: calc(26 / 1920* 100vw);
		height: calc(14 / 1920* 100vw);
	}
	50% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	75% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	100% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
}

@keyframes an_opacity3 {
	0% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	25% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	50% {
		background: url(../ossweb-img/next_icon_on.png) center center no-repeat;
		background-size: 100%;
		width: calc(26 / 1920* 100vw);
		height: calc(14 / 1920* 100vw);
	}
	75% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	100% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
}

@keyframes an_opacity4 {
	0% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	25% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	50% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
	75% {
		background: url(../ossweb-img/next_icon_on.png) center center no-repeat;
		background-size: 100%;
		width: calc(26 / 1920* 100vw);
		height: calc(14 / 1920* 100vw);
	}
	100% {
		background: url(../ossweb-img/next_icon.png) center center no-repeat;
		background-size: 100%;
		width: calc(15 / 1920* 100vw);
		height: calc(8 / 1920* 100vw);
	}
}

.part1 .next .next-text {
	font-size: calc(14 / 1920* 100vw);
	color: #ffffff;
	margin-top: calc(10 / 1920* 100vw);
	text-align: center;
}

.part2 {
	background: url(../ossweb-img/bg2.jpg) center/cover no-repeat;
}

.part2 .icon-group {
	display: flex;
	justify-content: center;
	position: relative;
	top: calc(30 / 1920* 100vw);
}

.part2 .icon1 {
	background: url(../ossweb-img/icon1.png) center center no-repeat;
	background-size: 100%;
	width: calc(144 / 1920* 100vw);
	height: calc(128 / 1920* 100vw);
}

.part2 .icon2 {
	background: url(../ossweb-img/icon2.png) center center no-repeat;
	background-size: 100%;
	width: calc(144 / 1920* 100vw);
	height: calc(129 / 1920* 100vw);
	margin: 0 calc(80 / 1920* 100vw);
}

.part2 .icon3 {
	background: url(../ossweb-img/icon3.png) center center no-repeat;
	background-size: 100%;
	width: calc(144 / 1920* 100vw);
	height: calc(129 / 1920* 100vw);
}

.part2 .icon {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.part2 .icon-name {
	color: #ffffff;
	font-size: calc(13 / 1920* 100vw);
	display: inline-block;
	height: calc(44 / 1920* 100vw);
	line-height: calc(44 / 1920* 100vw);
}

.lang-ru .part2 .icon1 .icon-name {
	font-size: calc(10 / 1920* 100vw);
}

.lang-ru .part2 .icon3 .icon-name {
	font-size: calc(7 / 1920* 100vw);
}

.part2 .title {
	/* background: url(../ossweb-img/faq_title.png) center center no-repeat;
	background-size: 100%;
	width: calc(451 / 1920* 100vw);
	height: calc(36 / 1920* 100vw); */
	position: relative;
	top: calc(50 / 1920* 100vw);
	left: calc(542 / 1920* 100vw);
	font-size: calc(39 / 1920* 100vw);
	font-weight: bold;
	color: #0ff796;
}
.lang-es .part2 .title {
	left: calc(302 / 1920* 100vw);
}

.lang-de .part2 .title {
	left: calc(488 / 1920* 100vw);
}

.lang-ru .part2 .title {
	left: calc(152 / 1920* 100vw);
}

.part2 .title .left-icon {
	display: inline-block;
	background: url(../ossweb-img/faq_title_left.png) center center no-repeat;
	background-size: 100%;
	width: calc(166 / 1920* 100vw);
	height: calc(9 / 1920* 100vw);
}

.part2 .title .right-icon {
	display: inline-block;
	background: url(../ossweb-img/faq_title_right.png) center center no-repeat;
	background-size: 100%;
	width: calc(166 / 1920* 100vw);
	height: calc(9 / 1920* 100vw);
}

.part2 .faq-list {
	position: relative;
	top: calc(60 / 1920* 100vw);
	left: calc(378 / 1920* 100vw);
	width: calc(1148 / 1920* 100vw);
	max-height: calc(550 / 1920* 100vw);
	overflow-x: hidden;
	overflow-y: auto;
	margin-bottom: calc(40 / 1920* 100vw);
}

.part2 .faq-item {
	margin-bottom: calc(18 / 1920* 100vw);
}

.part2 .faq-title {
	display: flex;
	align-items: center;
}

.part2 .faq-icon {
	display: inline-block;
	background: url(../ossweb-img/faq_icon.png) center center no-repeat;
	background-size: 100%;
	width: calc(16 / 1920* 100vw);
	height: calc(16 / 1920* 100vw);
	margin-right: calc(8 / 1920* 100vw);
}

.part2 .faq-question {
	color: #0ff796;
	font-size: calc(16 / 1920* 100vw);
	line-height: calc(36 / 1920* 100vw);
}

.part2 .faq-content {
	color: #ffffff;
	font-size: calc(16 / 1920* 100vw);
	padding-left: calc(48 / 1920* 100vw);
	line-height: calc(30 / 1920* 100vw);
}

.part2 .faq-list::-webkit-scrollbar {
	width: .1rem
}

.part2 .faq-list::-webkit-scrollbar-thumb {
	background: #d3dcd4;
}

.part2 .faq-list::-webkit-scrollbar-track {
	background: #191919;
}

.footer {
	text-align: center;
	background: #000000;
	padding: calc(20 / 1920* 100vw) 0 0 calc(32 / 1920* 100vw);
	line-height: calc(80 / 1920* 100vw);
}

.footer .link {
	font-size: calc(16 / 1920* 100vw);
	color: #b9baba;
	position: relative;
	top: calc(-22 / 1920* 100vw);
}

.footer a {
	text-decoration: none;
	color: #b9baba;
}

.dialog {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(0,0,0,.8);
	display: none;
}

.pop {
	width: calc(1416 / 1920* 100vw);
	height: calc(838 / 1920* 100vw);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
	-ms-transform: translate3d(-50%,-50%,0);
	-webkit-transform: translate3d(-50%,-50%,0);
	-o-transform: translate3d(-50%,-50%,0);
	-moz-transform: translate3d(-50%,-50%,0);
	background: url(../ossweb-img/pop.png) top center no-repeat;
	background-size: 100%;
}

.pop .close {
	display: block;
	position: absolute;
	background: url(../ossweb-img/close.png) center center no-repeat;
	background-size: 100%;
	width: calc(63 / 1920* 100vw);
	height: calc(62 / 1920* 100vw);
	top: calc(138 / 1920* 100vw);
	right: calc(12 / 1920* 100vw);
}

.pop1 .title {
	background: url(../ossweb-img/pop_title_bg.png) center center no-repeat;
	background-size: 100%;
	width: calc(530 / 1920* 100vw);
	height: calc(75 / 1920* 100vw);
	margin: 0 auto;
	position: relative;
	top: calc(188 / 1920* 100vw);
	text-align: center;
	font-size: calc(36 / 1920* 100vw);
	color: rgba(235,235,235,.79);
	font-weight: bold;
	line-height: calc(75 / 1920* 100vw);
}

.pop1 .text {
	width: calc(615 / 1920* 100vw);
	font-size: calc(22 / 1920* 100vw);
	color: rgba(255,255,255.8);
	line-height: calc(30 / 1920* 100vw);
	margin: 0 auto;
	position: relative;
	top: calc(254 / 1920* 100vw);
}

.pop1 .btn {
	width: calc(617 / 1920* 100vw);
	margin: 0 auto;
	position: relative;
	top: calc(320 / 1920* 100vw);
	display: flex;
}

.pop1 .btn .link {
	background: url(../ossweb-img/pop_text_bg1.png) center center no-repeat;
	background-size: 100%;
	width: calc(440 / 1920* 100vw);
	height: calc(58 / 1920* 100vw);
	font-size: calc(22 / 1920* 100vw);
	line-height: calc(58 / 1920* 100vw);
	text-align: center;
	color: #10f797;
}

.pop1 .btn .copy {
	display: block;
	background: url(../ossweb-img/pop_text_bg2.png) center center no-repeat;
	background-size: 100%;
	width: calc(184 / 1920* 100vw);
	height: calc(63 / 1920* 100vw);
	margin-left: calc(-6 / 1920* 100vw);
	font-size: calc(22 / 1920* 100vw);
	color: #20383f;
	text-decoration: none;
	line-height: calc(63 / 1920* 100vw);
	text-align: center;
	font-weight: bold;
}

.pop1 .success {
	display: none;
	background: url(../ossweb-img/pop_text_bg3.png) center center no-repeat;
	background-size: 100%;
	width: calc(797 / 1920* 100vw);
	height: calc(67 / 1920* 100vw);
	margin: 0 auto;
	position: relative;
	top: calc(254 / 1920* 100vw);
	font-size: calc(31 / 1920* 100vw);
	font-weight: bold;
	color: #ebebeb;
	line-height: calc(67 / 1920* 100vw);
	text-align: center;
}