
    /* 风格选择器样式 */
    .style-selector {
        position: relative;
    }

    .style-options-container {
        overflow: hidden;
        position: relative;
        border-radius: 8px;
    }

    .style-options-wrapper {
        width: 100%;
        position: relative;
    }

    .style-options-page {
        width: 100%;
        display: block;
    }

    .style-option {
        padding: 2px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        margin-bottom: 4px;
    }

    .style-option:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .style-option.active {
        border-color: #2c7be5;
        background-color: rgba(44, 123, 229, 0.05);
        box-shadow: 0 1px 3px rgba(44, 123, 229, 0.15);
    }

    .style-img {
        border-radius: 4px;
        overflow: hidden;
        margin-bottom: 2px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        height: 40px;
    }

    .style-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .style-option:hover .style-img img {
        transform: scale(1.05);
    }

    .style-name {
        font-size: 0.7rem;
        text-align: center;
        font-weight: 500;
        color: #444;
        margin-top: 1px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .style-option.active .style-name {
        color: #2c7be5;
    }