
      /* 基础样式 */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Segoe UI", "Microsoft YaHei", sans-serif;
        line-height: 1.6;
        color: #333;
        background-color: #f8f9fa;
        padding-top: 130px;
      }

      a {
        text-decoration: none;
        color: #0066cc;
        transition: color 0.3s;
      }

      a:hover {
        color: #004080;
      }

      /* 容器样式 */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      /* 头部样式 */
      .header {
        width: 100%;
        /* background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); */
        background: #fff;
        color: white;
        padding: 20px 0;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
      }

      .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }

      .logo-area {
        flex: 1;
        min-width: 250px;
      }

      .logo {
        width: 153px;
        height: 42px;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
      }

      .site-description {
        font-size: 1.1rem;
        opacity: 0.9;
      }

      .header-button {
        background-color: rgb(247, 95, 203);
        color: white;
        border: none;
        padding: 10px 28px;
        font-size: 1.1rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 600;
        box-shadow: 0 4px 8px rgba(255, 107, 107, 0.3);
      }

      .header-button:hover {
        background-color: rgb(247, 95, 203);
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(255, 107, 107, 0.4);
      }

      /* 主要内容区域 */
      main {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-bottom: 40px;
      }

      /* 文章区域 */
      article {
        flex: 3;
        min-width: 300px;
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .article-header {
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
      }

      .article-title {
        font-size: 2rem;
        margin-bottom: 10px;
        color: #1e3c72;
      }

      .article-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 10px;
        color: #666;
        font-size: 0.95rem;
      }

      .meta-item {
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
      }

      .tag {
        background-color: #eef5ff;
        color: #2a5298;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
      }

      .article-content {
        font-size: 1.1rem;
        line-height: 1.8;
      }

      .article-content p {
        margin-bottom: 20px;
      }

      /* 轮播图区域 */
      aside {
        flex: 2;
        min-width: 400px;
      }

      .carousel-container {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .carousel-slides {
        position: relative;
        height: 560px;
        overflow: hidden;
      }

      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease;
        background-size: cover;
        background-position: center;
      }

      .slide.active {
        opacity: 1;
      }
      .slide-mark {
        position: absolute;
        top: 10px;
        right: 10px;
        border-radius: 12px;
        background: rgba(247, 95, 203, 1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 6px;
      }
      .slide-mark .match {
        font-size: 12px;
        font-weight: 400;
        letter-spacing: 0px;
        line-height: 24px;
        color: rgba(255, 255, 255, 0.6);
      }

      .slide-mark .number {
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0px;
        line-height: 32px;
        color: rgba(255, 255, 255, 0.8);
      }

      .slide-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 30px;
      }

      .slide-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
      }

      .slide-description {
        font-size: 1rem;
        opacity: 0.9;
        margin-bottom: 15px;
      }

      .slide-link {
        display: inline-block;
        border-radius: 8px;
        background: linear-gradient(
          110.05deg,
          rgba(231, 73, 162, 1) 0%,
          rgba(121, 72, 234, 1) 100%
        );
        color: white;
        padding: 8px 18px;
        font-size: 0.95rem;
        transition: all 0.3s;
      }

      .slide-link:hover {
        background-color: rgba(255, 255, 255, 0.3);
      }

      .carousel-controls {
        display: flex;
        justify-content: center;
        padding: 20px;
        background-color: #f8f9fa;
        border-top: 1px solid #eee;
      }

      .carousel-dots {
        display: flex;
        gap: 10px;
      }

      .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s;
      }

      .dot.active {
        background-color: rgb(247, 95, 203);
      }

      /* 页脚样式 */
      footer {
        /* background-color: #1e3c72; */
        color: rgba(43, 43, 43, 0.8);
        padding: 30px 0;
        text-align: center;
        margin-top: 40px;
      }

      .footer-content {
        max-width: 800px;
        margin: 0 auto;
      }

      /* 响应式调整 */
      @media (max-width: 768px) {
        .header-content {
          flex-direction: column;
          text-align: center;
          gap: 20px;
        }

        .logo-area {
          margin-bottom: 15px;
        }

        main {
          flex-direction: column;
        }

        .carousel-slides {
          height: 300px;
        }
      }
