* {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

body {
    background-color: #fff;
}

.site-wrapper {
    max-width: 100%;
    overflow-x: hidden;
}

/* 头部区域 */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    flex-wrap: wrap;
    border-bottom: 1px solid #eef0f3;
}

.logo-area {
    font-size: 28px;
    font-weight: 600;
    color: #1e2b3c;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}
.logo-area img{width: 100%;}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #4a6cf7, #6b4df5);
    border-radius: 8px;
    margin-right: 12px;
    display: inline-block;
    box-shadow: 0 6px 12px rgba(74,108,247,0.2);
}

.nav-group {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    transition: color 0.2s;
    padding: 0;
}

.nav-links a:hover {
    color: #4a6cf7;
}

.action-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.login-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 8px 6px;
}

.register-btn {
    background-color: #4a6cf7;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(74,108,247,0.3);
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}

.register-btn:hover {
    background-color: #3154e0;
    color: white;
    transform: scale(1.02);
}

/* 幻灯片区域 */
.hero-slider {
    background-image: url('/images/wy/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #182848;
    height: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slider-container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* 左侧文案和按钮样式 */
.hero-content-left {
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    text-align: left;
    color: white;
    margin-right: 40px;
}

.hero-title-line {
    overflow: hidden;
    line-height: 1.1;
}

.hero-text-part {
    display: inline-block;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
    transition: all 0.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.hero-btn:active {
    transform: translateY(-1px);
}

.primary-btn {
    background-color: #4a6cf7;
    color: white;
    border-color: #4a6cf7;
}

.primary-btn:hover {
    background-color: #3154e0;
    border-color: #3154e0;
    color: white;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

/* ===== 登录框 - 修复表单溢出问题 ===== */
.login-card {
    width: 380px;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(8px);
    border-radius: 16px !important;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2) !important;
    padding: 26px 24px 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-tabs {
    display: flex;
    margin-bottom: 24px;
    border-radius: 30px;
    background-color: #f0f3f9;
    padding: 4px;
    width: 100%;
}

.slide-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    color: #5e6f8d;
    cursor: pointer;
    border-radius: 26px;
    transition: 0.2s;
    border: none;
    background: transparent;
}

.slide-tab.active {
    background-color: #ffffff;
    color: #1e2b3c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.login-panel {
    display: block;
    flex: 1;
    width: 100%;
}

.login-panel.hidden {
    display: none;
}

/* ===== 修复表单控件溢出问题 ===== */
.input-field {
    display: block;
    width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #dde3ec !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    margin-bottom: 16px !important;
    background: #ffffff !important;
    transition: 0.2s;
    line-height: 1.5;
    color: #2c3e50;
    height: auto !important;
    box-sizing: border-box !important;
}

.input-field:focus {
    border-color: #4a6cf7 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.15) !important;
}

/* 验证码容器 - 修复高度不一致问题 */
.verify-code-wrapper {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
}

.verify-code-wrapper .input-field {
    flex: 1;
    margin-bottom: 0;
}

.verify-code-wrapper img {
    height: 48.5px;
    width: 150px;
    border-radius: 12px;
}

.fake-code {
    background: #eef3fe;
    border-radius: 12px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    color: #4a6cf7;
    font-weight: 700;
    font-size: 15px;
    height:46px;
    min-height: 46px;

    border: 1px solid #dde3ec;
    white-space: nowrap;
}

.row-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 22px;
    font-size: 14px;
    width: 100%;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c3e50;
    cursor: pointer;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
}

.forgot-link {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 500;
    padding: 0;
}

.forgot-link:hover {
    color: #3154e0;
}

.login-submit {
    width: 100%;
    background: #4a6cf7 !important;
    border: none !important;
    color: white !important;
    padding: 14px 0 !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    cursor: pointer;
    margin-bottom: 8px;
    box-shadow: 0 10px 20px rgba(74, 108, 247, 0.3) !important;
    transition: background 0.2s;
    line-height: 1.5;
}

.login-submit:hover {
    background: #3154e0 !important;
}

.qrcode-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0 12px;
    width: 100%;
}

.qrcode-box {
    width: 160px;
    height: 160px;
    background: #1e2b3c;
    background-image: linear-gradient(45deg, #2c3e50 25%, #3a4e68 25%, #3a4e68 50%, #2c3e50 50%, #2c3e50 75%, #3a4e68 75%);
    background-size: 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px 0 12px;
    border-radius: 16px;
    position: relative;
    border: 4px solid white;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/*.qrcode-box:after {*/
/*    content: "⬛⬜ 模拟二维码";*/
/*    color: white;*/
/*    font-size: 14px;*/
/*    font-weight: 300;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    padding: 6px 12px;*/
/*    border-radius: 20px;*/
/*}*/

.scan-tip {
    color: #2c3e50;
    font-weight: 500;
    margin: 8px 0 4px;
    font-size: 16px;
}

/* 产品赋能区域 */
.empower-section {
    width: 1200px;
    max-width: 90%;
    margin: 70px auto 60px;
    text-align: center;
}

.empower-title {
    font-size: 40px;
    font-weight: 600;
    color: #121f33;
    margin-bottom: 18px;
}

.empower-sub {
    color: #5e6f8d;
    font-size: 18px;
    margin-bottom: 56px;
}

.modules-grid {
    margin: -15px;
}

.module-card {
    background: white;
    padding: 28px 28px 28px 24px;
    border-radius: 10px;
    box-shadow: 0 20px 35px -8px rgba(0, 20, 50, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f0f4fc;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    width: 100%;
    min-height: 140px;
    margin: 0;
    margin-bottom: 30px;
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 45px -8px rgba(74, 108, 247, 0.12);
}

.card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: #eef3fe;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a6cf7;
    font-size: 32px;
    font-weight: 600;
}
.card-icon img {
    width: 100%;
}

.icon-shape {
    width: 40px;
    height: 40px;
    background-color: #4a6cf7;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 80% 40%, 50% 30%, 20% 40%, 0% 20%);
}
.icon-shape-2 {
    background: #f9a14b;
    clip-path: circle(50% at 50% 50%);
    width: 40px;
    height: 40px;
}
.icon-shape-3 {
    background: #2acf8b;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    width: 40px;
    height: 40px;
}
.icon-shape-4 {
    background: #9f7aea;
    border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
    width: 40px;
    height: 40px;
}

.card-text {
    flex: 1;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #152b42;
}

.card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5f77;
}

/* 免费服务声明区域 */
.free-services {
    width: 1200px;
    max-width: 90%;
    /*margin: 0 auto 80px;*/
    margin: 50px auto;
}

.service-card {
    background: linear-gradient(145deg, #ffffff, #fafcff);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 30px 50px -20px rgba(0, 40, 100, 0.15);
    border: 1px solid rgba(74, 108, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 455px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 60px -15px rgba(74, 108, 247, 0.25);
    border-color: rgba(74, 108, 247, 0.2);
}

.service-card::before {
    content: "🎮";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 80px;
    opacity: 0.03;
    pointer-events: none;
    transform: rotate(5deg);
}

.service-card:last-child::before {
    content: "🎨";
    font-size: 90px;
}

.service-tag {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    font-weight: 700;
    font-size: 14px;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 22px;
    letter-spacing: 1px;
    border: 1px solid rgba(74, 108, 247, 0.2);
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e2b3c;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-title span {
    color: #4a6cf7;
    background: linear-gradient(145deg, #4a6cf7, #6b4df5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #334e68;
    margin-bottom: 25px;
}

.service-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    border-top: 1px dashed #dbe4f0;
    padding-top: 20px;
}

.badge {
    background: #e6f7e6;
    color: #1f9a5e;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge.blue {
    background: #e8edff;
    color: #4a6cf7;
}

.badge::before {
    content: "✓";
    font-weight: 700;
}

.service-footer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-button {
    background: white;
    border: 1px solid #4a6cf7;
    color: #4a6cf7;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
}

.pill-button:hover {
    background: #4a6cf7;
    color: white;
}

.gy_bt {
    text-align: center;
    margin-bottom: 40px;
}
.gy_bt h3 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
}
.gy_bt p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-top: 10px;
}
.gy_bt em {
    width: 20px;
    height: 2px;
    background-color: #9a9a9a;
    display: block;
    margin: 20px auto 0;
}
.xj03 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 5%;
}
.xj03 li {
    width: 20%;
    float: left;
    text-align: center;
    list-style: none;
}
.xj03 li b {
    font-size: 50px;
    color: #f9f7f7;
    display: block;
    line-height: 1;
}
.xj03 li span{display:block; margin:15px auto;width:100px;height:100px; line-height:100px; border-radius:50%;text-align: center; background: #f7f7f7;}
.xj03 li span img {
    max-width: 90%;
}
.xj03 li p {
    font-size: 16px;
    color: #2a2a2a;
    display: block;
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .hero-text-part {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .slider-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content-left {
        margin-right: 0;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .hero-text-part {
        font-size: 42px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .login-card {
        width: 380px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }
    .nav-group {
        flex-direction: column;
        width: 100%;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-text-part {
        font-size: 32px;
    }
    .hero-btn {
        padding: 14px 28px;
        min-width: 140px;
        font-size: 15px;
    }
    .login-card {
        width: 320px;
    }

    .gy_bt {
        margin-bottom: 30px;
    }
    .gy_bt h3 {
        font-size: 26px;
        line-height: 36px;
    }
    .gy_bt p {
        font-size: 14px;
    }
    .gy_bt em {
        width: 40px;
        height: 2px;
        margin: 10px auto 0;
    }
}

@media (max-width: 640px) {
    .hero-text-part {
        font-size: 28px;
    }
    .hero-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .gy_bt h3 {
        font-size: 16px;
        line-height: 24px;
    }
    .gy_bt p {
        font-size: 12px;
        margin-top: 6px;
    }
}

.sy_kh{
    width: 100%;
    /*padding: 0 0 20px;*/
    overflow: hidden;
}
.sy_kh .khbg{width:100%; background:url(/images/wy/khbg.jpg) no-repeat center / cover fixed; padding:50px 0 50px; position:relative;}
.waeop {
    width: 90%;
    margin: 0 auto;
}
@keyframes textclip {
    to {
        background-position: -200% center;
    }
}

.waeop h3 {
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    margin-top: 20px;
    font-weight: bold;
    background: linear-gradient(to right, #ffffff 10%, #f7345e 50%, #ffffff 60%);
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 1.5s linear infinite;
    margin-bottom: 10px;
    line-height: 40px;
}

.waeop p {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin-top: 30px;
    font-family: 'SF Pro Text', 'San Francisco Pro', 'Open Sans', ' Helvetica Neue', Arial;
}

.waeop a {
    display: block;
    margin: 0 auto;
    color: #FFFFFF;
    width: 170px;
    height: 50px;
    border: 2px solid #FFFFFF;
    text-align: center;
    font-size: 16px;
    line-height: 50px;
    font-weight: bold;
    border-radius: 30px;
    margin-top: 30px;
}

.waeop a:hover {
    background: #f7345e;
    border-color: #f7345e;
}
.footer{
    background-color: #17181b;
    padding: 5px 0;
    line-height: 50px;
    text-align: center;
    color: #808082;
    font-size: 16px;
}
.footer a{
    color: #808082;
    font-size: 16px;
}
.footer a:hover{
    text-decoration: underline;
}
#error-msg {
    color: red;
    position: absolute;
    top: 288px;
    left: 25px;
    font-size: 13px;
    font-weight: bold;
}