body {
    margin: 0;
}

/* 主容器样式 */
.content-container {
    max-width: 72.08vw;
    /* 1000px / 1920 * 100 */
    margin: 2.08vw auto;
    /* 40px / 1920 * 100 */
    padding: 0 1.04vw;
    /* 20px / 1920 * 100 */
}

/* 返回按钮样式 */
.back-button {
    display: inline-flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    margin-bottom: 1.56vw;
    /* 30px / 1920 * 100 */
    transition: color 0.3s;
}

.back-button:hover {
    color: #00a0e9;
}

.back-button svg {
    width: 4%;
    /* 20px / 1920 * 100 */
    /* height: 1.04vw; */
    height: 4%;
    /* 20px / 1920 * 100 */
    margin-right: 0.42vw;
    /* 8px / 1920 * 100 */
}

/* 文章卡片样式 */
.article-card {
    background: #fff;
    border-radius: 0.42vw;
    /* 8px / 1920 * 100 */
    box-shadow: 0 0.10vw 0.63vw rgba(0, 0, 0, 0.08);
    /* 2px 12px / 1920 * 100 */
    padding: 2.08vw;
    /* 40px / 1920 * 100 */
}

/* 文章头部样式 */
.article-header {
    margin-bottom: 2.08vw;
    /* 40px / 1920 * 100 */
    padding-bottom: 1.56vw;
    /* 30px / 1920 * 100 */
    border-bottom: 0.052vw solid #eee;
    /* 1px / 1920 * 100 */
}

.article-title {
    font-size: 2.46vw;
    /* 28px / 1920 * 100 */
    color: #333;
    margin-bottom: 1.04vw;
    /* 20px / 1920 * 100 */
    line-height: 1.4;
    text-align: center;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.56vw;
    /* 30px / 1920 * 100 */
    color: #666;
    font-size: 1.13vw;
    /* 14px / 1920 * 100 */
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item svg {
    width: 1.13vw;
    /* 16px / 1920 * 100 */
    height: 1.13vw;
    /* 16px / 1920 * 100 */
    margin-right: 0.31vw;
    /* 6px / 1920 * 100 */
}

/* 文章内容样式 */
.article-content {
    color: #333;
    line-height: 1.8;
    font-size: 1.53vw;
    /* 16px / 1920 * 100 */
}

.article-content p {
    margin-bottom: 1.04vw;
    /* 20px / 1920 * 100 */
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.42vw;
    /* 8px / 1920 * 100 */
    margin: 1.04vw 0;
    /* 20px / 1920 * 100 */
}

.image-caption {
    text-align: center;
    color: #666;
    font-size: 1.03vw;
    /* 14px / 1920 * 100 */
    margin-top: -0.78vw;
    /* -15px / 1920 * 100 */
    margin-bottom: 1.04vw;
    /* 20px / 1920 * 100 */
}

/* 上下篇导航样式 */
.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.08vw;
    /* 40px / 1920 * 100 */
    padding-top: 1.56vw;
    /* 30px / 1920 * 100 */
    border-top: 0.052vw solid #eee;
    /* 1px / 1920 * 100 */
}

.nav-item {
    max-width: 45%;
}

.nav-label {
    color: #666;
    font-size: 0.73vw;
    /* 14px / 1920 * 100 */
    margin-bottom: 0.42vw;
    /* 8px / 1920 * 100 */
}

.nav-title {
    color: #333;
    font-size: 0.83vw;
    /* 16px / 1920 * 100 */
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-title:hover {
    color: #00a0e9;
}

/* 加载状态样式 */
.loading {
    text-align: center;
    padding: 2.08vw;
    /* 40px / 1920 * 100 */
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .content-container {
        margin: 1.04vw auto;
        /* 20px / 1920 * 100 */
    }

    .article-card {
        padding: 1.04vw;
        /* 20px / 1920 * 100 */
    }

    .article-title {
        font-size: 1.25vw;
        /* 24px / 1920 * 100 */
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.78vw;
        /* 15px / 1920 * 100 */
    }

    .article-nav {
        flex-direction: column;
        gap: 1.04vw;
        /* 20px / 1920 * 100 */
    }

    .nav-item {
        max-width: 100%;
    }
}







/* 边框样式 */

.header {
    background-color: #005aab;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.header::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ffcc00;
    margin-left: 4px;
}
.content {
    padding: 20px;
    line-height: 1.8;
    border: 1px solid #ccc;
    margin-top: 10px;
}
.content p {
    margin: 15px 0;
}

/* 段落样式 */
.section-header {
    display: flex;
    align-items: center;
    margin: 40px 0 20px;
}
.section-number {
    background-color: #005aab;
    color: white;
    padding: 8px 16px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
}
.section-title {
    font-size: 22px;
    color: #333;
}
.feature-list {
    list-style: none;
    padding-left: 20px;
}
.feature-item {
    position: relative;
    margin-bottom: 20px;
}
.feature-item::before {
    content: attr(data-index);
    position: absolute;
    left: -20px;
    font-weight: bold;
    color: #005aab;
}

p {
    text-indent: 2em;
    padding: 0.5em 0;
  }

/* 图片样式 */
.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 直接平分两列 */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.image-container img {
    width: 100%;      /* 占满网格列 */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: contain;
}
  





.section-title14 {
    font-size: 1.53vw;
    font-weight: bold;
    margin: 30px 0 15px 0;
    padding-bottom: 5px;
}
.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.feature-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
}
.feature-item:before {
    content: "■";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 0.8vw;
}
.feature-title14 {
    font-weight: bold;
    color: #0066cc;
    display: inline;
    font-size: 1.53vw;
}
.highlight14 {
    color: #0066cc;
    font-size: 1.53vw;
    font-weight: bold;
}
.special-char {
    font-family: Arial, sans-serif;
    font-style: italic;
}
.requirement-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.requirement-item {
    position: relative;
    padding-left: 35px;
    margin-bottom: 25px;
}
.requirement-item:before {
    content: attr(data-number);
    position: absolute;
    left: 0;
    color: #000000;
}
.requirement-title {
    font-weight: bold;
    font-size: 1.53vw;
    display: inline;
}


.gallery-grid14 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.gallery-item14 {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.gallery-img14 {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #333;
}

.tribute-header {
    background-color: white;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.main-quote {
    text-indent: 2em;
    padding: 0.5em 0;
    color: #1a3e6f;
    font-size: 1.53vw;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
}
.number-box {
    background-color: #FFD700;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
  }
  .image-container15 {
    background-color: rgb(243,243,243);
    padding: 15px;
  }
  /* 移动端适配 */
  @media (max-width: 768px) {
    .image-container {
      flex-direction: column;
    }
    .image-container img {
      width: 100%;
    }
  }

  /* 滚动条样式 */
.news-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 500px;
}

.image-slider {
    width: 100%;
    height: 100%;
    overflow-x:scroll;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.images {
    display: flex;
    height: 100%;
}

.images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    scroll-snap-align: start;
}

