
.head {
    position: fixed;
    background-color: #3A3A3A;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    text-align: center;
    color: #F1F1F1;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
}


.head::after {
    border-bottom-width: 1px;
    position: absolute;
    box-sizing: border-box;
    content: " ";
    pointer-events: none;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    border: 0 solid #ebedf0;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}

.van-nav-bar-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    cursor: pointer;
}

.language-btn {
    font-size: 12px;
    border: 1px solid #68561f;
    border-radius: 2px;
    padding: 2px 0;
    padding-left: 4px;
    padding-right: 12px;
    height: 18px;
    line-height: 18px;
    font-weight: 500;
}

.icon-arrow {
    position: relative;
}

.icon-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #68561f;
    margin-top: -1px;
    margin-left: 2px;
}

.van-icon {
    margin-left: 10px;
    color: #68561f;
    position: relative;
    display: inline-block;
}

.head-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
}

.banner {
    height: 220px;
    padding-top: 40px;
}

.foot {
    height: 200px;
}

.foot-img {
    width: 100%;
}

.banner-img {
    width: 100%;
}

.input-box {
    padding: 10px 0px;
    display: flex;
    align-items: center;
    height: 46px;
    border-bottom: 1px dashed gray;
    margin: 0px 16px;
}

.input-label {
    color: #ccc;
    margin-right: 12px;
    width: 86px;
    font-size: 14px;
}

.input {
    font-size: 14px;
    flex: 1;
    color: #fff;
}
.select {
    font-size: 14px;
    flex: 1;
    color: #323233;
    border: 0px;
}

.input-box .input::placeholder {
    color: #ccc;
    font-size: 14px;
}

.btn-login-box {
    padding: 12px;
}

.btn-login {
    padding: 0 8px;
    border-radius: 16px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    background-color: #9d873e;
}

.btn-cancel {
    margin-top: 10px;
    padding: 0 8px;
    border-radius: 16px;
    height: 32px;
    line-height: 32px;
    color: #9d873e  !important;
    text-align: center;
    font-size: 12px;
    background-color: #ebedf0;
}

.other-function {
    text-align: center;
    font-size: 12px;
    margin-top: 20px;
}

.other-function a {
    padding: 0 5px;
    color: #F1F1F1;
}

.verification {
    font-size: 12px;
}

.verification:hover {
    cursor: pointer;
}

.btn-other-login-box {
    padding-top: 12px;
    padding-bottom: 6px;

}

.other-login {
    display: flex;
    align-items: center;
    margin: 8px 0;
}

.other-login-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box-line {
    background-color: rgba(153, 153, 153, 0.5);
    height: 1px;
    margin-left: 16px;
    margin-right: 16px;
    flex: 1;

}

.login-box-name {
    color: #F1F1F1;
    font-size: 14px;
    line-height: 24px;
    flex: 1;
    text-align: center;
    font-weight: 600;
}

.btn-apple {
    width: 36px;
    height: 41px;
}

.btn-google {
    width: 3rem;
    /*height: 41px;*/
    /*margin-left: 30px;*/
}

.btn-fb {
    margin-left: 30px;
    width: 36px;
    height: 41px;
}

.footer {
    background-color: #f3f3f4;
    padding: 12px 6px;
    font-size: 12px;
    color: #999;
    margin-top: 3rem;
}

.footer-line-box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.footer-line {
    margin-left: 5px;
    margin-right: 5px;
}

/* 弹窗部分 */
.pop-mask {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
}

.pop-box {
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    padding: 16px;
}

.pop-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 30px;

}

.btn-cancel {
    color: #969799;
}

.btn-comfirm {
    color: #576b95;
}

.pop-content-text {
    height: 44px;
    line-height: 44px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #323233;
    text-align: center;
}

.pop-content-text:last-child {
    border-bottom: 0px solid #eee;
}


/* 弹框样式 */
.modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
}

.modal-content {
    background-color: #fefefe;
    margin: 25rem auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 87%;
    text-align: center;
    color: #494949;
}

/* 关闭按钮样式 */
.close {
    color: #aaa;
    float: right;
    margin-right: -16px;
    margin-top: -26px;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


/* 弹框样式 */
.modal-iframe {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
}

.modal-content-iframe {
    background-color: #fefefe;
    margin: 14rem auto; /* 将弹框垂直居中 */
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 87%;
}


/* 关闭按钮样式 */
.close-iframe {
    color: #aaa;
    float: right;
    margin-right: -16px;
    margin-top: -26px;
    font-size: 28px;
    font-weight: bold;
}

.close-iframe:hover,
.close-iframe:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* 弹框样式 */
.photon {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 999;
    left: 0.5%;
    top: 0;
    width: 98%;
    height: auto;
    text-align: center;
    background-color: #fefefe;
    margin: 6rem auto; /* 将弹框垂直居中 */
}

.photon-box {
    width: 100%;
    border: 2px solid #9d873e;
    height: 500px;
    overflow: hidden;
    overflow-y: auto;
    border-radius: 10px;
}
.photon-label {
    margin:20px 0px;
    padding: 5px;
    color: #646566;
    border-bottom: 1px solid #ebedf0;
}
.app {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background: #494949;
    color: #F1F1F1;
}
input{
    background: #494949;
    color: #F1F1F1;
}

.banner {
    margin-bottom: 5rem;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

/* Loading spinner */
.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.captcha {
    width: 25%;
    height: 2rem;
}

.captcha:hover {
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .app {
        width: 30rem; /* 或者适当调整为其他宽度 */
    }
}
