    * {
      word-wrap: break-word;
      box-sizing: border-box;
    }

    body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, html, iframe, input, li, ol, p, pre, td, textarea, th, ul {
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Noto Sans SC', 'Microsoft Yahei', sans-serif;
      color: #333;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      background: linear-gradient(135deg, #1a1a2e, #16213e);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
     body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../css/image/kdjl.png');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: -1;
        }

    .release {
      width: 100%;
      max-width: 800px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
      background: rgba(255,255,255,0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .release-body {
      background: rgba(255,255,255,0.9);
      border-radius: 16px;
      margin: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .release-body .image {
      text-align: center;
      padding: 40px 0 20px;
      background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      margin-bottom: 30px;
    }

    .release-body .image img {
      border-radius: 50%;
      width: 150px;
      height: 50px;
      padding: 5px;
      background-color: #fff;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      border: 4px solid #624ffe;
      object-fit: cover;
    }

    .release-body .title {
      padding: 0 40px 30px;
      text-align: center;
    }

    .release-body .title h2 {
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 1px;
      margin: 0;
      color: #2c3e50;
      background: linear-gradient(90deg, #4facfe, #00f2fe);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .release-body .title p {
      font-size: 18px;
      padding-top: 15px;
      color: #7f8c8d;
      letter-spacing: 1px;
      line-height: 1.6;
    }

    .release-body .title .highlight {
      display: inline-block;
      background: #ffeaa7;
      color: #2d3436;
      padding: 4px 12px;
      border-radius: 20px;
      margin: 10px 0;
      font-weight: 500;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .release-main .links {
      padding: 20px 40px;
    }

    .release-main .links ul {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      list-style: none;
    }

    .release-main .links ul li {
      flex: 1;
      text-align: center;
    }

    .release-main .links ul li a {
      display: block;
      padding: 18px 10px;
      font-size: 18px;
      font-weight: 500;
      color: #fff;
      border-radius: 12px;
      transition: all 0.3s ease;
      letter-spacing: 1px;
      text-decoration: none;
      box-shadow: 0 6px 15px rgba(0,0,0,0.2);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .release-main .links ul li a:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, #ff6b6b, #ee5a24, #ff6b6b);
      background-size: 400% 400%;
      z-index: -1;
      transition: all 0.3s ease;
    }

    .release-main .links ul li a:hover:before {
      background-position: 100% 50%;
    }

    .release-main .links ul li a:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .release-main .links ul li a:active {
      transform: translateY(1px);
    }

    .release-main .links ul li:nth-child(1) a:before {
      background: linear-gradient(45deg, #4facfe, #00f2fe, #4facfe);
      background-size: 400% 400%;
    }

    .release-main .links ul li:nth-child(2) a:before {
      background: linear-gradient(45deg, #a162e8, #f093fb, #a162e8);
      background-size: 400% 400%;
    }

    .release-main .links ul li:nth-child(3) a:before {
      background: linear-gradient(45deg, #00b09b, #96c93d, #00b09b);
      background-size: 400% 400%;
    }

    .release-main .tips {
      text-align: center;
      padding: 30px;
      border-top: 1px solid #eee;
      background: #f8f9fa;
      margin-top: 20px;
    }

    .release-main .tips p {
      font-size: 14px;
      color: #6c757d;
      letter-spacing: 1px;
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .release-main .tips p b {
      color: #343a40;
      padding: 4px 8px;
      margin: 0 5px;
      border-radius: 6px;
      background-color: #e9ecef;
      font-weight: 500;
    }

    .release-main .tips a {
      color: #4facfe;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .release-main .tips a:hover {
      color: #00f2fe;
      text-decoration: underline;
    }

    footer {
      text-align: center;
      padding: 30px;
      margin: 20px;
      background: rgba(255,255,255,0.05);
      border-radius: 12px;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.1);
      color: #fff;
    }

    footer h2 {
      color: #ffeaa7;
      margin-bottom: 15px;
      font-size: 24px;
    }

    footer p {
      margin-bottom: 10px;
      color: #bdc3c7;
      letter-spacing: 1px;
      font-size: 14px;
    }

    footer a {
      color: #00f2fe;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    footer a:hover {
      color: #4facfe;
      text-decoration: underline;
    }

    @media screen and (max-width: 768px) {
      .release {
        margin: 10px;
      }
      
      .release-body .image img {
        width: 100px;
        height: 50px;
      }
      
      .release-body .title {
        padding: 0 20px 20px;
      }
      
      .release-body .title h2 {
        font-size: 28px;
      }
      
      .release-body .title p {
        font-size: 16px;
      }
      
      .release-main .links ul {
        flex-direction: column;
        gap: 15px;
      }
      
      .release-main .links ul li a {
        padding: 15px 10px;
        font-size: 16px;
      }
      
      .release-main .tips {
        padding: 20px;
      }
      
      footer {
        padding: 20px;
        margin: 10px;
      }
      
      footer h2 {
        font-size: 20px;
      }
    }