/*
Theme Name: 奕公子政府官网
Theme URI: https://www.aiyigongzi.com
Description: 政府官网风格企业主题，深蓝导航+白色主体+最新动态卡片布局
Author: 奕公子
Author URI: https://www.aiyigongzi.com
Version: 1.0.0
License: GNU General Public License v2 or later
Tags: government-style, enterprise, business, blue
Text Domain: yigongzi-gov
*/

* { box-sizing: border-box; margin: 0; padding: 0; }

html { height: 100%; overflow-y: scroll; width: 100%; overflow-x: hidden; }
body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #f5f7fa;
    color: #333;
    line-height: 1.8;
}

a { color: #0066cc; text-decoration: none; }
a:hover { color: #004080; }
img { max-width: 100%; height: auto; }

/* ===== 顶部导航 ===== */
.site-header {
    background: linear-gradient(90deg, #003366 0%, #0056b3 100%);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.site-logo {
    color: #ffcc00;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.site-logo:hover { color: #ffd633; }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
    flex-wrap: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.main-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 24px 0;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
    color: #ffcc00;
    border-bottom-color: #ffcc00;
}

/* ===== Hero + 最新动态卡片 ===== */
.hero-section {
    background: #f5f7fa;
    padding: 25px 0;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 左侧大图Banner */
.hero-left {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.15);
}

.hero-banner-link { text-decoration: none; display: block; height: 100%; }

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 380px;
    background: linear-gradient(135deg, #002244 0%, #004080 35%, #0066cc 70%, #0099ff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* 斜角装饰 - 右下角切角 */
.hero-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #f5f7fa;
    clip-path: polygon(100% 100%, 0 100%, 100% 0);
    z-index: 2;
}

/* 光效渐变 - 左上大光晕 */
.hero-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.4) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    from { transform: scale(1) translate(0, 0); opacity: 0.8; }
    to { transform: scale(1.1) translate(20px, -10px); opacity: 1; }
}

/* 网格线装饰背景 */
.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* 装饰圆环 */
.hero-banner-content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -40px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 204, 0, 0.2);
    border-radius: 50%;
    z-index: -1;
}

.hero-banner-content::after {
    content: '';
    position: absolute;
    top: -40px;
    right: 0px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    padding: 50px 55px;
    color: #fff;
    width: 100%;
}

.hero-banner-tag {
    display: inline-block;
    background: rgba(255,204,0,0.15);
    color: #ffcc00;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,204,0,0.3);
}

.hero-main-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-sub-title {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: #ffcc00;
    color: #003366 !important;
}

.hero-btn-primary:hover {
    background: #ffd633;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,204,0,0.3);
}

.hero-btn-outline {
    background: transparent;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.hero-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #ffcc00;
    color: #ffcc00 !important;
}

/* 右侧最新动态卡片 */
.hero-right { display: flex; flex-direction: column; width: 100%; min-width: 0; overflow: hidden; }

.news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-header {
    background: linear-gradient(90deg, #003366 0%, #0056b3 100%);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-card-title {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-left: 12px;
    position: relative;
}

.news-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 16px;
    background: #ffcc00;
}

.news-card-more {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.news-card-more:hover { color: #ffcc00; }

.news-card-body { padding: 6px 20px 12px; flex: 1; background: #fff; }
.news-list { list-style: none; }

/* 通知公告自动滚动 */
.news-scroll-wrap {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.news-list {
    list-style: none;
    animation: newsScroll 25s linear infinite;
}

.news-list:hover {
    animation-play-state: paused;
}

@keyframes newsScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.news-item {
    border-bottom: 1px dashed #e8e8e8;
    transition: background 0.2s ease;
}

.news-item:last-child { border-bottom: none; }
.news-item:hover { background: #f5faff; }

.news-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    gap: 15px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.news-item-title {
    font-size: 14px;
    color: #333;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.news-dot {
    width: 4px;
    height: 4px;
    background: #0056b3;
    border-radius: 50%;
    flex-shrink: 0;
}

.news-item:hover .news-item-title { color: #0066cc; }
.news-item-date { font-size: 12px; color: #999; flex-shrink: 0; }

/* ===== 通用区块 ===== */
.section-white { background: #fff; padding: 60px 0; }
.section-gray { background: #f5f7fa; padding: 60px 0; }

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ffcc00;
}

.section-title p {
    color: #666;
    font-size: 15px;
    margin-top: 20px;
}

/* ===== 关于我们 ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text h3 span { color: #0066cc; }
.about-text p { color: #666; margin-bottom: 15px; line-height: 1.9; }

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.about-feature-item { text-align: center; flex: 1; }
.about-feature-item .number {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    display: block;
}
.about-feature-item .label {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.about-image-box {
    width: 100%;
    min-height: 320px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #003366;
    padding: 20px;
}

.about-avatar-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}
.about-avatar {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0 8px 30px rgba(0,51,102,0.18);
    margin-top: 10px;
    margin-left: 10px;
}
.about-avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #0066cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: avatarRing 8s linear infinite;
}
@keyframes avatarRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-avatar-placeholder {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    border: 4px solid #cce0ff;
    margin: 10px 0 0 10px;
    position: relative;
    z-index: 2;
}

.about-image-box .text {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    letter-spacing: 1px;
    margin-top: 18px;
}
.about-image-box .text-sub {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    letter-spacing: 0;
}

/* ===== 业务范围 ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,51,102,0.12);
    border-color: #0056b3;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #003366;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffcc00;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon { background: #0056b3; }
.service-card h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-card .more-link {
    color: #0066cc;
    font-size: 14px;
    font-weight: 500;
}

/* ===== 联系我们 ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 26px;
    color: #003366;
    margin-bottom: 18px;
    font-weight: 700;
}

.contact-info > p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eee;
}

.contact-list li:last-child { border-bottom: none; }

.contact-icon {
    width: 42px;
    height: 42px;
    background: #003366;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc00;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 13px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-text p {
    color: #003366;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.contact-form-box {
    background: #fff;
    padding: 35px;
    border-radius: 4px;
    border: 1px solid #e8e8e8;
}

.contact-form-box h3 {
    color: #003366;
    margin-bottom: 20px;
    font-size: 22px;
}

/* ===== 内页 Banner ===== */
/* ===== 页面Banner ===== */
.page-banner {
    background: linear-gradient(135deg, #002147 0%, #003366 40%, #0056b3 100%);
    padding: 60px 0 50px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,204,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,120,200,0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.page-banner .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.page-banner .breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.page-banner .breadcrumb a:hover { color: #ffcc00; }

/* ===== 内页内容 ===== */
.page-content-section {
    background: #fff;
    padding: 50px 0 60px;
}

.page-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.page-content-wrapper h2 {
    color: #003366;
    font-size: 24px;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ffcc00;
    display: inline-block;
}

.page-content-wrapper h3 {
    color: #003366;
    font-size: 19px;
    margin: 25px 0 12px;
}

.page-content-wrapper p {
    color: #444;
    margin-bottom: 16px;
    line-height: 2;
}

.page-content-wrapper ul, .page-content-wrapper ol {
    margin: 15px 0 15px 25px;
}

.page-content-wrapper li { margin-bottom: 8px; color: #444; }

/* ===== 文章列表页 ===== */
.archive-section {
    background: #f5f7fa;
    padding: 40px 0 60px;
}

.archive-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 30px;
}

.archive-main {
    flex: 1;
    min-width: 0;
}

.archive-sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* 置顶推荐 */
.featured-post {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #e0e5eb;
    box-shadow: 0 4px 12px rgba(0,51,102,0.08);
    transition: all 0.3s ease;
}

.featured-post:hover {
    box-shadow: 0 8px 24px rgba(0,51,102,0.12);
    transform: translateY(-3px);
}

.featured-post-link {
    display: flex;
    text-decoration: none;
    color: inherit;
}

.featured-thumb {
    width: 45%;
    min-height: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-post:hover .featured-thumb img { transform: scale(1.08); }

.featured-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #002147 0%, #0056b3 50%, #007bcc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.featured-icon { font-size: 48px; }

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffcc00;
    color: #003366;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
}

.featured-content {
    flex: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tag {
    display: inline-block;
    background: linear-gradient(135deg, #003366, #0056b3);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 12px;
    width: fit-content;
}

.featured-title {
    font-size: 22px;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.featured-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

.read-more-btn {
    color: #0066cc;
    font-weight: 500;
}

/* 筛选栏 */
.archive-filter-bar {
    background: #fff;
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e5eb;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tabs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-label {
    color: #666;
    font-size: 14px;
    margin-right: 5px;
}

.filter-tab {
    padding: 6px 14px;
    font-size: 13px;
    color: #555;
    background: #f5f7fa;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-tab:hover { background: #e8f0ff; color: #0066cc; }

.filter-tab.active {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: #fff;
}

.filter-sort {
    font-size: 13px;
    color: #999;
}

/* 政府官网风格文章列表 */
.news-list-wrap {
    background: #fff;
    border: 1px solid #e0e5eb;
    border-radius: 4px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.news-list-wrap .news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: none;
}

.news-list-wrap .news-item {
    animation: none;
}

.news-item {
    border-bottom: 1px dashed #e0e5eb;
    transition: background 0.2s;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item:hover {
    background: #f5f8fc;
}

.news-link {
    display: flex;
    align-items: center;
    padding: 14px 8px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.news-link:hover {
    color: #0056b3;
}

.news-dot {
    width: 4px;
    height: 4px;
    background: #0056b3;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.news-title {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-date {
    color: #999;
    font-size: 13px;
    margin-left: 20px;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

/* 分页 */
.pagination-area {
    text-align: center;
    margin-top: 10px;
}

.pagination-area .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    margin: 0 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
    font-weight: 500;
}

.pagination-area .page-numbers:hover {
    border-color: #0056b3;
    color: #0066cc;
    background: #f0f7ff;
}

.pagination-area .page-numbers.current {
    background: linear-gradient(135deg, #003366, #0056b3);
    color: #fff;
    border-color: #003366;
}

/* ===== 侧边栏 ===== */
.sidebar-widget {
    background: #fff;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e0e5eb;
    overflow: hidden;
}

.widget-title {
    font-size: 16px;
    color: #fff;
    padding: 14px 18px;
    margin: 0;
    background: linear-gradient(135deg, #003366, #0056b3);
    font-weight: 600;
    position: relative;
}

.widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: #ffcc00;
    border-radius: 0 2px 2px 0;
}

/* 搜索框 */
.widget-search {
    padding: 15px;
    display: flex;
    gap: 8px;
}

.widget-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.widget-search input:focus { border-color: #0066cc; }

.widget-search button {
    width: 42px;
    border: none;
    background: linear-gradient(135deg, #003366, #0056b3);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s;
}

.widget-search button:hover { opacity: 0.9; }

/* 热门文章 */
.hot-post-list { padding: 5px 0; }

.hot-post-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 18px;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s;
}

.hot-post-item:last-child { border-bottom: none; }

.hot-post-item:hover { background: #f8fafd; }

.hot-rank {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 1px;
}

.rank-1 { background: linear-gradient(135deg, #002147, #003366); color: #ffcc00; }
.rank-2 { background: linear-gradient(135deg, #003366, #0056b3); color: #fff; }
.rank-3 { background: linear-gradient(135deg, #0056b3, #0077cc); color: #fff; }
.rank-4, .rank-5, .rank-6 { background: #e8eef5; color: #5577aa; }

.hot-title {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-post-item:hover .hot-title { color: #0066cc; }

/* 分类列表 */
.widget-categories {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.widget-categories li {
    border-bottom: 1px solid #f5f5f5;
}

.widget-categories li:last-child { border-bottom: none; }

.widget-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    transition: all 0.2s;
}

.widget-categories a:hover {
    background: #f8fafd;
    color: #0066cc;
    padding-left: 22px;
}

.cat-count {
    background: #f0f0f0;
    color: #999;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
}

.widget-categories a:hover .cat-count { background: #e0edff; color: #0066cc; }

/* 联系小卡片 */
.contact-widget {
    border: none;
    background: linear-gradient(135deg, #003366 0%, #0056b3 100%);
}

.contact-widget-inner {
    padding: 25px 20px;
    text-align: center;
    color: #fff;
}

.contact-widget-inner h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-widget-inner p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
}

.contact-btn {
    display: inline-block;
    background: #ffcc00;
    color: #003366 !important;
    padding: 10px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255,204,0,0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,204,0,0.4);
    background: #ffd633;
}

/* ===== 文章详情 ===== */
.single-section {
    background: #fff;
    padding: 50px 0 60px;
}

.single-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.single-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.single-header h1 {
    font-size: 30px;
    color: #003366;
    line-height: 1.4;
    margin-bottom: 18px;
}

.single-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    color: #999;
}

.single-cover {
    margin-top: 25px;
    text-align: center;
}

.single-cover img {
    max-width: 100%;
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.single-content {
    font-size: 16px;
    line-height: 2;
    color: #444;
}

.single-content h2, .single-content h3, .single-content h4 {
    color: #003366;
    margin: 25px 0 12px;
}

.single-content p { margin-bottom: 18px; }

.single-content img {
    border-radius: 4px;
    margin: 18px 0;
    max-width: 100%;
}

.single-content blockquote {
    border-left: 4px solid #0056b3;
    padding: 12px 22px;
    margin: 22px 0;
    background: #f5faff;
    color: #555;
    font-style: italic;
}

/* ===== 页脚 ===== */
.site-footer {
    background: #003366;
    color: rgba(255,255,255,0.75);
    padding: 45px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.footer-col h4 {
    color: #ffcc00;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-brand .logo {
    font-size: 22px;
    color: #ffcc00;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.75);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links li a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links li a:hover {
    color: #ffcc00;
    padding-left: 3px;
}

.footer-contact { list-style: none; }

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact li .icon { color: #ffcc00; flex-shrink: 0; }

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* ===== 业务范围页 ===== */
.services-intro {
    background: #fff;
    padding: 50px 0 40px;
    border-bottom: 1px solid #e8eef5;
}

.services-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.intro-left { flex: 1.2; }

.section-main-title {
    font-size: 28px;
    color: #003366;
    line-height: 1.5;
    margin: 0 0 15px;
    font-weight: 700;
}

.intro-slogan {
    font-size: 17px;
    color: #0066cc;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
    padding-left: 15px;
    border-left: 4px solid #ffcc00;
}

.intro-right {
    flex: 1;
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.services-main {
    background: #f5f7fa;
    padding: 50px 0 60px;
}

.services-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 26px;
    color: #003366;
    margin: 0 0 10px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
}

.section-subtitle {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.core-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.core-service-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e5eb;
    box-shadow: 0 4px 12px rgba(0,51,102,0.06);
    transition: all 0.3s ease;
}

.core-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,51,102,0.12);
    border-color: #0056b3;
}

.service-icon-wrap {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.icon-blue { background: linear-gradient(135deg, #003366 0%, #0056b3 100%); }
.icon-gold { background: linear-gradient(135deg, #cc9900 0%, #ffcc00 100%); }
.icon-dark { background: linear-gradient(135deg, #002147 0%, #003366 100%); }

.service-icon {
    font-size: 56px;
    display: block;
}

.service-content {
    flex: 1;
    padding: 28px 35px;
}

.service-tag {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    background: #e0edff;
    color: #0056b3;
    margin-bottom: 12px;
}

.tag-gold { background: #fff3cd; color: #856404; }
.tag-dark { background: #d6e4f0; color: #003366; }

.service-title {
    font-size: 22px;
    color: #003366;
    margin: 0 0 12px;
    font-weight: 700;
}

.service-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.service-points {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 15px;
}

.service-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #444;
}

.point-icon {
    color: #007bcc;
    font-weight: 700;
    font-size: 13px;
}

.service-btn {
    display: inline-block;
    padding: 9px 24px;
    background: linear-gradient(135deg, #003366, #0056b3);
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,51,102,0.3);
}

/* 服务行业覆盖 */
.services-industries {
    background: #fff;
    padding: 50px 0 60px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 20px;
}

.industry-item {
    background: #f8fafd;
    border: 1px solid #e0e8f0;
    border-radius: 6px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    background: #e8f0ff;
    border-color: #0066cc;
    transform: translateY(-3px);
}

.industry-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.industry-name {
    font-size: 15px;
    color: #003366;
    font-weight: 500;
}

.industry-more {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin: 0;
}

/* 我们的优势 */
.services-advantage {
    background: #f5f7fa;
    padding: 50px 0 60px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.advantage-item {
    background: #fff;
    border-radius: 6px;
    padding: 30px;
    border: 1px solid #e0e5eb;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: #0056b3;
    box-shadow: 0 8px 24px rgba(0,51,102,0.1);
    transform: translateY(-3px);
}

.advantage-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.advantage-item h4 {
    font-size: 18px;
    color: #003366;
    margin: 0 0 10px;
    font-weight: 600;
}

.advantage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
}

/* CTA底部 */
.services-cta {
    background: linear-gradient(135deg, #002147 0%, #003366 50%, #0056b3 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 40px;
    color: #fff;
}

.cta-left { flex: 1.5; }

.cta-left h2 {
    font-size: 26px;
    margin: 0 0 10px;
    color: #fff;
    font-weight: 700;
}

.cta-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin: 0;
}

.cta-right {
    flex-shrink: 0;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffcc00;
    color: #003366 !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(255,204,0,0.3);
}

.cta-btn:hover {
    background: #ffd633;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255,204,0,0.4);
}

.cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin: 10px 0 0;
}

/* ===== 关于我们页 ===== */
.about-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 公司介绍主视觉 */
.company-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}
.company-hero-info .section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #003366;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 18px;
}
.company-hero-slogan {
    font-size: 18px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 14px;
    border-left: 4px solid #ffcc00;
}
.company-hero-visual {
    display: flex;
    justify-content: center;
}
.company-hero-card {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 12px;
    padding: 32px 28px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,51,102,0.2);
    position: relative;
    overflow: hidden;
}
.company-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 60%);
    animation: cardGlow 4s ease-in-out infinite;
}
@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(-10%, 10%); opacity: 1; }
}
.hero-card-icon {
    font-size: 48px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
.company-hero-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.hero-card-divider {
    height: 2px;
    background: linear-gradient(to right, #ffcc00, transparent);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}
.hero-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    position: relative;
    z-index: 2;
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-label {
    color: rgba(255,255,255,0.65);
}
.hero-card-value {
    color: #fff;
    font-weight: 500;
}

/* 创始人区 */
.about-founder {
    background: #fff;
    padding: 70px 0 60px;
}
.founder-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: center;
}
.founder-avatar-box {
    text-align: center;
}
.founder-avatar-wrap {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 24px;
}
.founder-avatar {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0 8px 30px rgba(0,51,102,0.15);
    margin-top: 10px;
    margin-left: 10px;
}
.founder-avatar-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #0066cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: ringRotate 8s linear infinite;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.founder-name {
    font-size: 26px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}
.founder-title {
    font-size: 15px;
    color: #666;
    margin-bottom: 14px;
}
.founder-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #e8f2ff, #d4e7ff);
    color: #0066cc;
    font-size: 13px;
    border-radius: 20px;
    font-weight: 500;
}
.founder-info .section-tag {
    display: inline-block;
    padding: 4px 14px;
    background: #003366;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    margin-bottom: 18px;
}
.founder-main-title {
    font-size: 30px;
    color: #003366;
    margin-bottom: 22px;
    line-height: 1.4;
    font-weight: 700;
}
.founder-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.9;
}
.founder-desc strong {
    color: #003366;
    font-weight: 600;
}
.founder-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}
.stat-item {
    text-align: left;
}
.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    line-height: 1.2;
}
.stat-label {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* 公司简介 */
.about-company {
    background: #f5f7fa;
    padding: 65px 0;
}
.company-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}
.company-intro-text p {
    font-size: 15px;
    color: #555;
    line-height: 2;
    margin-bottom: 16px;
}
.company-intro-text strong {
    color: #003366;
    font-weight: 600;
}
.company-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-content: start;
}
.info-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 12px rgba(0,51,102,0.06);
    transition: all .3s;
}
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,51,102,0.1);
}
.info-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.info-card h4 {
    font-size: 15px;
    color: #003366;
    margin-bottom: 6px;
    font-weight: 600;
}
.info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 业务范围卡片 */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.about-service-card {
    background: #fff;
    padding: 32px 26px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.06);
    transition: all .3s;
    border-top: 3px solid #0066cc;
    display: block;
    color: inherit;
}
.about-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,51,102,0.12);
}
.about-service-icon {
    font-size: 42px;
    margin-bottom: 14px;
}
.about-service-tag {
    display: inline-block;
    padding: 3px 12px;
    background: #e6f0ff;
    color: #0066cc;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-weight: 500;
}
.about-service-tag.tag-gold {
    background: #fff3d4;
    color: #b38600;
}
.about-service-tag.tag-dark {
    background: #e6e6ff;
    color: #5555aa;
}
.about-service-card h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 600;
}
.about-service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-service-more {
    color: #0066cc;
    font-size: 14px;
    font-weight: 500;
}
.about-service-card:hover .about-service-more {
    color: #004080;
}

/* 服务行业 */
.about-industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.about-industry-item {
    background: #fff;
    padding: 24px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,51,102,0.05);
    transition: all .3s;
    border-left: 3px solid #0066cc;
}
.about-industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,51,102,0.1);
    background: #f0f6ff;
}
.about-industry-item .industry-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}
.about-industry-item .industry-name {
    font-size: 14px;
    color: #003366;
    font-weight: 500;
}
.industry-more-text {
    text-align: center;
    color: #999;
    font-size: 13px;
    margin-top: 20px;
}

/* 核心价值观 */
.about-values {
    background: #f5f7fa;
    padding: 65px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.value-item {
    background: #fff;
    padding: 32px 24px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,51,102,0.06);
    transition: all .3s;
    border-top: 3px solid transparent;
}
.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,51,102,0.12);
    border-top-color: #0066cc;
}
.value-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.value-item h4 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 600;
}
.value-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* 创始人介绍（底部弱化版） */
.about-advantage {
    background: #fff;
    padding: 65px 0;
}
.founder-mini-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}
.founder-mini-avatar-box {
    text-align: center;
}
.founder-mini-avatar-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
}
.founder-mini-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 6px 20px rgba(0,51,102,0.15);
    margin-top: 10px;
    margin-left: 10px;
}
.founder-mini-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #0066cc;
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: miniRing 8s linear infinite;
}
@keyframes miniRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.founder-mini-name {
    font-size: 18px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 4px;
}
.founder-mini-title {
    font-size: 13px;
    color: #888;
}
.founder-mini-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}
.founder-mini-info strong {
    color: #003366;
    font-weight: 600;
}
.founder-mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.founder-tag {
    padding: 5px 14px;
    background: #eef5ff;
    color: #0066cc;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #d4e4ff;
}

/* CTA */
.about-cta {
    background: #f5f7fa;
    padding: 60px 0;
}
.about-cta .cta-box {
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 12px;
    padding: 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    color: #fff;
}
.about-cta .cta-left h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #fff;
}
.about-cta .cta-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin: 0;
}
.about-cta .cta-right { text-align: right; flex-shrink: 0; }
.about-cta .cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #ffcc00;
    color: #003366;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    transition: all .3s;
}
.about-cta .cta-btn:hover {
    background: #ffd633;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,204,0,0.3);
}
.about-cta .cta-note {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
    .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .founder-avatar-wrap { width: 220px; height: 220px; }
    .founder-avatar { width: 200px; height: 200px; }
    .founder-avatar-ring { width: 220px; height: 220px; }
    .founder-main-title { font-size: 24px; }
    .company-intro { grid-template-columns: 1fr; gap: 30px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

    .archive-container { flex-direction: column; padding: 0 20px; }
    .archive-sidebar { width: 100%; }
    .featured-post-link { flex-direction: column; }
    .featured-thumb { width: 100%; min-height: 200px; }

    /* 业务页 */
    .services-intro-inner { flex-direction: column; gap: 20px; padding: 0 30px; }
    .services-container { padding: 0 30px; }
    .core-service-card { flex-direction: column; }
    .service-icon-wrap { width: 100%; height: 100px; flex-direction: row; }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-box { flex-direction: column; text-align: center; gap: 25px; }
}

/* ===== 联系我们页 ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-block {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 4px;
    overflow: hidden;
}

.contact-block-header {
    background: linear-gradient(90deg, #003366 0%, #0056b3 100%);
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-block-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
}

.header-line {
    width: 50px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
}

.contact-block-body {
    padding: 30px;
}

.contact-intro {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e8edf2;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f0f2f5;
    transition: background 0.3s;
}

.contact-row:last-child {
    border-bottom: none;
}

.contact-row:hover {
    background: #f8fafc;
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
}

.contact-row-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    flex-shrink: 0;
}

.contact-row-icon svg {
    width: 22px;
    height: 22px;
}

.contact-row-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.contact-row-label {
    font-size: 13px;
    color: #999;
    font-weight: 400;
}

.contact-row-value {
    font-size: 16px;
    color: #003366;
    font-weight: 600;
}

/* 服务标签 */
.service-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.svc-tag {
    padding: 8px 20px;
    background: #f0f6ff;
    color: #0056b3;
    border: 1px solid #cce0ff;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.service-area {
    padding-top: 18px;
    border-top: 1px dashed #e8edf2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-label {
    font-size: 14px;
    color: #666;
}

.area-value {
    font-size: 14px;
    color: #003366;
    font-weight: 600;
    letter-spacing: 1px;
}

/* 温馨提示 */
.contact-notice {
    display: flex;
    gap: 15px;
    padding: 22px 25px;
    background: linear-gradient(135deg, #fff8e6, #fff3d6);
    border-left: 4px solid #ffa726;
    border-radius: 4px;
}

.notice-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.notice-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #e65100;
    margin-bottom: 6px;
}

.notice-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.notice-content strong {
    color: #e65100;
}

/* 右侧边栏 */
.contact-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qrcode-wrap {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 4px;
    overflow: hidden;
}

.qrcode-title-bar {
    background: linear-gradient(90deg, #003366, #0056b3);
    padding: 14px 20px;
    text-align: center;
}

.qrcode-title-bar h3 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: 2px;
}

.qrcode-body {
    padding: 25px 20px;
    text-align: center;
}

.qrcode-pic {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 15px;
}

.qrcode-desc {
    font-size: 15px;
    color: #003366;
    font-weight: 600;
    margin-bottom: 5px;
}

.qrcode-sub {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.contact-mini-card {
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 4px;
    padding: 20px;
}

.mini-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.mini-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.mini-btn:last-child {
    margin-bottom: 0;
}

.mini-btn-primary {
    background: linear-gradient(90deg, #0056b3, #007bff);
    color: #fff;
}

.mini-btn-primary:hover {
    background: linear-gradient(90deg, #004494, #0069d9);
    transform: translateY(-1px);
    color: #fff;
}

.mini-btn-outline {
    border: 1px solid #0056b3;
    color: #0056b3;
    background: #fff;
}

.mini-btn-outline:hover {
    background: #f0f6ff;
    color: #0056b3;
}

@media (max-width: 768px) {
    .contact-layout { grid-template-columns: 1fr; gap: 20px; }
    .contact-sidebar { position: static; }
    .contact-block-body { padding: 20px; }
    .qrcode-pic { width: 180px; height: 180px; }
    .contact-row-icon { width: 42px; height: 42px; }
    .contact-row-icon svg { width: 20px; height: 20px; }
    .contact-row-value { font-size: 15px; }

    .header-inner { padding: 0 20px; height: 60px; }
    .service-title { font-size: 19px; }
    .service-points { grid-template-columns: 1fr; }
    .service-icon-wrap { height: 80px; }
    .service-icon { font-size: 42px; }

    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .industry-item { padding: 18px 10px; }
    .industry-icon { font-size: 28px; }
    .industry-name { font-size: 13px; }

    .advantage-grid { grid-template-columns: 1fr; gap: 15px; }
    .advantage-item { padding: 22px; }

    .services-cta { padding: 35px 0; }
    .cta-left h2 { font-size: 22px; }
    .cta-left p { font-size: 14px; }
    .cta-btn { padding: 12px 32px; font-size: 15px; }

    .header-inner { padding: 0 20px; height: 60px; }
    .site-logo { font-size: 18px; }
    .main-nav ul { gap: 15px; }
    .main-nav a { font-size: 14px; padding: 20px 0; }

    .hero-container { grid-template-columns: 1fr; padding: 0 20px; gap: 20px; }
    .hero-left { padding: 40px 25px; min-height: auto; }
    .hero-main-title { font-size: 26px; }
    .hero-sub-title { font-size: 15px; }

    .section-container { padding: 0 20px; }
    .section-white, .section-gray { padding: 40px 0; }
    .section-title h2 { font-size: 24px; }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }

    .archive-section { padding: 25px 0 40px; }
    .archive-container { padding: 0 15px; gap: 20px; }
    .news-list-wrap { padding: 12px 15px; }
    .news-link { padding: 12px 6px; }
    .news-title { font-size: 14px; }
    .news-date { font-size: 12px; margin-left: 10px; }
    .featured-content { padding: 20px; }
    .featured-title { font-size: 18px; }

    .single-wrapper { padding: 0 20px; }
    .single-header h1 { font-size: 22px; }
    .single-cover { margin-top: 18px; }
    .single-cover img { max-height: 240px; }

    .page-banner { padding: 40px 0 35px; }
    .page-banner h1 { font-size: 24px; letter-spacing: 1px; }
    .banner-subtitle { font-size: 13px; letter-spacing: 2px; }
    .page-content-wrapper { padding: 0 20px; }

    .archive-filter-bar { flex-direction: column; align-items: flex-start; }
    .filter-tabs { width: 100%; overflow-x: auto; white-space: nowrap; padding-bottom: 5px; }

    /* 业务页移动端 */
    .services-intro { padding: 30px 0; }
    .services-intro-inner { padding: 0 20px; gap: 15px; }
    .section-main-title { font-size: 22px; }
    .intro-slogan { font-size: 15px; }

    .services-main, .services-industries, .services-advantage { padding: 35px 0 40px; }
    .services-container { padding: 0 20px; }
    .section-title { font-size: 22px; }
    .section-title-wrap { margin-bottom: 25px; }

    .service-content { padding: 20px; }
    .service-title { font-size: 19px; }
    .service-points { grid-template-columns: 1fr; }
    .service-icon-wrap { height: 80px; }
    .service-icon { font-size: 42px; }

    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .industry-item { padding: 18px 10px; }
    .industry-icon { font-size: 28px; }
    .industry-name { font-size: 13px; }

    .advantage-grid { grid-template-columns: 1fr; gap: 15px; }
    .advantage-item { padding: 22px; }

    .services-cta { padding: 35px 0; }
    .cta-left h2 { font-size: 22px; }
    .cta-left p { font-size: 14px; }

    /* 关于页手机端 */
    .company-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .company-hero-card { max-width: 100%; padding: 24px 20px; }
    .company-hero-card h3 { font-size: 17px; }
    .about-founder { padding: 40px 0 35px; }
    .founder-main-title { font-size: 20px; }
    .founder-stats { flex-wrap: wrap; gap: 20px; }
    .stat-number { font-size: 22px; }
    .about-company, .about-timeline, .about-values, .about-advantage { padding: 40px 0; }
    .company-info-cards { grid-template-columns: 1fr; }
    .about-services-grid { grid-template-columns: 1fr; gap: 16px; }
    .about-service-card { padding: 24px 20px; }
    .about-service-card h3 { font-size: 18px; }
    .about-industries { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .about-industry-item { padding: 18px 12px; }
    .about-industry-item .industry-icon { font-size: 28px; }
    .about-industry-item .industry-name { font-size: 13px; }
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-item { padding: 24px 20px; }
    .founder-mini-wrap { grid-template-columns: 1fr; gap: 25px; }
    .founder-mini-avatar-wrap { width: 160px; height: 160px; }
    .founder-mini-avatar { width: 140px; height: 140px; }
    .founder-mini-ring { width: 160px; height: 160px; }
    .founder-mini-tags { justify-content: center; }
    .about-cta { padding: 35px 0; }
    .about-cta .cta-box { flex-direction: column; padding: 30px 25px; text-align: center; gap: 20px; }
    .about-cta .cta-left h2 { font-size: 20px; }
    .about-cta .cta-right { text-align: center; }
}

/* ===== 关于我们页 v21 新增样式 ===== */

/* 发展历程 */
.about-history {
    padding: 80px 0;
    background: #fff;
}
.timeline-wrap {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0066cc 0%, #0099ff 100%);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 50px;
}
.timeline-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid #0066cc;
    border-radius: 50%;
    top: 10px;
    z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}
.timeline-content {
    background: #f5f9ff;
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 3px solid #0066cc;
}
.timeline-item:nth-child(odd) .timeline-content {
    border-left: none;
    border-right: 3px solid #0066cc;
}
.timeline-year {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}
.timeline-content h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 10px;
}
.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}
.timeline-item:last-child {
    margin-bottom: 0;
}

/* 使命愿景价值观 */
.about-mission {
    padding: 80px 0;
    background: #f5f7fa;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #0066cc;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
    transition: all 0.3s ease;
}
.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 51, 102, 0.12);
}
.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.mission-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 18px;
}
.mission-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
}
.mission-card strong {
    color: #0066cc;
}

/* 创始人介绍 */
.about-founder-section {
    padding: 80px 0;
    background: #fff;
}
.founder-profile-wrap {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: center;
}
.founder-profile-avatar {
    text-align: center;
}
.founder-profile-avatar-box {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
}
.founder-profile-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    position: relative;
    z-index: 2;
    border: 5px solid #fff;
    box-shadow: 0 5px 30px rgba(0, 51, 102, 0.2);
    top: 10px;
    left: 10px;
}
.founder-profile-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0066cc;
    border-right-color: #0099ff;
    animation: founderRingRotate 8s linear infinite;
}
@keyframes founderRingRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.founder-profile-name {
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}
.founder-profile-title {
    font-size: 15px;
    color: #0066cc;
    letter-spacing: 1px;
}
.founder-profile-content h3 {
    font-size: 24px;
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e6f0ff;
}
.founder-profile-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.9;
    font-size: 15px;
}
.founder-profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}
.founder-tag-item {
    background: #e6f0ff;
    color: #0066cc;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* 响应式 - 关于我们页 */
@media (max-width: 900px) {
    .timeline-wrap::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    .timeline-item .timeline-dot {
        left: 11px !important;
        right: auto !important;
    }
    .timeline-item .timeline-content {
        border-right: none !important;
        border-left: 3px solid #0066cc !important;
        text-align: left;
    }
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .founder-profile-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-profile-avatar-box {
        width: 220px;
        height: 220px;
    }
    .founder-profile-img {
        width: 200px;
        height: 200px;
    }
    .founder-profile-ring {
        width: 220px;
        height: 220px;
    }
    .founder-profile-content h3 {
        text-align: center;
    }
}

/* ===== 联系我们页 v22 ===== */

.contact-page-main {
    padding: 70px 0;
    background: #fff;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.contact-big-card {
    background: #fff;
    border: 1px solid #e6ecf2;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #0066cc;
}
.contact-big-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    border-color: #0099ff;
}
.contact-big-icon {
    font-size: 44px;
    margin-bottom: 15px;
}
.contact-big-card h3 {
    font-size: 18px;
    color: #003366;
    margin-bottom: 12px;
    font-weight: 600;
}
.contact-big-value {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
    word-break: break-all;
}
.contact-big-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    line-height: 1.6;
}
.contact-big-btn {
    display: inline-block;
    padding: 8px 24px;
    background: #0066cc;
    color: #fff !important;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}
.contact-big-btn:hover {
    background: #0052a3;
}
.contact-big-btn-disabled {
    background: #e6ecf2;
    color: #999 !important;
    cursor: default;
}
.contact-big-btn-disabled:hover {
    background: #e6ecf2;
}

/* 二维码专区 */
.contact-qr-section {
    padding: 70px 0;
    background: #f5f7fa;
}
.qr-banner {
    background: linear-gradient(135deg, #003366 0%, #0056b3 50%, #0066cc 100%);
    border-radius: 16px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    align-items: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.qr-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,204,0,0.1) 0%, transparent 60%);
    border-radius: 50%;
}
.qr-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -30px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,153,255,0.3) 0%, transparent 60%);
    border-radius: 50%;
}
.qr-banner-left {
    position: relative;
    z-index: 2;
}
.qr-badge {
    display: inline-block;
    background: rgba(255,204,0,0.2);
    color: #ffcc00;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,204,0,0.3);
}
.qr-banner-left h2 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #fff;
}
.qr-desc-main {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}
.qr-benefits {
    list-style: none;
    margin-bottom: 20px;
}
.qr-benefits li {
    padding: 6px 0;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}
.check-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ffcc00;
    color: #003366;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-right: 10px;
}
.qr-tip {
    font-size: 14px;
    color: #ffcc00;
    background: rgba(255,204,0,0.1);
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
}
.qr-banner-right {
    position: relative;
    z-index: 2;
    text-align: center;
}
.qr-code-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}
.qr-code-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 8px;
}
.qr-code-text {
    margin-top: 12px;
    font-size: 14px;
    color: #003366;
    font-weight: 600;
}

/* 服务区域 */
.contact-area-section {
    padding: 70px 0;
    background: #fff;
}
.area-cities {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 50px;
}
.city-item {
    background: #f5f9ff;
    border: 1px solid #d6e8ff;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.city-item:hover {
    background: #e6f0ff;
    transform: translateY(-3px);
}
.city-item.city-primary {
    background: #0066cc;
    border-color: #0066cc;
}
.city-item.city-primary .city-name,
.city-item.city-primary .city-type {
    color: #fff;
}
.city-name {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 5px;
}
.city-type {
    font-size: 12px;
    color: #666;
}
.area-services {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 35px 40px;
}
.area-services h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 20px;
}
.area-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.area-tag {
    background: #fff;
    color: #0066cc;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    border: 1px solid #d6e8ff;
    transition: all 0.3s ease;
}
.area-tag:hover {
    background: #0066cc;
    color: #fff;
}

/* CTA底部 */
.contact-cta-bottom {
    padding: 60px 0 80px;
    background: #f5f7fa;
}

/* 响应式 - 联系页 */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .area-cities {
        grid-template-columns: repeat(3, 1fr);
    }
    .qr-banner {
        grid-template-columns: 1fr;
        padding: 40px 35px;
        gap: 30px;
    }
    .qr-banner-right {
        display: flex;
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .area-cities {
        grid-template-columns: repeat(2, 1fr);
    }
    .qr-banner-left h2 {
        font-size: 22px;
    }
    .area-services {
        padding: 25px 20px;
    }
}

/* ===== 关于我们页 v23 全新样式 ===== */

/* 顶部大banner */

/* ========== 关于我们页 v24 ========== */

/* 顶部banner */
.about-page-banner {
    position: relative;
    background: linear-gradient(135deg, #002244 0%, #004080 40%, #0066cc 75%, #0099ff 100%);
    padding: 80px 0 120px;
    overflow: hidden;
}
.about-banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.about-banner-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.about-banner-glow.glow-1 {
    top: -80px; right: 10%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0,153,255,0.45) 0%, transparent 65%);
    animation: bannerGlow 8s ease-in-out infinite alternate;
}
.about-banner-glow.glow-2 {
    bottom: -60px; left: 8%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,204,0,0.12) 0%, transparent 60%);
    animation: bannerGlow 12s ease-in-out infinite alternate-reverse;
}
@keyframes bannerGlow {
    from { transform: scale(1); opacity: 0.6; }
    to { transform: scale(1.2); opacity: 1; }
}
.about-banner-cut {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.about-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: center;
}
.about-banner-crumb {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 20px;
}
.about-banner-crumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
.about-banner-crumb a:hover { color: #ffcc00; }
.about-banner-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.about-banner-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 25px;
    letter-spacing: 1px;
}
.about-banner-desc {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    line-height: 2;
    max-width: 600px;
}

/* 数据卡片 */
.about-banner-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.about-stat-card .about-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #ffcc00;
    flex-shrink: 0;
    min-width: 70px;
}
.about-stat-card .about-stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* 我们的故事 */
.about-story-section {
    padding: 90px 0;
    background: #fff;
}
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
}
.section-label {
    display: inline-block;
    background: #e6f0ff;
    color: #0066cc;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 1px;
}
.about-story-title {
    font-size: 34px;
    color: #003366;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 700;
}
.about-story-text {
    color: #555;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    text-indent: 2em;
}
.about-story-quote {
    margin-top: 35px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    color: #003366;
    font-size: 19px;
    font-weight: 600;
    text-align: center;
    position: relative;
    border-left: 4px solid #0066cc;
}
.quote-mark {
    color: #0066cc;
    font-size: 24px;
    font-weight: 700;
    margin: 0 5px;
}

/* 头像区 */
.about-story-avatar {
    text-align: center;
}
.story-avatar-box {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 25px;
}
.story-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 15%;
    border: 4px solid #fff;
    box-shadow: 0 10px 40px rgba(0,51,102,0.2);
    position: relative;
    z-index: 2;
}
.story-avatar-ring {
    position: absolute;
    top: -8px; left: -8px;
    right: -8px; bottom: -8px;
    border-radius: 50%;
    border: 2px solid #0066cc;
    animation: ringRotate 8s linear infinite;
    z-index: 1;
}
.story-avatar-ring.ring-2 {
    top: -18px; left: -18px;
    right: -18px; bottom: -18px;
    border: 2px dashed #66aaff;
    animation: ringRotate 15s linear infinite reverse;
    opacity: 0.5;
}
@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.story-avatar-name {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}
.story-avatar-role {
    font-size: 14px;
    color: #0066cc;
    letter-spacing: 1px;
}

/* 我们的理念 */
.about-philosophy {
    padding: 80px 0;
    background: #f5f7fa;
}
.section-title-wrap.center {
    text-align: center;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.philosophy-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0,51,102,0.08);
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,51,102,0.15);
}
.philosophy-card:hover::before {
    transform: scaleX(1);
}
.philosophy-num {
    font-size: 48px;
    font-weight: 700;
    color: #e6f0ff;
    margin-bottom: 15px;
    line-height: 1;
}
.philosophy-card h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}
.philosophy-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

/* 发展历程 */
.about-history {
    padding: 80px 0;
    background: #fff;
}
.timeline-wrap {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0;
    padding: 20px 0;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0066cc, #0099ff, #66aaff);
    transform: translateX(-50%);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding-right: 40px;
}
.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 40px;
}
.timeline-dot {
    position: absolute;
    right: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0066cc;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #0066cc;
    z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}
.timeline-content {
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid #e8edf2;
    transition: all 0.3s ease;
}
.timeline-content:hover {
    box-shadow: 0 8px 25px rgba(0,51,102,0.1);
    border-color: #0066cc;
}
.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}
.timeline-content h3 {
    font-size: 20px;
    color: #003366;
    margin-bottom: 10px;
    font-weight: 600;
}
.timeline-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* 底部金句 */
.about-bottom-quote {
    padding: 80px 0;
    background: linear-gradient(135deg, #002244 0%, #004080 50%, #0066cc 100%);
    position: relative;
    overflow: hidden;
}
.about-bottom-quote::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.bottom-quote-box {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.quote-icon {
    font-size: 60px;
    color: rgba(255,204,0,0.3);
    margin-bottom: 20px;
    line-height: 1;
}
.bottom-quote-text {
    font-size: 36px;
    color: #fff;
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.bottom-quote-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .about-banner-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-banner-stats {
        flex-direction: row;
        max-width: 600px;
    }
    .about-stat-card {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 15px;
    }
    .about-stat-card .about-stat-num {
        min-width: auto;
        font-size: 28px;
    }
    .about-stat-card .about-stat-label {
        font-size: 13px;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story-avatar {
        order: -1;
    }
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-banner-title { font-size: 36px; }
    .about-story-title { font-size: 28px; }
    .bottom-quote-text { font-size: 28px; }
}
@media (max-width: 600px) {
    .about-page-banner { padding: 50px 0 80px; }
    .about-banner-title { font-size: 28px; letter-spacing: 2px; }
    .about-banner-stats { flex-direction: column; }
    .about-stat-card { flex-direction: row; text-align: left; }
    .about-story-section, .about-philosophy, .about-history { padding: 50px 0; }
    .about-story-title { font-size: 24px; }
    .about-story-text { font-size: 15px; }
    .story-avatar-box { width: 220px; height: 220px; }
    .philosophy-card { padding: 30px 25px; }
    .philosophy-num { font-size: 36px; }
    .philosophy-card h3 { font-size: 18px; }

    /* 时间轴改单列 */
    .timeline-wrap::before { left: 20px; }
    .timeline-item {
        width: 100%;
        padding-left: 50px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }

    .about-bottom-quote { padding: 50px 0; }
    .bottom-quote-text { font-size: 22px; }
    .quote-icon { font-size: 40px; }
}

/* ========== 全局移动端适配 v1.2 ========== */
@media (max-width: 768px) {
    body { font-size: 14px; }

    /* 头部导航 */
    .header-inner { padding: 0 10px !important; height: 56px !important; gap: 8px !important; }
    .site-logo { font-size: 13px !important; letter-spacing: 0 !important; max-width: 38% !important; }
    .main-nav ul { gap: 6px !important; }
    .main-nav a { font-size: 11px !important; padding: 18px 0 !important; white-space: nowrap !important; }

    /* 首页hero */
    .hero-section { padding: 20px 0 30px !important; }
    .hero-container { padding: 0 15px !important; grid-template-columns: 1fr !important; gap: 18px !important; }
    .hero-left { min-height: auto !important; border-radius: 8px !important; }
    .hero-banner { min-height: auto !important; }
    .hero-banner-content { padding: 35px 25px !important; width: 100% !important; box-sizing: border-box !important; }
    .hero-main-title { font-size: 24px !important; line-height: 1.4 !important; letter-spacing: 1px !important; word-break: break-word !important; }
    .hero-sub-title { font-size: 13px !important; margin-bottom: 20px !important; }
    .hero-btns { flex-wrap: wrap; gap: 10px; }
    .hero-btn { padding: 9px 20px !important; font-size: 13px !important; }

    /* 通知公告卡 */
    .hero-right { width: 100% !important; }
    .news-card { margin-top: 0 !important; }
    .news-card-header { padding: 12px 18px !important; }
    .news-card-title { font-size: 15px !important; }
    .news-card-body { padding: 12px 18px !important; }
    .news-item-title { font-size: 13px !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; max-width: 60% !important; }
    .news-item-link { gap: 8px !important; }
    .news-item-date { flex-shrink: 0 !important; }

    /* 通用板块 */
    .section-white, .section-gray { padding: 35px 0 !important; }
    .section-container { padding: 0 15px !important; }
    .section-title h2 { font-size: 20px !important; }
    .section-title p { font-size: 13px !important; }

    /* 关于我们 */
    .about-grid { grid-template-columns: 1fr !important; gap: 30px !important; }
    .about-text { text-align: center; }
    .about-text h3 { font-size: 18px !important; }
    .about-text p { font-size: 14px !important; line-height: 1.9 !important; }
    .about-features { gap: 12px !important; justify-content: center; flex-wrap: wrap; }
    .about-feature-item .number { font-size: 22px !important; }
    .about-feature-item .label { font-size: 12px !important; }
    .about-image-box { max-width: 220px; margin: 0 auto; }
    .about-avatar-wrap { width: 160px !important; height: 160px !important; }
    .about-avatar { width: 150px !important; height: 150px !important; margin: 5px !important; }
    .about-avatar-ring { width: 160px !important; height: 160px !important; }

    /* 底部联系我们 */
    .contact-grid { grid-template-columns: 1fr !important; gap: 25px !important; }
    .contact-info h3 { font-size: 20px !important; }
    .about-image-box .text { font-size: 15px !important; }
    .about-image-box .text-sub { font-size: 12px !important; }

    /* 业务板块 */
    .services-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
    .service-card { padding: 22px 18px !important; }
    .service-card h3 { font-size: 17px !important; }
    .service-card p { font-size: 13px !important; line-height: 1.8 !important; }

    /* 页脚 */
    .footer-top { padding: 35px 0 25px !important; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 15px !important; font-size: 12px !important; }
    .footer-info h3 { font-size: 16px !important; }
}

@media (max-width: 480px) {
    .site-logo { font-size: 14px !important; }
    .main-nav ul { gap: 8px !important; }
    .main-nav a { font-size: 12px !important; }

    .hero-banner-content { padding: 28px 20px !important; }
    .hero-main-title { font-size: 20px !important; }
    .hero-sub-title { font-size: 12px !important; }
    .hero-btn { padding: 8px 16px !important; font-size: 12px !important; }

    .section-title h2 { font-size: 18px !important; }
    .service-card h3 { font-size: 16px !important; }

    .about-avatar-wrap { width: 140px !important; height: 140px !important; }
    .about-avatar { width: 130px !important; height: 130px !important; margin: 5px !important; }
    .about-avatar-ring { width: 140px !important; height: 140px !important; }
}
