@charset "utf-8";
* {
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE 10+ 和 Edge */
	user-select: none; /* 标准语法 */
    box-sizing: border-box;
  }
body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, table, th, td, img, div {
	margin: 0px;
	padding: 0px;
	border: 0px;
}
body {
    min-height: 100vh;
	color: #000000;
	font-size: 14px;
	-webkit-tap-highlight-color: transparent;
}
ul, ol {
	list-style-type: none;
}
input, textarea, select {
	vertical-align: middle;
	font-size: 14px;
	padding: 2px;
}
a, a:hover {
	text-decoration: none;
}


header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
}
header .loginInfor{
    display: flex;
    gap: 10px;
    align-items: center;
    
}
header .loginInfor .userInfoBox{
    position: relative;
    display: flex;
    align-items: center;
}
header .loginInfor .userInfoBox:hover .exitBox{
    display: block;
}
header .loginInfor .avart{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}
header .loginBtn{
    width: 78px;
    height: 38px;
    line-height: 36px;
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    border-radius: 18px;
    border: 1px solid #FFFFFF;
}
header .loginBtn:hover{
    opacity: 0.8;
}

 .exitBox{
    display: none;
    position: absolute;
    bottom: -162px;
    right: -60px;
}
.exitBox .exitContent{
    width: 186px;
    height: 142px;
    background: #FFFFFF;
    border-radius: 5px 5px 5px 5px;
    margin-top: 20px;
    padding: 12px 12px 16px; 
}
.exitBox .exitContent .userInfo{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    color: #000;
    
}
.exitBox .exitContent .btn1{
    width: 150px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #D9D9D9;
    border-radius: 20px;
    font-weight: 500;
    font-size: 13px;
    color: #000000;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 17px;
    font-weight: bold;
}
.exitBox .exitContent .btn2{
    width: 150px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background: #FCE69A;
    border-radius: 20px;
    font-size: 13px;
    color: #19130B;
    cursor: pointer;
    margin: 0 auto;
    margin-top: 7px;
    font-weight: bold;
}
.exitBox .exitContent .btn:hover{
    opacity: 0.8;
}
.exitBox .exitContent .userInfo img{
    width: 36px;
    height: 36px;
}
header img{
    height: 32px;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 220px);
    overflow-y: auto;
}
.container{
    gap: 30px;
    align-items: flex-start !important;
}
.contentW{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1200px;
    margin: 0 auto;
}
.title{
    font-family: Inter, Inter;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.2;
}
.title p{
    background: linear-gradient(90deg, #FFFFFF 0%, #FCE69A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.des{
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 35px 0;
    b{
        color: #d5cbdd;
    }
}
.des p{
    margin-bottom: 6px;
}
.memberBox{
    display: flex;
    gap: 14px;
    align-items: center;
}
.memberBox img{
    height: 28px;
}
.memberBox .memberInfo{
    display: flex;
    flex-direction: column;
}
.memberBox .memberInfo .text{
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
.memberBox .memberInfo .num{
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 16px;
}
.storeBox{
    display: flex;
    gap: 16px;
    a:hover {
        opacity: 0.8;
    }
}
.storeBox .storeItem{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 52px;
    background: #FCE69A;
    border-radius: 99px 99px 99px 99px;
    padding: 0 16px;
}
.storeItem img{
    width: 20px;
}
.storeItem p{
    font-weight: bold;
    font-size: 14px;
    color: #19130B;
}

footer{
    width: 100%;
    text-align: center;
}
footer .contentW{
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
footer .font1{
    font-weight: bold;
    font-size: 24px;
    color: #FCE69A;
    line-height: 28px;
    padding: 25px 0;
    text-align: left;
}
footer .bottomPage{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .font2{
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.7) !important;
}
footer .font2 img{
    width: 16px;
}
footer .font2 a{
    color: #fff !important;
}
footer .font2 a:hover{
    opacity: 0.8;
}
.dialogBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 650px;
    background: #FFFFFF;
    border-radius: 20px 20px 20px 20px;
    box-sizing: border-box;
    padding:  60px 85px;
}
.closeDialog{
    position: absolute;
    right: 27px;
    top: 22px;
    cursor: pointer;
}
.closeDialog img{
    width: 27px;
}
.hanlderBox .confirm{
    font-size: 14px;
    color: #19130B;
    background: #FCE69A;
}
.hanlderBox .cancel{
    font-size: 14px;
    color: #000000;
    background: #D9D9D9;
}
.hanlderBox .btn{
    flex: 1;
    height: 54px;
    line-height: 54px;
    text-align: center;
    border-radius: 30px;
    margin-top: 35px;
    font-weight: bold;
    cursor: pointer;
}
.hanlderBox .btn:hover{
    opacity: 0.8;
}
.dialogBox .hanlderBox{
    display: flex;
    gap: 20px;
}
.modelBox{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.80);
}  
.dialogLogin{
    padding: 52px 115px 70px !important;
    
    
}
.formBox{
    width: 100%;
    margin-top: 23px;
}
.inputBox .label{
    font-size: 14px;
    color: #595959;
    padding-top: 22px;
    margin-bottom: 12px;
}
.inputBox input{
    width: 100%;
    height: 54px;
    line-height: 54px;
    border-radius: 5px 5px 5px 5px;
    border: 1px solid #000000;
    outline: none;
    padding-left: 20px;
    padding-right: 10px;
    font-size: 14px;
    color: #000000;
}
.inputBox .passwordBox{
    width: 100%;
    position: relative;
}
.inputBox .eyeBox{
    position: absolute;
    padding: 0 10px;
    height: 100%;
    top: 50%;
    transform: translateY(-50%);
    right: 0px; 
    display: flex;
    align-items: center;
    cursor: pointer;
}
.inputBox .eyeBox img{
    width: 20px;
    height: 20px;
}
.inputBox .errTip{
    position: absolute;
    bottom: -25px;
    font-size: 13px;
    color: #DE4547;
}
.loginBox{
    width: 270px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    background: #FCE69A;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #19130B;
    margin: 0 auto;
    margin-top: 75px;
    font-weight: bold;
}
.loginBox.disabled{
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
    
}
.dialogTitle{
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    margin-bottom: 34px;
    text-align: center;
    &.textAL{
        text-align: left;
    }
}
.dialogDes{
    font-size: 14px;
    color: #595959;
    line-height: 16px;
    text-align: center;
}




@media screen and (max-width: 1400px) {
   .contentW{
    width: 90%;
   }
   .container{
    gap: 20px;
   }
}
@media screen and (max-width:940px) {
    footer .addressBox{
        align-items: flex-start;
        gap: 0 !important;
    }
    footer .font2 p{
        max-width: 250px;
    }
}
@media screen and (max-width:720px) {
    .maskBox video{
        display: none !important;
    }
    .bottomPage{
        flex-direction: column;
        gap: 20px !important;
    }
    footer .contentW{
        align-items: center;
    }
}
@media screen and (max-width:540px) {
    header{
        display: flex;
        align-items: center;
        height: 50px;
        padding: 0 15px;
    }
    header .exitBox{
        right: 0 !important;
    }
    .contentW{
        width: 100%;
        overflow-x: hidden;
    }
    .container{
        flex-direction: column;
    }
    .content{
        padding: 15px;
        width: auto;
        height: 100%;
    }
    .downloadBox{
        flex-direction: column;
        gap: 30px !important;
        .storeBox{
            gap: 12px;
            justify-content: center;
            .storeItem{
                height: 48px;
                gap: 6px;
            }
            .storeItem img{
                width: 16px;
            }
        }
    }
    .title{
        font-size: 32px;
        text-align: center;
    }
    .modelBox .dialogBox .dialogTitle{
        font-size: 16px;
    }
    .modelBox .dialogBox .closeDialog{
        right: 15px;
        top: 12px;
    }
    .modelBox .dialogBox .closeDialog img{
        width: 20px;
    }
    .hanlderBox .btn{
        height: 40px;
        line-height: 40px;
        margin-top: 0 !important;
    }
    
    .dialogBox.dialogLogin{
        width: 94% !important;
        padding:50px 30px !important; 
    }
    .dialogBox.dialogLogin .loginBox{
        width: 80%;
    }
    .inputBox .errTip{
        bottom: -40px;
    }
}

.maskBox{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background: url('../images/mask.webp') no-repeat center top;
    background-size: cover;
}
.maskBox video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.downloadBox{
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}