/* 移动端样式 - 仅在屏幕宽度 <= 768px 时生效 */

/* PC端元素隐藏 */
@media (max-width: 768px) {

    /* 隐藏所有PC端元素 */
    .pc-only {
        display: none !important;
    }
}

/* 移动端元素显示 */
@media (min-width: 769px) {

    /* 隐藏所有移动端元素 */
    .mobile-only {
        display: none !important;
    }
}

/* 移动端样式 */
@media (max-width: 768px) {

    /* ============================================
       基础样式（通用）
       ============================================ */

    /* 移动端基础样式 */
    * {
        box-sizing: border-box;
    }

    .main {
        font-size: 14px;
        min-height:100vh;
        display: flex;
        flex-direction: column;
        padding-top: 40px;
    }

    .content-war {
        flex:1;
    }
    .no-data-text{
        font-size: 14px;
        text-align: center;
        color: #999;
        padding: 10px 0;
    }

    /* ============================================
       通用轮播图样式（多个页面共用）
       ============================================ */

    .main .news-hero-section {
        margin-top: 0;
        position: relative;
        margin-bottom: 0;
        height: auto !important;
        min-height: 200px;
        overflow: hidden !important;
    }

    .main .news-hero-section .banner-con {
        width: 100%;
        height: 200px;
        position: relative;
    }

    /* 面包屑导航在移动端隐藏 */
    .main .news-hero-section .breadcrumb-section {
        display: none !important;
    }

    /* ============================================
       移动端头部样式
       ============================================ */

    #header-mobile {
        width: 100%;
        background: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10000;
    }

    .top-nav {
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 16px;
    }

    .top-nav-left {
        display: flex;
        align-items: center;
    }

    .top-nav-left-logo {
        display: flex;
        align-items: center;
        padding: 8px 0;
    }

    .top-nav-left-logo img {
        width: 155px;
    }

    .top-nav-right {
        display: flex;
        align-items: center;
    }

    .top-nav-menu-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #CA161E;
        transition: background-color 0.3s ease;
    }

    .top-nav-menu-btn.active {
        /* background: #A01218; */
    }

    .top-nav-menu-btn img {
        width: 24px;
        height: 24px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .top-nav-menu-btn.active img {
        transform: rotate(90deg);
    }

    /* 移动端抽屉菜单样式 */
    .mobile-drawer-overlay {
        position: fixed;
        top: 40px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        cursor: pointer;
    }

    .mobile-drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-drawer {
        position: fixed;
        top: 40px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 40px);
        z-index: 9999;
        display: flex;
        transition: right 0.3s ease;
    }

    .mobile-drawer.active {
        right: 0;
    }

    .mobile-drawer-sidebar {
        width: calc(100% - 188px);
        /* background: #0000007a; */
    }

    .mobile-drawer-content {
        width: 188px;
        background: #fff;
        overflow-y: auto;
    }

    .mobile-nav-list {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .mobile-nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-link {
        display: block;
        padding: 16px 20px;
        color: #000;
        text-decoration: none;
        text-align: center;
        font-size: 16px;
        width: 100%;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .mobile-nav-link.active {
        background: #CA161E;
        color: #fff;
    }

    .mobile-nav-item-has-child .mobile-nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
    }

    .mobile-nav-arrow {
        font-size: 20px;
        color: #999;
        transition: transform 0.3s ease;
        position: absolute;
        right: 20px;
    }

    .mobile-nav-item-has-child.active .mobile-nav-arrow {
        transform: rotate(90deg);
    }

    .mobile-nav-submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        background: #f8f8f8;
        will-change: max-height;
    }

    .mobile-nav-item-has-child.active .mobile-nav-submenu {
        /* max-height 由 JavaScript 动态设置，确保动画流畅 */
    }

    .mobile-nav-submenu-link {
        display: block;
        padding: 12px 20px 12px 40px;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .mobile-nav-submenu-link:hover,
    .mobile-nav-submenu-link:active {
        background: #e8e8e8;
        color: #CA161E;
    }

    /* 移动端轮播图样式 */
    .mobile-hero-section {
        width: 100%;
    }

    .mobile-banner-con {
        width: 100%;
        height: auto;
        position: relative;
    }

    .mobile-banner-con .swiper-slide {
        width: 100%;
    }

    .mobile-banner-con .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* 移动端轮播图指示器 */
    .mobile-banner-pagination {
        position: absolute;
        bottom: 20px;
        left: 50% !important;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    .mobile-banner-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid #fff;
        border-radius: 50%;
        opacity: 1;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-banner-pagination .swiper-pagination-bullet-active {
        background: #fff;
        border-radius: 4px;
    }

    /* 移动端尾部样式 */
    .footer-mobile {
        background: #A31219;
        width: 100%;
    }

    .mobile-footer-content {
        padding: 32px 16px;
    }

    .mobile-footer-contact {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
    }

    .mobile-contact-icon {
        display: inline-block;
        width: 16px;
        height: 16px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }

    .mobile-email-icon {
        background-image: url('../image/emali.png');
    }

    .mobile-location-icon {
        background-image: url('../image/positioning.png');
    }

    .mobile-footer-copyright {
        background-color: #8D060C;
        padding: 16px;
        text-align: center;
    }

    .mobile-copyright-text {
        color: #ffffff;
        font-size: 12px;
        font-weight: 400;
        opacity: 0.7;
    }

    /* 通用标题样式 */
    .mobile-section-title {
        color: #070b12;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 12px;
        position: relative;
        padding-left: 8px;
    }

    .mobile-section-title::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 18px;
        background: #CA161E;
    }


    /* ============================================
       index.html 首页样式
       ============================================ */

    /* 移动端主营业务样式 */
    .mobile-business-section {
        position: relative;
        padding: 16px;
        background: #ffffff;
        padding-top: 32px;
    }

    .mobile-business-bg {
        width: 100%;
        height: 138px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .mobile-business-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-business-content {
        position: relative;
        z-index: 10;
    }

    .mobile-business-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-business-card {
        background: #fff;
        border-radius: 4px;
        padding: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 4px;
    }

    .mobile-card-icon {
        width: 92px;
        height: 92px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-card-icon img {
        width: 92px;
        height: 92px;
        border-radius: 4px;
        object-fit: contain;
    }

    .mobile-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .mobile-card-title {
        font-size: 16px;
        font-weight: 700;
        color: #000;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .mobile-card-desc {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 移动端集团简介样式 */
    .mobile-about-section {
        padding: 16px;
        background: #f5f7fa;
    }

    .about-img {
        width: 100%;
        height: 4.8rem;
        border-radius: 4px;
        margin-bottom: .4267rem;
    }

    .about-title {
        color: #ca161e;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .about-content {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .about-department {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* 统计数据展示区 */
    .about-stats {
        display: flex;
        gap: 8px;
        margin-bottom: 16px;
    }

    .stats-card {
        flex: 1;
        background: #fff;
        border-radius: 4px;
        padding: 8px;
        text-align: center;
    }

    .stats-number {
        color: #ca161e;
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.2;
        
    }
    .stats-number span{
        font-size: 12px;
    }
    .stats-desc {
        color: #070b12;
        font-size: 14px;
        font-weight: 400;
    }

    /* 了解更多按钮 */
    .about-more-btn-wrapper {
        text-align: center;
        margin-top: 8px;
    }

    .about-more-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 8px 24px;
        border: 1px solid #AFB8C7;
        border-radius: 20px;
        color: #98A2B3;
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        background: transparent;
        transition: all 0.3s ease;
    }

    .about-more-btn .arrow-icon {
        width: 16px;
        height: 16px;
        display: inline-block;
        transition: transform 0.3s ease;
    }

    .about-more-btn:hover,
    .about-more-btn:active {
        color: #98a2b3;
    }

    .about-more-btn:hover .arrow-icon,
    .about-more-btn:active .arrow-icon {
        transform: translateX(4px);
    }

    /* 移动端新闻中心样式（首页） */
    .mobile-news-section {
        padding: 16px;
        background: #fff;
        padding-right: 0px;
    }

    .mobile-news-content {
        width: 100%;
    }

    /* 新闻中心标题和Tab */
    .mobile-news-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        padding-right: 16px;
    }

    .mobile-news-header .mobile-section-title {
        margin-bottom: 0;
        flex: 1;
    }

    .mobile-news-tabs {
        display: flex;
        gap: 8px;
    }

    .mobile-news-tab {
        padding: 4px 8px;
        color: #ca161e;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid #ca161e;
        border-radius: 4px;
        background: #fff;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .mobile-news-tab.active {
        background: #CA161E;
        color: #fff;
    }

    /* 轮播图区域：小间距、右侧贴边露出下一张；左侧由 .mobile-news-section 的 padding 提供，右侧由本 padding 留白 */
    .mobile-news-carousel-wrapper {
        width: 100%;
        margin-bottom: 16px;
        overflow: hidden;
        margin-left: 0;
        padding-right: 16px;
        box-sizing: border-box;
    }

    .mobile-news-carousel {
        width: 100%;
        overflow: hidden;
    }

    .mobile-news-carousel .swiper-wrapper {
        align-items: stretch;
    }

    .mobile-news-carousel .swiper-slide {
        width: 8rem;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .mobile-news-slide {
        position: relative;
        width: 100%;
        height: 5.6211rem;
        overflow: hidden;
        border-radius: 4px;
    }

    .mobile-news-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-news-slide-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        padding: 12px;
        color: #fff;
    }

    .mobile-news-slide-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 4px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-news-slide-date {
        font-size: 12px;
        opacity: 0.9;
    }

    .mobile-news-list {
        margin-bottom: 8px;
    }

    .mobile-news-list-content {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-right: 16px;
    }

    .mobile-news-item {
        background: #f5f7fa;
        border-radius: 4px;
        padding: .2133rem;
    }

    .mobile-news-item-title {
        color: #070b12;
        font-size: 15px;
        font-weight: 400;
        margin-bottom: .1067rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-news-item-date {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
    }

    /* 查看更多按钮 */
    .mobile-news-more-wrapper {
        text-align: center;
        line-height: 1;
    }

    .mobile-news-more-btn {
        display: inline-flex;
        align-items: center;
        color: #ca161e;
        font-size: 16px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-news-more-btn .arrow-icon {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        transform: translateY(1px);
    }

    /* 移动端企业文化样式 */
    .mobile-culture-section {
        width: 100%;
        background: #fff;
    }

    /* 标题和Tab区域（带背景图） */
    .mobile-culture-header {
        position: relative;
        padding: 16px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .mobile-culture-header-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
    }

    .mobile-culture-header-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-culture-header-content {
        position: relative;
        z-index: 1;
    }

    .mobile-culture-header .mobile-section-title {
        margin-bottom: 16px;
    }

    .mobile-culture-tabs {
        display: flex;
        gap: 8px;
    }

    .mobile-culture-tab {
        padding: 8px 26px;
        color: #ca161e;
        font-size: 14px;
        font-weight: 500;
        border: 1px solid #CA161E;
        border-radius: 4px;
        background: #fff;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .mobile-culture-tab.active {
        background: #CA161E;
        color: #fff;
    }

    /* 下方图片区域 */
    .mobile-culture-image {
        position: relative;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    .mobile-culture-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .mobile-culture-content-item .mobile-culture-desc:last-child {
        margin-bottom: 0;
    }

    /* 移动端党建统领样式 */
    .mobile-party-building-section {
        padding: 16px;
        background: #F6F7FB;
    }

    .mobile-party-building-content {
        width: 100%;
    }

    /* 标题和查看更多 */
    .mobile-party-building-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .mobile-party-building-header .mobile-section-title {
        margin-bottom: 0;
        flex: 1;
    }

    .mobile-party-building-more {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        color: #CA161E;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-party-building-more .arrow-icon {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
    }

    .mobile-party-building-more:hover .arrow-icon,
    .mobile-party-building-more:active .arrow-icon {
        transform: translateX(4px);
    }

    /* 三个模块 */
    .mobile-party-building-modules {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-party-building-module {
        background: #fff;
        padding: 8px;
        border-radius: 8px;
    }

    .mobile-party-building-module-title {
        color: #ca161e;
        font-size: 17px;
        font-weight: 500;
        margin-bottom: 0;
        text-align: left;
    }

    .mobile-party-building-underline {
        position: relative;
        width: 100%;
        height: 1px;
        background: #D4DBE6;
        margin: 8px 0 16px;
        overflow: hidden;
    }

    .mobile-party-building-underline::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 80px;
        height: 100%;
        background: #CA161E;
    }

    .mobile-party-building-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .mobile-party-building-list li {
        color: #070b12;
        font-size: 15px;
        font-weight: 400;
        line-height: 1.8;
        margin-bottom: 24px;
        position: relative;
        padding-left: 10px;
        text-align: left;
    }

    .mobile-party-building-list li:last-child {
        margin-bottom: 0;
    }

    .mobile-party-building-list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10px;
        width: 4px;
        height: 4px;
        background: #CA161E;
        border-radius: 50%;
    }

    /* 移动端下属企业样式 */
    .mobile-subsidiaries-section {
        position: relative;
        padding: 16px;
        overflow: hidden;
        background-image: url('../icon/page-bg.png');
        background-size: auto 100%;
        background-position: bottom center;
        background-repeat: no-repeat;
        height:550px;
        padding-top:50px;
    }

    /* 背景图 */
    .mobile-subsidiaries-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .mobile-subsidiaries-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-subsidiaries-content {
        position: absolute;
        top: 16px;
        left: 16px;
        right: 16px;
        z-index: 2;
    }

    /* 三个图例 */
    .mobile-subsidiaries-legend {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .mobile-legend-item {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-legend-icon {
        width: 16px;
        height: 16px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        border-radius: 50%;
    }

    .mobile-direct-icon {
        border: 1px solid #dc143cb0;
    }

    .mobile-listed-icon {
        border: 1px solid #00aa00a6;
    }

    .mobile-member-icon {
        border: 1px solid #ff8c009a;
    }

    .mobile-legend-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        flex-shrink: 0;
    }

    .mobile-direct-dot {
        background: #DC143C;
    }

    .mobile-listed-dot {
        background: #00AA00;
    }

    .mobile-member-dot {
        background: #FF8C00;
    }

    .mobile-legend-text {
        font-size: 12px;
        font-weight: 400;
        color: #070b12;
    }

    /* 球形图 */
    .mobile-subsidiaries-network {
        margin:0 -16px;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    .mobile-subsidiaries-circle {
        width: 100%;
        max-width: 369px;
        height: auto;
    }
    
    #globe-container-mobile .globe-canvas-container {
        position: absolute;
        inset: 0;
    }
    
    #globe-container-mobile .globe-canvas-container canvas {
        display: block;
        width: 100% !important;
        height: 100% !important;
        pointer-events: none;
    }
    
    #globe-container-mobile .globe-vignette {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle, transparent 55%, rgba(252, 252, 252, 0.6) 100%);
        pointer-events: none;
        z-index: 10;
    }
    
    #globe-container-mobile .globe-label-container {
        position: absolute;
        inset: 0;
        z-index: 15;
        pointer-events: none;
    }
    
    #globe-container-mobile .globe-node-label {
        font-size: 10px;
    }


    /* ============================================
       about-company.html 走进企业页面样式
       ============================================ */

    /* Tab导航在轮播图上面 */
    .company-tabs-mobile {
        background: #CA161E;
        border-bottom: none;
        position: relative;
        z-index: 2;
    }

    .company-tabs {
        margin-bottom: 0px;
    }

    .company-tabs-mobile .maxwidth {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .company-tabs-mobile .company-tabs {
        display: flex;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .company-tabs-mobile .company-tab {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background: transparent;
        border-radius: 0;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
        position: relative;
        flex: 1;
        text-align: center;
    }

    .company-tabs-mobile .company-tab.active {
        color: #fff;
    }

    /* 选中Tab的下划线 */
    .company-tabs-mobile .company-tab.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 1.5px;
        background: #fff;
    }

    /* 轮播图区域 */
    .company-hero-section {
        margin-top: 0;
        position: relative;
        margin-bottom: 0;
        height: auto !important;
        overflow: hidden !important;
        display: block !important;
    }

    .company-hero-section .banner-con {
        width: 100%;
        height: 200px;
        position: relative;
        display: block;
    }

    .company-hero-section .banner-con img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 面包屑导航在移动端隐藏 */
    .main .company-hero-section .breadcrumb-section {
        display: none !important;
    }

    /* 确保企业简介section紧跟在轮播图后面 */
    .main .company-intro-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding: 16px;
        background: #fff;
        position: relative;
        z-index: 1;
    }

    .main .company-intro-section .maxwidth {
        width: 100%;
        max-width: 100%;
    }

    .main .company-title-section {
        margin-top: 0;
        padding-top: 16px;
    }

    .main .company-title-section .section-title {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        position: relative;
        padding-left: 10px;
    }

    .main .company-title-section .section-title::before {
        content: '';
        width: 5px;
        height: 18px;
        background: #CA161E;
        display: block;
        flex-shrink: 0;
    }

    .main .company-title-section .section-subtitle {
        font-size: 16px;
        color: #ca161e;
        font-weight: 700;
        margin-top: 0;
        margin-bottom: 16px;
        padding-left: 0;
        position: relative;
    }

    /* 副标题没有左边的伪元素 */
    .main .company-title-section .section-subtitle::before {
        display: none;
    }

    .intro-desc {
        color: #2d3440;
        font-size: 14px;
        font-weight: 400;
    }

    .company-intro-image {
        width: 100%;
        margin-top: 16px;
    }

    .company-intro-image img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }

    /* 组织架构副标题和内容 */
    .main .company-organization-wrapper {
        margin-top: 24px;
    }

    .main .company-organization-wrapper .section-subtitle {
        color: #ca161e;
        font-size: 17px;
        font-weight: 500;
        margin-top: 0;
        margin-bottom: 8px;
        padding-left: 0;
        position: relative;
    }

    /* 组织架构副标题没有左边的伪元素 */
    .main .company-organization-wrapper .section-subtitle::before {
        display: none;
    }

    .main .company-organization-content {
        margin-top: 0;
    }

    .main .org-chart-image {
        width: 100%;
        margin-top: 0;
        text-align: center;
    }

    .main .org-chart-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }

    /* 发展大事记section - 参考PC端样式，rem转px */
    .main .company-events-section {
        padding-top: 0px;
        background: #FFFFFF;
    }

    .main .company-events-section .maxwidth {
        width: 100%;
        padding: 0 16px 32px 16px;
    }

    .main .events-content {
        margin-top: 20px;
    }

    /* 大事记布局：左右结构（保持PC端布局） */
    .main .events-layout {
        display: flex;
        padding-bottom: 32px;
        align-items: flex-start;
    }

    /* 左侧：年份列表 */
    .main .events-year-list {
        width: 70px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        text-align: right;
        gap: 32px;
        transform: translateY(0);
    }

    .main .year-item {
        color: #5c6573;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
        text-align: right;
        line-height: 1;
    }

    .main .year-item:hover {
        color: #CA161E;
    }

    .main .year-item.active {
        color: #ca161e;
        font-size: 24px;
        font-weight: 700;
        font-family: "DIN", Arial, sans-serif;
    }

    /* 右侧：事件列表 */
    .main .events-list {
        flex: 1;
        position: relative;
        overflow-y: visible;
        height: auto;
    }

    .main .year-events {
        display: none;
        position: relative;
    }

    .main .year-events.active {
        display: block;
    }

    /* 事件项容器 - 用于创建连续的步骤条 */
    .main .year-events::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 8px;
        bottom: 0;
        width: 1px;
        background: #D4DAE6;
        z-index: 1;
    }

    /* 事件项 */
    .main .event-item {
        display: flex;
        align-items: flex-start;
        position: relative;
        margin-bottom: 0;
        padding-bottom: 33px;
        z-index: 2;
    }

    .main .event-item:last-child {
        padding-bottom: 0;
    }

    /* 左侧：步骤条和圆点 */
    .main .event-left {
        width: 20px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-top: 0px;
    }

    .main .step-line {
        display: none;
        /* 使用容器的伪元素来创建连续线条 */
    }

    .main .step-dot {
        width: 8px;
        height: 8px;
        opacity: 1;
        background: #070b12;
        border-radius: 50%;
        flex-shrink: 0;
        position: relative;
        z-index: 3;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* 右侧：时间和内容 */
    .main .event-right {
        flex: 1;
        padding-top: 0;
    }

    .main .event-date {
        font-size: 17px;
        font-weight: 700;
        color: #000000;
        margin-bottom: 10px;
        line-height: 1.5;
        padding-top: 0;
        margin-top: 0;
        height: 20px;
        display: flex;
        align-items: center;
    }

    .main .event-content {
        margin-top: 8px;
        font-size: 14px;
    }

    .main .event-details {
        margin-bottom: 8px;
    }

    .main .event-details{
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
    }

    .main .event-image {
        width: 100%;
        overflow: hidden;
        margin-bottom: 8px;
    }

    .main .event-image img {
        width: 100%;
        margin-bottom: 0px;
        height: 246px;
        display: block;
        object-fit: cover;
    }

    .main .event-contact {
        margin: 0px 0;
    }

    .main .event-contact p {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
    }

    /* 联系方式section */
    .main .company-contact-section {
        padding:0 16px 16px;
        background: #fff;
    }

    .main .company-contact-section .maxwidth {
        width: 100%;
    }

    .main .company-contact-content {
        margin-top: 16px;
    }

    .main .contact-phone-section {
        width: 100%;
    }

    .main .contact-phone-bg {
        width: 100%;
        min-height: auto;
        padding: 32px 36px;
        height: 100%;
        background-image: url(../image/phone_bg2.png);
    }

    .main .contact-phone-list {
        position: relative;
        z-index: 2;
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 26px;
    }

    .main .contact-phone-item {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 14px;
        font-weight: 400;
        width: 100%;
    }

    .main .phone-label {
        min-width: 100px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .main .phone-number {
        color: #ffffff;
        font-size: 24px;
        font-weight: 500;
    }

    .main .contact-map-section {
        width: 100%;
        overflow: hidden;
    }

    .main  .contact-map-section img {
        width: 100%;
        height: auto;
        display: block;
    }


    /* ============================================
       news.html 新闻中心页面样式
       ============================================ */

    /* Tab导航在轮播图上面 */
    .main .news-tabs-mobile {
        background: #CA161E;
        border-bottom: none;
        position: relative;
        z-index: 2;
    }

    /* PC端Tab导航在移动端隐藏 */
    .news-content-section .news-tabs.pc-only,
    .news-dynamics-section .news-tabs.pc-only,
    .news-party-section .news-tabs.pc-only {
        display: none !important;
    }

    .news-tab-indicator.pc-only {
        display: none !important;
    }

    .news-tabs {
        margin-bottom: 0px;
    }

    .news-tabs-mobile .maxwidth {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .news-tabs-mobile .news-tabs {
        display: flex;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .news-tabs-mobile .news-tab {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 400;
        color: #fff;
        background: transparent;
        border-radius: 0;
        cursor: pointer;
        transition: all 0.3s;
        white-space: nowrap;
        position: relative;
        flex: 1;
        text-align: center;
    }

    .news-tabs-mobile .news-tab.active,.news-tabs-mobile .news-tab:hover {
        color: #fff;
    }

    /* 选中Tab的下划线 */
    .news-tabs-mobile .news-tab.active::after {
        content: '';
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        width: 50%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
    }

    /* 新闻内容区域 */
    .main .news-content-section,
    .main .news-dynamics-section,
    .main .news-party-section {
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding: 16px;
        background: #fff;
        position: relative;
        z-index: 1;
        min-height: auto;
    }

    /* 背景图片在移动端隐藏 */
    .news-content-bg {
        display: none;
    }

    .news-content-section .maxwidth,
    .news-dynamics-section .maxwidth,
    .news-party-section .maxwidth {
        width: 100%;
        max-width: 100%;
        padding: 0;
        position: relative;
    }

    /* 标题区域 */
    .news-title-section {
        margin-top: 0;
        margin-bottom: 16px;
        padding-top: 16px;
    }

    .news-title-section .section-title {
        font-size: 18px;
        font-weight: 700;
        color: #000;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        padding-left: 10px;
    }

    .news-title-section .section-title::before {
        content: '';
        width: 5px;
        height: 18px;
        background: #CA161E;
        display: block;
        flex-shrink: 0;
    }

    /* 新闻列表内容 */
    .news-list-content {
        margin-top: 0;
    }

    /* 新闻卡片（移动端隐藏，使用列表项） */
    .news-list-content .news-card {
        display: none;
    }

    /* 新闻列表项 */
    .news-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0px;
    }

    /* 移动端列表项样式 */
    .news-list-item.mobile-only {
        background: #f5f7fa;
        border-radius: 4px;
        padding: 8px;
        display: flex !important;
        gap: 8px;
        margin-bottom: 8px;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        color: inherit;
        position: relative;
        border-bottom: none;
    }

    .news-list-item.mobile-only:last-child {
        margin-bottom: 0;
    }

    .news-list-item.mobile-only:active {
        transform: scale(0.98);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    }

    /* 左侧图片 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-image {
        width: 103.84px;
        height: 66px;
        flex-shrink: 0;
        overflow: hidden;
        display: block !important;
    }

    .news-list-item.mobile-only .news-list-item-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 右侧内容 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-content-wrapper {
        flex: 1;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        min-width: 0;
    }

    /* 标题 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-header {
        margin-bottom: 4px;
    }

    .news-list-item.mobile-only .news-list-item-title {
        color: #070b12;
        font-size: 15px;
        font-weight: 500;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 描述 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-content {
        flex: 1;
    }

    .news-list-item.mobile-only .news-list-item-content p {
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 时间 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-footer {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-top: auto;
    }

    .news-list-item.mobile-only .news-list-item-date {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #5c6573;
        font-size: 12px;
        font-weight: 400;
    }

    /* 移动端隐藏时间图标 */
    .news-list-item.mobile-only .news-list-item-date img.date-icon {
        display: none;
    }

    /* PC端内容在移动端隐藏 */
    .news-list-item-pc {
        display: none !important;
    }

    /* 加载更多按钮 */
    .news-load-more {
        margin-top: 16px;
        text-align: center;
    }

    .news-load-more-btn {
        width: 100%;
        padding: 8px;
        background: #f5f7fa;
        border-radius: 4px;
        color: #ca161e;
        font-size: 16px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s;
    }

    .news-load-more-btn:hover {
        background: #CA161E;
        color: #fff;
    }

    /* 分页器在移动端隐藏 */
    .news-pagination {
        display: none;
    }

    /* 确保新闻列表项在移动端正确显示 */
    .news-list-item a {
        text-decoration: none;
        color: inherit;
    }

    /* 新闻列表项图片优化 - 仅移动端 */
    .news-list-item.mobile-only .news-list-item-image {
        background: #f5f5f5;
    }

    .news-list-item.mobile-only .news-list-item-image img {
        transition: transform 0.3s;
    }

    .news-list-item.mobile-only:active .news-list-item-image img {
        transform: scale(1.05);
    }

    /* 确保标题和描述在移动端正确换行 */
    .news-list-item.mobile-only .news-list-item-title,
    .news-list-item.mobile-only .news-list-item-content p {
        word-break: break-word;
        overflow-wrap: break-word;
    }


    /* ============================================
       news-detail.html 新闻详情页面样式
       ============================================ */

    /* 注意：详情页的轮播图已经在HTML中添加了pc-only类，移动端会自动隐藏，不需要额外CSS规则 */

    /* 移动端面包屑导航（独立在顶部，铺满宽度，和PC一样的样式） */
    .breadcrumb-section-mobile {
        width: 100%;
        background: #fff;
        padding: 12px 16px;
        padding-bottom: 0px;
    }

    .breadcrumb-section-mobile .breadcrumb-container {
        width: 100%;
        max-width: 100%;
    }

    .breadcrumb-section-mobile .breadcrumb-box {
        width: calc(100% + 32px);
        transform: translateX(-16px);
        background: #f5f7fa;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0);
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .breadcrumb-section-mobile .breadcrumb-icon {
        width: 12px;
        height: 12px;
        background-image: url('../image/positioning2.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        flex-shrink: 0;
    }

    .breadcrumb-section-mobile .breadcrumb-text {
        flex: 1;
        color: #5c6573;
        font-size: 12px;
        font-weight: 400;
        line-height: 1.5;
        word-break: break-all;
    }

    .breadcrumb-section-mobile .breadcrumb-text a {
        color: #CA161E;
        text-decoration: none;
        transition: color 0.3s;
    }

    .breadcrumb-section-mobile .breadcrumb-text a:hover {
        color: #CA161E;
    }

    .breadcrumb-section-mobile .breadcrumb-text .separator {
        color: #5c6573;
        margin: 0 4px;
    }

    .breadcrumb-section-mobile .breadcrumb-text .current {
        color: #5c6573;
    }

    /* 详情主体区域 */
    .main .news-detail-section {
        margin-top: 0 !important;
        padding-top: 0px !important;
        padding: 16px;
        background: #fff;
        position: relative;
        z-index: 1;
    }

    .main .news-detail-section .maxwidth {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    /* 标题区域 */
    .main .detail-title-section {
        margin-top: 0;
        margin-bottom: 16px;
        padding-top: 16px;
        border-bottom: none;
    }

    .main .detail-page-title {
        color: #070b12;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    /* 移动端时间和浏览次数（一行显示） */
    .main .detail-meta-mobile {
        display: flex;
        align-items: center;
        gap: 16px;
        color: #5c6573;
        font-size: 14px;
        font-weight: 400;
    }

    .main .detail-date-mobile,
    .main .detail-views-mobile {
        color: #5c6573;
        font-size: 12px;
        font-weight: 400;
    }

    /* PC端左侧日期框在移动端隐藏 */
    .main .news-detail-aside {
        display: none !important;
    }

    /* 详情布局调整为单列 */
    .main .news-detail-layout {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* 内容区域 */
    .main .news-detail-content {
        flex: 1;
        padding-left: 0;
        border-left: none;
        width: 100%;
    }

    /* 图片 */
    .main .news-detail-image {
        width: 100%;
        margin-bottom: 16px;
    }

    .main .news-detail-image img {
        width: 100%;
        height: 220px;
        display: block;
        object-fit: cover;

    }

    /* 正文内容 */
    .main .news-detail-body {
        color: #2d3440;
        font-size: 16px;
        font-weight: 400;
    }

    .main .news-detail-body p {
        margin-bottom: 12px;
    }

    .main .news-detail-body p:last-child {
        margin-bottom: 0;
    }

    .main .detail-footer-text {
        margin-top: 16px;
    }

    .main .company-organization-content .org-chart-image img{
        width: 100%;
        height: auto;
    }
    /* ============================================
       assets.html 资产动态页面样式
       ============================================ */

    /* Tab导航样式已在news.html部分定义，这里不再重复 */

    /* 资产动态内容区域（样式已在news.html部分定义，这里不再重复） */

    /* 标题区域、列表内容、新闻列表、列表项、加载更多、分页器等样式已在news.html部分定义，这里不再重复 */
}