@charset "utf-8";
/* www.99cfw.com refactor styles - Based on city.99cfw.com index.css */

/* ================== Reset & Base ================== */
body {
    background: #f5f7fa;
    font-family: "Microsoft YaHei", "Heiti SC", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    font-size: 14px;
}

a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #3266A0;
    text-decoration: none;
}

img {
    border: none;
}

ul,
li,
p,
h1,
h2,
h3,
figure,
form {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ================== Layout Containers (1200px) ================== */
/* 注意：只针对顶层容器，不影响 .box1 .cont 等子元素 */
#content,
.nav-inner,
#top>.cont,
#smallnav>.cont,
.top>.cont,
.footer>.cont {
    width: 1200px !important;
    margin: 0 auto;
    position: relative;
}

/* ================== Small Nav ================== */
#smallnav {
    width: 100%;
    height: 35px;
    background: #3266A0;
    border-bottom: none;
}

#smallnav .cont {
    height: 35px;
    line-height: 35px;
    display: flex;
    justify-content: space-between;
}

#smallnav .cont .l,
#smallnav .cont .r {
    font-size: 13px;
    color: #fff;
}

#smallnav .cont a {
    color: #fff;
}

/* ================== Top Header ================== */
.top {
    width: 100%;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.top .cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.top .top-logo {
    margin-top: 10px;
}

/* ================== Navigation ================== */


/* ================== Breadcrumb ================== */
.mb {
    width: 1200px;
    margin: 15px auto;
    color: #666;
}

/* ================== Content Layout ================== */
.content {
    width: 1200px;
    margin: 0 auto 20px auto;
}

.contL {
    width: 250px;
    display: flex;
    flex-direction: column;
}

.contL .left-nav {
    flex: 1; /* 让左侧导航占满高度与右侧对齐 */
}

.contL .left-nav dl {
    height: 100%; /* 让dl占满left-nav高度 */
}

.contR {
    width: 930px;
    /* 使用flex让内容撑满 */
    display: flex;
    flex-direction: column;
}

/* 适配HTML结构：.contR > div > .box1 */
.contR > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contR .box1 {
    flex: 1; /* 让box1占满剩余空间，实现与左侧等高 */
    display: flex;
    flex-direction: column;
    margin-bottom: 0; /* 移除底部margin确保与左侧对齐 */
}

.contR .box1-body {
    flex: 1; /* 让内容区域撑满box1 */
}

/* ================== Box Styles ================== */
.box1 {
    background: #fff;
    border-radius: 4px;
    box-shadow: none;
    /* Removed shadow for cleaner look */
    border: 1px solid #eef2f7;
    /* Restored border */
    margin-bottom: 20px;
    overflow: hidden;
}

/* Removed hover effect */

.box1-header {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    background: #f9f9f9;
    /* Light gray background to separate header */
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    position: relative;
}

/* Modern Accent for Box Header - Keeping this */
.box1-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    bottom: 15px;
    width: 4px;
    background: #3266A0;
    border-radius: 0 2px 2px 0;
}

.box1-body {
    padding: 24px;
    line-height: 1.9;
    font-size: 15px;
    color: #444;
    letter-spacing: 0.3px;
    /* 移除固定高度，允许内容自适应撑开 */
}

/* ================== Flex Utility ================== */


/* ================== Search Bar ================== */


/* ================== Utility ================== */
.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.mr10 {
    margin-right: 10px;
}

.clear {
    clear: both;
}



/* ================== Page Layout Utility ================== */
.page-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* 让左右两栏等高对齐 */
}

/* ================== Left Navigation (About Page sidebar) ================== */
.left-nav dl {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    border: 1px solid #eef2f7;
    margin: 0;
}

.left-nav dt {
    font-size: 14px;
    font-weight: 600;
    color: #3266A0;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    position: relative;
    margin: 0;
}

.left-nav dt:not(:first-child) {
    margin-top: 0;
    border-top: 1px solid #eef2f7;
}

.left-nav dd {
    padding: 0;
    margin: 0;
}

.left-nav dd a {
    display: block;
    padding: 12px 20px;
    color: #555;
    font-size: 14px;
    transition: all 0.2s;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
}

.left-nav dd a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #3266A0;
    transform: scaleY(0);
    transition: transform 0.2s;
}

.left-nav dd a:hover {
    background: #f8fbff;
    color: #3266A0;
    padding-left: 25px;
}

.left-nav dd a:hover::before {
    transform: scaleY(1);
}

.left-nav dd:last-child a,
.left-nav dd.no-border a {
    border-bottom: none;
}

/* ================== Rules List (Help/Guize pages) ================== */
.rules-list dt {
    font-weight: bold;
    font-size: 16px;
    margin: 25px 0 15px;
    color: #333;
    border-left: 4px solid #3266A0;
    padding-left: 10px;
    line-height: 1;
}

.rules-list dd {
    margin-left: 0;
    line-height: 26px;
    color: #555;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}



/* ================== About Page Enhancements ================== */
/* 2025-12-25: 参考 city.99cfw.com/index.css 风格优化 */

/* 1. 盒子样式升级 - 与首页保持一致 */
.box1 {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.box1-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 2px solid #3266A0;
}

/* 移除旧的左侧竖线指示器 */
.box1-header::before {
    display: none;
}

/* box1 标题样式 - 2025-12-26优化h1字体大小 */
.box1-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 50px;
}

/* 2. 内容区块视觉优化 */
.box1-body p {
    margin-bottom: 18px;
    text-indent: 2em;
    color: #555;
    line-height: 2;
}

.box1-body p:last-child {
    margin-bottom: 0;
}

/* 3. 联系方式卡片样式 */
.contact-card {
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 15px;
    border-left: 4px solid #3266A0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:last-of-type {
    margin-bottom: 20px;
}

.contact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.1);
}

.contact-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.contact-card-content {
    color: #555;
    line-height: 1.8;
}

.contact-card-content img {
    max-width: 127px;
    border-radius: 4px;
    margin: 10px 0;
    display: block;
}

/* 联系卡片内文本块 - 语义化替代br标签 */
.contact-card-content .contact-desc,
.contact-card-content .contact-email,
.contact-card-content .contact-time {
    display: block;
}

.contact-note {
    text-align: center;
    color: #888;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px dashed #eee;
    margin-top: 10px;
    text-indent: 0;
}

/* 4. 表单元素统一样式 */
.about-form input[type="text"],
.about-form input[type="email"],
.about-form textarea {
    width: 100%;
    max-width: 400px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.about-form input:focus,
.about-form textarea:focus {
    border-color: #3266A0;
    box-shadow: 0 0 0 3px rgba(50, 102, 160, 0.1);
    outline: none;
}

.about-form textarea {
    min-height: 150px;
    resize: vertical;
}

.about-form label,
.about-form strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.about-form .btn-submit,
.about-form input[type="submit"] {
    background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 15px;
}

.about-form .btn-submit:hover,
.about-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(50, 102, 160, 0.3);
}

/* 5. 优势列表样式 */
.advantage-list {
    counter-reset: advantage;
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    position: relative;
    padding: 15px 15px 15px 50px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.advantage-list li:hover {
    background: #f0f5fa;
    transform: translateX(5px);
}

.advantage-list li::before {
    counter-increment: advantage;
    content: counter(advantage);
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #3266A0;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    font-weight: bold;
}

/* 6. QQ/微信联系图标优化 */
.contact-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    transition: background 0.2s;
}

.contact-icon:hover {
    background: #e8f0f8;
}

/* 7. 友情链接优化 */
.links a {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px;
    background: #f8fbff;
    border-radius: 4px;
    border: 1px solid #e8f0f8;
    transition: all 0.2s;
}

.links a:hover {
    background: #3266A0;
    color: #fff;
    border-color: #3266A0;
}

/* 友情链接-无边框样式 */
.links-plain a {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 8px;
    color: #3266A0;
    transition: color 0.2s;
}

.links-plain a:hover {
    color: #2557a0;
    text-decoration: underline;
}

/* 链接联系区块 */
.link-contact {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.link-contact p {
    margin-bottom: 10px;
    text-indent: 0;
}

/* 8. 左侧导航增强 */
.left-nav dl {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.left-nav dt {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-bottom: 2px solid #3266A0;
    position: relative;
}

.left-nav dd a {
    position: relative;
}

.left-nav dd a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #3266A0;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.left-nav dd a:hover::before {
    opacity: 1;
}

/* 9. 规则列表增强 */
.rules-list dt {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 20px;
}

.rules-list dd {
    transition: background 0.2s, transform 0.2s;
}

.rules-list dd:hover {
    background: #f0f5fa;
    transform: translateX(3px);
}

/* 规则列表 - 有序版本 */
.rules-list-ol {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    counter-reset: rule-counter;
}

.rules-list-ol li {
    counter-increment: rule-counter;
    position: relative;
    padding: 15px 15px 15px 45px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    line-height: 1.8;
    color: #555;
    transition: background 0.2s, transform 0.2s;
}

.rules-list-ol li::before {
    content: counter(rule-counter);
    position: absolute;
    left: 12px;
    top: 15px;
    width: 22px;
    height: 22px;
    background: #3266A0;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    font-weight: bold;
}

.rules-list-ol li:hover {
    background: #f0f5fa;
    transform: translateX(3px);
}

/* 内容区块二级标题 */
.box1-body h2 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    border-left: 4px solid #3266A0;
    padding-left: 12px;
    margin: 25px 0 15px;
    line-height: 1.4;
}

.box1-body h2:first-child {
    margin-top: 0;
}

/* 规则列表和FAQ列表中的H2样式 - 2025-12-28 */
/* 覆盖通用h2样式，使dt内的h2继承dt的样式 */
.rules-list dt h2,
.faq-list dt h2 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border-left: none;
    padding-left: 0;
    margin: 0;
    line-height: inherit;
}



/* 11. 页脚样式优化 - 2025-12-26 */
.footer {
    clear: both;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e7e7e7;
    padding: 35px 0;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.footer .cont {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* 页脚导航链接区 */
.footer .c1 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.footer .c1 a {
    display: inline-block;
    margin: 0 12px;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.footer .c1 a:hover {
    color: #3266A0;
}

.footer .c1 .sep {
    color: #ddd;
    font-size: 12px;
}

/* 页脚版权区 */
.footer .c2 {
    color: #999;
    font-size: 13px;
    line-height: 2;
}

.footer .c2 a {
    color: #888;
    transition: color 0.2s;
}

.footer .c2 a:hover {
    color: #3266A0;
}

/* telDel页面桌面端样式 */
.select-all-bar {
    display: none; /* 桌面端隐藏，移动端显示 */
}

.table-responsive {
    width: 100%;
}

/* 12. 移动端响应式适配 */
/* 2025-12-25: About页面移动端深度优化 */
@media (max-width: 768px) {

    /* ===== 顶层容器宽度覆盖 ===== */
    /* 覆盖桌面端的 width: 1200px !important */
    #content,
    .nav-inner,
    #top>.cont,
    #smallnav>.cont,
    .top>.cont,
    .footer>.cont {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* ===== smallnav 移动端优化 ===== */
    #smallnav {
        height: auto;
        min-height: 35px;
    }

    #smallnav .cont {
        height: auto;
        line-height: 1.4;
        flex-wrap: wrap;
        padding: 8px 15px;
        font-size: 12px;
    }

    #smallnav .cont .l,
    #smallnav .cont .r {
        font-size: 12px;
        text-align: center;
        width: 100%;
    }

    /* ===== 顶部区域优化 ===== */
    .top {
        height: auto;
        padding: 10px 0;
    }

    .top .cont {
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 15px;
    }

    .top .top-logo {
        margin-top: 0;
    }

    .top .top-logo img {
        width: 130px;
        height: auto;
    }

    .top .top-qrcode {
        display: none; /* 移动端隐藏二维码 */
    }

    .top .top-title {
        display: none; /* 移动端隐藏标题文字 */
    }

    /* ===== 面包屑优化 ===== */
    .mb {
        width: auto;
        padding: 10px 15px;
        margin: 10px 15px;
        box-sizing: border-box;
        font-size: 13px;
        background: #f9f9f9;
        border-radius: 4px;
    }

    /* ===== 整体布局 ===== */
    .content {
        width: auto;
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .content.page-row {
        flex-direction: column;
    }

    /* ===== 左侧导航 - 移动端默认折叠 ===== */
    .contL {
        width: 100%;
        margin-bottom: 10px;
    }

    .left-nav dl {
        display: block;
    }

    /* 隐藏分类标题（dt），只保留第一个作为折叠触发器 */
    .left-nav dt {
        display: none;
    }

    .left-nav dt:first-child {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 13px;
        padding: 10px 15px;
        background: #fff;
        color: #333;
        cursor: pointer;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
    }

    .left-nav dt:first-child::after {
        content: ' ▼ 展开导航';
        font-size: 12px;
        color: #999;
    }

    /* 默认隐藏所有导航链接 */
    .left-nav dd {
        display: none;
    }

    /* 展开状态 - 通过JS添加 .nav-expanded 类 */
    .left-nav.nav-expanded dt:first-child::after {
        content: ' ▲ 收起导航';
    }

    .left-nav.nav-expanded dt {
        display: block;
        padding: 8px 15px;
        font-size: 12px;
        background: #f5f5f5;
        border-radius: 0;
        color: #333;
    }

    .left-nav.nav-expanded dt:first-child {
        background: #f5f5f5;
        color: #333;
        border-radius: 6px 6px 0 0;
        font-weight: bold;
    }

    .left-nav.nav-expanded dd {
        display: block;
        border-bottom: 1px solid #eee;
    }

    .left-nav.nav-expanded dd a {
        padding: 10px 15px;
        font-size: 13px;
        text-align: left;
        min-height: 40px;
        display: flex;
        align-items: center;
    }

    .left-nav dd a::before {
        display: none;
    }

    .left-nav dd a:hover {
        padding-left: 15px;
    }

    .contR {
        width: 100%;
        padding: 0;
    }

    /* ===== 内容区域 ===== */
    .box1 {
        border-radius: 6px;
    }

    .box1-header {
        padding: 0 15px;
        height: 45px;
        line-height: 45px;
    }

    .box1-body {
        padding: 12px;
    }

    .box1-body p {
        text-indent: 1em;
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    /* ===== 联系信息卡片全宽 ===== */
    .contact-card {
        padding: 15px;
        margin-bottom: 12px;
        border-radius: 6px;
    }

    .contact-card-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .contact-card-content {
        font-size: 13px;
        line-height: 1.7;
    }

    .contact-card-content img {
        max-width: 100px;
    }

    .contact-note {
        font-size: 13px;
        padding: 12px 0;
    }

    /* ===== 优势列表窄屏适配 ===== */
    .advantage-list li {
        padding: 12px 12px 12px 40px;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.6;
    }

    .advantage-list li::before {
        left: 10px;
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 11px;
    }

    /* ===== 表单深度优化 ===== */
    .about-form input[type="text"],
    .about-form input[type="email"],
    .about-form input[type="tel"],
    .about-form textarea {
        max-width: 100%;
        width: 100% !important;
        min-height: 44px;
        font-size: 16px; /* 防止iOS自动缩放 */
        padding: 12px;
        box-sizing: border-box;
    }

    .about-form textarea {
        min-height: 120px;
    }

    .about-form label,
    .about-form strong {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .about-form .btn-submit,
    .about-form input[type="submit"],
    .about-form input[type="button"] {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
        padding: 12px 20px;
    }

    .about-form .form-row {
        margin-bottom: 15px;
    }

    /* ===== 帮助表格 ===== */
    .help-table {
        font-size: 13px;
    }

    .help-table td {
        padding: 8px;
    }

    /* ===== 规则列表优化 ===== */
    .rules-list dt {
        padding: 10px 12px;
        margin-top: 15px;
        font-size: 14px;
    }

    .rules-list dd {
        padding: 12px;
        font-size: 13px;
        line-height: 1.7;
    }

    /* ===== 友情链接 ===== */
    .links a {
        padding: 8px 12px;
        font-size: 13px;
        margin: 4px;
        min-height: 36px;
        display: inline-flex;
        align-items: center;
    }

    /* ===== FAQ列表优化 ===== */
    .faq-list dt {
        padding: 12px 15px;
        font-size: 14px;
    }

    .faq-list dd {
        padding: 12px 15px;
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    /* ===== 页脚优化 ===== */
    .footer {
        margin-top: 20px;
        padding: 25px 0;
    }

    .footer .cont {
        width: 100% !important;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .footer .c1 {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .footer .c1 a {
        display: inline-block;
        margin: 3px 8px;
        font-size: 13px;
    }

    .footer .c1 .sep {
        display: none;
    }

    .footer .c2 {
        font-size: 12px;
        line-height: 1.8;
    }

    /* ===== 通用触摸友好样式 ===== */
    button,
    input[type="submit"],
    input[type="button"],
    .btn-submit {
        min-height: 44px;
        cursor: pointer;
    }

    /* ===== telDel页面专项样式 ===== */
    /* 验证码区域响应式 */
    .verify-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .verify-inputs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        align-items: center;
    }

    /* 信息卡片列表（替代表格） */
    .info-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 12px;
        position: relative;
    }

    .info-card-checkbox {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 22px;
        height: 22px;
    }

    .info-card-title {
        font-size: 14px;
        color: #3266A0;
        line-height: 1.5;
        padding-right: 35px;
        margin-bottom: 8px;
    }

    .info-card-title a {
        color: #3266A0;
    }

    .info-card-date {
        font-size: 12px;
        color: #999;
    }

    /* 表格滚动容器 */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -12px;
        padding: 0 12px;
    }

    .table-responsive table {
        min-width: 400px;
    }

    /* 短信验证码区域 */
    .sms-verify-section {
        padding: 12px !important;
    }

    .sms-verify-section label {
        display: block;
        margin-bottom: 8px;
    }

    .sms-verify-section p {
        text-indent: 0 !important;
        margin-bottom: 10px !important;
    }

    .sms-verify-section input[type="text"] {
        width: 100% !important;
        margin-bottom: 10px;
        min-height: 44px;
        font-size: 16px;
    }

    .sms-verify-section input[type="button"],
    .sms-verify-section input[type="submit"] {
        width: 100%;
        min-height: 48px;
        font-size: 16px;
        margin-top: 5px;
    }

    /* 全选操作栏 */
    .select-all-bar {
        display: flex;
        align-items: center;
        padding: 12px;
        background: #f5f5f5;
        border-radius: 6px;
        margin-bottom: 12px;
        gap: 10px;
    }

    .select-all-bar input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }
}

/* ================== FAQ 列表样式 (help.asp) ================== */
/* 2025-12-25: 使用语义化的 dl/dt/dd 标签替代 table 布局 */
.faq-list {
    margin: 0;
    padding: 0;
}

.faq-list dt {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);

    margin-top: 15px;
    border-radius: 0 6px 0 0;
    position: relative;
}

.faq-list dt:first-child {
    margin-top: 0;
}

.faq-list dd {
    margin: 0;
    padding: 15px 18px 15px 22px;
    color: #555;
    line-height: 1.8;
    background: #f9f9f9;
    border-radius: 0 0 6px 0;
    margin-bottom: 10px;
    transition: background 0.2s, transform 0.2s;
}

.faq-list dd:hover {
    background: #f0f5fa;
    transform: translateX(3px);
}

.faq-list dd a {
    color: #3266A0;
    font-weight: 500;
}

.faq-list dd a:hover {
    text-decoration: underline;
}

/* ================== telDel 电话被冒用删除模块 ================== */
/* 2025-12-26: 从内联样式迁移到外部CSS */

/* 提示框 - 简洁设计 */
.alert-info {
	padding: 18px 20px;
	background: linear-gradient(135deg, #e8f4fd 0%, #f0f7ff 100%);
	border-radius: 8px;
	border-left: 4px solid #3266A0;
	margin-bottom: 25px;
}
.alert-title {
	display: block;
	font-size: 15px;
	color: #333;
	margin-bottom: 8px;
}
.alert-info p {
	margin: 0;
	text-indent: 0;
	color: #555;
	line-height: 1.7;
	font-size: 14px;
}

/* 表单区域 */
.teldel-form-wrapper {
	background: #fff;
	border: 1px solid #eef2f7;
	border-radius: 8px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.teldel-form-wrapper h2 {
	font-size: 18px;
	color: #333;
	margin: 0 0 10px;
	padding-left: 0;
	border-left: none;
}
.form-desc {
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
	text-indent: 0;
}

/* 表单组 */
.teldel-form .form-group {
	margin-bottom: 20px;
}
.teldel-form label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}
.teldel-form .form-control {
	width: 100%;
	max-width: 320px;
	height: 44px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 15px;
	transition: border-color 0.2s, box-shadow 0.2s;
	box-sizing: border-box;
}
.teldel-form .form-control:focus {
	border-color: #3266A0;
	box-shadow: 0 0 0 3px rgba(50, 102, 160, 0.1);
	outline: none;
}
.teldel-form .form-control.is-error {
	border-color: #e74c3c;
	box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* 验证码组 */
.verify-group {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.verify-input {
	width: 120px !important;
	max-width: 120px !important;
}
.verify-img-wrapper {
	display: flex;
	align-items: center;
	gap: 10px;
}
.verify-img-wrapper img {
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.verify-img-wrapper img:hover {
	opacity: 0.8;
}
.refresh-link {
	font-size: 13px;
	color: #3266A0;
	white-space: nowrap;
}

/* 提交按钮 */
.btn-submit-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #3266A0 0%, #2557a0 100%);
	color: #fff;
	border: none;
	padding: 0 30px;
	height: 46px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}
.btn-submit-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(50, 102, 160, 0.35);
}

/* 错误提示 */
.form-error {
	display: block;
	color: #e74c3c;
	font-size: 13px;
	margin-top: 6px;
	min-height: 18px;
}

/* 操作说明区域 */
.tips-section {
	background: #f9f9f9;
	border-radius: 8px;
	padding: 20px 25px;
}
.tips-section h3 {
	font-size: 16px;
	color: #333;
	margin: 0 0 15px;
	border-left: 4px solid #3266A0;
	padding-left: 10px;
}
.tips-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: step;
}
.tips-list li {
	counter-increment: step;
	position: relative;
	padding: 10px 0 10px 36px;
	color: #555;
	font-size: 14px;
	line-height: 1.6;
	border-bottom: 1px dashed #e5e5e5;
}
.tips-list li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.tips-list li::before {
	content: counter(step);
	position: absolute;
	left: 0;
	top: 10px;
	width: 22px;
	height: 22px;
	background: #3266A0;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: bold;
}

/* showTel.asp 查询结果页样式 */
.result-header {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
	border-radius: 8px;
	margin-bottom: 20px;
	border-left: 4px solid #4caf50;
}
.result-icon {
	width: 50px;
	height: 50px;
	background: #4caf50;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.result-icon i {
	color: #fff;
	font-size: 24px;
}
.result-info h3 {
	margin: 0 0 5px;
	font-size: 18px;
	color: #333;
}
.result-info p {
	margin: 0;
	color: #666;
	text-indent: 0;
}
.result-info strong {
	color: #3266A0;
}

/* 操作栏 */
.action-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 15px;
	background: #f5f7fa;
	border-radius: 6px;
	margin-bottom: 15px;
}
.select-controls {
	display: flex;
	align-items: center;
	gap: 20px;
}
.checkbox-label {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	font-size: 14px;
}
.btn-link {
	background: none;
	border: none;
	color: #3266A0;
	cursor: pointer;
	font-size: 14px;
	padding: 0;
}
.btn-link:hover {
	text-decoration: underline;
}
.selected-count {
	font-size: 14px;
	color: #666;
}
.selected-count span {
	color: #3266A0;
	font-weight: bold;
}

/* 信息列表 */
.info-list {
	border: 1px solid #eee;
	border-radius: 6px;
	overflow: hidden;
}
.info-item {
	display: flex;
	align-items: center;
	padding: 15px;
	border-bottom: 1px solid #f0f0f0;
	transition: background 0.2s;
}
.info-item:last-child {
	border-bottom: none;
}
.info-item:hover {
	background: #f9f9f9;
}

/* 自定义复选框 */
.checkbox-wrapper {
	position: relative;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	margin-right: 12px;
}
.checkbox-wrapper input {
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 1;
}
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #ddd;
	border-radius: 4px;
	transition: all 0.2s;
}
.checkbox-wrapper input:checked + .checkmark {
	background: #3266A0;
	border-color: #3266A0;
}
.checkbox-wrapper input:checked + .checkmark::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.info-content {
	flex: 1;
	min-width: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}
.info-title {
	color: #333;
	font-size: 14px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	flex: 1;
}
.info-title:hover {
	color: #3266A0;
}
.info-date {
	color: #999;
	font-size: 13px;
	flex-shrink: 0;
}

/* 短信验证区域 */
.sms-section {
	margin-top: 25px;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
}
.sms-section h4 {
	margin: 0 0 10px;
	font-size: 16px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
}
.sms-section h4 i {
	color: #3266A0;
}
.sms-desc {
	color: #666;
	font-size: 14px;
	margin-bottom: 15px;
	text-indent: 0;
}
.sms-form {
	margin-bottom: 20px;
}
.sms-input-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.sms-input {
	width: 120px;
	height: 44px;
	padding: 0 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 16px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.sms-input:focus {
	border-color: #3266A0;
	box-shadow: 0 0 0 3px rgba(50, 102, 160, 0.1);
	outline: none;
}
.sms-input.is-error {
	border-color: #e74c3c;
}
.btn-send {
	height: 44px;
	padding: 0 20px;
	background: #3b82f6;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s;
	white-space: nowrap;
}
.btn-send:hover {
	background: #2563eb;
}
.btn-send.is-disabled {
	background: #9ca3af;
	cursor: not-allowed;
}
.sms-tip {
	color: #999;
	font-size: 13px;
	margin-top: 8px;
	text-indent: 0;
}

/* 删除按钮 */
.btn-delete {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 46px;
	padding: 0 30px;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
}
.btn-delete:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
}

/* 无结果 */
.no-result {
	text-align: center;
	padding: 50px 20px;
}
.no-result-icon {
	width: 80px;
	height: 80px;
	background: #f5f5f5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}
.no-result-icon i {
	font-size: 40px;
	color: #ccc;
}
.no-result p {
	color: #999;
	font-size: 16px;
	margin-bottom: 20px;
	text-indent: 0;
}
.btn-back {
	display: inline-block;
	padding: 10px 25px;
	background: #3266A0;
	color: #fff;
	border-radius: 6px;
	font-size: 14px;
}
.btn-back:hover {
	background: #2557a0;
	color: #fff;
}

/* 温馨提示框 */
.tips-box {
	margin-top: 25px;
	padding: 15px 20px;
	background: #fffbeb;
	border-radius: 8px;
	border-left: 4px solid #f59e0b;
}
.tips-box h4 {
	margin: 0 0 10px;
	font-size: 15px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
}
.tips-box h4 i {
	color: #f59e0b;
}
.tips-box ul {
	margin: 0;
	padding-left: 20px;
}
.tips-box li {
	color: #666;
	font-size: 14px;
	line-height: 1.8;
}

/* telDel 移动端适配 */
@media (max-width: 768px) {
	.alert-info {
		padding: 15px;
	}
	.teldel-form-wrapper {
		padding: 20px 15px;
	}
	.teldel-form .form-control {
		max-width: 100%;
	}
	.verify-group {
		flex-direction: column;
		align-items: flex-start;
	}
	.verify-input {
		width: 100% !important;
		max-width: 100% !important;
	}
	.verify-img-wrapper {
		width: 100%;
		justify-content: space-between;
	}
	.btn-submit-primary {
		width: 100%;
	}
	.tips-section {
		padding: 15px;
	}
	.result-header {
		flex-direction: column;
		text-align: center;
	}
	.action-bar {
		flex-direction: column;
		gap: 10px;
	}
	.info-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	.info-title {
		white-space: normal;
	}
	.sms-input-group {
		flex-direction: column;
	}
	.sms-input {
		width: 100%;
	}
	.btn-send {
		width: 100%;
	}
	.btn-delete {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================
   提取内联样式 - 2025-12-26
   将 about 目录 ASP 文件中的内联 style 转为 CSS 类
============================================ */

/* 顶部标题样式 (top.asp line 28) */
.top-title {
	font-size: 24px;
	color: #333;
	margin-left: 20px;
}

/* 新闻详情页样式 (news_cont.asp) */
.news-detail-title {
	font-size: 20px;
	margin: 15px 0;
	text-align: left;
}
.news-meta-info {
	color: #999;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}
.news-content {
	line-height: 24px;
	font-size: 14px;
}
.news-nav {
	margin: 20px 0;
	padding: 15px 0;
	border-top: 1px dashed #ddd;
	border-bottom: 1px dashed #ddd;
}
.news-recommend {
	margin-top: 20px;
}
.news-recommend h2 {
	font-size: 14px;
	margin-bottom: 10px;
}
.news-recommend ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.news-recommend ul li {
	line-height: 28px;
}

/* 表单控件宽度 (advice.asp) */
.form-control-wide {
	width: 100%;
	max-width: 400px;
}
textarea.form-control-wide {
	max-width: 500px;
}
.form-row {
	margin-bottom: 20px;
}

/* 带间距的 FAQ 列表 (advice.asp) */
.faq-list-spaced {
	margin-top: 25px;
}

/* 二维码图片样式 (link.asp, guanggao.asp) */
.qrcode-img {
	max-width: 127px;
	border-radius: 4px;
	margin: 10px 0;
}

/* 新闻列表 DIV 布局样式 (news_*.asp) - 2025-12-26 */
.news-list-wrapper {
	margin: 0;
	padding: 0;
}
.news-list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	transition: background-color 0.2s;
}
.news-list-item:hover {
	background-color: #f8fbff;
	padding-left: 10px;
	margin-left: -10px;
	padding-right: 10px;
	margin-right: -10px;
}
.news-list-item:last-child {
	border-bottom: none;
}
.news-list-item a {
	flex: 1;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-right: 15px;
}
.news-list-item a:hover {
	color: #3266A0;
}
.news-list-item .news-date {
	flex-shrink: 0;
	color: #999;
	font-size: 13px;
	width: 90px;
	text-align: right;
}
.news-list-empty {
	text-align: center;
	color: #999;
	padding: 40px 0;
}

/* 分页样式调整 */
.news-pagination {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
	text-align: center;
}
.news-pagination ul {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.news-pagination ul li {
	display: inline;
	margin: 0 3px;
}
.news-pagination a {
	font-size: 14px;
	color: #555;
	border: 1px solid #ddd;
	padding: 6px 12px;
	background: #fff;
	border-radius: 4px;
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s;
}
.news-pagination a:hover {
	background: #f5f5f5;
	color: #3266A0;
	border-color: #3266A0;
}
/* 当前页样式 - font 标签 */
.news-pagination font {
	font-size: 14px;
	color: #fff;
	background: #3266A0;
	padding: 6px 12px;
	border: 1px solid #3266A0;
	border-radius: 4px;
	font-weight: normal;
	display: inline-block;
}
/* 总记录数等非链接文字 */
.news-pagination .n {
	font-size: 13px;
	color: #999;
	border: none;
	background: transparent;
	padding: 0 5px;
}