* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size:100px
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    /*line-height: 1.6;*/
}

/* 顶部通知栏 */
.top-notice {
    width: 100%;
    height: 0.43rem;
    background-color: #333;
    color: #fff;
    font-size: 0.18rem;
    display: flex;
    align-items: center;
}
.top-notice img{
    width: 0.23rem;
    height: 0.23rem;
    margin-left: 1.38rem;
    margin-right: 0.1rem;
}
    /* 导航栏 */
.header {
    max-width: 100%;
    margin: 0.05rem auto 0.05rem auto;
    background-color: #fff;
}
.logo {
    display: flex;
    align-items: center;
    margin-left: 1.45rem;
}

.logo img {
    width: 3rem;
    height: 1rem;
}

/* 横幅区域 */
.banner {
    position: relative;
    width: 100%;
    height: 7.8rem;
    background-image: url('../image/banner.jpeg');
    background-size: cover;  /* 关键：显示整张图 */
    background-repeat: no-repeat;
}
.banner-content {
    position: absolute;
    top: 1.4rem;
    right: 3rem;
    z-index: 1;
}
.banner-content .banner-content-title{
    font-size: 0.72rem;
    font-weight: 500;
    /* 核心三行，实现文字本身渐变 */
    color: transparent;
    background: linear-gradient(to bottom, #FFFFFF, #E3B9B9); /* 上 → 下 渐变 */
    -webkit-background-clip: text;
    background-clip: text;
    padding-left: 0.3rem;
}
.banner-content .banner-content-desc{
    font-size: 0.24rem;
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 0.33rem;
}
.banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.banner p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* 主要内容区域 */
.main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

/* 注意事项 */
.notice-section {
    width: 14.2rem;
    margin-top: 0.08rem;
    /*background-color: #f9f9f9;*/
    border: 1px solid #e0e0e0;
    /*padding: 20px;*/
    /*margin-bottom: 30px;*/
}
.notice-section-title{
    width: 14.2rem;
    height: 0.6rem;
    background-color: #F6E7DD;
    display: flex;
    align-items: center;
}
.notice-section-title img{
    width: 0.2rem;
    height: 0.2rem;
    margin-left: 0.64rem;
}
.notice-section-title-text{
    color: #FF5252;
    font-size: 0.24rem;
    font-weight: 400;
    margin-left: 0.1rem;
}
.notice-section-content{
    width: 14.2rem;
    font-size: 0.18rem;
    /*font-weight: 400;*/
    color:#242424;
    padding-left: 0.16rem;
    background-color: #FFF8F3;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

/* 域名表格 */
.domain-table {
    width: 14.2rem;
    margin-top: 0.07rem;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.domain-table th{
    height: 0.6rem;
    background-color: #DDEDF6; /* 浅灰色，可自定义颜色 */
    color: #242424; /* 文字颜色，可选 */
    padding: 0.08rem; /* 内边距，让表头更好看 */
    font-size: 0.18rem;
    font-weight: 400;
    line-height: 0.6rem;
}
.domain-table tr{
    height: 0.38rem;
    border: 1px solid rgba(196,196,196,0.93);
    /*background-color: rgba(196,196,196,0.12);*/
    line-height: 0.38rem;
    font-size: 0.15rem;
    color: #242424;
    font-weight: 400;
    text-align: center;
}
.domain-table td{
    border: 1px solid rgba(196,196,196,0.93);
}
.security-check img{
    margin-top: 0.1rem;
    width: 0.27rem;
    height: 0.27rem;
}
.security-lxr{
    vertical-align: middle !important;
}
.security-lxr img{
    width: 0.27rem;
    height: 0.27rem;
    vertical-align: middle;
    display: inline-block;
}
.buy-link {
    color: #ff6600;
    text-decoration: none;
}

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

/* 分页 */
.pagination {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.18rem;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #0066cc;
}

/* 联系按钮 */
.contact-section {
    text-align: center;
    margin-bottom: 0.3rem;
}

.contact-btn {
    background-color: #ff3300;
    color: #fff;
    border: none;
    padding: 0.12rem 0.3rem;
    font-size: 0.16rem;
    font-weight: bold;
    border-radius: 0.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #e62e00;
}
.contact-bg{
    position: fixed;
    width: 2.15rem;
    height: 3rem;
    z-index: 1000;
    bottom: 0.3rem;
    right: 0.05rem;
    background-color: #009AFA;
    border-radius: 0.1rem;
}
/* 联系卡片 */
.contact-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.05rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 0.15rem;
    width: 2rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0.15rem;
    margin-top: 0.25rem;
}

.contact-card .qq {
    display: flex;
    align-items: center;
    margin-bottom: 0.18rem;
    /*margin-bottom: 0.1rem;*/
    /*color: #000000;*/
}
.contact-card .qq img{
    width: 0.28rem;
    height: 0.28rem;
}
.contact-card .qq .qq-info{
    font-size: 0.16rem;
    font-weight: 350;
    color: #000000;
}
.qrcode {
    /*width: 100px;*/
    /*height: 100px;*/
    margin: 0 auto 10px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode img {
    width: 1.24rem;
    height: 1.24rem;
}

.contact-card p {
    font-size: 12px;
    text-align: center;
    color: #666;
}

/* 页脚 */
.footer {
    width: 100%;
    height: 2.45rem;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    width: 100%;
    height: 1.55rem;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #0168AD;
    display: flex;
    justify-content: space-evenly;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.footer-info img{
    width: 0.68rem;
    height: 0.68rem;
}

.footer-info-desc {
    margin-top: 0.1rem;
    font-size: 0.2rem;
    color: #FFF8F3;
}

.footer-cert {
    opacity: 0.8;
    width: 100%;
    height: 0.9rem;
    background-color: #000000;
    text-align: center;
    color: #FFFFFF;
    font-size: 0.18rem;
    font-weight: 350;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
