.static-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e9fff 0%, #0d6efd 100%);
    padding-bottom: 20px;
}

.static-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.static-banner-content {
    max-width: 1200px;
    margin: 10px auto;
    padding: 40px 20px 20px 20px;
    color: #fff;
    z-index: 1;
}

.static-banner-left {
    max-width: 700px;
}
.static-banner-content .static-img{
    position: absolute;
    width: 260px;
    height: 260px;
    right: 150px;
    bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@media screen and (max-width: 1200px) {
    .static-banner-content .static-img{
        display: none;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}


.static-banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.static-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(119, 179, 248, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 13px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-tag i {
    font-size: 14px;
    color: #b7e0ff;
}

.static-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) {
    .static-banner {
        height: auto;
        padding: 20px 0;
    }

    .feature-tags {
        gap: 5px;
    }

    .static-banner-right {
        gap: 10px;
        position: static;
        padding: 20px 0 10px 0;
    }

    .static-desc {
        display: none;
    }

    .feature-box {
        width: 80px;
        padding: 10px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 12px;
    }
}


.static-shiming {
    background: #ffecbc;
    border: 1px solid #fafafa;
    line-height: 30px;
    font-size: 15px;
    color: #5f5f5f;
    padding: 10px 24px;
    margin-top: 20px;
    border-radius: 3px;
}

.static-shiming a {
    color: #ff5722;
}

.static-bes{
    font-size: 14px;
    background-color: #ffeba366;
    color: #555;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}
.static-bes>i{
    margin-right: 5px;
    color: #ff5722;
}
.static-content{
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.xianluList>button{
    width: 120px;
}
.xianluList>button.active{
    background: #1e9fff;
    color: #fff;
    border-color: #1e9fff;
}

.provinceList .active{
    background: #1e9fff;
    color: #fff;
    border-color: #1e9fff;
}


.buy-time>button{
    width: 120px;
}
.buy-time .active{
    background: #1e9fff;
    color: #fff;
    border-color: #1e9fff;
}
.layui-form-label{
    text-align: center !important;
}

.node-box1{
    padding-left: 20px;
    border-left: 1px solid #eee;
    padding-bottom: 50px;
    top:-30px;
    overflow-y: auto;
    /* 滚动条样式 */
    scrollbar-width: thin;
    scrollbar-color: #83caffab #f0f0f0;
    /* 如果没超过400，隐藏滚动条 */
    &::-webkit-scrollbar {
        display: none;
    }
}
.node-box1>label{
    font-size: 24px;
    color: #888;
}
.node-box1>div{
    padding: 10px;
    width: 180px;
    border: 1px solid #eee;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
}
.node-box1 .layui-form-item >.layui-inline{
    margin-bottom: 30px !important;
    margin-right: 14px !important;
}
.node-box-item-title>h3{
    font-weight: 400;
    font-size: 16px;
    color: #0375ca;
}
.node-box-item-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
}
.node-box-item-title>span{
    font-size: 12px;
    color: #888;
    font-weight: 200;
}
.node-box1 .layui-input{
    height: 30px !important;
}

.select-pay .active{
    background: #1e9fff;
    color: #fff;
    border-color: #1e9fff;
    &::after{
        content: attr(data-balance);
        font-size: 12px;
        color: #fff !important;
        margin-left: 5px;
    }
}

.no-data{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.no-data img{
    width: 200px;
    height: 200px;
}
.no-data p{
    font-size: 16px;
    color: #dedcdc;
}

.node-box1 .layui-inline.active{
    background-color: #ffefc7;
}

#balance-pay{
    &::after{
        content: attr(data-balance);
        font-size: 12px;
        color: #999;
        margin-left: 5px;
    }
}

.pay-method-item.active {
    border-color: #1e9fff;
    background-color: #f0f9ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.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-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.pay-info {
    flex: 1;
    min-width: 0;
}

.pay-method-item.active .pay-name {
    color: #1e9fff;
}

.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-icon i {
    transform: scale(1.1);
}

.pay-icon i {
    font-size: 24px;
    transition: all 0.3s;
}

.pay-icon .layui-icon-rmb {
    color: #ff5722;
}
.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: #1e9fff;
    color: #fff;
    font-size: 12px;
    transform: rotate(45deg);
    text-align: center;
    padding-top: 25px;
    padding-left: 5px;
}

.pay-icon .layui-icon-login-wechat {
    color: #00b990;
}