* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:pingfang SC,helvetica neue,arial,hiragino sans gb,microsoft yahei ui,microsoft yahei,simsun,sans-serif!important;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #fff;
}
a{text-decoration: none !important}

.whois-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

.whois-banner-section {
    background: url("../images/whois-banner.png") top center no-repeat;
    height: 350px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
margin-top: 60px;
}


.whois-banner-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.whois-banner-title {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.whois-banner-desc {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
    text-align: left;
    width: 670px;
}

/* 查询框渐变背景 */
.whois-search-container {
    max-width: 1350px;
    width: 100%;
    background:url("../images/whois-img.png") bottom right no-repeat, linear-gradient(to top, #f2f5f8 0%, #ffffff 100%) ;
    border-radius: 8px;
    box-shadow: 0 2px 25px rgba(0, 102, 255, 0.08);
    padding: 35px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 2;
}

.whois-search-input-group {
    display: flex;
    gap: 0;
}

.whois-search-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.whois-search-input:focus {
    border-color: #0066ff;
}

.whois-search-btn {
    background-color: #0066ff;
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whois-search-btn:hover {
    background-color: #0052cc;
    color: #ffffff;
}

.whois-search-tabs {
    display: flex;
    gap: 35px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.whois-search-tab {
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.whois-search-tab:hover {
    color: #0066ff;
}

.whois-section-title {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
}

.whois-questions-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 25px rgba(0, 102, 255, 0.08);
    padding: 40px;
    margin-bottom: 90px;
}

.whois-question-item {
    margin-bottom: 25px;
}

.whois-question-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.whois-question-content {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

.whois-domain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 40px;
}

.whois-domain-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.whois-domain-more {
    font-size: 12px;
    color: #0066ff;
    text-decoration: none;
}

.whois-domain-more:hover {
    text-decoration: underline;
}

.whois-domain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.whois-domain-card {
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.whois-domain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.15);
    border-color: #0066ff;
}

.whois-domain-suffix {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: left;
}

.whois-domain-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: left;
}

.whois-domain-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.whois-domain-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.whois-domain-price-label {
    font-size: 14px;
    color: #666;
}

.whois-domain-price-value {
    font-size: 18px;
    font-weight: 600;
    color: #ff4d4f;
}

.whois-domain-btn {
    display: inline-block;
    background-color: #0066ff;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.whois-domain-btn:hover {
    background-color: #0052cc;
    color: #ffffff;
}

/* 移动端完美适配 */
@media (max-width: 992px) {
    .whois-domain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .whois-banner-section {
        height: auto;
        padding: 40px 0;
margin-top: 60px;
    }
    .whois-search-container{
        margin: -30px auto 40px;
    }
    .whois-banner-title {
        font-size: 24px;
    }
    .whois-search-input-group {
        flex-direction: row;
    }
    .whois-search-input {
        border-radius: 4px;
    }
    .whois-search-btn {
        border-radius: 4px;
        padding: 12px 20px;
    }
    .whois-search-tabs {
        justify-content: center;
        gap: 10px;
    }
    .whois-questions-container {
        padding: 20px;
margin-bottom: 40px;
    }
    .whois-domain-grid {
        grid-template-columns: 1fr;
    }
    .whois-domain-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .whois-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .whois-domain-card {
        padding: 15px;
    }
}