@charset "utf-8";

/* 基础及工具类 */
@font-face {
    font-family: 'loading';
    src: url('assets/loading.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}
body {
    margin: 0;
    overflow: hidden;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, 'Nimbus Sans L', Arial, 'Liberation Sans', 'PingFang SC', 'Source Han Sans CN', 'Microsoft JhengHei', sans-serif;
}
.hide {
    display: none !important;
}
.hide2 {
    visibility: hidden !important;
}
.page {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}
.pageZoom {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 750px;
    height: 1500px;
    pointer-events: none;
}
.imgBase {
    display: block;
    position: absolute;
}
.jumpBtn {
    position: absolute;
    width: 156px;
    height: 42px;
    opacity: 0;
    pointer-events: auto;
}
/* 音乐图标 */
#tools {
    z-index: 1;
    pointer-events: none;
}
#tools .music_off,
#tools .music_on {
    pointer-events: auto;
    width: 8vw;
    top: 3.3vh;
    right: 3.3vh;
}
@keyframes music {
    from {
		transform: rotate(30deg)
    }
    to {
		transform: rotate(-30deg)
    }
}
.music_on {
	animation: music 1s cubic-bezier(.75,.07,.27,.95) infinite alternate;
}
.music_on.hide {
    animation: none;
}
/* 登录 */
#loginWrap {
    width: 544px;
    height: 660px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/assets/prod/modalLogin.png) no-repeat;
    background-size: 100%;
}
input {
    height: 80px;
    line-height: 80px;
    position: absolute;
    border: none;
    outline: none;
    border-radius: 3px;
    background-color: white;
    text-indent: 1em;
    font-size: 32px;
    color: #404690;
    caret-color: #404690;
}
input:focus-visible,
input:focus:invalid {
    outline: none;
}
::-webkit-input-placeholder {
    font-size: 32px;
    font-weight: bold;
    text-indent: 1em;
    color: #404690;
}
[data-id='phone'] {
    width: 422px;
    top: 143px;
    left: 56px;
}
[data-id='grpCheck'] {
    width: 209px;
    top: 268px;
    left: 56px;
}
[data-id='msgCheck'] {
    width: 422px;
    top: 391px;
    left: 56px;
}
.inputErr {
    width: 100%;
    position: absolute;
    font-size: 16px;
    text-indent: 70px;
    color: #ff7500;
    transform: scale(.9);
    pointer-events: none;
    display: none;
}
input:invalid + .inputErr {
    display: block;
}
[data-id='phone'] + .inputErr {
    top: 210px;
}
[data-id='grpCheck'] + .inputErr {
    top: 333px;
}
[data-id='msgCheck'] + .inputErr {
    top: 458px;
}
[alt='验证码'] {
    width: 199px;
    height: 59px;
    background-color: #f4f3f3;
    object-position: center;
    object-fit: contain;
    position: absolute;
    top: 281px;
    left: 284px;
}
[data-id='nextStep'] {
    width: 238px;
    height: 67px;
    position: absolute;
    left: 150px;
    top: 522px;
    border: none;
    background: url(/assets/prod/btnStep.png) no-repeat;
    background-color: transparent;
    background-size: contain;
}
[data-id='getCheck'] {
    width: 177px;
    height: 52px;
    position: absolute;
    left: 292px;
    top: 407px;
    border: none;
    border-radius: 3px;
    color: white;
    background-color: #ff7500;
    font-size: 5.5vw;
    padding: 0 !important;
}
/* 收货地址 */
#addr {
    width: 544px;
    height: 616px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/assets/prod/modalAddr.png) no-repeat;
    background-size: 100%;
}
[data-id='nickname'] {
    width: 422px;
    left: 61px;
    top: 145px;
}
[data-id='contact'] {
    width: 422px;
    left: 61px;
    top: 237px;
}
[data-id='detail'] {
    width: 422px;
    left: 61px;
    top: 328px;
}
[data-id='isOK'] {
    width: 239px;
    height: 67px;
    position: absolute;
    left: 150px;
    top: 440px;
    border: none;
    background: url(/assets/prod/btnOK.png) no-repeat;
    background-color: transparent;
    background-size: contain;
}
/* 修改Layer默认着色 */
.layui-layer-btn a.layui-layer-btn0 {
    border-color: #b9a0e2;
    background-color: #b9a0e2;
}