/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff; /* 白色背景 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Domain Card */
.domain-card {
    background-color: #f0f8ff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 100%;
    max-width: 800px;
}

.domain-title {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2.2rem;
    text-align: center;
}

.domain-description {
    margin-bottom: 20px;
    font-size: 1.8rem;
    line-height: 1.8;
    color: #555;
}

/* Price Container */
.price-container {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #e60000;
    display: block;
}

/* Contact Info */
.contact-info {
    border-top: 1px solid #eee;
    padding-top: 25px;
    margin-top: 25px;
}

.contact-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
}

.contact-item {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.contact-item strong {
    font-weight: 600;
    color: #2c3e50;
}

.email-link {
    color: #3498db;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

/* Contact Image */
.contact-image-container {
    text-align: cente;
    margin: 15px 0;
}

.contact-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}