.shopTop.banner{
    margin: 0 0 20px;
    justify-content: center;
    align-items: center;
}
.banner{
    width: 100%;
    height: 500px;
    background-image: url("/img/category/1.jpg");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}
.banner-title-wrap {
    max-width: 1240px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    color: #fff;
}
.banner-title {
    font-size: 34px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px #777;
    margin: 0 40px;
    padding: 0;
}

.banner-title .en {
    margin-top: 8px;
    font-size: 26px;
    letter-spacing: 0.2rem;
}

.line {
    flex: 1;
    height: 1px;
    background-color: #fff;
    min-width: 50px; /* 左右線最短長度，可自由調整 */
}




@media (max-width: 767.98px) {
    .shopTop.banner{
        margin: 0;
    }
    .banner {
        height: 300px;
        background-attachment: unset;
    }
    .banner-title-wrap {
        max-width:calc(100% - 40px)
    }
    .banner-title{
        font-size: 24px;
        margin: 0px;
    }
    .banner-title .en{
        margin-top: 0;
        font-size: 18px;
    }
}