
        /* 重置样式 */
        .elves-retailer-container * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        /* 主横幅容器 */
        .elves-retailer-container {
            width: 100%;
            max-width: 1527px;
            height: 100px;
            background: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px auto;
            padding: 0 20px;
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #eeeeee;
        }
        
        /* 内容区域 */
        .elves-banner-content {
            text-align: center;
            z-index: 2;
            padding: 0 15px;
            width: 100%;
        }
        
        /* 标题文字 */
        .elves-banner-title {
            color: #e30613;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 15px;
            letter-spacing: 0.7px;
            text-transform: uppercase;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
        }
        
        /* 按钮样式 */
        .elves-retailer-button {
            display: inline-block;
            background-color: #ffffff;
            color: #e30613;
            padding: 8px 22px;
            text-decoration: none;
            border: 2px solid #e30613;
            border-radius: 4px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .elves-retailer-button:hover {
            background-color: #e30613;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(227, 6, 19, 0.25);
        }
        
        .elves-retailer-button:active {
            transform: translateY(0);
        }
        
        /* 装饰元素 */
        .elves-banner-decoration {
            position: absolute;
            opacity: 0.05;
            pointer-events: none;
            color: #e30613;
            z-index: 1;
        }
        
        .decoration-bike-left {
            font-size: 60px;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .decoration-bike-right {
            font-size: 60px;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .decoration-circle {
            width: 80px;
            height: 80px;
            border: 5px solid #e30613;
            border-radius: 50%;
            left: 10%;
            top: -30px;
        }
        
        .decoration-circle-2 {
            width: 60px;
            height: 60px;
            border: 4px solid #e30613;
            border-radius: 50%;
            right: 10%;
            bottom: -25px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1600px) {
            .elves-retailer-container {
                max-width: 95%;
            }
        }
        
        @media (max-width: 1200px) {
            .elves-banner-title {
                font-size: 18px;
            }
            
            .decoration-bike-left,
            .decoration-bike-right {
                font-size: 50px;
            }
            
            .decoration-circle {
                left: 5%;
            }
            
            .decoration-circle-2 {
                right: 5%;
            }
        }
        
        @media (max-width: 900px) {
            .elves-banner-title {
                font-size: 17px;
            }
            
            .decoration-bike-left,
            .decoration-bike-right {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .elves-retailer-container {
                height: auto;
                min-height: 100px;
                padding: 15px;
            }
            
            .elves-banner-title {
                font-size: 16px;
                margin-bottom: 12px;
            }
            
            .elves-retailer-button {
                padding: 7px 20px;
                font-size: 14px;
            }
            
            .decoration-circle {
                left: 3%;
                width: 60px;
                height: 60px;
                top: -20px;
            }
            
            .decoration-circle-2 {
                right: 3%;
                width: 45px;
                height: 45px;
                bottom: -15px;
            }
        }
        
        @media (max-width: 480px) {
            .elves-retailer-container {
                padding: 12px;
                min-height: 90px;
            }
            
            .elves-banner-title {
                font-size: 15px;
                letter-spacing: 0.4px;
                margin-bottom: 10px;
            }
            
            .elves-retailer-button {
                padding: 6px 18px;
                font-size: 13px;
            }
            
            .decoration-circle,
            .decoration-circle-2 {
                display: none;
            }
        }
    