.gxyun-renew.renew-button:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.no-data-hint {
    pointer-events: none;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
        
        .gxyun-renew.container {
            max-width: 1200px;
            margin: 0 auto;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.08);
            padding: 32px;
        }

        .gxyun-renew.header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 28px;
        }

        .gxyun-renew.title {
            font-size: 24px;
            color: #333;
            font-weight: 600;
        }

        .gxyun-renew.detail-link {
            color: #ff6d00;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
        }

        .gxyun-renew.detail-link::after {
            content: '>';
            margin-left: 6px;
            font-size: 12px;
        }

        /* 搜索选择器样式 */
        .gxyun-renew.search-select {
            position: relative;
            width: 100%;
        }

        .gxyun-renew.select-header {
            border: 1px solid #eee;
            border-radius: 4px;
            padding: 8px 12px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .gxyun-renew.options-container {
            position: absolute;
            width: 100%;
            border: 1px solid #eee;
            border-radius: 4px;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-top: 4px;
            z-index: 100;
            display: none;
        }

        .gxyun-renew.search-input {
            width: 100%;
            padding: 8px 12px;
            border: none;
            border-bottom: 1px solid #eee;
            outline: none;
        }

        .gxyun-renew.options-list {
            max-height: 200px;
            overflow-y: auto;
        }

        .gxyun-renew.option-item {
            padding: 8px 12px;
            cursor: pointer;
            transition: background 0.2s;
        }

        .gxyun-renew.option-item:hover {
            background: #fff3e0;
        }

        /* 其他原有样式 */
        .gxyun-renew.config-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            padding: 24px 0;
            border-bottom: 1px solid #eee;
        }

        .gxyun-renew.config-item {
            display: grid;
            grid-template-columns: 100px 1fr;
            align-items: center;
            gap: 12px;
        }

        .gxyun-renew.config-label {
            color: #666;
            font-size: 14px;
        }

        .gxyun-renew.instance-id {
            color: #999;
            font-size: 12px;
            margin-top: 4px;
        }

        .gxyun-renew.price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 32px 0;
        }

        .gxyun-renew.price-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            position: relative;
            transition: all 0.2s;
        }

        .gxyun-renew.discount-tag {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
            color: #ff6d00;
            padding: 4px 12px;
            border-radius: 0 8px 0 8px;
            font-size: 12px;
            font-weight: bold;
        }

        .gxyun-renew.current-price {
            color: #ff6d00;
            font-size: 32px;
            font-weight: 700;
            margin: 12px 0;
        }

        .gxyun-renew.original-price {
            color: #999;
            font-size: 12px;
            text-decoration: line-through;
        }

        .gxyun-renew.vip-section {
            background: #fff8e1;
            border-radius: 6px;
            padding: 12px;
            margin-top: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .gxyun-renew.vip-tag {
            background: #ff9900;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 12px;
        }

        .gxyun-renew.renew-button {
            width: 100%;
            background: linear-gradient(135deg, #ff6d00 0%, #ff9100 100%);
            color: white;
            padding: 16px 56px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
        }
        
        /* 新增移动端适配 */
@media screen and (max-width: 768px) {
    .gxyun-renew.container {
        padding: 16px;
        border-radius: 0;
        box-shadow: none;
    }

    .gxyun-renew.header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gxyun-renew.title {
        font-size: 18px;
        line-height: 1.4;
    }

    .gxyun-renew.config-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top:-30px ;
    }

    .gxyun-renew.config-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gxyun-renew.price-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gxyun-renew.current-price {
        font-size: 24px;
    }

    .gxyun-renew.renew-button {
        padding: 12px;
        font-size: 15px;
    }

    .gxyun-renew.vip-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
    }
}

/* 触控优化 */
.gxyun-renew.select-header,
.gxyun-renew.option-item {
    min-height: 44px; /* 符合苹果人机指南 */
}

.gxyun-renew.renew-button {
    min-width: 120px;
    padding: 12px 24px;
}

/* 原有样式优化 */
.gxyun-renew.container {
    max-width: 100%;
    box-sizing: border-box;
    transition: padding 0.3s;
}

.gxyun-renew.price-card {
    min-width: 0; /* 修复flex溢出 */
}

/* 新增响应式字体 */
@media screen and (max-width: 480px) {
    .gxyun-renew.title {
        font-size: 16px;
    }
    
    .gxyun-renew.detail-link {
        font-size: 13px;
    }
    
    .gxyun-renew.current-price {
        font-size: 20px;
    }
}

/* 防止移动端输入框放大 */
.gxyun-renew.search-input {
    font-size: 16px;
    transform: scale(0.98);
}