/* 全局样式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: "Microsoft YaHei", sans-serif;
            color: #333;
        }
        /* 使用简单的图标样式 */
 
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .readline {
           width: 1px;
           height: 36px;
           background-color: #bc000f;
           margin: 10px auto 20px;
        }

        /* 导航栏样式 */
        .navbar {
           
            background-color: rgba(30, 30, 30, 0.95);
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            border-bottom: 4px solid #bc000f;

        }
        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 130px;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }
        .logo img {
            height: auto;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 40px;
        }
        .nav-links a {
            text-decoration: none;
            color: #fff;
            font-size: 22px;
            transition: color 0.3s;
            font-weight: 200;
        }
        .nav-links a:hover {
            color: #ff0000;
        }
        /* 轮播图样式 */
        .carousel {
            overflow: hidden;
            /* background-image: url('../images/rectangle7.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            height: 900px; */
            width: 100%;

        }
        .carousel-item {
            height: 450px;
           background:no-repeat center center;
           background-size: 100%;

        }
       
        .carousel-item-container {
            /* transform: translateY(-50%); */
            color: #fff;
            max-width: 1200px;
            margin: 0 auto;
        }
        .carousel-caption {
            padding: 100px 0 0 100px;
             
        }

        .carousel-caption h2 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: normal;
        }
          .carousel-caption h3 {
            
            font-size: 54px;
            color: rgba(255, 255, 255, 0.5); /* 黑色文字，透明度为0.5 */  
            font-family: Helvetica;
            }
        .carousel-caption p {
            font-size: 18px;
            margin-bottom: 30px;
            /* max-width: 800px; */
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 2;
            color: rgba(255, 255, 255, 0.8); 
        }
        /* 关于我们样式 */
        .about {
            padding: 80px 0 30px 0;
            background-color: #fff;
        }
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        .section-title h3 {
            font-size: 56px;
            color: #d9d9d9;
            position: relative;
            display: inline-block;
            /* padding-bottom: 15px; */
        }
        .section-title h2 {
            font-size: 36px;
            font-weight: normal;
            /* padding-bottom: 15px; */
        }
        .section-title h112::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: #ff0000;
        }
        .about-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .services-index-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .about-text {
            flex: 1;
           
        }
        .services-index-text{
            flex: 1;
        }
        .about-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .about-text p {
            font-size: 20px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 20px;
        }
        .about-stats .container{
            display: flex;
            justify-content: space-around;
            align-items: center;
            margin-top: 10px;
            padding: 75px 0;
           
        }
        .stat-item {
            text-align: center;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #c11616;
            margin-bottom: 10px;
            display: inline-block;
        }
       
       .ticon img {
        width: 80px;
        margin-bottom: 20px;
       }
        .stat-label {
            font-size: 16px;
            color: #666;
        }
        /* 服务内容样式 */
        .services-index {

            padding: 80px 0 80px 0;
            background-color: #f8f8f8;
            background-image: url('../images/rectangle11.png');

            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            color: #fff;
        }
        .services-index::before {

            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.125);
        }
        .services-index .container {
            position: relative;
            z-index: 1;
        }
        .services-index .section-title h2 {
            color: #fff;
        }
        .services-index .section-title h2::after {
            background-color: #fff;
        }
        .services-index-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
       
        .services-index-text{
            flex: 1;
        }
        .services-index-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .services-index-text p {
            font-size: 20px;
            line-height: 1.8;
            color: #f1f1f1;
            margin-bottom: 20px;
        }
        .service-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }
        .service-card {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .service-card:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
        }
        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        .service-card p {
            font-size: 14px;
            line-height: 1.6;
            opacity: 0.9;
        }
        /* 时间轴样式 */
        .timeline {
            padding: 80px 0 0 0;

            background-color: #fff;
        }
        .timeline-content {
            background-color: #f1f1f1;
            padding: 20px;
        }

        .timeline-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 60px 0 40px 0;

        }
        .timeline-item {
            text-align: center;
            padding: 30px 40px;
            
            background: url('../images/zsbj.png') no-repeat center center;
            background-size: 100% 100%;
        }
        .timeline-item:hover {
            /* background-color: #ff0000; */
            /* color: #fff; */
        }
        .timeline-year {
            font-size: 32px;
            
            margin-bottom: 10px;
        }
        .timeline> .about-text p{
            line-height: 1.8;
        }
        .timeline .content{
            line-height: 1.8;
        }
        /* 新闻动态样式 */
        .news {
            padding: 80px 0 30px 0;

        }
        .news-content {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .news-item {
            background-color: #fff;
            overflow: hidden;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
            transition: all 0.3s ease;
            display: flex;
            margin-bottom: 0;
            border-bottom: 1px solid #c0c0c0;
            padding: 20px;

        }
        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border: none;
        }
        .news-item-img {
            height: 200px;
            flex: 1;
            overflow: hidden;
        }
        .news-item-content {
            flex: 2;
           padding: 0 0 0 20px;

        }
        .news-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .news-item:hover .news-item-img img {
            transform: scale(1.05);
        }
        .news-item-content {
           
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .news-item-title {
            font-size: 18px;
            color: #333;
            font-weight: bold;
        }
        .news-item-date {
            font-size: 14px;
            color: #c0c0c0;
            margin-bottom: 0;
            display: inline-block;
            text-align: right;
            margin-top: 0;
        }
        .news-item-excerpt {
            font-size: 14px;
            color: #888;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        .news-item-link {
            display: inline-block;
            color: #bc000f;
            font-size: 14px;
            text-decoration: none;
            padding-left: 25px;
            position: relative;
        }
         .news-item-link::before{
            content: "";
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 16px;
            height: 16px;
            background-color: #bc000f;
            transform: scaleX(1);
            transition: transform 0.3s ease;
            background: url('../images/link-icon.png') no-repeat center center;
            background-size: 100% 100%;

         }
        .news-item-link:hover {
            text-decoration: underline;
        }
        .content-bottom {
            display: flex;
            justify-content:space-between;
            align-items: center;
            gap: 20px;
            margin-top: 10px;
        }
        .news-sidebar {
            flex: 1;
        }
        .news-sidebar-title {
            font-size: 20px;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }
        .news-sidebar-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #ff0000;
        }
        .news-sidebar-item {
            padding: 15px 0;
            border-bottom: 1px dashed #eee;
            transition: all 0.3s ease;
        }
        .news-sidebar-item:hover {
            color: #ff0000;
            transform: translateX(5px);
        }
        /* 页脚样式 */
        .footer {
            background-color: #bc000f;
            color: #fff;
            padding: 20px 0;
            border-top: 6px solid #000;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-info {
            flex: 2;
        }
        .footer-info p {
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 10px;
            color: #fff;
        }
        .footer-info p i {
            margin-right: 10px;
        }
        .footer-qr {
            display: flex;
            justify-content: space-between;
            flex: 1;
        }
        .footer-qr-item {
            text-align: center;
            margin-left: 20px;
        }
        .footer-qr-item img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
            background-color: #fff;
            padding: 5px;
        }
        .footer-qr-item p {
            font-size: 12px;
            color: #fff;
            margin: 0;
        }
        /* 新闻列表页面样式 */
.newslist {
    padding: 80px 0 50px 0;
    background-color: #fff;
}

.newslist-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.newslist-item {
    display: flex;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newslist-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.newslist-item-img {
    width: 30%; /* 左侧图片宽度较小 */
    min-height: 200px;
    overflow: hidden;
}

.newslist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newslist-item:hover .newslist-item-img img {
    transform: scale(1.05);
}

.newslist-item-content {
    width: 70%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newslist-item-title h2 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.newslist-item-desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.newslist-item-date {
    font-size: 14px;
    color: #999;
    text-align: right;
}

/* 分页样式 */
.newslist-pagination {
    padding: 40px 0 0 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 12px;
}

.pagination li {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.pagination li.active  a {
    color: #fff;
}
.pagination li:hover:not(.active) {
    background-color: #f5f5f5;
    border-color: #bc000f;
    color: #bc000f;
}

.pagination li.active {
    background-color: #bc000f;
    border-color: #bc000f;
    color: #fff;
}

.pagination li.page-ellipsis {
    cursor: default;
    border: none;
}

.pagination li.page-ellipsis:hover {
    background-color: transparent;
    color: #333;
    border: none;
}

/* 响应式设计 */
        @media (max-width: 992px) {
            .service-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline-items {
                grid-template-columns: repeat(2, 1fr);
            }
            .news-content {
                flex-direction: column;
            }
            .news-main {
                margin-right: 0;
                margin-bottom: 40px;
            }
        }
        @media (max-width: 768px) {
            .navbar-content {
                height: 60px;
            }
            .carousel {
                margin-top: 60px;
                height: 400px;
            }
            .carousel-item {
                height: 400px;
            }
            .carousel-caption h2 {
                font-size: 32px;
            }
            .about-content {
                flex-direction: column;
            }
            /* 新闻列表响应式 */
            .newslist-item {
                flex-direction: column;
            }
            
            .newslist-item-img {
                width: 100%;
                height: 200px;
            }
            
            .newslist-item-content {
                width: 100%;
                padding: 20px;
            }
            
            .newslist-item-title h2 {
                font-size: 20px;
            }
            
            .newslist-item-desc p {
                font-size: 14px;
            }
            
            /* 分页响应式 */
            .pagination {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .page-item {
                padding: 6px 12px;
                font-size: 14px;
            }
            
            .about-text {
                padding-right: 0;
                margin-bottom: 40px;
            }
           
           
            .about-stats {
                flex-direction: row;
            }
            
            .stat-item {
                margin-bottom: 0;
            }
            .footer-content {
                flex-direction: column;
            }
            .footer-column {
                margin-right: 0;
                margin-bottom: 30px;
            }
        }
  
/* 添加layui图标样式定义 */
.icon {
    font-family: layui-icon !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff; /* 设置图标颜色为白色 */
}

/* 具体图标样式定义 */
.icon-location:before {
    content: "\e63e";
}

.icon-phone:before {
    content: "\e60d";
}

.icon-email:before {
    content: "\e611";
}

.icon-home:before {
    content: "\e68e";
}
/* about页面 */
.about-n{
    padding: 50px 0;
    background-color: #F1F1F1;
}
.wh-images img{
    width: 100%;
}
/* 发展历史 */
  .history {
            padding: 80px 0 80px 0;
            background-color: #f8f8f8;
            background-image: url('../images/history.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            color: #fff;
            height: 400px;
        }
        .history-container{
            width: 100%;
            margin: 0 auto;
            padding: 100px 0;
            background-color: #f1f1f1;

        }
      .history-year {
            font-size: 32px;
            
            margin-bottom: 10px;
        }
        .history-content {
            
            padding: 20px;
        }

        .history-items {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 60px 0 40px 0;

        }
         .history-content ul li{
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 10px;
            color: #333;
            list-style-type:decimal;
            padding-left: 5px;
            /* margin-left: 40px; */


         }

         /* service 页面 */
         .service{
            /* padding: 80px 0 80px 0; */
            background-color: #fff;
           color: #000;
            min-height: 400px;
         }
         
         /* 服务列表样式 */
         .service-lists {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-top: 50px;
         }
         
         /* 服务项样式 */
         .service-items {
            display: flex;
            width: 100%;
            background-color: #f8f8f8;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 9px rgba(0, 0, 0, 0.38);
            transition: all 0.3s ease;
            margin-bottom: 40px;
         }
         
         .service-items:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.52);
         }
         
         /* 服务项图片样式 */
         .service-item-imgs {
            width: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
         }
         
         .service-item-imgs img {
            /* max-width: 100%;
            max-height: 300px; */
            max-width: 550px;
            object-fit: contain;
            transition: transform 0.3s ease;
         }
         
         .service-items:hover .service-item-imgs img {
            transform: scale(1.0125);
         }
         
         /* 服务项内容样式 */
         .service-item-contents {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
         }
         
         /* 服务项标题样式 */
         .service-item-titles {
            margin-bottom: 20px;
         }
         
         .service-item-titles h3 {
            font-size: 24px;
            color: #bc000f;
            font-weight: normal;
            margin-bottom: 5px;
            letter-spacing: 1px;
         }
         
         .service-item-titles h2 {
            font-size: 32px;
            color: #333;
            font-weight: normal;
            margin-bottom: 20px;
         }
         
         /* 服务项描述样式 */
         .service-item-descs {
            margin-bottom: 30px;
            flex: 1;
         }
         
         .service-item-descs p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 10px;
        }
        
        /* 服务项按钮样式 */
        .service-item-btns {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .service-item-btns .btns {
            padding: 8px 20px;
            background-color: #bc000f;
            color: #fff;
            border-radius: 20px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #bc000f;
        }
        
        .service-item-btns .btns:hover {
            background-color: transparent;
            color: #bc000f;
            transform: translateY(-2px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .service-items {
                flex-direction: column;
            }
            
            .service-item-imgs {
                width: 100%;
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .service {
                padding: 60px 0;
            }
            
            .service-lists {
                gap: 20px;
                margin-top: 30px;
            }
            
            .service-item-contents {
                padding: 20px;
            }
            
            .service-item-titles h3 {
                font-size: 20px;
            }
            
            .service-item-titles h2 {
                font-size: 26px;
            }
            
            .service-item-descs p {
                font-size: 14px;
            }
            
            .service-item-btns {
                gap: 10px;
            }
            
            .service-item-btns .btns {
                padding: 6px 16px;
                font-size: 13px;
            }
        }

/* jobs页面样式 */
.jobs {
    display: flex;
    margin: 50px 0;
    position: relative;
}
.jobs::before {
    content: '';
    position: absolute;
    left: 30%;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #ddd;
    transform: translateX(-50%);
}
.jobs-left {
    width: 30%;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}
.jobs-left h3 {
    font-size: 24px;
    color: #bc000f;
    margin-bottom: 10px;
}
.jobs-left h2 {
    font-size: 36px;
    color: #333;
    font-weight: normal;
}
.jobs-right {
    width: 50%;
    padding-left: 40px;
}
.jobs-right img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}
.jobs-right-content-box {
    margin-bottom: 30px;
}
.jobs-right-content-box h4 {
    font-size: 18px;
    color: #bc000f;
    margin-bottom: 15px;
}
.jobs-right-content-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

/* 新闻详情页样式 */
.newspage {
    /* padding: 30px 0; */
    background-color: #f9f9f9;
}
.newspage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
 .locals {
    color: #666;
    /* margin-bottom: 20px; */
    font-size: 14px;
    background-color: #f5f5f5;
    /* background-color:#bc0000; */
    padding: 20px;


}
 .locals a {
    color: #666;
    text-decoration: none;
}
.locals a:hover {
    color: #0A2463;
}
.newspage-content {
    background: #fff;
    padding: 20px;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}
.newspage-content h2 {
    color: #0A2463;
    font-size: 28px;
    margin: 20px 0;

    line-height: 1.5;
    text-align: center;
}
.newspage-top {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    width: 100%;
}
.newspage-time,
.newspage-source {
    color: #999;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 0;
}
.newspage-desc {
    background-color: #fafafa;
    font-size: 16px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
    text-indent: 2em;
    padding: 40px;

}
.newspage-content img {

    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 4px;
}
.newspage-content p {

    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}
.newspage-next {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.newspage-next a {
    color: #0A2463;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #999;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.newspage-next a:hover {
    /* background-color: #bc0000; */
    color: #bc0000;
}
