admin 发表于 2024-10-2 21:52:30

我用Claude快速搭建了一个域名出售页面。

支持根据域名自动显示,所有出售域名可归类同一个项目。


   
   
    科技域名 - 引领未来
   
      @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
      
      :root {
            --primary-color: #00ff00;
            --background-color: #0a0a0a;
            --text-color: #ffffff;
            --accent-color: #1e90ff;
      }
      
      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
      }
      
      body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-x: hidden;
      }
      
      .container {
            max-width: 1000px;
            width: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
      }
      
      h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-align: center;
      }
      
      .domain-container {
            background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
      }
      
      .domain-name {
            font-size: 4em;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
      }
      
      .domain-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(0, 255, 0, 0.1) 0%,
                rgba(0, 255, 0, 0) 100%
            );
            transform: rotate(45deg);
            animation: shine 6s linear infinite;
      }
      
      @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            100% { transform: translateX(100%) rotate(45deg); }
      }
      
      p {
            margin-bottom: 20px;
            text-align: center;
            max-width: 600px;
      }
      
      .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--background-color);
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border-radius: 5px;
      }
      
      .cta-button:hover {
            background-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
      }
      
      .features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            width: 100%;
      }
      
      .feature {
            background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 150px;
      }
      
      .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 255, 0, 0.1);
      }
      
      .feature h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
      }
      
      #countdown {
            font-size: 1.5em;
            margin-top: 20px;
            color: var(--accent-color);
            display: flex;
            justify-content: center;
            gap: 10px;
      }
      
      .time-unit {
            display: inline-block;
            background-color: rgba(30, 144, 255, 0.1);
            padding: 5px 10px;
            border-radius: 5px;
            min-width: 60px;
            text-align: center;
      }
      
      @media (max-width: 768px) {
            .domain-name {
                font-size: 3em;
            }
            .features {
                grid-template-columns: 1fr;
            }
      }
   

   
      未来科技域名
      
      
            
            抢占数字时代的制高点,这个域名将成为您技术创新的最佳代表。
            立即咨询
      
      
      
            :
            :
            
      
      
      
            
                高识别度
                简洁易记,提高品牌辨识度
            
            
                科技感强
                彰显高科技企业形象
            
            
                全球可用
                国际化品牌的最佳选择
            
            
                安全可靠
                提供安全的域名转移服务
            
      
   
   

页: [1]
查看完整版本: 我用Claude快速搭建了一个域名出售页面。