* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow: auto;
}

.container {
    max-width: 12rem;
    margin: 0 auto;
    /* padding: 0 20px; */
}

/* Swiper轮播图样式 */
.hero-swiper-section {
    position: relative;
    
}
.hero-swiper-section img {
    width: 100%;
}
.hero-swiper-section .hero-text {
    position: absolute;
    bottom: 0.32rem;
    left: 0;
    color: #fff;
    padding: 0 1.2rem;
}
.hero-swiper-section .hero-text h2 {
    font-size: 0.56rem;
}
.hero-swiper-section .hero-text p {
    font-size: 0.18rem;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slide p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* 学校简介区域 */
.about-section {
    padding: 0.8rem 0;
    background: #fff;
}

.about-header {
    margin-bottom: 0.6rem;
}

.about-header .section-top-title {
    font-size: 0.4rem;
    font-weight: bold;
    /* margin-bottom: 0.2rem; */
}

.about-content {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 0.32rem;
}

.about-text {
    flex: 0 0 70%;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    font-size: 0.16rem;
    margin-bottom: 0;
}
.about-text p b {
    color: #333;
    margin-bottom: 0.16rem;
    display: inline-block;
}

.about-image {
    /*flex: 0 0 30%;*/
}

.about-image img {
    /* width: 100%; */
    height: auto;
    border-radius: 0.08rem;
    box-shadow: 0 0.05rem 0.15rem rgba(0, 0, 0, 0.1);
}

.view-detail-btn {
    display: inline-block;
    padding: 0.12rem 0.4rem;
    border: 0.02rem solid #ddd;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    background: #fff;
}

.view-detail-btn:hover {
    border-color: #003366;
    color: #003366;
    background: #f8f9fa;
    transform: translateY(-0.02rem);
}

/* Swiper导航样式 */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}

/* Swiper分页器样式 */
.swiper-pagination {
    bottom: 30px;
}

/* Swiper自定义样式 */
.swiper-button-prev,
.swiper-button-next {
    width: 0.6rem;
    height: 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(0.1rem);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.24rem;
    color: #fff;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 0.16rem;
    height: 0.16rem;
    background: #fff;
    opacity: 0.6;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-block;
    left: 0 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: white;
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* 功能卡片区域 */
.features {
    padding: 80px 0;
    /* background: #f8f9fa; */
}
.mlxy_features .container{
    max-width: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section-title {
    text-align: center;
    font-size: 0.4rem;
    margin-bottom: 50px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    flex-direction: column;

    label {
        font-size: .28rem;
        color: #879099;
    }

    span {
        font-weight: 600;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}
/* 公告通知区域 */
.announcement-section {
    padding:0rem 0  1.3rem 0;
    /* background: url('../img/inbj.jpg') no-repeat center bottom; */
    background-size:100% auto;
    background-position: bottom;
    transform: translateY(0.5rem);
    transition: all 0.8s ease-out;
}

.announcement-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.announcement-container {position: relative;clear: both;display: block;width: 100%;}

.announcement-left {    background: linear-gradient(to right, #06295d, #053a7c, #0450a1);
    padding: 0.56rem 0.72rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    margin-right: -8%;
    float: left;
    display: block;width:54%;}

.announcement-right {    background: #fff;
    padding: 0.4rem 0.5rem 0.4rem 0rem;
    border-radius: 0.12rem;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    float: left;
    width: 54%;
    padding-left: 12%;
    margin-top: 0.74rem;}

.announcement-header {
    margin-bottom: 0.3rem;
}

.announcement-title {
    color: #fff;
    font-size: 0.4rem;
    font-weight: bold;
    margin-bottom: 0.15rem;
}

.announcement-right .announcement-title {
    color: #003366;
}

.title-line {
    width:0.61rem;
    height: 0.05rem;
    background: #fff;
    border-radius:0.05rem;
}
.about-header .title-image {justify-content:flex-start;}

.title-image {
    display: flex;
    justify-content:center;
    background: #fff;
    width: 0.8rem;
    height: 0.08rem;
    border-radius: 0.04rem;
}
.announcement-right .title-line {
    background: #003366;
}

.announcement-list {
    margin-bottom: 0.3rem;
}

.announcement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0.15rem 0 0.15rem 0;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.announcement-right .announcement-item {
    border-bottom: 0.01rem solid #e9ecef;
}

.announcement-content {
    flex:0 0 85%;
    display: flex;
    align-items: center;
}

.announcement-text {color: #fff;
    font-size: 0.18rem;
    font-weight: normal;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    transition: all 0.3s ease;
}

.announcement-text a {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.announcement-right .announcement-text {
    color: #1d1d1d;
}

.announcement-date {    text-align: center;
    background: transparent;
    border-radius: 0;}

.announcement-right .announcement-date {
    background: transparent;
}

.announcement-item {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.announcement-list .announcement-item:hover{transform:translateX(0.15rem) !important;}

.announcement-text a {
    transition: all 0.3s ease;
    display: block;
}

.date-day {    display: block;
    font-size:0.32rem;
    font-weight: normal;
    color: #fff;
    line-height: 1;}

.announcement-right .date-day {
    color: #1d1d1d;
}

.date-month-year {
    display: block;
    font-size: 0.14rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top:0.1rem;
}

.announcement-right .date-month-year {
    color: #1d1d1d;
}

.announcement-footer {
    text-align: center;
}

.announcement-footer .view-more-btn {    display: inline-block;
    padding: 0.08rem 0.2rem;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: 0.01rem solid transparent;
    float: right;}

.announcement-footer .view-more-btn:hover {
    background: #f8f9fa;
    color: #003366;
    border-color: #003366;
    transform: translateY(-0.02rem);
}

.announcement-right .announcement-footer .view-more-btn {
    background: #003366;
    color: #fff;
}

.announcement-right .announcement-footer .view-more-btn:hover {
    background: #002244;
    color: #fff;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .announcement-container {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .announcement-left,
    .announcement-right {
        flex: 1;
        margin-right: 0;    width: 100%;    padding: 0.2rem;
    }
    .announcement-content {
    flex: 0 0 78%;
}
    .announcement-title {
        font-size: 0.15rem;
    }
    
    .announcement-text {
        font-size: 0.09rem;
    }
}
/* 新闻公告区域 */
.news {
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.news-main {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.news-content {
    padding: 30px;
}

.news-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
}

.news-sidebar {
    /* background: white; */
    border-radius: 15px;
    /* padding: 30px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2c3e50;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.news-list {
    list-style: none;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

.news-list a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.news-list a:hover {
    color: #667eea;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}
.el-row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.el-row[type="flex"] {
    display: flex !important;
}

.el-col {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

/* 防止横向滚动条 */
* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 12rem;
    overflow: hidden;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3c72;
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }

    .nav.show {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-slide h1 {
        font-size: 2.5rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    .hero-swiper-section {
        
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 16px;
    }

    /* .section-title {
                font-size: 2rem;
            } */

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .container {
        /* padding: 0 15px; */
    }

    .features {
        padding: 50px 0;
    }

    .news {
        padding: 50px 0;
    }

    .hero {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .hero-slide h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-swiper-section {
        /*height: 45vh;
        min-height: 350px;*/
    }

    /* .section-title {
                font-size: 1.8rem;
            } */

    .feature-card {
        padding: 30px 20px;
    }

    .news-content {
        padding: 20px;
    }

    .news-sidebar {
        padding: 20px;
    }
}

/* 动画效果 */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 加载动画 */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 新闻区域样式 */
.news-sidebar {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* gap: 16px; */
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fff;
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 80px;
    border-bottom: 0.01rem solid #D3D9DF;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.news-text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.news-text h4 {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 主要新闻区域样式 */
.main-news-area {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-news-image {
    width: 100%;
    /* height: 280px; */
    position: relative;
    overflow: hidden;
}

.main-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* background: linear-gradient(135deg, #667eea, #764ba2); */
}

.main-news-content {
    padding: 24px;
    text-align: center;
}

.news-tag {
    color: #888;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.main-news-content h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 16px 0;
    line-height: 1.4;
    font-weight: 600;
}

.main-news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.news-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #333;
}

.view-more-btn {
    padding: 8px 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #f5f5f5;
    border-color: #bbb;
}
.lsygBox {
    padding: 0.71rem 1.06rem 0.88rem 1.06rem;
    height: 8.1rem;
    background-size: cover !important;
    background-position: center !important;
}
.timeline-container {
      /* background: white; */
      /* border-radius: 8px; */
      /* padding: 60px 40px; */
      /* box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); */
    }

    .timeline-content {
      display: flex;
      align-items: center;
      gap: 40px;
      padding: 0 2.1rem;
    }

    .timeline-image {
      flex-shrink: 0;
      width: 4rem;
      height: 2rem;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

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

    .timeline-text {
      flex: 1;
      color: #666;
      font-size: 16px;
      line-height: 1.8;
    }

    .timeline-year {
      text-align: center;
      /* margin-bottom: 60px; */
    }

    .timeline-year h1 {
      font-size: 120px;
      font-weight: 700;
      color: #003a70;
      letter-spacing: 8px;
      margin: 0;
    }

    .timeline-wrapper {
      position: relative;
      /* padding: 0 60px; */
    }

    .timeline-track {
      position: relative;
      /* height: 150px; */
      display: flex;
      align-items: center;
    }

    .timeline-viewport {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .timeline-line {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 4px;
      margin: 0 0.54rem;
      background: #e0e0e0;
      transform: translateY(-50%);
    }
    .timeline-line::after {
      content: '';
      display: block;
      width: 0.12rem;
      height: 0.12rem;
      border-radius: 50%;
      border: 0.02rem solid #05285C;
      position: absolute;
      top: -0.06rem;
      left: -0.12rem;
    }
    .timeline-line::before {
      content: '';
      display: block;
      width: 0.12rem;
      height: 0.12rem;
      border-radius: 50%;
      border: 0.02rem solid #05285C;
      position: absolute;
      top: -0.06rem;
      right: -0.12rem;
    }

    .timeline-dots-container {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 0 0.54rem;
    }

    .timeline-dots {
      position: relative;
      display: flex;
      gap: 1rem;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      padding-left: 50%;
      padding-right: 50%;
    }

    .timeline-item {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      flex-shrink: 0;
    }

    .timeline-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #c0c0c0;
      border: 3px solid #e0e0e0;
      transition: all 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .timeline-item:hover .timeline-dot {
      transform: scale(1.2);
    }

    .timeline-item:not(.active) .timeline-dot {
      background: #d0d0d0;
      border-color: #e8e8e8;
    }

    .timeline-item.active .timeline-dot {
      width: 24px;
      height: 24px;
      background: #003a70;
      border: 4px solid white;
      box-shadow: 0 0 0 3px #003a70;
    }

    .timeline-item.active::before {
      content: '';
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 60px;
      background: #003a70;
      z-index: 1;
    }

    .timeline-label {
      position: absolute;
      top: 40px;
      font-size: 16px;
      font-weight: 500;
      color: #999;
      white-space: nowrap;
      transition: all 0.3s ease;
      opacity: 1;
    }

    .timeline-item.active .timeline-label {
      color: #003a70;
      font-size: 20px;
      font-weight: 700;
    }

    .timeline-item.highlight {
      position: relative;
    }

    .timeline-item.highlight::after {
      /* content: '';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 100px;
      border: 3px solid #7b68ee;
      border-radius: 8px;
      z-index: 0; */
    }

    .timeline-item.highlight .timeline-label {
      background: white;
      padding: 4px 12px;
      border-radius: 4px;
      z-index: 3;
      position: relative;
    }

    .timeline-endpoint {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      z-index: 5;
    }
    .timeline-endpoint img {
        height: 0.4rem;
    }

    .timeline-endpoint.left {
      left: 0;
    }

    .timeline-endpoint.right {
      right: 0;
    }

    .timeline-endpoint .timeline-dot {
      background: transparent;
      border: 3px solid #c0c0c0;
    }

    .timeline-arrows {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
      z-index: 10;
    }

    .arrow {
      width: 40px;
      height: 40px;
      /* border: 3px solid #7b68ee;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      pointer-events: all;
      background: white;
      transition: all 0.3s ease; */
    }

    .arrow:hover {
      background: #7b68ee;
    }

    .arrow:hover::before {
      border-color: white;
    }

    .arrow.left::before {
      /* content: '';
      width: 12px;
      height: 12px;
      border-left: 3px solid #7b68ee;
      border-bottom: 3px solid #7b68ee;
      transform: rotate(45deg);
      margin-left: 4px; */
    }

    .arrow.right::before {
      content: '';
      width: 12px;
      height: 12px;
      /* border-right: 3px solid #7b68ee;
      border-top: 3px solid #7b68ee; */
      transform: rotate(45deg);
      margin-right: 4px;
    }

    @media (max-width: 768px) {
      .timeline-content {
        flex-direction: column;
      }

      .timeline-image {
        width: 100%;
      }

      .timeline-year h1 {
        font-size: 1.2rem;
      }

      .timeline-wrapper {
        /* padding: 0 20px; */
      }

      .timeline-label {
        font-size: 14px;
      }

      .timeline-dots {
        gap: 100px;
      }
    }
.about-header.wow.bounceInUp.animated {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* .tjzlBox */
.tjzlBox{width: 100%;  padding: 0.8rem 1.2rem;  position: relative; margin-top: 1.24rem; color:#fff}
.tjzlBox>img {position: absolute; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.tjzlBox .text{width: 6rem;float: right; margin-right: 1.2rem;}
.tjzlBox .text h5{font-size: 0.34rem;color: #FFFFFF;}
/* .tjzlBox .text span{display: block;width: 0.6rem;height: 3px;background: #ee9640;} */
.tjzlBox .text p{font-size: 0.14rem;line-height:0.24rem;color: #FFFFFF;margin-top: 0.25rem;}
.tjzlBox .text a{display: inline-block;padding: 0.16rem 0.24rem;border-radius: 0.28rem; background: #fff; font-size: 0.14rem;color: #05285C;margin-top: 0.25rem;}
.tjzlBox .tjzlBoxCont .statistic-card {
    text-align: center;
}
.mlxytList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 0.12rem; */
    height: 1.88rem;
    overflow: hidden;
    list-style: none;
    margin-top: 0.64rem;
    width: 100%;
    height: 100%;
    /* margin: 0 0.64rem;; */
}
.mlxytList  li{
    font-size: 0.18rem;
    background: #F5F8FA;
}
.mlxytList  li img{
   width: 100%;
   height:  100%;
}
.ldjjList {
    width: 100%;
    /* max-width: 12rem; */
    display: flex;
    justify-content: center;
    align-self: center;
}
.ldjjList  li {
    width: 5.8rem;
    height: 1.64rem;
    background: #F2F3F9;
    margin: 0 0.2rem;
    padding: 0.24rem 0.64rem;
    border-radius: 0.12rem;
    position: relative;
}
.ldjjList li a {
    background: linear-gradient(270deg, #0450A2 0%, #05285C 100%);
    padding: 0.3rem 0.3rem 0.3rem 0.56rem;
    position: absolute;
    bottom: -0.48rem;
    left: 0.58rem;
    right: 0.58rem;
    border-radius: 0.12rem;
    color:#fff;
    display: flex;
    justify-content: space-between;
 }
/* 媒体查询 */
@media screen and (max-width: 1200px) {}

@media screen and (max-width: 992px) {}

@media screen and (max-width: 768px) {}

@media screen and (max-width: 480px) {}