/* ui.css */
    .Hui-topBanner {
        width: 100%;
        background: #fff;
        border-radius: 0px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        padding: 15px 20px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }
    
    .Hui-topBanner img {
        width: 280px;
        border-radius: 6px;
        margin-right: 25px;
        position: relative;
    }
    
    /* 图片上的文字样式 */
    .Hui-topBanner .image-text {
        position: absolute;
        top: 50%;
        left: 46.5%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        text-align: center;
        width: 100%;
        padding: 0 10px;
    }
    
    .Hui-topBanner h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #333;
    }
    
    .Hui-topBanner p {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
        margin-bottom: 6px;
    }
    
    .Hui-topBanner .highlight {
        color: #1890ff;
        font-weight: bold;
    }
    
    .Hui-productContainer {
        display: flex;
        width: 100%;
    }
    
    .Hui-mainProducts {
        flex: 1;
    }

    .Hui-itemServer {
        margin-bottom: 20px;
        margin-right: 15px;
        display: none;
        width: calc(30% - 15px); /* 加宽商品卡片 */
        box-sizing: border-box;
        padding: 20px; /* 增加内边距 */
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        font-size: 16px; /* 加大文字 */
    }
    
    .Hui-primaryCoverage {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .Hui-itemServer .Hui-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .Hui-itemServer .Hui-setUp {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .Hui-itemServer .Hui-price {
        font-size: 18px;
    }
    
    .Hui-itemButton {
        position: relative;
        z-index: 1;
        padding: 5px 15px;
        cursor: pointer;
    }
    
    .Hui-itemButton.Hui-select {
        font-weight: bold;
        color: #1890ff;
    }
    
    .Hui-noProducts {
        display: none;
        width: 100%;
        text-align: center;
        padding: 40px;
        font-size: 16px;
        color: #999;
    }
    
    .Hui-backgroundBlock {
        position: absolute;
        background: white;
        border-radius: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        z-index: 0;
    }
    
    .Hui-labelColumn {
        position: relative;
        display: flex;
        gap: 5px;
    }
    
    .product-loading {
        display: none;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }
    
    .Hui-image-container {
        position: relative;
        display: inline-block;
    }