/* ========================================
   子页面通用样式
   ======================================== */

/* 页面主体 */
.page-body {
    background: #f8f8f8;
    padding: 0;
    margin: 0;
}

/* 页面导航栏 - 深色背景 */
.navbar-page {
    background: rgba(26, 26, 26, 0.95);
    position: relative;
}

.navbar-page .navbar-brand,
.navbar-page .nav-link,
.navbar-page .lang-switch a,
.navbar-page .lang-switch .divider {
    color: #fff;
}

.navbar-page.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.navbar-page.scrolled .navbar-brand,
.navbar-page.scrolled .nav-link,
.navbar-page.scrolled .lang-switch a,
.navbar-page.scrolled .lang-switch .divider {
    color: var(--color-dark);
}

/* 子页面导航链接下划线 */
.navbar-page .nav-link {
    position: relative;
}

.navbar-page .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.navbar-page .nav-link:hover::after,
.navbar-page .nav-link.active::after {
    width: 30px;
}

/* 子页面全屏下拉菜单 */
.navbar-page .dropdown {
    position: static;
}

.navbar-page .dropdown-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 3rem 0 4rem;
    margin: 0;
    background: rgba(26, 26, 26, 0.35) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-radius: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 5rem;
    float: none;
}

.navbar-page .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.navbar-page .dropdown-menu li {
    display: block;
    text-align: center;
}

.navbar-page .dropdown-menu a {
    display: block;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.navbar-page .dropdown-menu a:hover {
    color: var(--color-secondary);
    background: transparent;
}

.navbar-page .dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.navbar-page .dropdown-menu a:hover::after {
    width: 30px;
}

.navbar-page .dropdown:hover .nav-link {
    color: var(--color-secondary);
}

.navbar-page.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-page.scrolled .dropdown-menu a {
    color: var(--color-dark);
}

.navbar-page.scrolled .dropdown-menu a:hover {
    color: var(--color-secondary);
}

.navbar-page .nav-link:hover,
.navbar-page .nav-link.active {
    color: var(--color-secondary);
}

/* 页面横幅 */
.page-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-title {
    font-family: var(--font-slogan);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.page-breadcrumb {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--color-secondary);
}

.page-breadcrumb .separator {
    margin: 0 0.75rem;
    opacity: 0.5;
}

.page-breadcrumb .current {
    color: var(--color-secondary);
}

/* 通用间距 */
.section-padding {
    padding: 5rem 0;
}

.bg-light {
    background: #f8f8f8;
}

.bg-dark {
    background: var(--color-dark);
}

/* 区块标题 */
.section-header {
    margin-bottom: 3rem;
}

.section-header .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.section-header .section-title {
    font-family: var(--font-slogan);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.15em;
}

.section-header .section-title.text-white {
    color: white;
}

/* 公司简介 */
.intro-content .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.intro-content .section-title {
    font-family: var(--font-slogan);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1rem;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.intro-stat {
    text-align: center;
}

.intro-stat .stat-num {
    display: block;
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1;
}

.intro-stat .stat-text {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

.intro-image {
    padding-left: 2rem;
}

.image-placeholder {
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

/* 企业文化卡片 */
.culture-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.culture-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.culture-card h3 {
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.culture-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 资质荣誉 */
.honor-gallery {
    margin-top: 2rem;
}

.honor-item {
    text-align: center;
    margin-bottom: 2rem;
}

.honor-image {
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    margin-bottom: 1rem;
}

.honor-title {
    font-size: 0.95rem;
    color: var(--color-dark);
    margin: 0;
}

/* 厂房设备 */
.equipment-section .section-label {
    color: var(--color-secondary);
}

.equipment-card {
    text-align: center;
    margin-bottom: 2rem;
}

.equipment-image {
    background: rgba(255, 255, 255, 0.1);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.equipment-card h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.equipment-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* 页脚扩展 */
.footer-section {
    background: #0a0a0a;
    color: white;
    padding: 2rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-brand);
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

.footer-contact h4,
.footer-links h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
}

.footer-contact i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--color-secondary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ========================================
   产品展示页面样式
   ======================================== */

.product-categories {
    padding: 4rem 0;
}

.product-category {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid #eee;
}

.product-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-image {
    position: relative;
}

.category-image .image-placeholder {
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

.category-content {
    padding: 2rem;
}

.category-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.category-title {
    font-family: var(--font-slogan);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.category-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1.5rem;
}

.category-fabrics {
    margin-bottom: 2rem;
}

.category-fabrics h4 {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.category-fabrics ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-fabrics li {
    font-size: 0.9rem;
    color: var(--color-dark);
    padding: 0.4rem 1rem;
    background: #f0f0f0;
    border-radius: 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 1px solid var(--color-dark);
    transition: all 0.3s ease;
}

.category-link:hover {
    background: var(--color-dark);
    color: white;
    text-decoration: none;
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}



/* ========================================
   联系页面样式
   ======================================== */

/* 联系卡片 */
.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--color-secondary);
}

.contact-card h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.contact-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 联系表单 */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border: 1px solid #eee;
}

.contact-form-wrapper .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-form-wrapper .section-title {
    font-family: var(--font-slogan);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.contact-form label {
    font-size: 0.9rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: none;
}

.contact-form select.form-control {
    height: auto;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: white;
    background: var(--color-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--color-secondary);
}

/* 地图区域 */
.map-wrapper {
    padding-left: 2rem;
}

.map-wrapper .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.map-wrapper .section-title {
    font-family: var(--font-slogan);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.map-container {
    margin-bottom: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, #e8e4df 0%, #d4cfc7 100%);
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-placeholder span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.map-info h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.map-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-info li {
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-info i {
    width: 20px;
    color: var(--color-secondary);
}

/* 二维码区域 */
.qr-section {
    background: var(--color-dark);
}

.qr-section .section-label {
    color: var(--color-secondary);
}

.qr-section .section-title {
    color: white;
}

.qr-card {
    text-align: center;
}

.qr-placeholder {
    background: white;
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9rem;
}

.qr-card h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.qr-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   详情页样式
   ======================================== */

.detail-section {
    padding: 4rem 0;
}

.detail-content {
    background: white;
    padding: 3rem;
    border: 1px solid #eee;
}

.detail-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.detail-title {
    font-family: var(--font-slogan);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.5;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

.detail-meta i {
    margin-right: 0.3rem;
    color: var(--color-secondary);
}

.detail-image {
    margin-bottom: 2rem;
}

.detail-image img {
    width: 100%;
}

.detail-body {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
}

.detail-body p {
    margin-bottom: 1.5rem;
}

.detail-body img {
    max-width: 100%;
    height: auto;
}

.detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.detail-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-share span {
    font-size: 0.9rem;
    color: #666;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--color-dark);
    color: white;
    text-decoration: none;
}

/* 上一篇/下一篇 */
.detail-nav {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f8f8;
}

.detail-nav a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-nav a:hover {
    color: var(--color-secondary);
}

.detail-nav i {
    margin: 0 0.5rem;
}

/* 侧边栏 */
.detail-sidebar {
    padding-left: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.1em;
}

/* 搜索表单 */
.search-form {
    position: relative;
}

.search-form input {
    padding-right: 50px;
    border-radius: 0;
    border: 1px solid #ddd;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50px;
    background: var(--color-dark);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--color-secondary);
}

/* 热门列表 */
.hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-list li {
    margin-bottom: 1rem;
}

.hot-list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.hot-num {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    font-size: 0.8rem;
    color: #666;
    flex-shrink: 0;
}

.hot-list li:first-child .hot-num {
    background: var(--color-secondary);
    color: white;
}

.hot-title {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hot-list a:hover .hot-title {
    color: var(--color-secondary);
}

/* 相关列表 */
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 1rem;
}

.related-list a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
}

.related-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.related-info span {
    font-size: 0.8rem;
    color: #999;
}

.related-list a:hover .related-info h5 {
    color: var(--color-secondary);
}

/* ========================================
   关于我们页面 V2 样式
   ======================================== */

/* 愿景区块 */
.about-vision-section {
    position: relative;
    padding: 8rem 0;
    background: var(--color-dark);
    color: white;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,26,0.8), rgba(26,26,26,0.9));
}

.about-vision-section .container {
    position: relative;
    z-index: 2;
}

.vision-content {
    text-align: center;
}

.vision-year {
    display: inline-block;
    font-family: var(--font-brand);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--color-secondary);
}

.vision-title {
    font-family: var(--font-slogan);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.vision-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.vision-divider .line {
    width: 80px;
    height: 1px;
    background: rgba(201,169,110,0.5);
}

.vision-divider i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.vision-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255,255,255,0.8);
    max-width: 900px;
    margin: 0 auto;
}

/* 公司简介区块 */
.company-profile-section {
    background: white;
}

.profile-content .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1rem;
}

.profile-content .section-title {
    font-family: var(--font-slogan);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-dark);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.profile-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 1rem;
}

.profile-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.profile-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.profile-features .feature-item i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.profile-image-wrapper {
    position: relative;
    padding-left: 2rem;
}

.profile-image {
    overflow: hidden;
    border-radius: 4px;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.profile-stats .stat-box {
    text-align: center;
    flex: 1;
}

.profile-stats .stat-number {
    display: block;
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.profile-stats .stat-label {
    font-size: 0.85rem;
    color: #666;
}

/* 企业文化卡片 V2 */
.culture-card-v2 {
    background: white;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
}

.culture-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.culture-icon-v2 {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.culture-icon-v2 i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.culture-card-v2 h3 {
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.culture-card-v2 p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 发展历程 */
.history-section {
    background: white;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #eee;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 100px;
    font-family: var(--font-brand);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-align: center;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
}

.timeline-content h4 {
    font-family: var(--font-slogan);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* 合作伙伴 */
.partners-section {
    background: var(--color-dark);
}

.partners-section .section-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 1rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.partner-logo {
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

/* 资质荣誉 V2 */
.honor-item-v2 {
    margin-bottom: 2rem;
}

.honor-image-v2 {
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 1rem;
}

.honor-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.honor-item-v2:hover .honor-image-v2 img {
    transform: scale(1.05);
}

.honor-title-v2 {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin: 0;
}

/* 资质荣誉 V3 - 新设计 */
.honor-item-v3 {
    margin-bottom: 2rem;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.honor-item-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.honor-image-v3 {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/255;
    background: #f8f8f8;
}

.honor-image-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.honor-item-v3:hover .honor-image-v3 img {
    transform: scale(1.05);
}

.honor-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.honor-item-v3:hover .honor-overlay {
    opacity: 1;
}

.honor-overlay i {
    font-size: 2rem;
    color: white;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-info {
    padding: 1.5rem;
    text-align: center;
}

.honor-info h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.honor-info p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* 资质证书轮播 */
.honor-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.honor-carousel {
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
}

.honor-carousel-item {
    flex: 0 0 calc(25% - 15px);
    min-width: calc(25% - 15px);
}

/* 发明专利证书 - 竖版比例 250x358 */
#patentCarousel .honor-image-v3 {
    aspect-ratio: 250/358;
}

.honor-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.honor-carousel-btn:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: white;
}

.honor-prev {
    left: 0;
}

.honor-next {
    right: 0;
}

@media (max-width: 991px) {
    .honor-carousel-item {
        flex: 0 0 calc(33.333% - 14px);
        min-width: calc(33.333% - 14px);
    }
}

@media (max-width: 767px) {
    .honor-carousel-wrapper {
        padding: 0 40px;
    }
    
    .honor-carousel-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .honor-carousel-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ========================================
   产品展示页面样式
   ======================================== */

/* 产品系列导航 */
.product-nav-section {
    background: var(--color-dark);
    padding: 1.5rem 0;
    margin: 0;
    border: none;
}

.product-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.product-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-nav-item:hover,
.product-nav-item.active {
    color: var(--color-secondary);
    text-decoration: none;
}

.product-nav-item .nav-num {
    font-family: var(--font-brand);
    font-size: 0.75rem;
    opacity: 0.5;
}

.product-nav-item .nav-name {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* 产品系列区块 */
.product-series-section {
    padding: 0;
    margin: 0;
}

.product-series-section:first-of-type {
    margin-top: 0;
}

.series-header {
    position: relative;
    padding: 6rem 0;
    color: white;
    overflow: hidden;
}

.series-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.series-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 50%, rgba(26,26,26,0.3) 100%);
}

.series-header .container {
    position: relative;
    z-index: 2;
}

.series-header-content {
    max-width: 600px;
}

.series-num {
    font-family: var(--font-brand);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
}

.series-title {
    font-family: var(--font-slogan);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.series-subtitle {
    font-size: 1rem;
    color: var(--color-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.series-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
}

/* 产品画廊 */
.series-gallery {
    padding: 4rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.gallery-grid.grid-reverse {
    grid-template-columns: 1fr 1fr 2fr;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: white;
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.gallery-tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    width: fit-content;
}

/* 产品优势 */
.product-advantages {
    background: var(--color-dark);
}

.advantage-item {
    text-align: center;
    padding: 2rem;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--color-secondary);
}

.advantage-item h4 {
    color: white;
    font-family: var(--font-slogan);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* 响应式 */
@media (max-width: 991px) {
    .gallery-grid,
    .gallery-grid.grid-reverse {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 250px);
    }
    
    .gallery-item.large {
        grid-row: span 1;
    }
    
    .product-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .series-header {
        padding: 4rem 0;
    }
    
    .series-title {
        font-size: 2rem;
    }
    
    .gallery-grid,
    .gallery-grid.grid-reverse {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
    }
    
    .product-nav-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

/* ========================================
   核心技术页面样式
   ======================================== */

/* 技术导航 */
.tech-nav-section {
    background: var(--color-dark);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tech-nav {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.tech-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tech-nav-item:hover,
.tech-nav-item.active {
    color: var(--color-secondary);
    text-decoration: none;
}

.tech-nav-item .nav-icon {
    width: 40px;
    height: 40px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.tech-nav-item:hover .nav-icon,
.tech-nav-item.active .nav-icon {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.tech-nav-item .nav-name {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* 技术区块 */
.tech-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.tech-dark {
    color: white;
}

.tech-light {
    background: #f8f8f8;
    color: var(--color-dark);
}

.tech-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.tech-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.4) 100%);
}

.tech-section .container {
    position: relative;
    z-index: 2;
}

/* 技术头部 */
.tech-header {
    margin-bottom: 2.5rem;
}

.tech-num {
    font-family: var(--font-brand);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
}

.tech-label {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.tech-dark .tech-label {
    color: var(--color-secondary);
}

.tech-light .tech-label {
    color: var(--color-dark);
    opacity: 0.5;
}

.tech-title {
    font-family: var(--font-slogan);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.tech-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.tech-tag {
    font-size: 1rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

/* 技术描述 */
.tech-desc {
    max-width: 600px;
    margin-bottom: 3rem;
}

.tech-desc p {
    font-size: 1.1rem;
    line-height: 2;
    opacity: 0.9;
}

/* 技术特性 */
.tech-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-features.compact {
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon.small {
    width: 60px;
    height: 60px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--color-secondary);
}

.feature-icon.small i {
    font-size: 1.3rem;
}

.feature-item h4 {
    font-family: var(--font-slogan);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

/* 双栏布局 */
.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-content-wrapper.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.tech-content-wrapper.reverse > * {
    direction: ltr;
}

.tech-image-side img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.tech-info-side {
    padding: 2rem 0;
}

/* 数据展示 */
.tech-data {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.data-item {
    text-align: center;
}

.data-value {
    display: block;
    font-family: var(--font-brand);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
}

.data-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
}

/* 高亮数字（凉感科技） */
.tech-highlight {
    text-align: center;
    margin: 3rem 0;
}

.tech-content.center {
    text-align: center;
}

.tech-content.center .tech-header {
    text-align: center;
}

.tech-content.center .tech-desc {
    margin-left: auto;
    margin-right: auto;
}

.tech-content.center .tech-features {
    justify-content: center;
}

.highlight-number {
    font-family: var(--font-brand);
    font-size: 8rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    text-shadow: 0 0 60px rgba(201,169,110,0.3);
}

.highlight-unit {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-top: 0.5rem;
}

.highlight-desc {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
    letter-spacing: 0.1em;
}

/* 核心技术横幅 */
.hexin-banner .page-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0.8;
    margin-top: 1rem;
}

/* 技术检测表格 */
.tech-table-wrapper {
    margin-top: 2rem;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.table-title {
    font-family: var(--font-slogan);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: white;
    background: #7cb342;
    padding: 1rem 1.5rem;
    margin: 0;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tech-table thead {
    background: #2e7d32;
}

.tech-table th {
    color: white;
    font-weight: 500;
    padding: 1rem 0.75rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.tech-table td {
    padding: 0.9rem 0.75rem;
    text-align: center;
    border-bottom: 1px solid #e8f5e9;
    color: #2e7d32;
}

.tech-table tbody tr:last-child td {
    border-bottom: none;
}

.tech-table tbody tr:nth-child(even) {
    background: #f1f8e9;
}

.tech-table tbody tr:hover {
    background: #dcedc8;
}

.result-pass {
    color: #2e7d32;
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 991px) {
    .tech-content-wrapper,
    .tech-content-wrapper.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }
    
    .tech-title {
        font-size: 2.2rem;
    }
    
    .highlight-number {
        font-size: 5rem;
    }
    
    .tech-nav {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .tech-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .tech-num {
        font-size: 3rem;
    }
    
    .tech-features {
        justify-content: center;
    }
    
    .feature-item {
        min-width: 100px;
    }
    
    .tech-data {
        gap: 1.5rem;
    }
}

/* 技术亮点盒子 */
.tech-highlight-box {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: #f0f7ff;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.highlight-item {
    text-align: center;
    flex: 1;
}

.highlight-item .h-num {
    display: block;
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 700;
    color: #1976d2;
    line-height: 1;
}

.highlight-item .h-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

/* 技术口号 */
.tech-slogan {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.tech-slogan p {
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin: 0;
}

.tech-light .tech-slogan {
    border-color: rgba(0,0,0,0.1);
}

.tech-light .tech-slogan p {
    color: var(--color-dark);
}

/* 厂房设备 V2 */
.equipment-card-v2 {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s ease;
}

.equipment-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.equipment-image-v2 {
    overflow: hidden;
}

.equipment-image-v2 img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.equipment-card-v2:hover .equipment-image-v2 img {
    transform: scale(1.05);
}

.equipment-info {
    padding: 1.5rem;
}

.equipment-info h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.equipment-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* 关于我们 CTA */
.about-cta-section {
    padding: 5rem 0;
    background: var(--color-secondary);
    color: white;
    text-align: center;
}

.about-cta-section h2 {
    font-family: var(--font-slogan);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.about-cta-section p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.cta-item i {
    font-size: 1.2rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--color-dark);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--color-dark);
    color: white;
    text-decoration: none;
}

/* 响应式 */
@media (max-width: 991px) {
    .about-vision-section {
        padding: 5rem 0;
    }
    
    .profile-image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .profile-stats {
        gap: 1rem;
    }
    
    .profile-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .history-timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    
    .timeline-year {
        text-align: left;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content {
        padding: 0;
    }
    
    .cta-contact {
        flex-direction: column;
        gap: 1rem;
    }
}

/* 列表页通用样式 */
.list-section {
    padding: 4rem 0;
}

.sort-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.content-list {
    margin-bottom: 3rem;
}

.content-item {
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
}

.content-item:first-child {
    padding-top: 0;
}

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

.content-image {
    margin-bottom: 1rem;
}

.content-image img {
    width: 100%;
}

.content-info {
    padding: 0.5rem 0;
}

.content-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.content-sort {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    background: rgba(201, 169, 110, 0.1);
}

.content-date {
    font-size: 0.85rem;
    color: #999;
}

.content-title {
    font-family: var(--font-slogan);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.content-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-title a:hover {
    color: var(--color-secondary);
}

.content-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.content-link i {
    transition: transform 0.3s ease;
}

.content-link:hover i {
    transform: translateX(5px);
}

/* 响应式适配 */
@media (max-width: 991px) {
    /* 移动端下拉菜单调整为普通下拉 */
    .navbar-page .dropdown-menu {
        position: static;
        display: none;
        padding: 0.5rem 0;
        background: rgba(0, 0, 0, 0.3);
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
    }
    
    .navbar-page .dropdown.show .dropdown-menu,
    .navbar-page .dropdown-menu.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .intro-image {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .intro-stats {
        justify-content: center;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .category-content {
        padding: 1.5rem 0;
    }
    
    .product-category.reverse .category-image {
        order: -1;
    }
    
    .map-wrapper {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .qr-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .intro-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .culture-card {
        margin-bottom: 1.5rem;
    }
    
    .footer-section .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .news-image {
        margin-bottom: 1.5rem;
    }
    
    .news-content {
        padding: 0;
    }
    
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .filter-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .category-fabrics ul {
        gap: 0.5rem;
    }
    
    .category-fabrics li {
        padding: 0.3rem 0.75rem;
        font-size: 0.85rem;
    }
    
    /* 详情页响应式 */
    .detail-content {
        padding: 1.5rem;
    }
    
    .detail-title {
        font-size: 1.4rem;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .detail-sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .detail-nav .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .content-image {
        margin-bottom: 1.5rem;
    }
    
    .content-info {
        padding: 0;
    }
}

/* ========================================
   新闻列表页 V2 样式 - 现代化卡片设计
   ======================================== */

/* 新闻筛选器 V2 */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-item:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    text-decoration: none;
}

.filter-item.active {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.75rem;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
}

.filter-item.active .filter-count {
    background: rgba(255,255,255,0.2);
}

/* 新闻网格布局 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* 新闻卡片 */
.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.news-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.08);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

.read-more {
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--color-dark);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.news-card:hover .read-more {
    transform: translateY(0);
}

.news-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 2;
}

.news-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #999;
}

.news-card-meta i {
    margin-right: 0.3rem;
    color: var(--color-secondary);
}

.news-card-title {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.news-card-title a {
    color: var(--color-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--color-secondary);
}

.news-card-excerpt {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-card-link:hover {
    color: var(--color-secondary);
    text-decoration: none;
}

.news-card-link svg {
    transition: transform 0.3s ease;
}

.news-card-link:hover svg {
    transform: translateX(4px);
}

/* 精选推荐区块 */
.featured-news-section {
    padding: 5rem 0;
    background: var(--color-dark);
    color: white;
}

.featured-news-section .section-label {
    color: var(--color-secondary);
}

.featured-news-section .section-title {
    color: white;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-news-item {
    position: relative;
}

.featured-news-link {
    display: block;
    text-decoration: none;
    color: white;
}

.featured-news-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/10;
    margin-bottom: 1rem;
}

.featured-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-news-link:hover .featured-news-image img {
    transform: scale(1.08);
}

.featured-news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.featured-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.featured-news-category {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.featured-news-content h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.featured-news-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   文章详情页 V2 样式
   ======================================== */

/* 小型横幅 */
.page-banner-sm {
    height: 280px;
}

/* 文章区块 */
.article-section {
    padding: 4rem 0;
}

.article-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* 文章头部 */
.article-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.article-category {
    margin-bottom: 1rem;
}

.category-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(201, 169, 110, 0.1);
    color: var(--color-secondary);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
}

.article-title {
    font-family: var(--font-slogan);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

.meta-item i {
    color: var(--color-secondary);
}

/* 文章图片 */
.article-image {
    margin: 0 2.5rem 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章正文 */
.article-body {
    padding: 0 2.5rem 2.5rem;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    font-family: var(--font-slogan);
    color: var(--color-dark);
    margin: 2rem 0 1rem;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.5rem;
}

.article-body h3 {
    font-size: 1.25rem;
}

.article-body h4 {
    font-size: 1.1rem;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-body ul,
.article-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: #f8f8f8;
    border-left: 4px solid var(--color-secondary);
    font-style: italic;
    color: #666;
}

/* 文章标签 */
.article-tags {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tags-label {
    font-size: 0.9rem;
    color: #666;
}

.tags-label i {
    color: var(--color-secondary);
    margin-right: 0.3rem;
}

.tag-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f5f5f5;
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--color-dark);
    color: white;
    text-decoration: none;
}

/* 文章分享 */
.article-share {
    padding: 1.5rem 2.5rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-size: 0.9rem;
    color: #666;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn.wechat {
    background: #07c160;
}

.share-btn.weibo {
    background: #e6162d;
}

.share-btn.qq {
    background: #12b7f5;
}

.share-btn.link {
    background: #999;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* 文章导航 */
.article-nav {
    padding: 1.5rem 2.5rem;
    background: #f8f8f8;
    border-top: 1px solid #f0f0f0;
}

.article-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-nav a:hover {
    color: var(--color-secondary);
}

/* 侧边栏 */
.article-sidebar {
    padding-left: 1rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.widget-title {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-secondary);
    letter-spacing: 0.05em;
}

/* 搜索表单 */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45px;
    background: var(--color-dark);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: var(--color-secondary);
}

/* 热门文章列表 */
.hot-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-news-list li {
    margin-bottom: 0.75rem;
}

.hot-news-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.hot-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 4px;
    flex-shrink: 0;
}

.hot-news-list li:first-child .hot-num {
    background: var(--color-secondary);
    color: white;
}

.hot-news-list li:nth-child(2) .hot-num {
    background: #c9a96e80;
    color: white;
}

.hot-news-list li:nth-child(3) .hot-num {
    background: #c9a96e40;
    color: #666;
}

.hot-title {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.hot-news-list a:hover .hot-title {
    color: var(--color-secondary);
}

/* 相关推荐 */
.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-news-item {
    display: flex;
    gap: 1rem;
    text-decoration: none;
}

.related-news-image {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-news-item:hover .related-news-image img {
    transform: scale(1.1);
}

.related-news-info {
    flex: 1;
}

.related-news-info h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.related-news-info span {
    font-size: 0.8rem;
    color: #999;
}

.related-news-item:hover .related-news-info h5 {
    color: var(--color-secondary);
}

/* 分类列表 */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f0f0f0;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--color-secondary);
    padding-left: 0.5rem;
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    background: #f5f5f5;
    color: #888;
    font-size: 0.75rem;
    border-radius: 12px;
}

/* ========================================
   响应式适配
   ======================================== */

@media (max-width: 1199px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-news-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-filter {
        gap: 0.5rem;
    }
    
    .filter-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .article-header,
    .article-body,
    .article-tags,
    .article-share,
    .article-nav {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .article-image {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* ========================================
   分页样式美化 - PbootCMS 适配
   ======================================== */

.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* PbootCMS 分页条容器 */
.pagination-wrapper .pagination {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f8f8;
    border-radius: 30px;
    margin: 0;
}

/* 首页、上一页、下一页、尾页按钮 */
.pagination-wrapper .pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    background: white;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.pagination-wrapper .pagination .page-link:hover {
    color: var(--color-secondary);
    background: white;
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.25);
    text-decoration: none;
}

/* 数字页码容器 */
.pagination-wrapper .page-numbar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* 数字页码 */
.pagination-wrapper .page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.5rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-wrapper .page-num:hover {
    color: var(--color-dark);
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

/* 当前页码 - 金色高亮 */
.pagination-wrapper .page-num-current {
    background: var(--color-secondary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4) !important;
}

/* 禁用状态 */
.pagination-wrapper .pagination .page-link.disabled,
.pagination-wrapper .pagination .page-link[href="javascript:;"] {
    color: #ccc;
    background: #f0f0f0;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* 响应式 */
@media (max-width: 767px) {
    .pagination-wrapper {
        margin-top: 2rem;
    }
    
    .pagination-wrapper .pagination {
        gap: 0.35rem;
        padding: 0.35rem 0.75rem;
    }
    
    .pagination-wrapper .pagination .page-link {
        height: 36px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }
    
    .pagination-wrapper .page-num {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ========================================
   联系页面样式 - 大气专业设计
   ======================================== */

/* Contact Hero */
.contact-hero {
    padding: 5rem 0 3rem;
    background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.contact-title {
    font-family: var(--font-slogan);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.contact-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.contact-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-secondary);
}

/* Contact Info Cards */
.contact-info-section {
    padding: 3rem 0 5rem;
}

.contact-cards-row {
    margin-top: 2rem;
}

.contact-info-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.contact-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-dark);
    color: white;
    font-size: 1.75rem;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--color-secondary);
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.contact-info-card h4 {
    font-family: var(--font-slogan);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.contact-detail {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.8rem;
    color: #999;
}

/* Address Section */
.address-section {
    padding: 5rem 0;
}

.address-section .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 1rem;
}

.address-row {
    margin-top: 3rem;
}

.address-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.4s ease;
}

.address-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.address-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2a2a2a 100%);
    color: white;
    position: relative;
}

.address-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color-secondary);
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.address-badge.badge-secondary {
    background: #4a90a4;
}

.address-city {
    font-family: var(--font-slogan);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

.address-city i {
    margin-right: 0.75rem;
    color: var(--color-secondary);
}

.address-body {
    padding: 2rem;
}

.address-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.address-item:last-child {
    margin-bottom: 0;
}

.address-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    color: var(--color-secondary);
    font-size: 1.1rem;
    border-radius: 10px;
    flex-shrink: 0;
}

.address-content h5 {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.address-content p {
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
}

.address-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--color-dark);
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
    text-decoration: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
}

.form-info {
    padding-right: 2rem;
}

.form-label {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.form-title {
    font-family: var(--font-slogan);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.form-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.form-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    text-align: left;
    display: inline-block;
}

.form-features li {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-features li:last-child {
    margin-bottom: 0;
}

.form-features li i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

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

.contact-form label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form .required {
    color: #e74c3c;
}

.contact-form .form-control {
    height: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
    outline: none;
}

.contact-form textarea.form-control {
    height: auto;
    resize: vertical;
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-dark);
    color: white;
    font-size: 1rem;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Quick Contact Bar */
.quick-contact-bar {
    padding: 3rem 0;
    background: var(--color-dark);
}

.quick-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.quick-contact-text h3 {
    font-family: var(--font-slogan);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.quick-contact-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.quick-contact-btns {
    display: flex;
    gap: 1rem;
}

.btn-phone,
.btn-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-phone {
    background: var(--color-secondary);
    color: white;
}

.btn-phone:hover {
    background: #b8956a;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

.btn-email {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-email:hover {
    background: white;
    color: var(--color-dark);
    text-decoration: none;
}

/* 响应式 */
@media (max-width: 991px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .form-info {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }
    
    .form-features {
        display: inline-block;
        text-align: left;
    }
    
    .quick-contact-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 3rem 0 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-desc {
        font-size: 1rem;
    }
    
    .address-card {
        margin-bottom: 1.5rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .quick-contact-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-phone,
    .btn-email {
        justify-content: center;
    }
}

/* WeChat QR Modal */
.wechat-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.wechat-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 320px;
    width: 100%;
    text-align: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wechat-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    border-radius: 50%;
}

.wechat-close:hover {
    color: var(--color-dark);
    background: #f5f5f5;
}

.wechat-qr-wrap {
    padding: 1rem 0;
}

.wechat-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.wechat-qr-text {
    font-size: 1rem;
    color: #666;
    margin: 0;
}