/* ========== 登录弹窗容器 ========== */
.login_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.content-inner {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    /* padding: 30px 20px 54px 30px; */
    margin: 0 auto;
    height: 560px;
}

.layer_content {
    width: 400px;
    height: 600px;
    margin: 50px auto 0px;
}

/* 顶部装饰色条 */
.color_bar {
    height: 6px;
    background: linear-gradient(90deg, #b8a88a 0%, #9a8b6f 100%);
}

.login-form{
	width: 400px;
    height: 500px;
    margin: 0 auto;
}

/* 登录内容区 */
.login_content {
    padding: 30px 40px 25px;
}

/* ========== 标签标题栏 ========== */
.tab_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0d7c4;
    padding-bottom: 12px;
}

.tab_title .item {
    font-size: 14px;
    color: #8a8070;
    cursor: pointer;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.tab_title .item.on {
    color: #9a8b6f;
    font-weight: bold;
    border-bottom-color: #b8a88a;
}

.tab_title .item a {
    color: #8a8070;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tab_title .item a:hover {
    color: #9a8b6f;
}

/* 欢迎提示 */
.welcome_info {
    text-align: center;
    color: #5a5142;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 500;
}

/* ========== 表单输入区 ========== */
.form_box {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.form_box li {
    margin-bottom: 15px;
}

.ipt {
    position: relative;
}

.ipt input {
    width: 100%;
    height: 42px;
    padding: 0 15px;
    border: 1px solid #e0d7c4;
    border-radius: 6px;
    background: #fff;
    color: #5a5142;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.ipt input::placeholder {
    color: #aaa395;
}

.ipt input:focus {
    border-color: #b8a88a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(184, 168, 138, 0.1);
}

/* ========== 登录按钮 ========== */
.layer_btn {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #b8a88a 0%, #9a8b6f 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.layer_btn:hover {
    background: linear-gradient(135deg, #9a8b6f 0%, #85775c 100%);
    box-shadow: 0 4px 12px rgba(154, 139, 111, 0.3);
}

.layer_btn:active {
    transform: translateY(1px);
}

/* ========== 底部辅助信息 ========== */
.login_info {
    font-size: 12px;
    color: #8a8070;
    line-height: 1.8;
}

.login_info .fl {
    float: left;
}

.login_info .fr {
    float: right;
    text-align: right;
}

.login_info a {
    color: #9a8b6f;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: 3px;
}

.login_info a:hover {
    color: #85775c;
    text-decoration: underline;
}

.login_info .qq-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* ========== 移动端适配 ========== */
@media (max-width: 480px) {
    .layer_content {
        width: 92%;
        max-width: 380px;
    }
    .login_content {
        padding: 25px 20px 20px;
    }
}