/* 用户菜单样式 */
.user-menu-container {
    position: relative;
    display: inline-block;
    /*margin-left: 20px;*/
}

.user-avatar {
    border-radius: 50%;
    background-color: #f0f0f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    background-color: #e0e0e0;
}

.user-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 1000;
    display: none;
    animation: dropdownFadeIn 0.3s ease;
}

.user-dropdown.show {
    display: block;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-info {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.user-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    margin-right: 15px;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.user-uid {
    font-size: 12px;
    color: #999;
}

.member-center {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.member-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.member-benefit {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.member-activate {
    width: 100%;
    height: 36px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.member-activate:hover {
    background-color: #ff5252;
}

.logout-section {
    padding-top: 15px;
}

.logout-btn {
    display: block;
    width: 100%;
    height: 36px;
    background-color: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 36px;
    text-decoration: none;
}

.logout-btn:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* 修复登录页面多余符号 */
.login-container > { 
    display: none;
}

/* 登录表单样式优化 */
.login-tab-content {
    display: none;
}

.login-tab-content.active {
    display: block;
}

.verify-code-group {
    position: relative;
}

.verify-code-group .form-input {
    padding-right: 120px;
}

.verify-code-group .send-code-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 36px;
    background-color: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-code-group .send-code-btn:hover {
    background-color: #e0e0e0;
}

.verify-code-group .send-code-btn.disabled {
    background-color: #f0f0f0;
    color: #ccc;
    cursor: not-allowed;
}

/* 表单输入框样式 */
.form-input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #e0e0e0;
    border-radius: 22px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.1);
}

/* 登录按钮样式 */
.login-btn {
    width: 100%;
    height: 44px;
    background-color: #ff6b6b;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.login-btn:hover {
    background-color: #ff5252;
}

/* 登录方式切换标签样式 */
.login-tabs {
    display: flex;
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.login-tabs .tab-btn {
    flex: 1;
    height: 40px;
    background: none;
    border: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.login-tabs .tab-btn:hover {
    color: #ff6b6b;
}

.login-tabs .tab-btn.active {
    color: #ff6b6b;
}

.login-tabs .tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #ff6b6b;
}

/* 记住我和忘记密码样式 */
.remember-me {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
}

.remember-me a.forgot-pwd {
    color: #ff6b6b;
    text-decoration: none;
}

.remember-me a.forgot-pwd:hover {
    text-decoration: underline;
}

/* 隐私政策样式 */
.privacy-agree {
    margin-bottom: 25px;
    font-size: 12px;
    color: #999;
}

.privacy-agree a.privacy-link {
    color: #ff6b6b;
    text-decoration: none;
}

.privacy-agree a.privacy-link:hover {
    text-decoration: underline;
}

/* 第三方登录样式 */
.third-login {
    display: flex;
    justify-content: center;
    align-items: center;
}

.third-icon {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.third-icon:hover {
    opacity: 0.8;
}

/* 注册入口样式 */
.register-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.register-link a {
    color: #ff6b6b;
    text-decoration: none;
}

.register-link a:hover {
    text-decoration: underline;
}

/* 新人福利样式 */
.benefit-box {
    display: flex;
    align-items: center;
    background-color:#ff4d4f;
    border-radius:8px;
    width: 291px;
    height: 38px;
    margin-right: 10px;
}

.benefit-box img {
    margin-right: 5px;
}

.benefit-text {
    color: #FFF;
    font-size: 13px;
    margin-right: 10px;
    margin-left:10px;
}



/*.benefit-popup-content {*/
    /*width: 400px;*/
    /*background-color: #fff;*/
    /*border-radius: 12px;*/
    /*overflow: hidden;*/
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.15);*/
/*}*/


.benefit-popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

.benefit-popup-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.benefit-popup-body {
    padding: 20px;
}



.benefit-price {
    margin-bottom: 10px;
}

.price-current {
    font-size: 24px;
    color: #ff4d4f;
    font-weight: 500;
    margin-right: 10px;
}

.benefit-note {
    font-size: 12px;
    color: #999;
}


.qrcode-text {
    font-size: 14px;
    color: #666;
}

.benefit-countdown {
    text-align: center;
}

.countdown-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.countdown-timer {
    font-size: 20px;
    color: #ff4d4f;
    font-weight: 500;
}

/* 头部右侧容器样式 */
.ibox-title-right {
    display: flex;
    align-items: center;
}