.site-main {
    width: 100%;
}

.site-main-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-main-container {
    position: relative;
    width: 1500px;
    height: 404px;
}

.site-main-shop-bg {
    width: 100%;
    height: 100%;
}

    .site-main-shop-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.site-main-action-container {
    position: absolute;
    top: 2px;
    left: 100px;
    width: 600px;
    height: 400px;
    min-width: 375px;
    box-sizing: border-box;
    padding: 0 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: inset 4px 4px 10px 0px rgba(130, 130, 130, 0.25), 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    background: rgba(255, 255, 255, 0.25);
}

.site-main-action-content {
    display: flex;
    gap: 32px;
    transition: all 0.3s ease;
}

    .site-main-action-content .shop-logo {
        height: 120px;
        width: 120px;
        border-radius: 8px;
        flex-shrink: 0;
        background: #fff;
    }

        .site-main-action-content .shop-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .site-main-action-content .shop-logo img {
            width: 100%;
            height: 100%;
        }

    .site-main-action-content .shop-introduce {
        display: flex;
        flex-direction: column;
        color: #1b1b1b;
        width: 352px;
    }

    .site-main-action-content .shop-introduce-btn button {
        border-radius: 40px;
        color: #fff;
        background: #1b1b1b;
        width: 352px;
        height: 48px;
        font-size: 24px;
        font-weight: 700;
        line-height: 35px;
        margin-top: 38px;
    }

    .site-main-action-content .shop-introduce-data .name {
        font-size: 36px;
        font-weight: 500;
        line-height: 36px;
    }

    .site-main-action-content .shop-introduce-data .desc {
        font-size: 20px;
        font-weight: 400;
        line-height: 20px;
        margin-top: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
/* 375px - 1500px 之间线性变化 */
@media screen and (min-width: 375px) and (max-width: 1500px) {
    .site-main-container {
        width: calc(375px + (1500 - 375) * ((100vw - 375px) / (1500 - 375)));
        height: calc(145px + (404 - 145) * ((100vw - 375px) / (1500 - 375)));
    }

    .site-main-action-container {
        width: calc(600px + (600 - 375) * ((100vw - 375px) / (1500 - 375)));
        height: calc(145px + (400 - 145) * ((100vw - 375px) / (1500 - 375)));
    }
}

@media screen and (max-width: 375px) {
    .site-main-container {
        width: 375px;
        height: 145px;
    }

    .site-main-action-container {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 375px;
        height: 145px;
    }
}

@media screen and (max-width: 1000px) {
    .site-main-action-container {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .site-main-action-content {
        gap: 8px;
    }

        .site-main-action-content .shop-logo {
            width: 72px;
            height: 72px;
        }

        .site-main-action-content .shop-introduce {
            flex-direction: row;
            gap: 18px;
            width: unset;
        }

        .site-main-action-content .shop-introduce-data .name {
            font-size: 20px;
            font-weight: 400;
            line-height: 22px;
        }

        .site-main-action-content .shop-introduce-data .desc {
            font-size: 14px;
            font-weight: 400;
            line-height: 18px;
            margin-top: 8px;
        }

        .site-main-action-content .shop-introduce-btn {
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .site-main-action-content .shop-introduce-btn button {
                width: 60px;
                height: 28px;
                font-size: 16px;
                font-weight: 700;
                line-height: 23px;
                flex-shrink: 0;
                margin-top: 0;
            }
}
