@CHARSET "UTF-8"; 
/* 基础样式 */
body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: "微软雅黑", Arial, Helvetica, sans-serif;
    min-width: 1200px;
}

#loginFrame {
    margin: 0;
    padding: 0;
}

/* 图标替换 */
.layui-layer-icowst1,
.layui-layer-icowst2,
.layui-layer-icowst3 {
    background-image: url(../../../../../static/images/wst_icon.png) !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.layui-layer-icowst2 {
    background-position: -40px 0 !important;
}

.layui-layer-icowst3 {
    background-position: -80px -1px !important;
}

.layui-layer-icowstloading {
    background-image: url(../../../../../static/images/loading.gif) !important;
    background-repeat: no-repeat !important;
    background-size: 206% auto !important;
    background-position: -16px -16px !important;
}

.wst-clear {
    clear: both;
}

/* 页脚样式 */
.wst-footer {
    padding-top: 20px;
    color: #666;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    font: 13px/150% "Hiragino Sans GB", "Microsoft Yahei", arial, 宋体, "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}

.wst-footer .wst-container {
    width: 1200px;
    margin: 10px auto;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.wst-footer .links {
    margin-bottom: 10px;
}

.wst-footer .flink-hover {
    padding-right: 12px;
    color: #888;
    text-decoration: none;
}

.wst-footer .flink-hover:hover {
    color: #3498db;
}

.wst-footer .copyright {
    margin-top: 10px;
    color: #999;
}

/* ========== 全新左右分栏布局 ========== */
.cq-new-login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* 左侧面板 - 重庆元素展示区 */
.cq-left-panel {
    flex: 0 0 43%;
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3d566e 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cq-logo-section {
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.cq-logo-link {
    display: block;
    text-decoration: none;
}

.cq-logo-img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 山城轮廓 */
.cq-mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    clip-path: polygon(0 100%, 15% 70%, 30% 85%, 45% 60%, 60% 75%, 75% 50%, 90% 65%, 100% 45%, 100% 100%);
    z-index: 1;
}

/* 建筑轮廓 */
.cq-buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background-image: 
        linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(90deg, 
            transparent 0px,
            transparent 40px,
            rgba(255, 255, 255, 0.1) 40px,
            rgba(255, 255, 255, 0.1) 45px
        );
    clip-path: polygon(0 100%, 10% 80%, 20% 90%, 30% 70%, 40% 85%, 50% 60%, 60% 75%, 70% 55%, 80% 70%, 90% 50%, 100% 65%, 100% 100%);
    z-index: 2;
}

/* 长江 */
.cq-river {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(30, 144, 255, 0.4) 0%, rgba(30, 144, 255, 0.1) 100%);
    clip-path: polygon(0 100%, 20% 95%, 40% 98%, 60% 92%, 80% 96%, 100% 94%, 100% 100%);
    z-index: 1;
    animation: riverFlow 8s ease-in-out infinite;
}

@keyframes riverFlow {
    0%, 100% { 
        clip-path: polygon(0 100%, 20% 95%, 40% 98%, 60% 92%, 80% 96%, 100% 94%, 100% 100%); 
    }
    50% { 
        clip-path: polygon(0 100%, 20% 97%, 40% 94%, 60% 98%, 80% 92%, 100% 96%, 100% 100%); 
    }
}

/* 火锅装饰 */
.cq-hotpot-decoration {
    position: absolute;
    top: 20%;
    right: 10%;
    z-index: 5;
}

.cq-hotpot-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(52, 73, 94, 0.4) 50%, rgba(44, 62, 80, 0.6) 100%);
    box-shadow: 0 0 30px rgba(52, 73, 94, 0.4);
    animation: hotpotPulse 3s ease-in-out infinite;
}

@keyframes hotpotPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 1; 
    }
}

.cq-hotpot-steam {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    border-radius: 2px;
    animation: steamRise 2s ease-in-out infinite;
}

.cq-hotpot-steam::before,
.cq-hotpot-steam::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 50px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
    border-radius: 2px;
    animation: steamRise 2s ease-in-out infinite;
}

.cq-hotpot-steam::before {
    left: -15px;
    animation-delay: 0.3s;
}

.cq-hotpot-steam::after {
    right: -15px;
    animation-delay: 0.6s;
}

@keyframes steamRise {
    0% { 
        transform: translateX(-50%) translateY(0) scaleY(1); 
        opacity: 0.8; 
    }
    100% { 
        transform: translateX(-50%) translateY(-20px) scaleY(0.5); 
        opacity: 0; 
    }
}

/* 欢迎文字 */
.cq-welcome-text {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.cq-welcome-text h2 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.cq-welcome-text p {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 右侧面板 - 表单区 */
.cq-right-panel {
    flex: 0 0 60%;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: relative;
}

.cq-form-header {
    width: 100%;
    max-width: 480px;
    margin-bottom: 40px;
    text-align: center;
}

.cq-form-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    height: 45px;
    padding-top: 20px;
}

.cq-form-subtitle {
    font-size: 16px;
    color: #6c757d;
}

.cq-register-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.cq-register-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.cq-form-container {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* 表单样式 */
.cq-login-form {
    width: 100%;
}

.cq-form-group {
    margin-bottom: 24px;
}

.cq-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.cq-form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s;
    box-sizing: border-box;
}

.cq-form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

.cq-code-group {
    display: flex;
    gap: 12px;
}

.cq-code-input {
    flex: 1;
}

.cq-verify-img {
    width: 125px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e9ecef;
    transition: all 0.3s;
}

.cq-verify-img:hover {
    border-color: #3498db;
}

.cq-error-tip {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 18px;
}

/* 提交按钮 */
.cq-btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 50%, #1a252f 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
    margin-top: 10px;
}

.cq-btn-submit:hover {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4);
}

.cq-btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(44, 62, 80, 0.3);
}

/* 动画增强 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cq-form-container {
    animation: fadeInUp 0.6s ease-out;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .cq-new-login-wrapper {
        flex-direction: column;
    }
    
    .cq-left-panel {
        flex: 0 0 auto;
        min-height: 300px;
        padding: 40px 20px;
    }
    
    .cq-right-panel {
        flex: 1;
        padding: 40px 20px;
    }
    
    .cq-hotpot-decoration {
        display: none;
    }
    
    .cq-welcome-text h2 {
        font-size: 32px;
    }
    
    .cq-welcome-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cq-form-container {
        padding: 30px 20px;
    }
    
    .cq-form-title {
        font-size: 28px;
    }
    
    .cq-code-group {
        flex-direction: column;
    }
    
    .cq-verify-img {
        width: 100%;
        height: 50px;
    }
}
