/**
 * 登录、注册、密码找回
 */
.user-form-content-container {
    position: relative;
}

/**
 * 登录页面窗口高度固定
 */
.user-login-content-container {
    min-height: 43rem;
}
.user-login-content-container.not-login-verify {
    min-height: 39rem;
}
.user-login-content-container .bottom-container {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}


/**
 * 底部内容处理
 */
.footer-nav-content,
.friendship-list {
	display: none;
}
.am-footer-default,
.am-footer-miscs > .am-container {
	border-top: 0;
}
.am-footer-default {
    background: var(--body-bg-color);
}

/**
 * 微信登录卡片样式
 */
.wx-login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    padding: 100px 120px;
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin-bottom: 20px;
}

.wx-title {
    font-size: 28px;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.wx-desc {
    font-size: 15px;
    color: #666;
    margin: 0 0 30px 0;
}

.wx-btn {
    background: linear-gradient(135deg, #07C160 0%, #05a350 100%);
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(7, 193, 96, 0.4);
    white-space: nowrap;
    margin-bottom: 15px;
}

.wx-btn:hover {
    background: linear-gradient(135deg, #06ad56 0%, #049447 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(7, 193, 96, 0.5);
}

.wx-btn:active {
    transform: translateY(0);
}

/* 微信登录卡片 */
.wx-login-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

/* 微信登录标题区域 */
#wx-login-header {
    margin-bottom: 20px;
}

.wx-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.wx-desc {
    font-size: 14px;
    color: #999;
    margin: 0;
}

/* 微信二维码容器 */
.wx-qr-container {
    width: 300px;
    height: 360px;
    margin: 0 auto 20px auto;
    display: none;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    padding: 20px 0 0 0;
    box-sizing: border-box;
}

.wx-qr-container iframe {
    width: 300px !important;
    height: 380px !important;
    border: none;
    margin: 0 0 0 0 !important;
    padding: 0;
    transform: scale(1);
    transform-origin: center top;
}

/* 微信登录按钮 */
.wx-btn {
    width: 100%;
    height: 44px;
    background: linear-gradient(135deg, #07c160 0%, #06ad56 100%);
    border: none;
    border-radius: 22px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.wx-btn:hover {
    background: linear-gradient(135deg, #06ad56 0%, #07c160 100%);
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}

.wx-btn span {
    display: flex;
    align-items: center;
}

/* 底部内容区域 */
.wx-bottom {
    padding-top: 10px;
}

/* 微信登录同意协议样式 */
.wx-agree {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
    width: 100%;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.wx-agree input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin: 0 6px 0 0;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: 0;
    left: 0;
}

.wx-agree span {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    line-height: 1.5;
    display: inline;
}

.wx-agree a {
    color: #07C160;
    text-decoration: none;
    margin: 0 2px;
}

/* 提示文字 */
.wx-tip {
    font-size: 12px;
    color: #999;
    margin: 0 0 15px 0;
}

/* 注册链接 */
.wx-register {
    font-size: 12px;
    color: #666;
}

.wx-register a {
    color: #07C160;
    text-decoration: none;
    margin-left: 4px;
    font-weight: 600;
}

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