/* ==================== 重置样式 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

html {
    min-width: 1200px;
}

body {
    /* background: linear-gradient(135deg, #e9e9e9 0%, #0099cc 100%); */
    background-attachment: fixed;
    background-color: #f7f7f7;
}

/* ==================== 容器布局 ==================== */
.yqy-login-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ==================== 顶部导航栏 ==================== */
.yqy-login-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    /* border-bottom: 3px solid #00d4ff; */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.yqy-login-header-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.yqy-login-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.yqy-login-logo {
    display: flex;
    align-items: center;
    padding-right: 13px;
    border-right: 2px solid #e8e8e8;
}

.yqy-login-logo img {
    max-height: 45px;
    max-width: 180px;
    height: auto;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.yqy-login-logo img:hover {
    /* transform: scale(1.05); */
}

.yqy-login-title {
    font-size: 15px;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.yqy-login-header-right {
    flex-shrink: 0;
}

.yqy-login-header-right a {
    color: #5c5c5c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid transparent;
    display: inline-block;
}

.yqy-login-header-right a:hover {
    color: #0088aa;
    border-color: #0088aa;
    background: rgba(0, 136, 170, 0.05);
}

/* ==================== 主内容区域 ==================== */
.yqy-login-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    width: 100%;
    min-height: calc(100vh - 200px);
}

.yqy-login-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.yqy-login-card-wrapper {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    min-height: 550px;
    max-height: 680px;
    animation: yqy-login-fadeIn 0.6s ease;
    margin: 0 auto;
}

@keyframes yqy-login-fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 左侧装饰区域 ==================== */
.yqy-login-card-left {
    flex: 1;
    background: linear-gradient(135deg, #00d4ff 0%, #70c2ff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.yqy-login-card-left::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: yqy-login-float 6s ease-in-out infinite;
}

.yqy-login-card-left::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: yqy-login-float 8s ease-in-out infinite reverse;
}

@keyframes yqy-login-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.yqy-login-decoration {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.yqy-login-decoration h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.yqy-login-decoration p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.8;
}

/* ==================== 右侧表单区域 ==================== */
.yqy-login-card-right {
    flex: 1;
    padding: 40px 50px;
    background: white;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.yqy-login-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.yqy-login-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.yqy-login-form-header p {
    font-size: 14px;
    color: #95a5a6;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==================== 表单样式 ==================== */
.yqy-login-form {
    margin-top: 10px;
}

.yqy-login-form-item {
    position: relative;
    margin-bottom: 20px;
}

.yqy-login-input-wrapper {
    position: relative;
}

.yqy-login-icon {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d4ff 0%, #008dcc 100%);
    border-radius: 10px 0 0 10px;
    color: white;
    font-size: 22px!important;
    z-index: 2;
}

.yqy-login-input {
    width: 100%;
    height: 50px;
    padding: 0 20px 0 60px;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    font-size: 15px;
    color: #2c3e50;
    background: #f8f9fa;
    transition: all 0.3s ease;
    outline: none;
}

.yqy-login-input:focus {
    border-color: #00d4ff;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.yqy-login-input:focus + .yqy-login-floating-label,
.yqy-login-input:not(:placeholder-shown) + .yqy-login-floating-label {
    top: -8px;
    left: 41px;
    font-size: 12px;
    color: #1e9fff;
    /* background: white; */
    padding: 0 8px;
}

.yqy-login-floating-label {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #95a5a6;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
}

/* ==================== 验证码图片 ==================== */
.yqy-login-captcha-image {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    height: 36px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.yqy-login-captcha-image:hover {
    /* transform: translateY(-50%) scale(1.05); */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

/* ==================== 复选框和链接 ==================== */
.yqy-login-agreement {
    margin-bottom: 20px;
    font-size: 13px;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    line-height: 1.8;
}

.yqy-login-agreement a {
    color: #00a8cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 9px;
}

.yqy-login-agreement a:hover {
    color: #0088aa;
    text-decoration: underline;
}

/* ==================== 登录按钮（完全独立样式，不依赖Layui）==================== */
.yqy-login-submit-btn {
    /* 重置所有可能的继承样式 */
    all: unset;

    /* 基础样式 */
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;

    /* 背景和边框 */
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border: none;
    border-radius: 25px;
    box-sizing: border-box;

    /* 文字样式 */
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;

    /* 交互效果 */
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    /* 阴影和过渡 */
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* 确保在最上层 */
    position: relative;
    z-index: 1;

    /* 防止文字选中 */
    -webkit-tap-highlight-color: transparent;
}

/* 悬停效果 */
.yqy-login-submit-btn:hover {
    background: linear-gradient(135deg, #00e0ff 0%, #00a8dd 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 212, 255, 0.4);
}

/* 激活/按下效果 */
.yqy-login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
    background: linear-gradient(135deg, #00c0e0 0%, #0088bb 100%);
}

/* 聚焦效果 */
.yqy-login-submit-btn:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4), 0 0 0 3px rgba(0, 212, 255, 0.2);
}

/* 禁用状态 */
.yqy-login-submit-btn:disabled,
.yqy-login-submit-btn.disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.yqy-login-submit-btn:disabled:hover,
.yqy-login-submit-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 加载状态 */
.yqy-login-submit-btn.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.yqy-login-submit-btn.loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: yqy-login-btn-spin 0.6s linear infinite;
}

@keyframes yqy-login-btn-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 覆盖 Layui 可能的样式 */
.yqy-login-submit-btn.layui-btn {
    all: unset;
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #008dcc 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

/* 确保按钮内的文字居中 */
.yqy-login-submit-btn * {
    vertical-align: middle;
}

/* ==================== 第三方登录 ==================== */
.yqy-login-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0;
}

.yqy-login-social li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.yqy-login-social a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    color: #2c3e50;
    font-size: 13px;
    font-weight: 500;
    /* background: #f8f9fa; */
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.yqy-login-social a:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #00a8cc;
}

.yqy-login-social a i {
    font-size: 20px;
}

.yqy-login-icon-wx {
    color: #00c525;
}

.yqy-login-icon-qq {
    color: #2196F3;
}

.yqy-login-icon-phone {
    color: #ff6b2c;
}

/* ==================== 底部链接 ==================== */
.yqy-login-footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center; /* 居中显示 */
    align-items: center;
    font-size: 13px;
    padding: 0;
    gap: 30px; /* 两个链接之间的间距 */
}

.yqy-login-footer-links a {
    color: #00a8cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.yqy-login-footer-links a:hover {
    color: #0088aa;
    text-decoration: underline;
}

/* ==================== 切换登录方式按钮 ==================== */
.yqy-login-switch-btn {
    cursor: pointer;
    height: 60px;
    width: 60px;
    position: absolute;
    z-index: 999;
    right: -32px;
    top: -24px;
    background-image: url(/homestyle/style1/images/login_cut.png);
    background-position: 0 0;
    background-size: 120px;
    border-radius: 10%;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.yqy-login-switch-btn:hover {
    background-position: -60px 0;
    transform: scale(1.05);
    /* box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); */
}

.yqy-login-switch-btn-wx {
    background-position: 0 -60px;
}

.yqy-login-switch-btn-wx:hover {
    background-position: -60px -60px;
}

.yqy-login-switch-tooltip {
    position: absolute;
    top: 50%;
    right: 70px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: #ff5722;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yqy-login-switch-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid #ffffff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.yqy-login-switch-btn:hover .yqy-login-switch-tooltip {
    opacity: 1;
    right: 75px;
}

.yqy-login-switch-tooltip .span {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAgCAYAAACYTcH3AAAAAXNSR0IArs4c6QAAAdFJREFUWEdjZIACuSUW1kyMTKUMDAyODAwMfDBxLHTDg+hjjXjkGUSnOvBwC/7czPCf0QGPugcMDAy7HkQfS4epYQQxoA45gs8CJLkHD6KPKeJTK7/MKovxP8NUIs2Dew7sGIWlVhMYGBjyoZqvMjD+f43LIKZ/DL33Yo5vIWSR/BKrYkam/z441SGF2h/W/zJPwo4/hThmmeV+WJD++8+s/Sjm8DVCllEqr7jUMvQ/A+MqsDn//jk+iD1xAMMxD6KPgcVoDRQWWzgwMDHtH3UMekiPhgyutDdUQsa6n+H//4L//xnuPIw5pkrrnAQyX3aBlTIzK8MdEJuJmUn9XsSRW/BsrLDMMpKB8f/xB5EnQMU0XQA4qhgYGEBlDIimS5lCrM8Gl2MUl1i5/Wf6X0ms62mi7j/T6wfRR8MYFZZaXWFgYNCmiSWkGZoFcsx8BgaGBNL0UV316/+MDBGDK81Q3Y8UGAgPGbmlNsb/WP++ADVyKDCPJK1yS2y1WNn+/Lobdhxc+MFaevUMDAwNDAwMVx9EH9MhyUQyFSuvslT5+5vxNrhtBW3QjTauQKExVGptRIN8tA082jtAKgaISsAD34kbTN3bQdXxB0XlYBgSAQBVv1HZQYwH1wAAAABJRU5ErkJggg==);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

/* ==================== 微信二维码样式 ==================== */
.yqy-login-weixin-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.yqy-login-weixin-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 1;
    border-radius: 50%;
    color: #00b10f;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yqy-login-weixin-logo i {
    font-size: 36px;
}

.yqy-login-qrcode-container {
    position: relative;
    margin: 10px 0;
}

#wxqrcode img {
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.yqy-login-weixin-tip {
    text-align: center;
    padding: 10px 0;
    margin-bottom: 10px;
}

.yqy-login-weixin-tip p {
    font-size: 14px;
    line-height: 1.6;
    color: #7f8c8d;
}

.yqy-login-weixin-tip span {
    color: #ff1b00;
    font-weight: 600;
}

/* ==================== 发送验证码按钮（完全独立样式）==================== */
.yqy-login-send-code-btn {
    /* 重置所有可能的继承样式 */
    all: unset;

    /* 基础样式 */
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    padding: 0;

    /* 背景和边框 */
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    border-radius: 25px;
    box-sizing: border-box;

    /* 文字样式 */
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    text-align: center;
    line-height: 50px;
    letter-spacing: 0.5px;

    /* 交互效果 */
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;

    /* 阴影和过渡 */
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* 确保在最上层 */
    position: relative;
    z-index: 1;

    /* 防止文字选中 */
    -webkit-tap-highlight-color: transparent;
}

/* 悬停效果 */
.yqy-login-send-code-btn:hover {
    background: linear-gradient(135deg, #ff7b7b 0%, #ff6a7f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

/* 激活/按下效果 */
.yqy-login-send-code-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    background: linear-gradient(135deg, #ee5a6f 0%, #dd4a5f 100%);
}

/* 聚焦效果 */
.yqy-login-send-code-btn:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4), 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* 禁用状态（倒计时中）*/
.yqy-login-send-code-btn:disabled,
.yqy-login-send-code-btn.disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.yqy-login-send-code-btn:disabled:hover,
.yqy-login-send-code-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 覆盖 Layui 可能的样式 */
.yqy-login-send-code-btn.layui-btn {
    all: unset;
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

/* 确保按钮内的文字居中 */
.yqy-login-send-code-btn * {
    vertical-align: middle;
}

/* 获取验证码按钮的特殊类名兼容 */
.get_code_btn {
    all: unset;
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    user-select: none;
}

.get_code_btn:hover {
    background: linear-gradient(135deg, #ff7b7b 0%, #ff6a7f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.get_code_btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.get_code_btn:disabled {
    background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

/* ==================== 响应式设计 ==================== */
@media screen and (max-width: 1200px) {
    .yqy-login-card-left {
        display: none;
    }

    .yqy-login-card-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    html {
        min-width: auto;
    }

    .yqy-login-card-right {
        padding: 40px 30px;
    }

    .yqy-login-form-header h2 {
        font-size: 26px;
    }
}

/* ==================== 动画效果 ==================== */
.layui-anim-fadein {
    animation: yqy-login-fadeIn 0.5s ease;
}

/* ==================== 兼容 Layui 表单 ==================== */
.layui-form-item {
    /* margin-bottom: 0; */
}

.layui-input,
.layui-select,
.layui-textarea {
    height: 50px !important;
    border-radius: 10px !important;
}

.layui-btn {
    border-radius: 25px;
}

/* ==================== 显示控制 ==================== */
#LAY-user-login,
.yqy-user-display-show {
    display: block !important;
}

/* ==================== 旧样式兼容 ==================== */
.container {
    width: 100%;
    min-height: 100vh;
}

.main-content {
    width: 100%;
}

.member-login-top {
    /* 使用新的 header 样式 */
}

.login-content-login-wx {
    /* 背景图片保留在内联样式中 */
}

.yqy-user-login {
    position: relative;
    padding: 0;
    min-height: auto;
}

.yqy-user-login-main {
    margin: 0;
}

.user-login-cont {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.yqy-user-login-box {
    padding: 0;
}

.login-header {
    padding-top: 0 !important;
}

/* ==================== 滑动验证码容器 ==================== */
.tncode {
    margin: 10px 0;
}
/*分割线*/
.icon-wx {
    color: #00c525;
}

.icon-qq {
    color: #2196F3;
}

.icon-phone {
    color: #ff6b2c;
}

.weixin-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    /* 或其他合适的尺寸 */
    height: 38px;
    /* 或其他合适的尺寸 */
    z-index: 1;
    border-radius: 50%;
    /* 圆形背景 */
    color: #00b10f;
    /* 图标颜色 */
    background-color: #ffffff;
    /* 背景颜色 */

    display: flex;
    /* 使用 Flexbox 来居中图标 */
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
}

.weixin-logo i {

    font-size: 35px;
    /* 图标的大小 */
}


.right-qrimg {
    cursor: pointer;
    height: 60px;
    position: absolute;
    z-index: 999;
    right: 10px;
    top: 0px;
    width: 60px;
    background-image: url(/homestyle/style1/images/login_cut.png);
    background-position: 0 0;
    background-size: 120px;
}

.right-qrimg-wx .span,
.right-qrimg .span {
    background-repeat: no-repeat;
    display: inline-block;
    height: 14px;
    margin-right: 4px;
    position: relative;
    top: 3.5px;
    width: 14px;
    /* color: antiquewhite; */
    background-size: 13px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAgCAYAAACYTcH3AAAAAXNSR0IArs4c6QAAAdFJREFUWEdjZIACuSUW1kyMTKUMDAyODAwMfDBxLHTDg+hjjXjkGUSnOvBwC/7czPCf0QGPugcMDAy7HkQfS4epYQQxoA45gs8CJLkHD6KPKeJTK7/MKovxP8NUIs2Dew7sGIWlVhMYGBjyoZqvMjD+f43LIKZ/DL33Yo5vIWSR/BKrYkam/z441SGF2h/W/zJPwo4/hThmmeV+WJD++8+s/Sjm8DVCllEqr7jUMvQ/A+MqsDn//jk+iD1xAMMxD6KPgcVoDRQWWzgwMDHtH3UMekiPhgyutDdUQsa6n+H//4L//xnuPIw5pkrrnAQyX3aBlTIzK8MdEJuJmUn9XsSRW/BsrLDMMpKB8f/xB5EnQMU0XQA4qhgYGEBlDIimS5lCrM8Gl2MUl1i5/Wf6X0ms62mi7j/T6wfRR8MYFZZaXWFgYNCmiSWkGZoFcsx8BgaGBNL0UV316/+MDBGDK81Q3Y8UGAgPGbmlNsb/WP++ADVyKDCPJK1yS2y1WNn+/Lobdhxc+MFaevUMDAwNDAwMVx9EH9MhyUQyFSuvslT5+5vxNrhtBW3QjTauQKExVGptRIN8tA082jtAKgaISsAD34kbTN3bQdXxB0XlYBgSAQBVv1HZQYwH1wAAAABJRU5ErkJggg==);
}

.right-qrimg:hover {
    background-position: -60px 0;
}

.right-qrimg-wx {
    cursor: pointer;
    height: 60px;
    position: absolute;
    z-index: 999;
    right: 10px;
    top: 0px;
    width: 60px;
    background-image: url(/homestyle/style1/images/login_cut.png);
    background-position: 0rem -60px;
    background-size: 120px;
}

.right-qrimg .login-text,
.right-qrimg-wx .login-text {
    position: absolute;
    top: 48%;
    left: -42%;
    transform: translate(-50%, -50%);
    background-color: #d4f8ff;
    color: #007e72;
    padding: 4px;
    border-radius: 5px;
    font-size: 12px;
    width: 72px;
}

.right-qrimg-wx:hover {
    background-position: -60px -60px;
}

.right-qrimg:hover .login-text {
    display: block;
    /* 当鼠标悬停时显示文字 */
}


#wxqrcode img {
    border: 1px solid #e4e7ee;
    border-radius: 10px;
}

/*验证码*/
.captcha-image {
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
    height: 70%;
    cursor: pointer;
}



/* ==================== 页面底部样式优化 ==================== */
.footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 17px 20px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.yqy-buy-footer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #95a5a6;
}

/* 版权信息区域 */
.yqy-footer-copyright {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.8;
    color: #7f8c8d;
}

.yqy-footer-copyright p {
    margin: 5px 0;
    font-size: 13px;
    color: #7f8c8d;
}

.yqy-footer-copyright a {
    color: #00a8cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yqy-footer-copyright a:hover {
    color: #0088aa;
    text-decoration: underline;
}

/* 备案信息区域 */
.yqy-footer-icp-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    /* margin: -11px 0; */
    padding: 7px 0;
    font-size: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.yqy-footer-icp-info span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #95a5a6;
}

.yqy-footer-icp-info img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.yqy-footer-icp-info a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.yqy-footer-icp-info a:hover {
    color: #00a8cc;
}

/* 技术支持区域 */
.yqy-footer-tech {
    margin-top: 7px;
    font-size: 12px;
    color: #bdc3c7;
}

.yqy-footer-tech a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 5px;
}

.yqy-footer-tech a:hover {
    color: #00a8cc;
}

.yqy-footer-tech sup {
    font-size: 10px;
    margin-left: 2px;
}

/* 响应式优化 */
@media screen and (max-width: 768px) {
    .footer {
        padding: 20px 15px;
    }

    .yqy-footer-copyright {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .yqy-footer-copyright p {
        font-size: 12px;
        margin: 4px 0;
    }

    .yqy-footer-icp-info {
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
        padding: 10px 0;
    }

    .yqy-footer-icp-info span {
        justify-content: center;
    }

    .yqy-footer-tech {
        font-size: 11px;
        margin-top: 12px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 15px 10px;
    }

    .yqy-footer-copyright {
        font-size: 11px;
    }

    .yqy-footer-copyright p {
        font-size: 11px;
    }

    .yqy-footer-icp-info {
        font-size: 10px;
        gap: 8px;
    }

    .yqy-footer-tech {
        font-size: 10px;
    }
}

/* ==================== Layui 表单元素对齐修复 ==================== */
.layui-form-item {
    margin-bottom: 21px !important;
}

.layui-form-checkbox {
    margin-right: 5px !important;
}

.layui-form-checkbox[lay-skin="primary"] {
    height: auto !important;
    line-height: 1.8 !important;
}

/* ==================== 响应式优化 ==================== */
@media screen and (max-width: 1200px) {
    html {
        min-width: auto;
    }

    .yqy-login-header-box {
        max-width: 100%;
        padding: 0 15px;
    }

    .yqy-login-card-left {
        display: none;
    }

    .yqy-login-card-wrapper {
        max-width: 500px;
    }

    .yqy-login-main {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 768px) {
    html {
        min-width: auto;
    }

    body {
        font-size: 14px;
    }

    /* 头部优化 */
    .yqy-login-header {
        padding: 12px 0;
    }

    .yqy-login-header-box {
        padding: 0 15px;
        gap: 10px;
    }

    .yqy-login-header-left {
        gap: 10px;
        min-width: 0;
    }

    .yqy-login-logo {
        padding-right: 10px;
    }

    .yqy-login-logo img {
        max-height: 35px;
        max-width: 120px;
    }

    .yqy-login-title {
        font-size: 13px;
        display: none; /* 移动端隐藏标题 */
    }

    .yqy-login-header-right a {
        font-size: 13px;
        padding: 6px 12px;
    }

    /* 主内容区域 */
    .yqy-login-main {
        padding: 15px 10px;
        min-height: auto;
    }

    .yqy-login-content {
        width: 100%;
    }

    .yqy-login-card-wrapper {
        border-radius: 15px;
        min-height: auto;
        max-height: none;
    }

    .yqy-login-card-right {
        padding: 25px 20px;
    }

    .yqy-login-form-header {
        margin-bottom: 20px;
    }

    .yqy-login-form-header h2 {
        font-size: 22px;
    }

    .yqy-login-form-header p {
        font-size: 12px;
    }

    /* 表单元素 */
    .yqy-login-form-item {
        margin-bottom: 16px;
    }

    .yqy-login-input {
        height: 46px;
        font-size: 14px;
    }

    .yqy-login-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .yqy-login-floating-label {
        font-size: 13px;
    }

    .yqy-login-submit-btn {
        height: 46px;
        font-size: 16px;
    }

    /* 第三方登录 */
    .yqy-login-social {
        gap: 10px;
        margin-top: 15px;
    }

    .yqy-login-social a {
        padding: 6px 12px;
        font-size: 12px;
    }

    .yqy-login-social a i {
        font-size: 18px;
    }

    /* 底部链接 */
    .yqy-login-footer-links {
        font-size: 12px;
        margin-top: 15px;
        display: flex !important; /* 移动端也强制显示 */
        flex-wrap: wrap;
        gap: 10px;
    }

    .yqy-login-footer-links a {
        flex: 0 0 auto;
    }

    /* 切换按钮 */
    .yqy-login-switch-btn {
        width: 50px;
        height: 50px;
        right: 10px;
        top: 10px;
    }

    .yqy-login-switch-tooltip {
        display: none !important; /* 移动端隐藏提示 */
    }

    /* 底部优化 */
    .yqy-login-footer,
    .footer {
        padding: 20px 15px 15px;
    }

    .yqy-login-footer-content p,
    .yqy-buy-footer p {
        font-size: 11px;
        margin: 5px 0;
    }

    .yqy-login-footer-icp,
    .yqy-footer-icp-info {
        flex-direction: column;
        gap: 8px;
        font-size: 11px;
        margin: 10px 0;
    }

    .yqy-login-footer-icp span,
    .yqy-footer-icp-info span {
        justify-content: center;
    }

    /* 微信二维码 */
    .yqy-login-weixin-wrapper {
        padding: 5px 0;
    }

    .yqy-login-qrcode-container {
        margin: 5px 0;
    }

    #wxqrcode img,
    #wxqrcode > div {
        width: 180px !important;
        height: 180px !important;
    }

    .yqy-login-weixin-tip p {
        font-size: 13px;
    }

    /* 验证码按钮 */
    .yqy-login-send-code-btn {
        height: 46px;
        font-size: 14px;
    }

    /* Layui 表单适配 */
    .layui-input,
    .layui-select,
    .layui-textarea {
        height: 46px !important;
    }
}


@media screen and (max-width: 480px) {
    .yqy-login-header-box {
        padding: 0 10px;
    }

    .yqy-login-logo img {
        max-height: 30px;
        max-width: 100px;
    }

    .yqy-login-header-right a {
        font-size: 12px;
        padding: 5px 10px;
    }

    .yqy-login-card-right {
        padding: 20px 15px;
    }

    .yqy-login-form-header h2 {
        font-size: 20px;
    }

    .yqy-login-social a {
        padding: 5px 10px;
        font-size: 11px;
    }

    .yqy-login-footer-content p,
    .yqy-buy-footer p {
        font-size: 10px;
    }

    .yqy-login-footer-icp,
    .yqy-footer-icp-info {
        font-size: 10px;
    }
}


.layui-input, .layui-textarea {
    padding-left: 60px!important;
}

/* ==================== 注册页面特有样式 ==================== */

/* 注册页面卡片包装器 - 稍微宽一点以容纳更多表单项 */
.yqy-regist-card-wrapper {
    max-width: 1100px;
}



/* 注册页面右侧表单区域 - 稍微调整内边距 */
.yqy-regist-card-right {
    padding: 35px 45px;
}

/* 注册页面表单项间距调整 */
.yqy-regist-card-right .yqy-login-form-item {
    margin-bottom: 18px;
}

/* 注册页面标题样式微调 */
.yqy-regist-card-right .yqy-login-form-header {
    margin-bottom: 30px;
}

/* 注册页面协议区域样式优化 */
.yqy-regist-card-right .yqy-login-agreement {
    margin-bottom: 18px;
    margin-top: 5px;
}

/* 注册页面底部链接样式 */
.yqy-regist-card-right .yqy-login-footer-links {
    margin-top: 15px;
}

/* 注册页面响应式优化 */
@media screen and (max-width: 1200px) {
    .yqy-regist-card-wrapper {
        max-width: 520px;
    }

    .yqy-regist-card-left {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .yqy-regist-card-right {
        padding: 25px 20px;
    }

    .yqy-regist-card-right .yqy-login-form-item {
        margin-bottom: 15px;
    }

    .yqy-regist-card-right .yqy-login-form-header {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .yqy-regist-card-right {
        padding: 20px 15px;
    }

    .yqy-regist-card-right .yqy-login-form-item {
        margin-bottom: 14px;
    }
}

/* ==================== 密码找回页面特有样式 ==================== */

/* 密码找回页面卡片包装器 */
.yqy-setpwd-card-wrapper {
    max-width: 1050px;
}


/* 密码找回页面右侧表单区域 */
.yqy-setpwd-card-right {
    padding: 35px 45px;
}

/* 密码找回页面表单项间距调整 */
.yqy-setpwd-card-right .yqy-login-form-item {
    margin-bottom: 18px;
}

/* 密码找回页面标题样式微调 */
.yqy-setpwd-card-right .yqy-login-form-header {
    margin-bottom: 30px;
}

/* 密码找回页面底部链接样式 */
.yqy-setpwd-card-right .yqy-login-footer-links {
    margin-top: 15px;
}

/* 密码找回页面验证码图片样式 */
.yqy-setpwd-captcha-image {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e8e8e8;
    object-fit: cover;
}

.yqy-setpwd-captcha-image:hover {
    /* transform: scale(1.05); */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #1e9fff;
}

/* 密码找回页面响应式优化 */
@media screen and (max-width: 1200px) {
    .yqy-setpwd-card-wrapper {
        max-width: 520px;
    }

    .yqy-setpwd-card-left {
        display: none;
    }
}


@media screen and (max-width: 768px) {
    .yqy-setpwd-card-right {
        padding: 25px 20px;
    }

    .yqy-setpwd-card-right .yqy-login-form-item {
        margin-bottom: 15px;
    }

    .yqy-setpwd-card-right .yqy-login-form-header {
        margin-bottom: 20px;
    }

    .yqy-setpwd-captcha-image {
        height: 46px;
    }
}

@media screen and (max-width: 480px) {
    .yqy-setpwd-card-right {
        padding: 20px 15px;
    }

    .yqy-setpwd-card-right .yqy-login-form-item {
        margin-bottom: 14px;
    }
}