/*
Theme Name: Enterprise Theme
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: 一个现代化的企业网站主题，适用于各种企业展示需求。包含响应式设计、美观的界面和完整的功能。
Version: 1.0.0
Requires at least: 6.9
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: enterprise-theme
Tags: business, corporate, enterprise, responsive, modern
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* 容器 */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* 非首页滚动时背景色 */
.site-header:not(.header-overlay).scrolled {
    background: rgba(3, 105, 165, 0.5);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* 首页头部浮动样式 */
.site-header.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: background 0.3s;
}

.site-header.header-overlay .main-navigation a {
    color: #fff;
}

/* 首页logo颜色 */
body.home .site-header.header-overlay .site-logo {
    color: #2c3e50;
}

.site-header.header-overlay .menu-toggle,
.site-header.header-overlay .menu-toggle .menu-icon {
    color: #fff !important;
}

/* 首页浮动状态下下拉菜单样式 */
.site-header.header-overlay .main-navigation ul ul {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.site-header.header-overlay .main-navigation ul ul a {
    color: #333;
}

.site-header.header-overlay .main-navigation ul ul a:hover {
    color: #3498db;
    background: rgba(248, 249, 250, 0.8);
}

/* 滚动时头部样式变化 */
.site-header.header-overlay.scrolled {
    background: rgba(3, 105, 165, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* LOGO右侧最后一个菜单项（仅移动端显示） */
.header-last-menu-item {
    display: none;
}

.header-last-menu-item a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-last-menu-item a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.header-last-menu-image {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

.site-logo img {
    max-height: 50px;
    width: auto;
}

/* 导航菜单 */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    padding: 0.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.main-navigation a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* 二级下拉菜单 */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    width: auto;
    min-width: fit-content;
    max-width: none;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0;
    margin-top: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

/* 确保父菜单项和子菜单之间有连接，防止鼠标移动时菜单消失 */
.main-navigation li {
    position: relative;
}

.main-navigation li:hover > ul,
.main-navigation li.focus > ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 当鼠标在子菜单上时，保持父菜单的hover状态 */
.main-navigation ul ul:hover {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* 确保子菜单项也能触发父菜单的显示 */
.main-navigation li.focus ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.main-navigation ul ul li {
    width: 100%;
    white-space: nowrap;
}

.main-navigation ul ul a {
    color: #333;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    word-wrap: normal;
    overflow-wrap: normal;
    transition: all 0.2s ease;
    width: auto;
    min-width: fit-content;
    display: block;
}

.main-navigation ul ul a:hover {
    color: #3498db;
    background: #f8f9fa;
    padding-left: 1.75rem;
}

/* 有子菜单的项添加箭头 */
.main-navigation .menu-item-has-children > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
}

.main-navigation .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* 移动端菜单按钮 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* 主要内容区域 */
.site-main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* 有banner的页面，调整site-main的padding */
body:not(.home) .site-main {
    padding-top: 0;
}

/* 首页时主要内容区域不需要顶部padding（因为轮播图在顶部） */
body.home .site-main {
    padding-top: 0;
}

/* 内页内容左右布局 */
.page-content-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.page-sidebar-left {
    width: 300px;
    flex-shrink: 0;
}

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

/* 分类侧边栏样式 */
.category-sidebar {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.category-sidebar-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #0369a5;
}

.category-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-sidebar-item {
    margin-bottom: 0.5rem;
}

.category-sidebar-item a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-sidebar-item a:hover {
    background: #f8f9fa;
    color: #0369a5;
}

.category-sidebar-item.current a {
    background: #096da8;
    color: #fff;
}

/* 产品分类侧边栏样式 */
.products-category-sidebar .category-level2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-level2-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.category-level2-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-level2-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-level2-link:hover {
    color: #0369a5;
}

.category-level2-item.current .category-level2-link-wrapper {
    background: #096da8;
}

.category-level2-item.current .category-level2-link {
    color: #fff;
}

.category-level2-item.current .category-level2-link:hover {
    color: #ecf0f1;
}

.category-toggle {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    cursor: pointer;
    padding: 0.25rem;
    user-select: none;
    color: #333;
}

.category-toggle:hover {
    opacity: 0.7;
}

.category-level2-item.current .category-toggle {
    color: #fff;
}

.category-level2-item.current .category-toggle:hover {
    color: #fff;
    opacity: 0.9;
}

.category-level2-item.expanded .category-toggle {
    transform: rotate(180deg);
}

.category-level3-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    display: block !important; /* 强制显示所有三级分类 */
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* 确保展开状态下显示 */
.category-level2-item.expanded .category-level3-list,
.category-level2-item .category-level3-list {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.category-level3-item {
    margin-bottom: 0.25rem;
}

.category-level3-item a {
    display: block;
    padding: 0.5rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-level3-item a:hover {
    background: #f8f9fa;
    color: #0369a5;
}

.category-level3-item.current a {
    background: #096da8;
    color: #fff;
}

/* 产品单页样式 */
.product-single-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* 上部分：左右分栏 */
.product-top-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-images-section {
    flex: 1;
    max-width: 50%;
}

.product-basic-info {
    flex: 1;
    max-width: 50%;
}

.product-images-container {
    position: relative;
}

.product-main-image {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: zoom-in;
    background: #f8f9fa;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

.product-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.product-thumb-item {
    width: 80px;
    height: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.product-thumb-item:hover {
    border-color: #096da8;
    transform: translateY(-2px);
}

.product-thumb-item.active {
    border-color: #096da8;
    border-width: 3px;
}

.product-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-basic-info .entry-header {
    margin-bottom: 1.5rem;
}

.product-basic-info .entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* 下部分：产品内容信息 */
.product-content-section {
    width: 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.product-content-section .entry-content {
    line-height: 1.8;
    color: #555;
}

.product-categories {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #666;
}

.product-categories .cat-links a {
    color: #096da8;
    text-decoration: none;
    margin-right: 0.5rem;
}

.product-categories .cat-links a:hover {
    text-decoration: underline;
}

.product-description {
    line-height: 1.8;
    color: #555;
}

.product-excerpt {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* 图片放大层 */
.product-image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.product-image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.product-image-lightbox .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.product-image-lightbox .lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}

.product-image-lightbox .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-image-lightbox .lightbox-close:hover {
    transform: rotate(90deg);
    color: #096da8;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-content-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-sidebar-left {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .page-content-main {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* 产品内容页移动端移除右侧边距 */
    .product-single .container {
        padding-right: 0;
    }
    
    .product-single .page-content-main {
        padding-right: 0;
        margin-right: 0;
    }
    
    .product-top-section {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-images-section,
    .product-basic-info {
        max-width: 100%;
    }
    
    .product-images-container {
        position: static;
    }
    
    .product-thumbnails {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.3rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-thumbnails::-webkit-scrollbar {
        height: 4px;
    }
    
    .product-thumbnails::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    .product-thumbnails::-webkit-scrollbar-thumb {
        background: #096da8;
        border-radius: 2px;
    }
    
    .product-thumb-item {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
}

/* 产品列表样式 */
.products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Talent分类列表样式 - 一行显示4个 */
.talent-list {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .talent-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .talent-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .talent-list {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: 5px solid #096da8;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(9, 109, 168, 0.15);
    transform: translateY(-3px);
    border-bottom-color: #096da8;
}

.product-thumbnail {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-thumbnail .product-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: none;
}

.product-card-content {
    padding: 1rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: 1.1rem;
    margin: 0 0 0.75rem 0;
    text-align: center;
    color: #000;
    transition: color 0.3s;
}

.product-card-title:hover {
    color: #096da8;
}

.product-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.product-card-title a:hover {
    color: #096da8;
}

.product-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-excerpt {
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.btn-product {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #0369a5;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-product:hover {
    background: #025a8f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(3, 105, 165, 0.3);
}

/* 产品单页样式 */
.product-single {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-single .product-thumbnail {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.product-single .product-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-single {
        padding: 1.5rem;
    }
}

/* 页面Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #0369a5; /* 默认背景色，如果图片加载失败时显示 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
}

/* 内页有banner时，header浮动在banner上方 */
body:not(.home) .site-header.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
}

body:not(.home) .site-header.header-overlay .main-navigation a {
    color: #fff;
}

body:not(.home) .site-header.header-overlay .site-logo {
    color: #fff;
}

body:not(.home) .site-header.header-overlay .menu-toggle,
body:not(.home) .site-header.header-overlay .menu-toggle .menu-icon {
    color: #fff !important;
}

body:not(.home) .site-header.header-overlay.scrolled {
    background: rgba(3, 105, 165, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
}

/* 内页下拉菜单样式与首页一致 */
body:not(.home) .site-header.header-overlay .main-navigation ul ul {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body:not(.home) .site-header.header-overlay .main-navigation ul ul a {
    color: #333;
}

body:not(.home) .site-header.header-overlay .main-navigation ul ul a:hover {
    color: #3498db;
    background: rgba(248, 249, 250, 0.8);
}

/* Banner下方的面包屑导航 */
.page-banner-breadcrumbs {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.page-banner-breadcrumbs .breadcrumbs {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #666;
}

.page-banner-breadcrumbs .breadcrumbs a {
    color: #0369a5;
    text-decoration: none;
    transition: color 0.3s;
}

.page-banner-breadcrumbs .breadcrumbs a:hover {
    color: #025a8f;
    text-decoration: underline;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-banner-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner-title {
        font-size: 1.8rem;
    }
    
    .entry-header {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .entry-title {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .entry-meta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* 文章样式 */
.entry-header {
    margin-bottom: 2rem;
}

.entry-title {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.entry-content img,
.entry-content iframe,
.entry-content video,
.entry-content embed,
.entry-content object {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 2rem 0 1rem;
}

.entry-content h3 {
    font-size: 1.5rem;
    color: #34495e;
    margin: 1.5rem 0 1rem;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #2980b9;
}

.btn-primary {
    background: #3498db;
}

.btn-primary:hover {
    background: #2980b9;
}

/* 轮播图区域 */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    height: 100vh;
    max-height: 100vh;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-overlay {
    display: none;
}

.slider-slide .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slider-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.slider-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.slider-button {
    font-size: 1.1rem;
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 轮播图指示器 */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    outline: none;
}

.slider-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-indicator.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* 轮播图控制按钮 */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    outline: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover,
.slider-next:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.2);
}

/* 首页特色区域（默认，当没有轮播图时使用） */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* 首页数字统计区域 */
.home-numbers-section {
    padding: 30px 0;
    background: #fff;
    color: #333;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.number-item {
    padding: 1.5rem 1rem;
}

.number-value {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #0369a5;
    position: relative;
    display: inline-block;
}

.number-value::after {
    content: '+';
    font-size: 1.5rem;
    color: #0369a5;
    position: absolute;
    top: 0;
    right: -0.8rem;
    font-weight: bold;
}

.number-title {
    font-size: 1.3rem;
    color: #000;
    line-height: 1.5;
}

/* 服务/功能区域 */
/* 首页简介链接区域 */
.intro-section {
    padding: 0 0 80px 0;
    background: #fff;
    position: relative;
}

.intro-section .container {
    position: relative;
    max-width: 1600px;
    padding: 0 20px;
}

.intro-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: stretch;
    min-height: 400px;
    background: #fff;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
}

.intro-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-text {
    width: 100%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: #fff;
    background-size: auto;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.intro-text > * {
    position: relative;
    z-index: 1;
}

.intro-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.3;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 2rem;
    flex: 1;
}

.intro-description p {
    margin-bottom: 1rem;
    color: #000;
}

.intro-description p:last-child {
    margin-bottom: 0;
}

.intro-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: all 0.3s ease;
    align-self: flex-start;
    background: #096da8;
    color: #fff;
    border: none;
}

.intro-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 109, 168, 0.3);
    background: #075a8a;
}

/* 响应式设计 - 简介区域 */
@media (max-width: 768px) {
    .intro-content {
        grid-template-columns: 1fr;
        min-height: auto;
        border-top-right-radius: 25px;
        border-bottom-left-radius: 25px;
    }
    
    .intro-image {
        height: auto;
        min-height: 300px;
    }
    
    .intro-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }
    
    .intro-text {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .intro-title {
        font-size: 1.5rem;
    }
    
    .intro-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .intro-button {
        border-top-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}

/* 首页创始人区 */
.founder-section-wrapper {
    position: relative;
    min-height: 500px;
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.founder-section-overlay {
    display: none;
}

.founder-section-content {
    position: relative;
    z-index: 2;
    padding: 35px 0;
}

.founder-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.founder-section-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.founder-section-grid-wrapper {
    display: flex;
    gap: 2rem;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

.founder-section-item-link {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.founder-section-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-section-item-link:hover {
    transform: translateY(-8px);
    text-decoration: none;
}

.founder-section-item {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    position: relative;
    transition: box-shadow 0.3s ease;
}

.founder-section-item-bg {
    background: linear-gradient(to top, #9ddffd 0%, rgba(157, 223, 253, 0) 100%) !important;
    border-radius: 10px 10px 50% 50% / 10px 10px 100px 100px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.founder-section-item-image {
    width: 100%;
    overflow: hidden;
    padding: 10px 10px 0 10px;
    position: relative;
    background: transparent;
}

.founder-section-item-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, rgba(157, 223, 253, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

.founder-section-item-image img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.founder-section-item-link:hover .founder-section-item-image img {
    transform: scale(1.05);
}

.founder-section-item-content {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + 10px);
    position: relative;
    text-align: center;
}

.founder-section-item-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0;
    text-align: center;
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(to bottom, #45b63d 0%, #3db43b 100%);
    color: #fff;
    border-radius: 20px;
    width: auto;
    margin: 0 auto;
    box-shadow: 0 3px 8px rgba(69, 182, 61, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}


.founder-section-item-excerpt {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #000;
    background: transparent;
}

/* 响应式设计 - 创始人区 */
@media (max-width: 768px) {
    .founder-section-wrapper {
        padding: 30px 0;
        min-height: auto;
    }
    
    .founder-section-content {
        padding: 25px 0;
    }
    
    .founder-section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-section-grid {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .founder-section-grid-wrapper {
        animation: none;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: nowrap;
        transition: transform 0.5s ease;
        width: 100%;
    }
    
    .founder-section-item-link {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        display: none;
        transition: opacity 0.5s ease;
    }
    
    .founder-section-item-link.show {
        display: block;
        opacity: 1;
    }
    
    .founder-section-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding: 0 1rem 0.5rem;
        width: 100%;
    }
    
    .founder-section-page-btn {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: none;
        background: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        padding: 0;
        transition: background 0.3s ease, transform 0.3s ease;
    }
    
    .founder-section-page-btn.active {
        background: #45b63d;
        transform: scale(1.3);
        width: 12px;
        height: 12px;
    }
    
    .founder-section-page-btn:hover {
        background: #45b63d;
        opacity: 0.7;
    }
    
    .founder-section-item-bg {
        min-height: auto;
    }
    
    .founder-section-item-image {
        padding: 8px 8px 0 8px;
    }
    
    .founder-section-item-content {
        padding: 1rem;
        padding-bottom: calc(1rem + 8px);
    }
    
    .founder-section-item-title {
        font-size: 1rem;
        padding: 5px 14px;
        border-radius: 18px;
    }
    
    .founder-section-item-excerpt {
        padding: 0.8rem 1rem 1rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .founder-section-item-link:hover {
        transform: translateY(-5px);
    }
}

/* 首页产品区 */
.product-section-wrapper {
    padding: 60px 0;
    background: #fff center center / cover no-repeat;
    position: relative;
}

.product-section-content {
    position: relative;
    z-index: 2;
}

.product-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-category-item {
    background: #fff;
    border: 1px solid #096da8;
    border-radius: 25px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-category-item.active {
    background-color: #096da8;
}

.product-category-item.active .product-category-name {
    color: #fff;
}

.product-category-link {
    display: block;
    padding: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.product-category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #096da8;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    transition: color 0.3s ease;
}

.product-category-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.product-category-content-wrapper {
    margin-top: 3rem;
    animation: fadeIn 0.3s ease;
}

.product-category-content {
    padding: 0;
    display: none; /* 默认隐藏，JavaScript控制显示 */
}

/* 分类描述和图片2区域 */
.product-category-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-category-description-wrapper {
    text-align: center;
}

.product-category-description-wrapper p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.product-category-image-2-wrapper {
    width: 100%;
}

.product-category-image-2-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.product-category-button-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.product-category-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    transition: all 0.3s ease;
    background: #096da8;
    color: #fff;
    font-weight: 600;
}

.product-category-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 109, 168, 0.3);
    background: #075a8a;
    color: #fff;
}

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

.product-category-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.product-category-post-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-post-thumbnail {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}

.product-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-post-thumbnail:hover img {
    transform: scale(1.05);
}

.product-post-info {
    flex: 1;
}

.product-post-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.product-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-post-title a:hover {
    color: #0369a5;
}

.product-post-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category-empty {
    text-align: center;
    color: #999;
    padding: 2rem 0;
    margin: 0;
}

/* 首页资质区 */
.qualification-section-wrapper {
    padding: 60px 0 70px 0;
    background: #fff center center / cover no-repeat;
    position: relative;
}

.qualification-section-content {
    position: relative;
    z-index: 2;
}

.qualification-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
}

.qualification-posts-grid {
    display: flex;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    width: 100%;
    margin-top: 2rem;
}

.qualification-posts-grid-wrapper {
    display: flex;
    gap: 2rem;
    animation: qualification-scroll-left 30s linear infinite;
    will-change: transform;
}

.qualification-post-item {
    flex: 0 0 380px;
    min-width: 380px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: visible;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin-bottom: 50px;
}

@keyframes qualification-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.qualification-posts-pagination {
    display: none;
}

.qualification-posts-page-btn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.qualification-posts-page-btn.active {
    background: #45b63d;
    transform: scale(1.3);
    width: 12px;
    height: 12px;
}

.qualification-posts-page-btn:hover {
    background: #45b63d;
    opacity: 0.7;
}

.qualification-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.qualification-post-image {
    width: 100%;
    overflow: visible;
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 0;
    font-size: 0;
    position: relative;
}

.qualification-post-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.qualification-post-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.qualification-post-item:hover .qualification-post-title-overlay {
    opacity: 1;
}

.qualification-post-title-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    margin: 0;
    line-height: 1.4;
}

.qualification-post-content {
    padding: 1.5rem;
}

.qualification-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #2c3e50;
    line-height: 1.4;
}

.qualification-post-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* 新闻区样式 */
.news-section-wrapper {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.news-section-content {
    position: relative;
    z-index: 2;
}

.news-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.news-categories-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.news-category-item {
    background: #fff;
    border: 1px solid #096da8;
    border-radius: 25px;
    overflow: hidden;
    transition: background-color 0.3s ease;
    flex: 0 0 auto;
    min-width: 180px;
}

.news-category-link {
    display: block;
    padding: 0;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.news-category-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: #096da8;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    transition: color 0.3s ease;
}

.news-category-item:hover {
    background-color: #096da8;
}

.news-category-item:hover .news-category-name {
    color: #fff;
}

/* 新闻列表展示区域 */
.news-posts-display-wrapper {
    width: 100%;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.news-posts-display-content {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.news-posts-left {
    width: 35%;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border: none;
}

.news-posts-left a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.news-posts-left img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.news-posts-left img[src=""] {
    opacity: 0;
}

.news-left-date {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: rgba(9, 109, 168, 0.9);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px 0 0 0;
    font-size: 0.9rem;
    z-index: 10;
    white-space: nowrap;
}

.news-posts-right {
    width: 80%;
    margin-left: -15%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-shrink: 0;
    overflow: hidden;
}

.news-posts-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.news-posts-scroll-container {
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    transition: transform 0.5s ease;
    will-change: transform;
    padding: 10px 0;
    align-items: flex-start;
}

.news-post-item {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    max-width: calc(33.333% - 1rem);
    width: calc(33.333% - 1rem);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    margin: 10px 0;
    flex-shrink: 0;
}

.news-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.news-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.news-post-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 200px;
    position: relative;
}

.news-post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    color: #000;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-post-description {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-post-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid #096da8;
    border-radius: 4px;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    transition: all 0.3s ease;
}

.news-post-arrow-icon {
    color: #096da8;
    font-size: 1.2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.news-post-item:hover .news-post-arrow,
.news-post-item.active .news-post-arrow {
    background-color: #096da8;
    border-color: #096da8;
}

.news-post-item:hover .news-post-arrow-icon,
.news-post-item.active .news-post-arrow-icon {
    color: #fff;
}

/* 新闻列表控制按钮 */
.news-posts-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.news-posts-prev-btn,
.news-posts-next-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #096da8;
    background: #fff;
    color: #096da8;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    margin-top: 20px;
}

.news-posts-prev-btn:hover,
.news-posts-next-btn:hover {
    background: #096da8;
    color: #fff;
    transform: scale(1.1);
}

.news-posts-prev-btn:active,
.news-posts-next-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .product-section-wrapper {
        padding: 40px 0;
    }
    
    .product-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .product-categories-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .product-category-link {
        padding: 0;
    }
    
    .product-category-name {
        font-size: 1rem;
        padding: 0;
        min-height: 45px;
    }
    
    .product-category-content-wrapper {
        margin-top: 1.5rem;
    }
    
    .product-category-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .product-category-info {
        flex-direction: column;
        gap: 0;
    }
    
    .product-category-image-2-wrapper {
        width: 100%;
    }
    
    .product-category-image-2-wrapper img {
        width: 100%;
    }
    
    .product-category-description-wrapper p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .product-category-button-wrapper {
        margin-top: 1rem;
    }
    
    .product-category-button {
        border-top-right-radius: 12px;
        border-bottom-left-radius: 12px;
    }
    
    /* 资质区移动端样式 */
    .qualification-section-wrapper {
        padding: 40px 0 50px 0;
    }
    
    .qualification-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .qualification-posts-grid {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .qualification-posts-grid-wrapper {
        animation: none;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: nowrap;
        transition: transform 0.5s ease;
    }
    
    .qualification-post-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        display: none;
        opacity: 0;
    }
    
    .qualification-post-item.show {
        display: block;
        opacity: 1;
    }
    
    .qualification-posts-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding: 0.5rem 1rem;
        width: 100%;
    }
    
    .qualification-post-image {
        height: auto;
    }
    
    .qualification-post-title-text {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .qualification-post-content {
        padding: 1.25rem;
    }
    
    .qualification-post-excerpt {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .product-category-posts {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* 新闻区移动端样式 */
    .news-section-wrapper {
        padding: 40px 0;
    }
    
    .news-section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .news-categories-grid {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        gap: 0.8rem;
    }
    
    .news-category-item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }
    
    .news-category-link {
        padding: 0;
    }
    
    .news-category-name {
        font-size: 1rem;
        padding: 0;
        min-height: 45px;
    }
    
    /* 新闻列表展示区域移动端样式 */
    .news-posts-display-wrapper {
        width: 100%;
        padding: 0;
    }
    
    .news-posts-display-content {
        flex-direction: column;
        padding: 0;
        width: 100%;
    }
    
    .news-posts-left {
        width: 100%;
        margin-bottom: 1rem;
        order: 1;
        padding: 0 1rem;
    }
    
    .news-posts-right {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        padding: 0;
        order: 2;
    }
    
    .news-posts-scroll-wrapper {
        width: 100%;
        padding: 0;
        overflow: hidden;
    }
    
    .news-posts-scroll-container {
        animation: none;
        flex-direction: row;
        gap: 0;
        padding: 0;
        width: 100%;
    }
    
    .news-post-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
    }
    
    .news-posts-controls {
        margin-top: 1rem;
    }
    
    .news-posts-prev-btn,
    .news-posts-next-btn {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .product-post-thumbnail {
        height: 120px;
    }
}


/* 页脚 */
.site-footer {
    background: #303942;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-left {
    width: 40%;
    flex-shrink: 0;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo .custom-logo-link,
.footer-logo .site-logo {
    display: inline-block;
}

.footer-logo .custom-logo-link img {
    max-height: 60px;
    width: auto;
}

.footer-logo .site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.footer-right {
    width: 60%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-contact h3,
.footer-menu-column h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.footer-contact-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-contact-left,
.footer-contact-right {
    flex: 1;
}

.footer-contact-item {
    margin-bottom: 0;
}

.footer-contact-label {
    font-weight: 600;
    color: #ecf0f1;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.footer-contact-value {
    color: #bdc3c7;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact-value a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-value a:hover {
    color: #fff;
}

.footer-contact-full {
    width: 100%;
}

.footer-menus {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 2rem;
    min-width: 0;
}

.footer-menus > * {
    min-width: 0;
}

.footer-menu-column {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.footer-menu-column h3 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1.1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    display: block;
    max-width: 100%;
    line-height: 1.5;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* 社交平台图标悬停时的品牌颜色 */
.social-icon-youtube:hover {
    background: #FF0000;
    color: #fff;
}

.social-icon-facebook:hover {
    background: #1877F2;
    color: #fff;
}

.social-icon-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icon-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.social-icon-tiktok:hover {
    background: #000000;
    color: #fff;
}

.social-icon-wechat:hover {
    background: #09BB07;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

/* 页尾移动端样式 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo .custom-logo-link img {
        max-height: 50px;
    }
    
    .footer-contact-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-contact-left,
    .footer-contact-right {
        width: 100%;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .footer-menus {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* 响应式设计 */
@media (max-width: 1600px) {
    /* 宽度小于1600px时，轮播图高度自适应 */
    .hero-slider {
        height: 0;
        padding-bottom: 56.25%; /* 16:9 比例，可根据实际图片比例调整 */
        position: relative;
    }
    
    .slider-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slider-slide {
        background-size: 100% 100%;
    }
    
    /* 轮播图文字宽度和字体大小调整 */
    .slider-content {
        width: 100%;
        max-width: 100%;
    }
    
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    /* 移动端导航区高度自适应 */
    .site-header {
        min-height: auto;
    }
    
    .header-content {
        padding: 0;
        min-height: auto;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    /* 移动端logo高度为60px，上方10px边框 */
    .site-logo {
        font-size: 1.2rem;
    }
    
    .site-branding {
        padding-top: 10px;
    }
    
    .site-logo img,
    .site-branding img,
    .custom-logo,
    .site-branding .custom-logo {
        max-height: 40px !important;
        height: 40px !important;
        width: auto !important;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        padding: 0.25rem;
        line-height: 1;
        height: auto;
        color: #fff !important;
    }
    
    .menu-toggle .menu-icon {
        color: #fff !important;
    }
    
    /* 移动端导航菜单 */
    .main-navigation {
        display: flex;
        align-items: center;
        order: 2;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        background: #0369a5;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        list-style: none;
        margin: 0;
        margin-left: calc(-50vw + 50%);
        z-index: 1000;
        box-sizing: border-box;
    }
    
    .main-navigation.active ul {
        display: flex;
    }
    
    /* 移动端header布局调整 - 确保最后一个菜单项和按钮靠右 */
    .header-content {
        justify-content: space-between;
    }
    
    .site-branding {
        flex-shrink: 0;
        order: 0;
    }
    
    /* 移动端显示LOGO右侧最后一个菜单项 */
    .header-last-menu-item.mobile-only {
        display: block;
        order: 1;
        margin-left: auto;
        margin-right: 0.25rem;
        position: relative;
        flex-shrink: 0;
    }
    
    /* 移动端导航菜单和按钮靠右 */
    .main-navigation {
        order: 2;
        margin-left: 0;
        flex-shrink: 0;
    }
    
    .header-last-menu-toggle {
        margin-left: 0.5rem;
        font-size: 0.7rem;
        transition: transform 0.3s;
        display: inline-block;
    }
    
    .header-last-menu-item.focus .header-last-menu-toggle {
        transform: rotate(180deg);
    }
    
    .header-last-menu-submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 105, 165, 0.95);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        list-style: none;
        margin: 0;
        padding: 0.5rem 0;
        z-index: 1001;
        min-width: 200px;
    }
    
    .header-last-menu-item.focus .header-last-menu-submenu {
        display: block;
    }
    
    .header-last-menu-submenu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-last-menu-submenu li:last-child {
        border-bottom: none;
    }
    
    .header-last-menu-submenu a {
        color: #fff !important;
        padding: 0.75rem 1.5rem;
        display: block;
        text-decoration: none;
        transition: background 0.3s;
    }
    
    .header-last-menu-submenu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* 移动端隐藏主菜单中的最后一个菜单项 */
    .main-navigation > ul > li:last-child {
        display: none !important;
    }
    
    /* 调整移动端header布局 */
    .header-content {
        flex-wrap: nowrap;
    }
    
    .site-branding {
        order: 0;
        flex-shrink: 0;
    }
    
    .main-navigation {
        order: 2;
        flex-shrink: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid #eee;
        padding: 0.5rem 0;
        position: relative;
        width: 100%;
    }
    
    /* 移动端菜单链接颜色为白色 */
    .main-navigation a {
        color: #fff !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal !important;
    }
    
    .main-navigation a:hover {
        color: #ecf0f1 !important;
    }
    
    /* 移动端二级菜单 - 默认隐藏，宽度100% */
    .main-navigation ul ul {
        position: static;
        display: none !important;
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box;
    }
    
    /* 确保二级菜单项也占满宽度 */
    .main-navigation ul ul li {
        width: 100% !important;
        max-width: 100% !important;
        border-bottom: 1px solid #e0e0e0;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    /* 只有点击展开时才显示 */
    .main-navigation li.focus > ul {
        display: flex !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    /* 确保移动端不会因为hover显示二级菜单 */
    .main-navigation li:hover > ul {
        display: none !important;
    }
    
    .main-navigation li.focus:hover > ul {
        display: flex !important;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .main-navigation ul ul a {
        color: #fff !important;
        padding: 0.5rem 1rem;
        white-space: normal !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        box-sizing: border-box;
        display: block;
        margin: 0;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .main-navigation ul ul a:hover {
        background: transparent !important;
        background-color: transparent !important;
    }
    
    .main-navigation ul ul li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        box-sizing: border-box;
        background: transparent !important;
        background-color: transparent !important;
    }
    
    /* 移动端有子菜单的项 */
    .main-navigation .menu-item-has-children > a::after {
        content: '▼';
        font-size: 0.7rem;
        margin-left: 0.5rem;
        float: right;
    }
    
    .main-navigation .menu-item-has-children.focus > a::after {
        transform: rotate(180deg);
    }
    
    /* 移动端：有三级菜单的二级菜单项不显示箭头 */
    .main-navigation ul ul .menu-item-has-children > a::after {
        display: none !important;
    }
    
    /* 移动端三级菜单 - 完全隐藏 */
    .main-navigation ul ul ul {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* 轮播图移动端样式 */
    .hero-slider {
        height: 500px;
        position: relative;
        overflow: hidden;
    }
    
    .slider-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .slider-slide {
        background-size: auto 100%;
        background-position: center center;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-description {
        font-size: 1.1rem;
    }
    
    .slider-prev,
    .slider-next {
        width: auto;
        height: auto;
        font-size: 1.5rem;
        background: transparent;
        border: none;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
    
    
    /* 移动端首页数字区域 */
    .home-numbers-section {
        padding: 20px 0;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .number-item {
        padding: 0.5rem;
    }
    
    .number-value {
        font-size: 2.5rem;
        font-weight: 900;
        margin-bottom: 0.3rem;
    }
    
    .number-value::after {
        font-size: 1.2rem;
        right: -0.5rem;
        font-weight: 900;
    }
    
    .number-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }
}

/* 文章列表 */
.post-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* 默认分类页列表样式 - 一行一条 */
.archive-post-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 0;
    padding-top: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.archive-post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-bottom: 5px solid #096da8;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.archive-post-card:hover {
    box-shadow: 0 4px 12px rgba(9, 109, 168, 0.15);
    transform: translateY(-3px);
    border-bottom-color: #096da8;
}

.archive-post-wrapper {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: flex-start;
}

.archive-post-thumbnail {
    flex: 0 0 200px;
    max-width: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.archive-post-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-post-card:hover .archive-post-image {
    transform: none;
}

.archive-post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.archive-post-title {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.archive-post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.archive-post-title a:hover {
    color: #096da8;
}

.archive-post-excerpt {
    color: #555;
    line-height: 1.6;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.archive-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.archive-post-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.archive-post-category a {
    color: #096da8;
    text-decoration: none;
    transition: color 0.3s;
}

.archive-post-category a:hover {
    color: #075a8a;
    text-decoration: underline;
}

.archive-post-date {
    color: #7f8c8d;
}

/* 默认分类页响应式 */
@media (max-width: 768px) {
    .archive-post-wrapper {
        flex-direction: column;
        padding: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .archive-post-thumbnail {
        flex: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .archive-post-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .archive-post-title {
        font-size: 1.25rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .archive-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .archive-post-excerpt {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .pagination {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
    }
    
    .post-navigation-simple {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .post-navigation-simple .nav-previous,
    .post-navigation-simple .nav-next {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .post-navigation-simple .nav-title {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

.post-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.post-card-title a {
    color: #2c3e50;
    text-decoration: none;
}

.post-card-title a:hover {
    color: #3498db;
}

.post-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* 侧边栏 */
.sidebar {
    margin-top: 2rem;
}

.widget {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 5px;
}

.widget-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.widget a {
    color: #333;
    text-decoration: none;
}

.widget a:hover {
    color: #3498db;
}

/* 联系表单样式 */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* 分页样式 */
.pagination {
    margin: 3rem 0;
    text-align: center;
}

.pagination .nav-links {
    display: inline-flex;
    gap: 0.5rem;
}

.pagination .page-numbers {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #3498db;
    color: #fff;
}

/* 面包屑导航 */
.breadcrumbs {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumbs a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* 文章元信息 */
.entry-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.entry-meta span {
    display: inline-block;
}

.entry-meta .cat-links {
    display: inline-block;
}

.entry-meta .cat-links a {
    color: #096da8;
    text-decoration: none;
    transition: color 0.3s;
}

.entry-meta .cat-links a:hover {
    color: #075a8a;
    text-decoration: underline;
}

/* 文章导航 */
.post-navigation {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* 简单文章导航（显示箭头和标题） */
.post-navigation-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    gap: 1rem;
}

.post-navigation-simple .nav-previous,
.post-navigation-simple .nav-next {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    color: #096da8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    flex: 1;
    max-width: 48%;
}

.post-navigation-simple .nav-previous {
    justify-content: flex-start;
}

.post-navigation-simple .nav-next {
    justify-content: flex-end;
}

.post-navigation-simple .nav-previous:hover,
.post-navigation-simple .nav-next:hover {
    background: #096da8;
    color: #fff;
    border-color: #096da8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(9, 109, 168, 0.2);
}

.post-navigation-simple .nav-previous.disabled,
.post-navigation-simple .nav-next.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: #f8f9fa;
    color: #ccc;
    cursor: not-allowed;
    border: 1px solid #e0e0e0;
    opacity: 0.5;
    flex: 1;
    max-width: 48%;
}

.post-navigation-simple svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.post-navigation-simple .nav-title {
    font-size: 0.95rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.post-navigation-simple .nav-previous .nav-title {
    text-align: left;
}

.post-navigation-simple .nav-next .nav-title {
    text-align: right;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1;
}

.post-navigation a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    transition: background 0.3s;
}

.post-navigation a:hover {
    background: #e9ecef;
}

.post-navigation .nav-subtitle {
    display: block;
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.post-navigation .nav-title {
    display: block;
    font-weight: 500;
}

/* 评论区域 */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* 搜索表单 */
.search-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 2rem auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-form input[type="submit"] {
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.search-form input[type="submit"]:hover {
    background: #2980b9;
}

/* 最新文章区域 */
/* 无内容提示 */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* 错误页面 */
.error-404 {
    padding: 4rem 2rem;
}

.error-404 .page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.error-actions {
    margin: 2rem 0;
}

.search-form-wrapper {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.search-form-wrapper h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* 工具类 */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Honors分类列表样式 - 使用产品卡片样式 */
.honors-item {
    cursor: pointer;
}

.honors-item .product-thumbnail {
    cursor: pointer;
}

/* Talent卡片链接样式 */
.talent-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.talent-card-link:hover {
    text-decoration: none;
}

.talent-card-link .product-card-title {
    color: #000;
    transition: color 0.3s;
}

.talent-card-link:hover .product-card-title {
    color: #096da8;
}

/* Talent内容页样式 */
.talent-single-content {
    margin-bottom: 2rem;
}

.talent-single-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.talent-single-left {
    flex: 0 0 30%;
    max-width: 30%;
}

.talent-single-right {
    flex: 1;
}

.talent-single-thumbnail {
    width: 100%;
    margin-bottom: 0;
}

.talent-single-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.talent-single-content .entry-header {
    margin-bottom: 1.5rem;
}

.talent-single-content .entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.talent-single-content .entry-content {
    line-height: 1.8;
}

/* Talent内容页响应式 */
@media (max-width: 768px) {
    .talent-single-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .talent-single-left {
        flex: 1;
        max-width: 100%;
    }
    
    .talent-single-right {
        flex: 1;
    }
    
    .talent-single-content .entry-title {
        font-size: 1.5rem;
    }
}

/* Honors图片放大层 */
.honors-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.honors-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.honors-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.honors-lightbox-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.honors-lightbox-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 120px);
    min-width: 0;
}

.honors-lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
}

.honors-lightbox-title {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
}

.honors-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    padding: 0;
}

.honors-lightbox-close:hover {
    transform: rotate(90deg);
    color: #096da8;
}

.honors-lightbox-prev,
.honors-lightbox-next {
    position: relative;
    color: #fff;
    cursor: pointer;
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 10001;
    flex-shrink: 0;
}

.honors-lightbox-prev svg,
.honors-lightbox-next svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    transition: stroke 0.3s ease;
}

.honors-lightbox-prev:hover,
.honors-lightbox-next:hover {
    background: rgba(9, 109, 168, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.honors-lightbox-prev:hover svg,
.honors-lightbox-next:hover svg {
    stroke: #fff;
}

.honors-lightbox-prev:active,
.honors-lightbox-next:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .honors-lightbox-main {
        gap: 1rem;
    }
    
    .honors-lightbox-image-wrapper {
        max-width: calc(100% - 100px);
    }
    
    .honors-lightbox-image {
        max-height: 60vh;
    }
    
    .honors-lightbox-prev,
    .honors-lightbox-next {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .honors-lightbox-prev svg,
    .honors-lightbox-next svg {
        width: 20px;
        height: 20px;
    }
    
    .honors-lightbox-title {
        font-size: 1rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .honors-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

