::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-track {
    background: #222;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #444 25%, #666 25%, #666 50%, #444 50%, #444 75%, #666 75%);
    background-size: 5px 5px;
    border-radius: 10px;
    border: 1px solid #333;
}








<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Domain</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background: black;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .domain-box {
      width: 1200px;
      max-width: 100%;
      height: 8vh;
      border: 0px solid #3b3440;
      border-top: 0;
      border-bottom: 0;
      border-radius: 0px;
      background: black;
      display: flex;
      align-items: center;
      padding-left: 0;
    }

    .text-line1 {
      text-transform: uppercase;
      font-family: 'Segoe UI';
      font-size: 2.8vh;
      font-weight: 700;
      background: linear-gradient(
        135deg,
        #C6C6D6 45%,
        white 48%,
        white 52%,
        #C6C6D6 55%
      );
      background-size: 200% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: stripeMove 3.5s linear infinite;
      letter-spacing: -1px;
      margin-left: 0; /* 确保左侧0px */
      padding-left: 0; /* 确保左侧0px */
    }

    @keyframes stripeMove {
      0% { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }

    /* 响应式 */
    @media (max-width: 768px) {
      .domain-box {
        height: 7vh;
      }
      
      .text-line1 {
        font-size: 2.2vh;
      }
    }
    
    @media (max-width: 480px) {
      .domain-box {
        height: 6vh;
      }
      
      .text-line1 {
        font-size: 1.8vh;
      }
    }
  </style>
</head>








<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>垂直排列组件</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background-color: #000;
            display: flex;
            justify-content: center;
            align-items: center;

            margin: 0;
            padding: 0px;
        }
        
        /* 主容器 */
        .main-container {
            width: 1200px;
            max-width: 100%;
            display: flex;
            flex-direction: column;
            gap: 0px;
        }
        
        /* 文本容器 */
        .text-container {
            width: 100%;
            border: 0px solid rgba(255, 255, 255, 0.1);
            padding: 0px;
            background: transparent;
            border-radius: 8px;
        }
        
        /* 左对齐文本效果 */
        .aiasset-text {
            font-family: 'Segoe UI', Arial, sans-serif;
            font-weight: 700;
            font-size: 4.5vh;
            background: linear-gradient(
                90deg,
                #02E8FD,
                #C8B6FF,
                #E706FD,
                #BBDED6,
                #FFD6E0,
                #FF006E,
                #C1E3FF,
                #02E8FD
            );
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: flowGradient 12s linear infinite;
            text-align: left;
            padding: 0;
            margin: 0;
            line-height: 1.4;
            display: block;
            width: 100%;
        }
        
        @keyframes flowGradient {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }
        
        /* 邮箱容器 */
        .email-container {
            width: 100%;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding-left: 0;
        }
        
        /* 邮箱盒子 */
        .email-box {
            width: 230px;
            height: 35px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Microsoft YaHei UI', sans-serif;
            font-size: 20px;
            font-weight: 100;
            color: black;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 1);
            position: relative;
            background: linear-gradient(135deg, #2c2c2c, #4a4a4a, #5a5a5a, #3a3a3a, #1a1a1a);
            background-size: 200% 200%;
            animation: metalShine 4s ease-in-out infinite;
            box-shadow: 
                inset 0 0 15px rgba(255, 255, 255, 0.1),
                0 2px 4px rgba(0, 0, 0, 0.5);
            padding: 0 15px;
            overflow: hidden;
        }
        
        @keyframes metalShine {
            0%, 100% { background-position: 0% 0%; }
            50% { background-position: 100% 100%; }
        }
        
        /* 边框光点 */
        .moving-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            filter: drop-shadow(0 0 6px #ff6b6b);
            z-index: 10;
            animation: borderLoop 3.5s linear infinite;
            top: -4px;
            left: -4px;
        }
        
        @keyframes borderLoop {
            0% { top: -4px; left: -4px; }
            25% { top: -4px; left: calc(100% - 4px); }
            50% { top: calc(100% - 4px); left: calc(100% - 4px); }
            75% { top: calc(100% - 4px); left: -4px; }
            100% { top: -4px; left: -4px; }
        }
        
        /* 响应式设计 */
        @media (max-width: 1240px) {
            .main-container {
                width: 95%;
            }
        }
        
        @media (max-width: 768px) {
            .main-container {
                gap: 30px;
            }
            
            .aiasset-text {
                font-size: 2.2rem;
            }
            
            .email-container {
                height: 150px;
            }
            
            .email-box {
                width: 200px;
                height: 36px;
                font-size: 16px;
            }
        }
        
        @media (max-width: 480px) {
            .main-container {
                gap: 20px;
            }
            
            .aiasset-text {
                font-size: 1.8rem;
            }
        }
    </style>
</head>
