@charset "utf-8";

/* 基础及工具类 */
body {
    margin: 0;
    overflow: hidden;
    background-color: #ffe0ff;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'Nimbus Sans L', Arial, 'Liberation Sans', 'Hiragino Sans GB', 'Source Han Sans CN Normal', 'Microsoft YaHei', '微软雅黑', 'Wenquanyi Micro Hei', 'WenQuanYi Zen Hei', 'ST Heiti', SimHei, 'WenQuanYi Zen Hei Sharp', sans-serif;
}
.hide {
    display: none !important;
}
.hide2 {
    visibility: hidden !important;
}
.page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.imgBase {
    display: block;
    position: absolute;
}
/* 音乐图标 */
#tools {
    z-index: 1;
    pointer-events: none;
}
#tools .music_off,
#tools .music_on {
    pointer-events: auto;
    width: 5vh;
    top: 3.5vh;
    right: 3.5vh;
}
@keyframes music {
    from {
		transform: rotate(20deg)
    }
    to {
		transform: rotate(-50deg)
    }
}
.music_on {
	animation: music 1s cubic-bezier(.75,.07,.27,.95) infinite alternate;
}
.music_on.hide {
    animation: none;
}
/* 二维码 */
.qr {
    pointer-events: auto;
    opacity: 1;
    transition: opacity .8s ease-in;
}
.qr.hide {
    opacity: 0;
}
/* 登录框 */
.pageZoomW {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 750px;
    height: 1500px;
    pointer-events: none;
}
.pageZoomH {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 750px;
    height: 1500px;
    pointer-events: none;
}
#login {
    background-color: rgba(0,0,0,.7);
    user-select:none;
}
#loginModel {
    width: 606px;
    height: 710px;
    position: relative;
    top: 316px;
    left: 74px;
    background: url(loginLogo.png) no-repeat;
    background-position: 247px 60px;
    background-color: #fff;
    pointer-events: auto;
    padding-top: 198px;
    color: #4c4e56;
    font-weight: bold;
}
#loginModel > p,
#regModel > p {
    text-align: center;
}
#loginModel > .lrTitle {
    margin: auto;
    margin-bottom: 14px;
    font-size: 40px;
    letter-spacing: 20px;
}
#loginModel > .lrSubTitle {
    font-size: 24px;
    margin: auto;
    margin-bottom: 40px;
}
#loginModel > input {
    box-sizing: border-box;
    border: 1px solid #af8b20;
    display: block;
    margin: auto;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    padding-left: 22px;
}
#loginModel > input::placeholder {
    color: #4c4e56;
}
#loginPhone {
    width: 450px;
    height: 80px;
}
#loginVeriCode {
    width: 270px;
    height: 80px;
    margin-left: 78px !important;
}
#loginPhoneVeriCode {
    width: 270px;
    height: 80px;
    margin-left: 78px !important;
}
[alt='验证码'] {
    width:180px;
    height: 80px;
    position:absolute;
    left:348px;
    object-position: center;
    object-fit: cover;
}
#loginVeriCodeBtn {
    margin: auto;
    box-sizing: border-box;
    position: absolute;
    width: 180px;
    height: 80px;
    line-height: 80px;
    left: 347px;
    color: #4c4e56;
    font-size: 28px;
    font-weight: bold;
    border: 1px solid #af8b20;
}
#loginSubmit {
    width: 450px;
    height: 80px;
    margin: 80px auto;
    background-image: linear-gradient(90deg, rgb(136, 106, 24) 0%, rgb(175, 139, 32) 50%, rgb(225, 181, 48) 100%);
    font-size: 32px;
    font-weight: normal;
    line-height: 80px;
    color: white;
}
#loginCloseBtn {
    width: 53px;
    height: 53px;
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: url(closeBtn.png) no-repeat;
}
#loginCloseBtn:focus {
    outline: none;
}
/* 注册框 */
.page#reg {
    user-select: none;
    overflow: scroll;
    scroll-behavior: smooth;
}
#regModel {
    width: 100vw;
    height: 200vw;
    min-height: 100vh;
    background: url(loginLogo.png) no-repeat;
    background-position: center 4vw;
    background-size: 10.4vw;
    background-color: #fff;
    padding-top: 16.4vw;
    color: #4c4e56;
}
#regModel > p.regInput {
    text-align: left !important;
    line-height: 11.7vw;
}
#regModel > p.lrTitle {
    margin: auto;
    font-size: 5.3vw;
    letter-spacing: 2px;
}
#regModel > p.lrSubTitle {
    font-size: 3.2vw;
    margin: auto;
    margin-bottom: 20px;
}
#gobackBtn {
    width: 14vw;
    height: 14vw;
    position: absolute;
    left: 0;
    top: 0;
    background: url(backBtn.png) center no-repeat;
    background-size: 2.53vw;
}
.regInput {
    width: 89vw;
    height: 11.7vw;
    box-sizing: border-box;
    border: 1px solid #af8b20;
    display: block;
    margin: auto;
    margin-bottom: 2.7vw;
    font-size: 3.7vw;
    font-weight: bold;
    padding-left: 20px;
    font-style: italic;
    color: #4c4e56;
}
.regInput::placeholder {
    color: #4c4e56;
    font-style: italic;
}
.regTips {
    width: 89vw;
    text-align: left !important;
    margin: auto;
    margin-bottom: 2.7vw;
    font-size: 3.7vw;
    font-weight: bold;
    padding-left: 40px;
    font-style: italic;
}
#regBirth {
    background: url(dateIcon.png) no-repeat;
    background-position: 79.7vw center;
    background-size: 6.3vw;
}
#regAddrDet {
    margin-bottom: 4vw;
}
.regText {
    width: 89vw;
    text-align: left !important;
    margin: auto;
    margin-bottom: 1vw;
    font-size: 2.6vw;
    font-weight: bold;
    word-spacing: -1px;
}
#regToRt {
    margin-top: 2vw;
    margin-left: 5vw;
    position: relative;
}
#regToRt > .regText {
    width: 83vw;
}
#regTextCheck {
    position: absolute;
    top: 0;
    left: 0;
}
#regTextCheck:checked {
    background: url(checked.png) no-repeat;
    background-position: center;
}
#regSubmit {
    width: 60vw;
    height: 10.67vw;
    margin: 10.67vw auto;
    background-image: linear-gradient(90deg, rgb(136, 106, 24) 0%, rgb(175, 139, 32) 50%, rgb(225, 181, 48) 100%);
    font-size: 4.267vw;
    font-weight: normal;
    line-height: 10.67vw;
    color: white;
}