  body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", sans-serif;
    color: #333333;
    background: linear-gradient(180deg, rgba(255, 245, 220, 0.2) 0%, rgba(255, 235, 200, 0.4) 100%), url("../img/backimg.jpg") no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  .center {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    backdrop-filter: none;
    border: none;
    position: relative;
    z-index: 1000;
    box-shadow: none;
  }

  .header .left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex: 1;
  }

  .header .right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }

  .header-notice {
    flex: 2;
    margin: 0 20px !important;
    border: none !important;
    max-width: none !important;
    padding: 0 !important;
    display: flex;
    justify-content: center;
  }
  
  .header-notice .notice-track {
    font-size: 14px;
  }

  .header .ava {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin: -16px 0;
    position: relative;
    z-index: 10;
  }

  .header .text {
    display: flex;
    flex-direction: column;
  }

  .header .text-min {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  }

  @keyframes colorChange {
    0%, 100% { color: #333; }
    50% { color: #000; }
  }

  .header .right #menu {
    width: 28px;
    height: 28px;
    cursor: pointer;
    filter: invert(1) drop-shadow(0 1px 2px rgba(255, 255, 255, 0.5));
  }

  .flex-1 {
    flex: 1;
  }

  .album_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .album_list li {
    flex: 1 1 calc(50% - 20px);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
  }

  .album_list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    transition: transform 0.5s;
    pointer-events: none;
  }

  .album_list li:hover::before {
    transform: translateX(100%);
  }

  .album_list li:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(100, 255, 218, 0.5);
    background: rgba(255, 255, 255, 0.5);
  }

  .tab-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.3);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .tab-item {
    padding: 10px 30px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
  }

  .tab-item:hover {
    color: #333;
    background: rgba(255, 255, 255, 0.4);
  }

  .tab-item.active {
    color: #fff;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.3);
  }

  .tab-pane {
    display: none;
    animation: fadeIn 0.5s ease-out;
  }

  .tab-pane.active {
    display: block;
  }
  .toast {
    visibility: hidden;
    min-width: 250px;
    background-color: rgba(0, 255, 85, 0.9);
    color: #000;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 255, 85, 0.4);
    opacity: 0;
    transition: opacity 0.3s, top 0.3s;
  }

  .toast.show {
    visibility: visible;
    opacity: 1;
    top: 50px;
  }

  .live-chat-container {
    margin-bottom: 25px;
    position: relative;
    z-index: 100;
    animation: fadeIn 0.5s ease-out;
  }

  .live-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    padding: 18px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }

  .live-chat-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 114, 255, 0.6);
    filter: brightness(1.1);
  }

  .live-chat-btn::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 60px;
    border: 2px solid rgba(0, 198, 255, 0.6);
    opacity: 0;
    animation: ripple 1.5s infinite;
    pointer-events: none;
  }

  @keyframes ripple {
    0% {
      transform: scale(0.95);
      opacity: 0.8;
    }

    100% {
      transform: scale(1.05);
      opacity: 0;
    }
  }

  .live-chat-icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    animation: bounce 2s infinite;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
  }

  .live-chat-info {
    text-align: left;
  }

  .live-chat-info h3 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }

  .live-chat-info p {
    margin: 2px 0 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
  }

  @keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }

    40% {
      transform: translateY(-10px);
    }

    60% {
      transform: translateY(-5px);
    }
  }

  .cta-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin-bottom: 20px;
    flex-wrap: wrap
  }

  .notice {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 12px 20px;
    margin: 0 auto 30px auto;
    max-width: 900px;
    text-align: center;
    font-size: 16px;
    color: #333;
    animation: fadeIn 1s ease-out;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
  }

  .notice-track-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .notice-track {
    display: inline-block;
    white-space: nowrap;
    animation: seamless-marquee 20s linear infinite;
    color: #333;
    font-weight: bold;
  }

  @keyframes seamless-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .notice:hover .notice-track {
    animation-play-state: paused;
  }

  .contact-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .contact-glass-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: 100px;
    box-sizing: border-box;
  }

  @media (max-width: 768px) {
    .contact-grid-row {
      grid-template-columns: 1fr;
    }
    .contact-glass-card {
      height: auto;
      padding: 20px 30px;
    }
  }

  .contact-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .glass-icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
  }

  .glass-emoji {
    font-size: 24px;
    line-height: 1;
    z-index: 2;
  }
  
  .glass-img-icon {
    width: 28px;
    height: 28px;
    z-index: 2;
  }

  .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 198, 255, 0.6);
    animation: pulse-ripple 2s infinite;
  }

  @keyframes pulse-ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
  }

  .glass-content {
    flex: 1;
    min-width: 0;
  }

  .glass-main-title {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
  }

  .live-badge {
    background: #ff4d4d;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    animation: blink 2s infinite;
    vertical-align: middle;
    font-weight: bold;
  }

  .glass-sub-title {
    font-size: 12px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .glass-action {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 10px;
  }
  
  .specialist-action {
    background: linear-gradient(90deg, #FFD700, #FF8C00);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }

  .contact-glass-card:hover .glass-action {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.6);
  }
  
  .contact-glass-card:hover .specialist-action {
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
  }

  @media (max-width: 768px) {
    .contact-glass-card {
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
    .glass-icon-box {
      margin-right: 0;
      margin-bottom: 15px;
    }
    .glass-main-title {
      justify-content: center;
    }
    .glass-action {
      margin-left: 0;
      margin-top: 15px;
      width: 100%;
      text-align: center;
    }
  }

  .business-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-radius: 16px;
    background: rgba(20, 30, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3)
  }

  .business-main {
    display: flex;
    align-items: center;
    cursor: pointer
  }

  .business-icon {
    width: 48px;
    height: 48px;
    margin-right: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    padding: 6px
  }

  .business-text h3 {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    font-weight: normal
  }

  .business-text p {
    margin: 2px 0 0 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .business-actions {
    display: flex;
    gap: 8px;
    margin-left: auto
  }

  @keyframes marquee {
    0% {
      transform: translateX(100%)
    }

    100% {
      transform: translateX(-100%)
    }
  }

  .download-section {
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    margin: 25px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3)
  }

  .download-section h2 {
    text-align: center;
    margin: 0 0 12px 0;
    font-size: 20px;
    background: linear-gradient(to right, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    color: transparent
  }

  .download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px
  }

  .download-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: 0.3s
  }

  .download-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3)
  }

  .download-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2)
  }

  .download-text h3 {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
    font-weight: normal
  }

  .download-text p {
    margin: 2px 0 0 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: bold
  }

  .download-actions {
    margin-left: auto;
    display: flex;
    gap: 8px
  }

  .download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none
  }

  .download-btn:hover {
    border-color: #64ffda;
    color: #64ffda;
    background: rgba(100, 255, 218, 0.1)
  }

  @keyframes bgShift {
    0% {
      background-position: 0 0
    }

    50% {
      background-position: 100% 0
    }

    100% {
      background-position: 0 0
    }
  }

  .contact-highlight {
    background: rgba(20, 30, 50, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    overflow: hidden;
  }

  .live-chat-banner {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.8) 0%, rgba(42, 82, 152, 0.8) 100%);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .live-chat-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 114, 255, 0.4);
    border-color: rgba(100, 255, 218, 0.5);
  }

  .chat-icon-wrapper {
    width: 52px;
    height: 52px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    position: relative;
  }

  .chat-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(100, 255, 218, 0.4);
    animation: ripple 2s infinite;
  }

  .live-chat-banner .live-chat-icon {
    width: 32px;
    height: 32px;
    margin: 0;
    animation: none;
    /* 移除原来的跳动，改用外圈波纹 */
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
  }

  .chat-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
  }

  .chat-title-row h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .live-tag {
    background: #ff4d4d;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    animation: blink 2s infinite;
  }

  .chat-content p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .chat-action-btn {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 20px;
    margin-left: 16px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
    transition: all 0.3s;
  }

  .live-chat-banner:hover .chat-action-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 114, 255, 0.5);
  }

  .contact-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffcc, #ff00cc);
    z-index: -1;
    background-size: 400%;
    border-radius: 22px;
    animation: borderFlow 20s linear infinite;
    opacity: 0.3;
  }

  @keyframes borderFlow {
    0% {
      background-position: 0 0;
    }

    50% {
      background-position: 400% 0;
    }

    100% {
      background-position: 0 0;
    }
  }

  .contact-highlight h2 {
    margin: 0;
    font-size: 22px;
    text-align: center;
    background: linear-gradient(to right, #00dbde, #fc00ff);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(252, 0, 255, 0.2);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
  }

  .contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    flex-wrap: nowrap;
  }

  .contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #64ffda;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .contact-main {
    display: flex;
    align-items: center;
    flex-grow: 1;
    cursor: pointer;
    min-width: 0;
    margin-right: 8px;
  }

  .contact-item img {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .contact-item:hover img {
    transform: scale(1.1) rotate(5deg);
  }

  .contact-text {
    flex: 1;
    min-width: 0;
  }

  .contact-text h3 {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-text p {
    margin: 4px 0 0 0;
    font-size: 18px;
    font-weight: bold;
    color: #0f172a;
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .contact-text .click-hint {
    font-size: 10px;
    font-weight: normal;
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .copy-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #a8b2d1;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .copy-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    border-color: #64ffda;
  }

  .copy-btn:active {
    transform: scale(0.95);
  }

  .copy-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .album_list dd {
    flex: 1;
    padding: 10px 4px 4px 0;
  }

  .album_list dl {
    display: flex;
    margin: 0;
    align-items: center;
  }

  .album_list dt {
    flex-shrink: 0;
    margin: 10px 10px 10px 20px;
  }

  .album_list dt img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-left: 10px;
    transition: transform 0.3s;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .album_list li:hover dt img {
    transform: scale(1.5);
  }

  .album_list h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
  }

  .album_list p {
    margin: 3px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }

  .album_list p.time {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(14, 165, 233, 0.25);
  }

  .album_list p.alert {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 12px;
  }

  h3.footer {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin: 5px 0px 0px 0px;
    ;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .album_list li {
      flex: 1 1 100%;
    }

    .album_list dt img {
      width: 50px;
      height: 50px;
    }

  }

  #matrixClockContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    overflow: hidden;
    margin: 20px 0px 0px 0px;
    ;
  }

  #matrixClock {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    text-align: center;
    transform: scale(0.6);
    transform-origin: center center;
  }

  .matrix-clock .line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
  }

  .matrix-clock .digit {
    display: inline-block;
    margin: 1px;
  }

  .matrix-clock .pixel {
    width: 4px;
    height: 4px;
    margin: 1px;
    display: inline-block;
    background: rgba(0, 114, 255, 0.1);
    border-radius: 1px;
    transition: background 0.2s;
    box-shadow: none; /* 移除阴影 */
  }

  .matrix-clock .pixel.on {
    background: #0072ff;
    box-shadow: none;
  }

  .matrix-clock .row {
    height: 6px;
    line-height: 0;
  }

  .matrix-clock .date {
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.5);
    margin: 0 2px;
  }

  .timezone-container {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
  }

  .timezone-btn {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #0072ff;
    color: #0072ff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    backdrop-filter: blur(5px);
  }

  .timezone-menu {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #0072ff;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    /* 横向排列 */
    flex-direction: row;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2);
  }

  .timezone-menu button {
    padding: 6px 9px;
    background: transparent;
    color: #0072ff;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }

  .timezone-menu button:hover {
    background: rgba(0, 114, 255, 0.1);
  }

  /* 屏保样式 */
  #matrixClockContainer.screensaver {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2147483647;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    margin: 0;
    padding: 0;
  }

  #matrixClockContainer.screensaver #matrixClock {
    transform: scale(3);
  }

  @media (max-width: 768px) {
    #matrixClockContainer.screensaver #matrixClock {
      transform: scale(1.3);
    }
  }

  @keyframes blink {
    0% {
      opacity: 1;
    }

    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }