/* 公共弹窗 */
.home-dialog {
    background: url(../img/dialog-bg.png);
    background-size: 100% 100%;
    position: fixed;
    z-index: 104;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    /* height: 50vw; */
    padding: 2%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.home-dialog .close {
    cursor: pointer;
    position: absolute;
    top: 3%;
    right: 3%;
    width: 25px;
    height: 25px;
    background: url(../img/close.png);
    background-size: 100% 100%;
}

.home-dialog .dialogTitle {
    font-size: 25px;
    font-weight: 600;
}

.home-dialog .imgTitle {
    width: 40%;
}

.doalogImgTitle {
    width: 30% !important;
    margin-top: 7%;
}

.home-dialog img {
    max-width: 100%;
}

.selectInformationTit {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: #70442B;
    font-weight: 700;
    margin-top: 3%;
}

/* 登录弹窗 */
.login-dialog {
    width: 22%;
    padding: 20px 20px;
    height: 280px;
    background: url(../img/login-dialog-bg.png);
    background-size: 100% 100%;
}

.myform {
    width: 100%;
    height: 100%;
    padding-top: 5%;
    padding-left: 35%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input_group {
    display: flex;
    align-items: center;
    height: 35px;
    box-sizing: border-box;
    flex-shrink: 0;
    font-size: 12px;
    gap: 10px;
}

.myform input {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #8d8d8d;
    border-radius: 3px;
    padding-left: 4%;

}

.phone_left {
    width: 20%;
    height: 80%;
    padding: 1%;
    border-right: 1px solid #8d8d8d;
    display: flex;
    align-items: center;
}

.phone_group {
    background: #fff;
    border: 1px solid #8d8d8d;
    padding: 2%;
    border-radius: 3px;
}

.phone_group>input {
    border: unset !important;
}

.code_group {
    width: 100%;
    display: flex;
}

#y_code {
    width: 60%;
    flex: .55;
}

#code {
    flex: .45;
    background: #fda100;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    border: unset;
}

.ok_btn {
    width: 100%;
    height: 35px;
    background: #fda100;
    border: unset;
    color: #fff;
    border-radius: 3px;
    margin-top: 15px;
}

.more,
.login-dialog-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.more>img {
    width: 80%;
}

.login-dialog-bottom-item {
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 10px;
}

.login-dialog-bottom-item>img {
    width: 20px;
}

.register-top {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 角色区服弹窗 */
.binding-dialog {
    width: 22%;
    height: 280px;
    gap: 0 !important;
    justify-content: center;
}

.binding-dialog .binding-item {
    display: flex;
}

.binding-item .item-name {
    font-size: 18px;
    color: #70442B;
}

.binding-dialog-bottom {
    width: 86%;
    text-align: right;
    font-size: 11px;
    margin-bottom: 3%;
    color: #70442B;
    text-decoration: underline;
    text-decoration-color: #70442B;
}

.binding-dialog .layui-form-select .layui-edge {
    display: none;
}

.binding-dialog .layui-form input {
    background: url(../img/formBorderBg.png);
    background-size: 100% 100%;
    border: none;
    font-size: 16px;
    text-align: center;
    color: #70442B;
}

.binding-dialog .layui-form input::placeholder {
    color: #70442B;
}

.binding-dialog .layui-input:hover,
.layui-textarea:hover {
    border: none !important;
}

.binding-dialog .layui-input::placeholder {
    color: #000;
    /* 设置占位符文字颜色 */
}

.binding-dialog .layui-form-select dl dd.layui-this {
    color: #70442B;
}

.binding-dialog .layui-anim-upbit {
    border-radius: 5px;
}

/* 退出登录弹窗 */
.login-out-dialog {
    width: 20%;
    height: 9vw;
}

.login-out-dialog img {
    width: 5vw;
}

.configBg {
    width: 40%;
}

@media screen and (max-width: 450px) {

    /* 登录弹窗 */
    .login-dialog {
        width: 90%;
        height: 260px;
        background: url(../img/login-dialog-bg.png);
        background-size: 100% 100%;
        padding: 5vw 6vw;
        padding-top: 6vw;
    }

    /* 角色区服弹窗 */
    .binding-dialog {
        width: 90%;
        height: 270px;
    }

    /* 退出登录 */
    .login-out-dialog {
        width: 75%;
        height: 30vw;
        padding: 4%;
    }

    .login-out-dialog img {
        width: 25vw;
    }

}