.exclusive-banner {
    height: 350px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.exclusive-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.exclusive-banner-content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
    color: #fff;
    z-index: 1;
}

.exclusive-banner-left {
    max-width: 700px;
}

.exclusive-banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.exclusive-desc {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.8;
    margin-top: 36px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 13px;
    border-radius: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.feature-tag i {
    font-size: 18px;
}

.exclusive-banner-right {
    position: absolute;
    bottom: 30px;
    right: 130px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    width: 80px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.feature-icon i {
    font-size: 20px;
    color: #fff;
}

.feature-title {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .exclusive-banner {
        height: auto;
        padding: 20px 0;
    }

    .feature-tags {
        gap: 5px;
    }

    .exclusive-banner-right {
        gap: 10px;
        position: static;
        padding: 20px 0 10px 0;
    }

    .exclusive-desc {
        display: none;
    }

    .feature-box {
        width: 80px;
        padding: 10px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 12px;
    }
}

.exclusive-content {
    min-height: 500px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 0 20px;
}

.exclusive-shiming {
    background: #ffecbc;
    border: 1px solid #fafafa;
    line-height: 30px;
    font-size: 15px;
    color: #5f5f5f;
    padding: 10px 24px;
    margin-top: 20px;
    border-radius: 3px;
}

.exclusive-shiming a {
    color: #ff5722;
}

.config-form {
    margin-top: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 30px 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.config-form>.layui-form-item{
    margin-top: 20px;
}

.config-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option-card {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-card:hover {
    border-color: #ff6b35;
    background-color: #fff8f5;
}

.option-card.active {
    border-color: #ff6b35;
    background-color: #fff8f5;
}

.option-card.active::after {
    content: '\e605';
    font-family: 'layui-icon';
    position: absolute;
    right: -2px;
    top: -2px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    border-radius: 0 8px 0 8px;
    text-align: center;
}

.option-card i {
    font-size: 28px;
    color: #ff6b35;
}

.option-card-content {
    flex: 1;
}

.option-card-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.option-card-desc {
    font-size: 12px;
    color: #999;
}

.config-tabs {
    margin-top: 10px;
}

.tab-header {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-item {
    padding: 10px 20px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    font-size: 14px;
}

.tab-item:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.tab-item.active {
    background: #ff6b35;
    border-color: #ff6b35;
    color: #fff;
}

.config-tip {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.select-area .layui-btn {
    width: 100px;
}

.select-area .active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.node-card {
    margin-left: 110px;
    padding-right: 10px;
    height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ff6b35ab #f0f0f0;
}

.node-card::-webkit-scrollbar {
    width: 6px;
}

.node-card::-webkit-scrollbar-thumb {
    background-color: rgba(255, 107, 53, 0.5);
    border-radius: 3px;
}

.node-card::-webkit-scrollbar-track {
    background-color: rgba(255, 107, 53, 0.1);
}

.node-card .node-card-body {
    padding: 0;
    margin-top: 8px;
    line-height: 20px;
    font-size: 12px;
}

.area-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.area-list li {
    position: relative;
    width: 110px;
    height: 36px;
    border: 1px solid #d1d1d1;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    transition: all .2s cubic-bezier(.645, .045, .355, 1);
}

.area-list li span {
    z-index: 11;
    position: absolute;
    top: 44%;
    left: 50%;
    width: max-content;
    padding: 0 4px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: all .2s cubic-bezier(.645, .045, .355, 1);
}

.area-list li.active,
.area-list li:hover {
    border: 1px solid #ff6b35;
}

.area-list li.active span,
.area-list li:hover span {
    font-size: 14px;
    color: #ff6b35;
    transform: translate(-50%, -130%);
}

.counter-number {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.counter-number div {
    width: 24px;
    height: 100%;
    visibility: hidden;
    cursor: pointer;
    line-height: 36px;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
}
.area-list li:hover .counter-number div {
    visibility: visible;
}

.area-list li.active .counter-number div {
    visibility: visible;
}

.counter-number .minus {
    background-image: url("/assets/home/ninus.png");
}

.counter-number .add {
    background-image: url("/assets/home/add.png");
}

.counter-number input {
    height: 24px;
    text-align: center;
    width: calc(100% - 50px);
    border: none;
    outline: 0;
}

.buy-box {
    width: 100%;
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.buy-box .layui-tab .layui-tab-title li {
    font-size: 18px;
    color: #777;
}

.buy-box .layui-tab .layui-tab-title li.layui-this {
    color: #222;
}

.price-detail {
    padding: 10px 0;
}

.detail-title {
    font-size: 16px;
    font-weight: 500;
    margin: 15px 0 10px 0;
    color: #333;
    margin-top: 30px;
    border-left: 3px solid #ff6b35;
    padding-left: 10px;
}

.price-divider {
    height: 1px;
    background: #eee;
    margin: 15px 0;
}

.price-total-box {
    background: #f8f8f8;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 15px;
    color: #333;
}

.total-price {
    font-size: 20px;
    font-weight: bold;
    color: #ff5722;
}

.select-time {
    margin: 10px 0 20px 0;
}

.select-time button {
    flex: 1;
    min-width: 60px;
}

.select-time .active {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.sj-add-node {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.sj-add-node .layui-input {
    height: 26px;
    width: 80px;
}

.node-table {
    height: 200px;
    overflow-y: scroll;
    border-bottom: 1px solid #e6e6e6;
}

.node-table::-webkit-scrollbar {
    width: 6px;
}

.node-table::-webkit-scrollbar-thumb {
    background-color: rgba(255, 107, 53, 0.5);
    border-radius: 3px;
}

.node-table::-webkit-scrollbar-track {
    background-color: rgba(255, 107, 53, 0.1);
}

.del-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-family: "兰亭黑-简", 'Microsoft YaHei', '微软雅黑', '黑体';
}

.del-cart .del-cart-text span {
    margin: 0 3px;
}

.select-pay {
    margin: 15px 0;
}

.pay-method-item {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border: 2px solid #e6e6e6;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.pay-method-item:hover {
    border-color: #ff6b35;
    background-color: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.pay-method-item.active {
    border-color: #ff6b35;
    background-color: #fff8f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pay-method-item.active::after {
    content: '\e605';
    font-family: 'layui-icon';
    position: absolute;
    right: -18px;
    top: -18px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    transform: rotate(45deg);
    text-align: center;
    padding-top: 25px;
    padding-left: 5px;
}

.pay-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.pay-icon i {
    font-size: 24px;
    transition: all 0.3s;
}

.pay-icon .layui-icon-rmb {
    color: #ff5722;
}

.pay-icon .layui-icon-login-wechat {
    color: #00b990;
}

.pay-method-item.active .pay-icon i {
    transform: scale(1.1);
}

.pay-info {
    flex: 1;
    min-width: 0;
}

.pay-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pay-desc {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pay-method-item.active .pay-name {
    color: #ff6b35;
}

.lianxi-btn {
    background-color: #f8f8f8;
    color: #ff7a00;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    padding: 20px 0;
    text-align: center;
    line-height: 20px;
}

.lianxi-btn a {
    color: #ff7a00;
}

.lianxi-btn i {
    font-size: 34px;
    margin-right: 5px;
    color: #ff7a00;
}

.advantage-container {
    padding: 10px 0;
}

.advantage-list {
    margin-bottom: 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.advantage-icon {
    width: 40px;
    height: 40px;
    background: #fff8f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 20px;
    color: #ff6b35;
}

.advantage-content h4 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.advantage-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.support-section {
    margin-top: 30px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.section-title i {
    margin-right: 8px;
    font-size: 18px;
    color: #ff6b35;
}

.support-card {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.support-info {
    margin-bottom: 15px;
}

.support-time {
    display: flex;
    align-items: center;
    color: #666;
    margin-bottom: 8px;
}

.support-time i {
    margin-right: 6px;
    color: #ff6b35;
}

.support-desc {
    color: #999;
    font-size: 13px;
}

.support-actions {
    display: flex;
    gap: 10px;
}

.support-actions .layui-btn {
    flex: 1;
    height: 40px;
}

.contact-btn {
    border-color: #ff6b35;
    color: #ff6b35;
}

.contact-btn:hover {
    background-color: #ff6b35;
    color: #fff;
}

.wechat-btn {
    border-color: #00b990;
    color: #00b990;
}

.wechat-btn:hover {
    background-color: #00b990;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .buy-box {
        border: none;
        padding-left: 0px;
    }

    .support-actions {
        flex-direction: column;
    }

    .support-actions .layui-btn {
        margin-bottom: 10px;
    }

    .node-card {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .config-options {
        flex-direction: column;
    }
}
