a {
    color: #f1e4c2;
    text-decoration: none; /* 删除下划线 */
}

a:link {
    color: #e9cf8f; /* 未访问的链接 */
}

a:visited {
    color: #fbbf24; /* 已访问的链接 */
}

a:hover {
    color: #fbbf24; /* 鼠标悬停在链接上 */
}

a:active {
    color: rgb(255, 255, 255); /* 链接被点击时 */
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Inter", "Microsoft Yahei", "PingFang SC", sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        /* Header样式 */
        header {
            background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
            color: #fff;
            padding: 1.5rem 0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            position: relative;
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        .header-contact {
            text-align: right;
        }
        .header-contact p {
            margin-bottom: 5px;
            font-size: 0.9rem;
        }
        .header-contact .phone {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fbbf24;
        }

        /* 主内容区 */
        .container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 20px;
        }
        .page-title {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .page-title h1 {
            font-size: 2rem;
            color: #2d3748;
            margin-bottom: 0.8rem;
        }
        .page-title p {
            font-size: 1.1rem;
            color: #718096;
            max-width: 800px;
            margin: 0 auto;
        }

        /* 域名卡片样式 */
        .domain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
        }
        .domain-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .domain-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
        }
        .domain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #3182ce, #4299e1);
        }
        /* 域名区域样式 - 单排显示 */
        .domain-name {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            padding-left: 10px;
            white-space: nowrap; /* 强制单排显示 */
            overflow: hidden;    /* 超出部分隐藏 */
            text-overflow: ellipsis; /* 超出显示省略号 */
        }
        .domain-name a {
            color: #2b6cb0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .domain-name a:hover {
            color: #3182ce;
            text-decoration: underline;
        }
        .domain-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #718096;
            margin-bottom: 15px;
            padding-left: 10px;
            flex-wrap: wrap;
            gap: 10px;
        }
        .domain-meta span {
            flex: 1;
            min-width: 120px;
        }
        .domain-description {
            font-size: 0.95rem;
            color: #4a5568;
            margin-bottom: 20px;
            padding-left: 10px;
            line-height: 1.7;
        }
        .tags {
            margin-bottom: 20px;
            padding-left: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #e8f4f8;
            color: #3182ce;
            padding: 4px 10px;
            border-radius: 16px;
            font-size: 0.8rem;
            margin-right: 6px;
            margin-bottom: 6px;
        }
        /* 价格区域 - 包含状态图标 */
        .price-area {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 15px 0;
            padding-left: 10px;
        }
        .domain-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e53e3e;
        }
        .domain-price span {
            font-size: 0.8rem;
            color: #718096;
            font-weight: normal;
            margin-left: 5px;
        }
        /* 状态图标样式 */
        .status-icon {
            background: #f0f8fb;
            color: #3182ce;
            padding: 4px 8px;
            border-radius: 14px;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
        }
        .buy-btn {
            display: block;
            width: 100%;
            background: linear-gradient(to right, #3182ce, #4299e1);
            color: #fff;
            text-align: center;
            padding: 12px 0;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }
        .buy-btn:hover {
            background: linear-gradient(to right, #2b6cb0, #3182ce);
            transform: scale(1.02);
        }

        /* Footer样式 */
        footer {
            background-color: #2d3748;
            color: #e2e8f0;
            padding: 4rem 0 2rem;
            margin-top: 5rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 10px;
        }
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #fff;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #4299e1;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: #4299e1;
            padding-left: 5px;
        }
        .contact-info li {
            display: flex;
            align-items: center;
        }
        .contact-info li i {
            margin-right: 10px;
            color: #4299e1;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #4a5568;
            font-size: 0.9rem;
            color: #a0aec0;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            .header-contact {
                text-align: center;
                margin-top: 1rem;
            }
            .page-title h1 {
                font-size: 1.6rem;
            }
            .domain-grid {
                grid-template-columns: 1fr;
            }
            .domain-name {
                font-size: 1.2rem;
            }
        }
        
        /* 小屏幕额外适配 */
        @media (max-width: 480px) {
            .domain-card {
                padding: 20px 15px;
            }
            .domain-name {
                font-size: 1.1rem;
            }
            .price-area {
                flex-direction: row;
                gap: 10px;
            }
            .domain-price {
                font-size: 1.3rem;
            }
        }