/* 主要头部区域 */
.hero-section {
    background-color: var(--primary);
    padding: 40px 0 10px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.8;
}
/* 域名搜索框 */
.domain-search {
    background: rgba(255, 255, 255, 0.95);
    margin: 0 auto 50px;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: var(--primary);
    max-width: 400px;
}

.domain-search a {
    /*color: var(--primary);*/
    font-size: 1.1rem;
    font-weight: 600;
}

/* 特色服务 */
.features-section {
    padding: 40px 0;
    background-color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--footer-title, #333333);
    margin-bottom: 15px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



@font-face {
    font-family: element-icons;
    src: url(../font/element-icons.woff) format("woff"),url(../font/element-icons.ttf) format("truetype");
    font-weight: 400;
    font-display: "auto";
    font-style: normal
}

[class*=" el-icon-"],[class^=el-icon-] {
    font-family: element-icons!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: baseline;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}
.el-icon-search:before {
    content: "\e778";
}

.el-input__icon {
    line-height: 36px;
}

.el-table {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    color: #606266
}
.el-table__empty-block {
    min-height: 60px;
    text-align: center;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.el-table--scrollable-x .el-table__body-wrapper {
    overflow-x: auto
}

.el-table--scrollable-y .el-table__body-wrapper {
    overflow-y: auto
}


.el-table th,.el-table tr {
    background-color: #FFF
}


.table-header-bar {
    padding-bottom: 45px;
}

.el-table td,.el-table th {
    padding: 12px 0;
    min-width: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    text-align: left
}

.el-table td.is-center,.el-table th.is-center {
    text-align: center
}

.el-table td.is-right,.el-table th.is-right {
    text-align: right
}

.el-table td.gutter,.el-table th.gutter {
    width: 15px;
    border-right-width: 0;
    border-bottom-width: 0;
    padding: 0
}

.el-table .cell,.el-table th div {
    padding-right: 10px;
    overflow: hidden;
    text-overflow: ellipsis
}

.el-table .cell,.el-table th div,.el-table--border td:first-child .cell,.el-table--border th:first-child .cell {
    padding-left: 10px
}

.el-table--striped .el-table__body tr.el-table__row--striped td {
    background: #FAFAFA;
}
.el-table tr input[type=checkbox] {
    margin: 0
}

.el-table td,.el-table th.is-leaf {
    border-bottom: 1px solid #EBEEF5
}

.el-table th.is-sortable {
    cursor: pointer
}

.el-table th {
    white-space: nowrap;
    overflow: hidden;
    -moz-user-select: none;
    user-select: none
}


.el-table th div {
    display: inline-block;
    line-height: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap
}

.el-table th>.cell {
    position: relative;
    word-wrap: normal;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.el-table th>.cell.highlight {
    color: #409EFF
}

.el-table th.required>div::before {
    display: inline-block;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d51;
    margin-right: 5px;
    vertical-align: middle
}

.el-table td div {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.el-table td.gutter {
    width: 0
}

.el-table .cell {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-all;
    line-height: 23px
}

.el-table .cell.el-tooltip {
    white-space: nowrap;
    min-width: 50px
}

.el-table--border,.el-table--group {
    border: 1px solid #EBEEF5
}

.el-table--border::after,.el-table--group::after,.el-table::before {
    content: '';
    position: absolute;
    background-color: #EBEEF5;
    z-index: 1
}

.el-table--border::after,.el-table--group::after {
    top: 0;
    right: 0;
    width: 1px;
    height: 100%
}

.el-table::before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px
}

.el-table--border {
    border-right: none;
    border-bottom: none
}

.el-table--border.el-loading-parent--relative {
    border-color: transparent
}

.el-table--border td,.el-table--border th,.el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed {
    border-right: 1px solid #EBEEF5
}

.el-table--border th.gutter:last-of-type {
    border-bottom: 1px solid #EBEEF5;
    border-bottom-width: 1px
}

.el-table--border th,.el-table__fixed-right-patch {
    border-bottom: 1px solid #EBEEF5
}
.el-table__empty-text {
    line-height: 60px;
    width: 50%;
    color: #909399;
}


        
/* 媒体查询：平板设备 (768px - 992px) */
@media (max-width: 992px) {
    .el-table th, .el-table td {
        padding: 6px 4px !important;
        font-size: 13px;
    }

    .table-top {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .table-top .f-l, .table-top .f-r {
        width: 100%;
        margin-bottom: 10px;
    }

    .el-input {
        width: 100% !important;
    }
    
    .table-header-bar {
        padding: 10px 5px;
    }
}

/* 媒体查询：移动端（768px以下）- 强制滚动生效 */
@media (max-width: 768px) {
    .font16 {
        font-size: 14px;
    }

    .el-table {
        min-width: 500px !important;
    }

    .el-table th, .el-table td {
        padding: 5px 3px !important;
        font-size: 12px;
    }

    .more-price li {
        margin-bottom: 8px !important;
        min-width: 50px !important;
        flex: 0 0 22%;
    }

    .el-button {
        padding: 5px 8px !important;
        font-size: 12px !important;
    }

    .tip-message-notes {
        font-size: 12px;
        padding: 5px 0;
    }

    /* 移动端滚动容器强化 */
    .table-scroll-container {
        padding: 0;
        margin: 0 0px; /* 扩大滚动区域，让用户更容易触摸到滚动条 */
        max-width: none;
    }
    
    .table-header-bar {
        padding: 10px 15px;
        margin: 0 -10px 10px;
            }
}

 /* 小屏手机 (480px以下) */
@media (max-width: 480px) {
    .el-table {
        min-width: 300px !important;
        width: 100% !important;
    }

    .more-price li {
        flex: 0 0 45%;
    }

    .el-popover {
        padding: 5px !important;
    }

    .product-detail-desc p {
        font-size: 10px;
    }
    
/* 小屏下滚动容器调整 */
.table-scroll-container {
        margin: 0 0px;
}
    
.table-header-bar {
        margin: 0 -5px 10px;
}
    
    .font16 {
    font-size: 12px;
}
}
        
/* 紧急重置：覆盖所有可能阻止滚动的全局样式 */
html, body, #content, #MainContentDIV {
    width: 100% !important;
    overflow-x: visible !important;
    min-width: 0 !important;
}

/* 表格专用滚动容器 - 核心修复：单独为表格内容创建滚动层 */
.table-scroll-container {
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important; /* 移动端顺滑滚动 */
    touch-action: pan-x !important; /* 明确允许横向触摸滚动 */
    -ms-touch-action: pan-x !important;
    position: relative !important;
    z-index: 1 !important;
    /* 滚动条样式优化 */
    -ms-overflow-style: scrollbar;
    scrollbar-width: thin;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* 修复弹出价格表格居中样式 */
.el-popover {
    position: absolute;
    background: #FFF;
    min-width: 150px;
    border: 1px solid #EBEEF5;
    padding: 12px;
    z-index: 2000;
    color: #606266;
    line-height: 1.4;
    text-align: justify;
    font-size: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,.1);
    word-break: break-all
    text-align: center !important;
    max-width: 90vw !important;
    width: auto !important;
}
.el-popover__title {
    text-align: center !important;
}

.el-input {
    position: relative;
    font-size: 14px;
    display: inline-block;
    width: 100%
}

.el-input__inner {
    -webkit-appearance: none;
    background-color: #FFF;
    background-image: none;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 35px;
    line-height: 40px;
    outline: 0;
    padding: 0 15px;
    -webkit-transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%
}

.el-button,.el-transfer-panel {
    -webkit-box-sizing: border-box
}

.el-input__prefix,.el-input__suffix {
    position: absolute;
    top: 0;
    -webkit-transition: all .3s;
    height: 100%;
    color: #C0C4CC;
    text-align: center
}

.el-input__prefix {
    left: 5px;
    transition: all .3s
}

.el-input--prefix .el-input__inner {
    padding-left: 30px
}
.f-l.ml-10 {
    color: #666;
}
.el-button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #FFF;
    border: 1px solid #DCDFE6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    margin: 0;
    -webkit-transition: .1s;
    transition: .1s;
    font-weight: 500;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 4px
}
.el-button+.el-button {
    margin-left: 10px;
}
.el-button--primary {
    color: #FFF;
    background-color: rgba(240, 138, 93, 1);
    border-color: rgba(240, 138, 93, 0.5);
}

.el-button--mini,.el-button--small {
    font-size: 12px;
    border-radius: 3px
}

.el-button--small,.el-button--small.is-round {
    padding: 9px 15px
}