/* 页面基础样式 */
html, body {
    overflow-x: hidden; /* 隐藏水平滚动条 */
    width: 100%;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}
.next-prev{
	clear: both;
	font-size: 22px;
	display: flex;
	justify-content: space-between;
	padding-bottom: 1.25rem;
	background: #fff;
}
.next-prev span{
	color: #333;
}
.next-prev  a{
	color: #1B1972;
}
.main-container{
    padding: 60px 80px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
	min-height: 500px;
}
/* Tabs标签切换模块样式 */
.notice-tabs-wrapper {
    /* margin-top: -30px; */
    margin-bottom: 40px;
    background: rgba(28,28,28,0.05);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.notice-tabs {
    
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    justify-content: center;
}

.tab-item {
    padding: 30px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-item:last-child {
    border-right: none;
}

.tab-item:hover {
    background: rgba(195, 48, 42, 0.05);
}

.tab-item.active {
   
    color: #000;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #C3302A;
}

.tab-text {

    font-weight: 500;
    font-size: 18px;
    color: #333;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.tab-item.active .tab-text {
    color: #000;
    font-weight: 600;
}

.tab-item:hover .tab-text {
    color: #000;
}

.tab-item.loading {
    opacity: 0.7;
    pointer-events: none;
}

.tab-item.loading .tab-text {
    position: relative;
}

.tab-item.loading .tab-text::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 2px solid #ccc;
    border-top: 2px solid #C3302A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}
.notice-index-container{
    padding: 60px 80px;
	min-height: 400px;
}
/* 新闻页面横幅 */
.news-index-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.news-index-banner img {
    width: 100%;
    height: auto;
    display: block;
}
.news-index-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

/* 主要内容区域 */
.content {
    /* padding: 60px 0; */
    /* background: #f8f9fa; */
    overflow-x: hidden; /* 隐藏水平滚动条 */
}

.news-main-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 上半部分：轮播图 + 新闻列表 */
.news-top-section {
    display: flex;
    gap: 40px;
    background: white;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

/* 左侧轮播图区域 */
.news-carousel-section {
    flex: 1;
    height: 500px;
    overflow: hidden;
}

/* Element UI 走马灯样式调整 */
.news-carousel-section .el-carousel {
    height: 100%;
    width: 100%;
}

.news-carousel-section .el-carousel__container {
    height: 100%;
}

.news-carousel-section .el-carousel__item {
    height: 100%;
    overflow: hidden;
}

.carousel-item-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-item-wrapper:hover .carousel-image {
    transform: scale(1.05);
}

/* 轮播图文字覆盖层 */
.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.carousel-item-wrapper:hover .carousel-overlay {
    transform: translateY(0);
}

.carousel-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.carousel-desc {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    opacity: 0.9;
}

/* Element UI 走马灯指示器样式 */
.news-carousel-section .el-carousel__indicators {
    bottom: 15px;
}

.news-carousel-section .el-carousel__indicator {
    padding: 6px;
    cursor: pointer;
}

.news-carousel-section .el-carousel__button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.news-carousel-section .el-carousel__indicator:hover .el-carousel__button {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.news-carousel-section .el-carousel__indicator.is-active .el-carousel__button {
    background: #2c5aa0;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Element UI 走马灯箭头样式 */
.news-carousel-section .el-carousel__arrow {
    background: rgba(255, 255, 255, 0.8);
    color: #2c5aa0;
    border: none;
    width: 40px;
    height: 40px;
}

.news-carousel-section .el-carousel__arrow:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* 右侧新闻列表（上半部分） */
.news-top-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-news-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.top-news-item:hover {
    background: #f8f9fa;
    margin: 0 -20px;
    padding: 20px;
    border-radius: 8px;
}

.top-news-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.top-news-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

font-weight: 400;
font-size: 24px;
color: #1C1C1C;
text-align: justified;
font-style: normal;
text-transform: none;
}

.top-news-item:hover .top-news-title {
    color: #2c5aa0;
}

.top-news-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

font-weight: 400;
font-size: 15px;
color: rgba(28,28,28,0.6);
text-align: justified;
font-style: normal;
text-transform: none;
}

  /* 新闻元数据区域 */
  .top-news-meta {
      display: flex;
      
      /* justify-content: space-between; */
      align-items: center;
      margin-top: 10px;
  }
  
  .top-news-date {
      font-size: 13px;
      color: #999;
  }
  
  .top-news-views {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      color: #999;
      margin-left: 10px;
  }
  
  .view-icon {
      color: #999;
      flex-shrink: 0;
  }

/* 下半部分：纯新闻列表 */
.news-bottom-section {
    background: white;
    margin-bottom: 40px;
}

.bottom-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.bottom-news-item:hover {
    background: #f8f9fa;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 6px;
}

.bottom-news-bullet {
    color: #2c5aa0;
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.bottom-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bottom-news-title {

font-weight: 400;
font-size: 20px;
    font-weight: 500;
    color: #1C1C1C;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.bottom-news-item:hover .bottom-news-title {
    color: #2c5aa0;
}

.bottom-news-date {

font-weight: 400;
font-size: 20px;
    color: #1C1C1C;
    white-space: nowrap;
    margin-left: 20px;
}

/* 分页导航 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pagination li {
    border: 1px solid #000;
    padding: 8px 12px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.pagination li:hover {
    background: #f0f0f0;
    color: #333;
}

.pagination .active {
    background: #2c5aa0;
    color: white;
}

.pagination .active:hover {
    background: #1e3f73;
}

.page-info {
    margin-left: 20px;
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* 公司页面样式 */
.company-page-container {
   padding: 0 64px;
}

/* 公司简介部分 */
.company-intro-section {
    padding: 40px;
    margin-bottom: 40px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}
.company-intro-title {

font-weight: bold;
font-size: 36px;
color: #1C1C1C;
line-height: 30px;
letter-spacing: 4px;
text-align: center;
font-style: normal;
text-transform: none;

}
.company-intro-content {
    display: flex;
    gap: 30px;
    align-items: flex-end;
}

.company-logo-section {
    position: relative;
    flex-shrink: 0;
    width: 200px;
}

.company-building-img {
    height: 270px;
	margin-right: 20px;
    object-fit: cover;
}

.company-logo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    border: 3px solid white;
}
.company-logo {
    width: 109px;
    height: 109px;
    object-fit: cover;
}
.logo-text {
    color: white;
    font-size: 16px;
    font-weight: bold;
    font-family: "Microsoft YaHei", sans-serif;
}

.company-text-section {
    flex: 1;
	padding-left: 20px;
}

.company-title {

font-weight: bold;
font-size: 1.8rem;
color: #1C1C1C;
letter-spacing: 4px;
text-align: justified;
font-style: normal;
text-transform: none;
}
.company-driver {
    width: 35vw;
    height: 3px;
    background: #1C1C1C;
    margin: 20px 0;
}
.company-description {
font-size: 20px;
color: #1C1C1C;
line-height: 40px;
letter-spacing: 2px;
text-align: justified;
font-style: normal;
text-transform: none;
margin-top: 60px;
}

/* 项目区域卡片部分 */
.company-projects-section {
    padding: 60px 0;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* 第一行4个卡片 */
/* .projects-grid .project-card:nth-child(-n+4) {
    flex: 0 0 calc(25% - 12px);
    min-width: 421px;
} */

/* 第二行3个卡片居中 */
/* .projects-grid .project-card:nth-child(n+5) {
    flex: 0 0 calc(33.333% - 11px);
    min-width: 280px;
} */

.project-card {
    background: #233043;
    border-radius: 17px;
    padding: 20px 24px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 22vw;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    background: #4a5a6c;
}

.project-header {
    margin-bottom: 8px;
}

.project-location {
    display: inline-block;

font-weight: bold;
font-size: 32px;
color: #FFFFFF;
line-height: 30px;
letter-spacing: 4px;
text-align: justified;
font-style: normal;
text-transform: none;
    position: relative;
}

.project-location::before {
    content: '•';
    color: white;
    font-size: 20px;
    margin-right: 8px;
    font-weight: bold;
}

.project-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-title {

font-weight: bold;
font-size: 20px;
color: #FFFFFF;
line-height: 30px;
letter-spacing: 1px;
text-align: justified;
font-style: normal;
text-transform: none;
}
.font-bold{
	font-weight: bold;
}
/* 公司页面响应式设计 */
@media (max-width: 1024px) {
    .projects-grid .project-card:nth-child(-n+4) {
        flex: 0 0 calc(50% - 8px);
        min-width: 200px;
    }
    
    .projects-grid .project-card:nth-child(n+5) {
        flex: 0 0 calc(50% - 8px);
        min-width: 200px;
    }
    .company-intro-title{
        font-size: 24px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .next-prev {
        font-size: 0.16rem;
        flex-direction: column;
        gap: 10px;
        padding: 0 5% 0.8rem;
      }
    .company-page-container {
        padding: 20px 15px;
    }
    
    .company-intro-section {
        padding: 30px 20px;
        margin-bottom: 40px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .company-intro-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .company-logo-section {
        display: none;
    }
    
    .company-building-img {
		height: 370px;
        display: none;
    }
    
    .company-text-section {
        text-align: center;
    }
    
    .company-text-section .company-logo {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 4px;
        background: #fff;
        display: inline-block;
        vertical-align: middle;
        margin-right: 12px;
    }
    
    .company-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
        letter-spacing: 1px;
        display: inline-block;
        vertical-align: middle;
        margin-top: 0;
        position: relative;
        padding-bottom: 8px;
    }
    
    .company-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: #1C1C1C;
    }
    
    .company-driver {
        display: none;
    }
    
    .company-description {
        font-size: 14px;
        line-height: 1.8;
        text-align: justify;
        letter-spacing: 0.5px;
    }
    
    .company-projects-section {
        padding: 40px 0;
    }
    
    .projects-grid {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .project-card {
        width: 100%;
        height: auto;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        text-align: left;
        border-radius: 8px;
    }
    
    .project-header {
        margin-bottom: 0;
    }
    
    .project-location {
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
    }
    
    .project-location::before {
        content: '•';
        margin-right: 8px;
        font-size: 18px;
    }
    
    .project-content {
        flex: 1;
        margin-left: 20px;
        align-items: flex-start;
    }
    
    .project-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
        margin: 0;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .company-page-container {
        padding: 15px 10px;
    }
    
    .company-intro-section {
        padding: 25px 15px;
        margin-bottom: 30px;
        border-radius: 8px;
    }
    
    .company-text-section .company-logo {
        width: 35px;
        height: 35px;
        padding: 3px;
        margin-right: 10px;
    }
    
    .company-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    
    .company-driver {
        display: none;
    }
    
    .company-description {
        font-size: 13px;
        line-height: 1.7;
    }
    
    .company-projects-section {
        padding: 30px 0;
    }
    
    .projects-grid {
        gap: 10px;
    }
    
    .project-card {
        padding: 18px 15px;
        border-radius: 6px;
    }
    
    .project-location {
        font-size: 15px;
    }
    
    .project-location::before {
        font-size: 16px;
        margin-right: 6px;
    }
    
    .project-content {
        margin-left: 15px;
    }
    
    .project-title {
        font-size: 13px;
        line-height: 1.3;
    }
}

/* Tabs响应式设计 */
@media (max-width: 768px) {
    .notice-tabs-wrapper {
        margin-bottom: 30px;
    }
    
    .tab-item {
        padding: 16px 12px;
    }
    
    .tab-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .notice-tabs-wrapper {
        margin-bottom: 20px;
        border-radius: 6px;
    }
    
    .tab-item {
        padding: 14px 8px;
    }
    
    .tab-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .main-container {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .news-main-content {
        padding: 20px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .news-main-content .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .news-top-section {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
    }
    
    /* 移动端轮播图样式 */
    .news-carousel-section {
        height: 250px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .news-carousel-section .el-carousel {
        height: 250px !important;
        width: 100%;
    }
    
    .news-carousel-section .el-carousel__container {
        height: 250px !important;
        width: 100%;
    }
    
    .carousel-item-wrapper {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }
    
    .carousel-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .carousel-overlay {
        padding: 20px 15px 15px;
        transform: translateY(0); /* 在移动端始终显示文字 */
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    }
    
    .carousel-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .carousel-desc {
        font-size: 14px;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* 移动端右侧新闻列表改为下方显示 */
    .news-top-list {
    }
    
    .top-news-item {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .top-news-item:hover {
        background: #f8f9fa;
        margin: 0 -15px;
        padding: 15px;
        border-radius: 8px;
    }
    
    .top-news-title {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .top-news-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .top-news-meta {
        margin-top: 8px;
    }
    
    .top-news-date {
        font-size: 12px;
        color: #999;
    }
    
    .top-news-views {
        font-size: 12px;
        margin-left: 15px;
    }
    
    /* 移动端下方新闻列表 */
    .news-bottom-section {
        background: white;
        border-radius: 12px;
        padding: 20px;
        margin-bottom: 30px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }
    
    .bottom-news-item {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .bottom-news-item:hover {
        background: #f8f9fa;
        margin: 0 -15px;
        padding: 12px 15px;
        border-radius: 6px;
    }
    
    .bottom-news-title {
        font-size: 15px;
        font-weight: 400;
        line-height: 1.5;
    }
    
    .bottom-news-date {
        font-size: 13px;
        color: #666;
    }
    
    /* 移动端分页 */
    .pagination {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 5px;
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }
    
    .page-link {
        padding: 8px 12px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .page-info {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        font-size: 13px;
    }
	.company-building-img{
		height: 400px;
	}
	.company-text-section{
		
	}
}

@media (max-width: 480px) {
    .main-container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .news-index-banner {
        height: 180px;
        border-radius: 8px;
        overflow: hidden;
        width: 100%;
        max-width: 100%;
    }
    
    .news-main-content {
        padding: 15px 0;
        width: 100%;
        max-width: 100%;
    }
    
    .news-main-content .container {
        padding: 0 5px;
        width: 100%;
        max-width: 100%;
    }
    
    .news-top-section {
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 100%;
    }
    
    /* 小屏幕轮播图 */
    .news-carousel-section {
        height: 200px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .news-carousel-section .el-carousel {
        height: 200px !important;
        width: 100%;
    }
    
    .news-carousel-section .el-carousel__container {
        height: 200px !important;
        width: 100%;
    }
    
    .carousel-item-wrapper {
        width: 100%;
        height: 200px;
        overflow: hidden;
    }
    
    .carousel-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .carousel-overlay {
        padding: 15px 12px 12px;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    }
    
    .carousel-title {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .carousel-desc {
        font-size: 12px;
        line-height: 1.4;
        opacity: 0.9;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* 小屏幕新闻列表 */
    .news-top-list {
        padding: 15px;
    }
    
    .top-news-item {
        padding: 12px 0;
    }
    
    .top-news-item:hover {
        margin: 0 -12px;
        padding: 12px;
    }
    
    .top-news-title {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.4;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .top-news-desc {
        font-size: 12px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .top-news-date {
        font-size: 11px;
    }
    
    .top-news-views {
        font-size: 11px;
        margin-left: 10px;
    }
    
    /* 小屏幕下方新闻列表 */
    .news-bottom-section {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .bottom-news-item {
        padding: 10px 0;
    }
    
    .bottom-news-item:hover {
        margin: 0 -12px;
        padding: 10px 12px;
    }
    
    .bottom-news-title {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .bottom-news-date {
        font-size: 12px;
        color: #666;
        margin-top: 4px;
    }
    
    .bottom-news-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    /* 小屏幕分页 */
    .pagination {
        padding: 12px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .page-link {
        padding: 6px 10px;
        font-size: 12px;
        border-radius: 4px;
    }
    
    .page-info {
        font-size: 11px;
        margin-top: 8px;
    }
}

/* 新闻详情页面样式 */
.news-detail-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 0;
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
}

/* 主要内容区域 - 带阴影边框 */
.news-detail-main {
    background: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 新闻标题区域 */
.news-detail-header {
    margin-bottom: 100px;
    padding-bottom: 20px;
    border-bottom: 2px solid #1C1C1C;
}

.news-detail-title {

    font-weight: bold;
    font-size: 32px;
    color: #1C1C1C;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: center;
}

.news-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 14px;
    color: #666;

    font-weight: 400;
}

.news-source,
.news-date {

    font-weight: 400;
}

/* 新闻正文内容 */
.news-detail-content {
    line-height: 1.8;
}

.news-content-section {
    margin-bottom: 30px;
}
.news-content-section img{
    width: 100%;
    object-fit: cover;
}
.content-subtitle {

font-weight: bold;
font-size: 24px;
color: #1C1C1C;
letter-spacing: 1px;
    margin: 20px 0 15px 0;
    line-height: 1.5;
}

.content-text {

font-weight: 300;
font-size: 24px;
color: #1C1C1C;
letter-spacing: 1px;
    line-height: 1.8;
    margin: 0 0 15px 0;
    text-align: justify;
}

.content-footer {
    margin: 30px 0;
    padding: 20px 0;
}

.content-source {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    font-size: 14px;
    color: #666;
}

.content-additional {
    border-radius: 0;
    border-bottom: 2px solid #1C1C1C;
    padding-bottom: 40px;
}

.additional-title {

    font-weight: bold;
    font-size: 24px;
    color: #1C1C1C;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.additional-text {

    font-weight: 300;
    font-size: 24px;
    color: #1C1C1C;
    letter-spacing: 1px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
    text-indent: 2em;
}

.content-actions {
    border-top: 2px solid #1C1C1C;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
}

.action-text {
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.action-text:hover {
    color: #2c5aa0;
}

/* 下方相关新闻列表 - 无阴影边框 */
.news-detail-sidebar {
    width: 100%;
}

.related-news-list {
    background: transparent;
    padding: 0;
}

.related-news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
}

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

.related-news-item:hover {
    background: transparent;
}

.related-news-bullet {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.related-news-content {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.related-news-title {

    font-weight: 400;
    font-size: 16px;
    color: #1C1C1C;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.related-news-item:hover .related-news-title {
    color: #1C1C1C;
}

.related-news-date {

    font-weight: 400;
    font-size: 16px;
    color: #1C1C1C;
    white-space: nowrap;
}

/* 新闻详情页面响应式设计 */
@media (max-width: 1024px) {
    .news-detail-container {
        padding: 40px 60px;
        gap: 30px;
    }
    
    .news-detail-sidebar {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .news-detail-container {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }
    
    .news-detail-main {
        padding: 20px 15px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .news-detail-header {
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .news-detail-sidebar {
        width: 100%;
    }
    
    .related-news-list {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    
    .related-news-title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .news-detail-title {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .news-detail-meta {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        font-size: 12px;
        text-align: left;
    }
    
    .content-subtitle {
        font-size: 16px;
        margin: 15px 0 10px 0;
    }
    
    .content-text {
        font-size: 14px;
        line-height: 1.6;
        text-indent: 0;
        margin-bottom: 10px;
        text-align: left;
    }
    
    .content-footer {
        margin: 20px 0;
        padding: 15px 0;
    }
    
    .content-source {
        align-items: flex-start;
        gap: 10px;
        font-size: 12px;
    }
    
    .content-additional {
        padding-bottom: 20px;
        border-bottom: 1px solid #1C1C1C;
    }
    
    .additional-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .additional-text {
        font-size: 14px;
        line-height: 1.6;
        text-indent: 0;
    }
    
    .content-actions {
        justify-content: flex-start;
        gap: 10px;
        margin-top: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-detail-container {
        padding: 15px 10px;
        gap: 15px;
    }
    
    .news-detail-main {
        padding: 15px 10px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .news-detail-header {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    
    .news-detail-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    
    .news-detail-meta {
        gap: 10px;
        font-size: 11px;
    }
    
    .content-subtitle {
        font-size: 14px;
        margin: 12px 0 8px 0;
    }
    
    .content-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .content-footer {
        margin: 15px 0;
        padding: 10px 0;
    }
    
    .content-source {
        font-size: 11px;
        gap: 8px;
    }
    
    .additional-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .additional-text {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .content-actions {
        margin-top: 10px;
        font-size: 11px;
        gap: 8px;
    }
    
    .related-news-list {
        background: #fff;
        padding: 15px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .related-news-item {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .related-news-title {
        font-size: 13px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .related-news-date {
        font-size: 12px;
    }
}

/* 业务板块中间模块 */
.business-core {
    width: 100%;
    background: #f5f7fb;
    padding: 0 0 120px;
}

.business-core__nav {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: nowrap;
    background: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: none;
}

.business-core__body {
    width: 90vw;
    margin: 0 auto;
    padding: 40px 70px 0;
}

.business-core__nav-item {
    border: none;
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    color: #a4a8b1;
    border-radius: 0;
    padding: 34px 0;
    cursor: pointer;
    transition: all 0.25s ease;
    flex: 1 1 25%;
    max-width: 25%;
    text-align: center;
    position: relative;
}

.business-core__nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 0;
    width: 1px;
    height: calc(100% - 36px);
    background: rgba(0, 0, 0, 0.05);
}

.business-core__nav-item:hover,
.business-core__nav-item.is-active {
    color: #fff;
    background: linear-gradient(120deg, #f5a623, #f07718);
    box-shadow: none;
}

.business-panel {
    margin-top: 20px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 35px 90px rgba(7, 23, 55, 0.18);
    background: #fff;
}

.business-panel__card {
    position: absolute;
    top: 75px;
    left: 90px;
    width: clamp(320px, 34vw, 520px);
    background: rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    padding: 34px 44px;
    box-shadow: 0 25px 60px rgba(8, 24, 54, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.business-panel__eyebrow {
    margin: 0;
    font-size: 20px;
    color: #ff9b2d;
    font-weight: 600;
    letter-spacing: 2px;
}

.business-panel__title {
    font-size: 36px;
    font-weight: 700;
    color: #1d2635;
    line-height: 1.35;
    margin: 0;
}

.business-panel__desc {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(23, 36, 57, 0.85);
    margin: 0;
}

.business-panel__media {
    position: relative;
    height: clamp(380px, 52vw, 560px);
    overflow: hidden;
    --business-media-bg: none;
}

.business-panel__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--business-media-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s ease;
    transform-origin: center;
    z-index: 0;
}

.business-panel__media:hover::before {
    transform: scale(1.03);
}

.business-panel__media::after {
    content: none;
}

.business-panel__media-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: clamp(24px, 4vw, 60px);
    display: flex;
    align-items: center;
}

.subsidiary-showcase {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.subsidiary-showcase__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 48px;
}

.subsidiary-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 20px;
    border-radius: 999px;
    background: rgba(243, 144, 58, 0.15);
    color: #f07718;
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 16px;
    margin-bottom: 16px;
}

.subsidiary-showcase__eyebrow::before,
.subsidiary-showcase__eyebrow::after {
    content: '';
    width: 24px;
    height: 2px;
    background: currentColor;
    opacity: 0.4;
}

.subsidiary-showcase__title {
    font-size: 40px;
    font-weight: 700;
    color: #1d2635;
    margin: 0 0 18px 0;
}

.subsidiary-showcase__subtitle {
    margin: 0;
    color: rgba(23, 36, 57, 0.78);
    font-size: 18px;
    line-height: 1.8;
}

.subsidiary-carousel {
    position: relative;
    width: 100%;
    
    border-radius: 36px;
    padding: 40px 0;

}

.subsidiary-carousel__viewport {
    overflow: hidden;
    width: 100%;
}

.subsidiary-carousel__el {
    width: 100%;
}

.subsidiary-carousel__el .el-carousel__container {
    min-height: 520px;
}

.subsidiary-carousel__el .el-carousel__item {
    height: 100%;
    display: block;
    background: transparent;
}

.subsidiary-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: clamp(32px, 4vw, 80px);
    padding: clamp(100px, 5vw, 70px);
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.subsidiary-slide.is-active {
    opacity: 1;
}

.subsidiary-slide__media {
    flex: 0 0 20%;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}


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

.subsidiary-slide__content {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: clamp(24px, 4vw, 50px);
    box-shadow: 0 25px 60px rgba(8, 24, 54, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.subsidiary-slide__content--centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.subsidiary-slide__label {
    margin: 0 0 12px 0;
    font-size: 14px;
    letter-spacing: 4px;
    color: #f07718;
    font-weight: 600;
    text-transform: uppercase;
}

.subsidiary-slide__title {
    margin: 0 0 18px 0;
    font-size: clamp(26px, 3vw, 34px);
    color: #1d2635;
    line-height: 1.3;
}

.subsidiary-slide__desc {
    margin: 0 0 20px 0;
    color: rgba(23, 36, 57, 0.8);
    font-size: 16px;
    line-height: 1.8;
	text-align: justify;
	text-justify: inter-word; 
}

.subsidiary-slide__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-weight: 600;
    color: #1d2635;
}

.subsidiary-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    color: #f07718;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(8, 24, 54, 0.18);
    transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
}

.subsidiary-carousel__nav:hover {
    color: #c3500f;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 25px 60px rgba(8, 24, 54, 0.3);
}

.subsidiary-carousel__nav:disabled,
.subsidiary-carousel__nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    color: #c7c7c7;
}

.subsidiary-carousel__nav.is-prev {
    left: 32px;
}

.subsidiary-carousel__nav.is-next {
    right: 32px;
}

.subsidiary-carousel__nav .nav-icon {
    width: 16px;
    height: 16px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.subsidiary-carousel__nav.is-prev .nav-icon {
    transform: rotate(225deg);
}

.subsidiary-carousel__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 35px rgba(8, 24, 54, 0.15);
    z-index: 3;
}

.subsidiary-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.subsidiary-dot.is-active {
    background: #f07718;
    transform: scale(1.3);
}

.subsidiary-dot:focus-visible {
    outline: 2px solid #f07718;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .subsidiary-showcase {
        width: 100%;
        padding: 60px 24px 80px;
    }

    .subsidiary-carousel {
        border-radius: 28px;
        padding: 30px 0;
    }

    .subsidiary-slide {
        flex-direction: column;
        padding: 32px;
    }

    .subsidiary-slide__media,
    .subsidiary-slide__content {
        flex: 1 1 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .subsidiary-slide {
        padding: 24px;
        gap: 24px;
    }

    .subsidiary-slide__content {
        padding: 20px;
    }

    .subsidiary-carousel__el .el-carousel__container,
    .subsidiary-carousel__el .el-carousel__item {
        min-height: auto;
        height: auto;
    }

    .subsidiary-carousel__nav {
        display: none;
    }

    .subsidiary-carousel__dots {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .subsidiary-showcase__title {
        font-size: 26px;
    }

    .subsidiary-slide__title {
        font-size: 22px;
    }

    .subsidiary-slide__meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 1200px) {
    .business-core__body {
        padding: 40px 40px 0;
    }

    .business-panel__card {
        left: 50px;
        right: 50px;
        width: auto;
    }

    .business-panel__title {
        font-size: 30px;
    }

    .business-panel__media {
        height: clamp(340px, 60vw, 500px);
    }
}

@media (max-width: 900px) {
    .business-core__body {
        padding: 40px 24px 0;
    }

    .business-panel {
        border-radius: 24px;
    }

    .business-panel__card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;

        margin: 24px;
        box-shadow: 0 16px 40px rgba(8, 24, 54, 0.15);
    }

    .business-panel__media::after {
        background: linear-gradient(90deg, rgba(12, 20, 38, 0.55) 0%, rgba(12, 20, 38, 0.25) 50%, transparent 100%);
    }

    .business-panel__media {
        height: 340px;
    }
}

@media (max-width: 640px) {
    .business-core {
        padding-bottom: 60px;
    }

    .business-core__nav {
        border-radius: 24px;
        padding: 12px 12px;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 12px;
    }

    .business-core__body {
        padding: 40px 20px 0;
    }

    .business-core__nav-item {
        font-size: 16px;
        padding: 10px 20px;
        flex: 0 0 auto;
        max-width: none;
        min-width: 140px;
    }

    .business-panel__card {
        margin: 20px;
        padding: 28px;
    }

    .business-panel__title {
        font-size: 24px;
    }

    .business-panel__desc {
        font-size: 16px;
    }

    .business-panel__media {
        height: 280px;
    }
}