/* ??? */

.banner {
    width: 100%;
    max-width: 1600px;
    position: relative;
    padding: 15px 15px 0 15px;
    margin: auto;
    box-sizing: border-box;
}

.breadcrumbs {
    margin: auto;
    font-size: 14px;
    box-sizing: border-box;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs h1 {
    display: inline;
    font-size: inherit;
}

.banner-text {
    text-transform: capitalize;
    padding: 20px 0;
    color: #1B2061;
    font-weight: 500;
    width: 100%;
}

/* .banner img {
    width: 100%;
} */

/* .max-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
} */

.sort {
    background-color: #f7f7f7;
    margin: 10px auto;
    width: auto;
    padding: 10px 0;
    display: flex;
    flex-direction: row-reverse;
}

.sort label {
    color: #73788a;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 57px;
    padding-right: 15px;
}

.sort .sort-price {
    display: flex;
    align-items: center;

}

.sort-price input[type="search"] {
    width: 150px;
    height: auto;
    min-width: 30px;
    appearance: none;
    border: 1px solid #ddd;
    background: #fff;
    padding: 16px 20px 17px;
    border-radius: 2px;
    color: #73788a;

}

.sort-price input[type="button"] {
    height: auto;
    width: 50px;
    padding: 16px;
    margin-left: 5px;
    background-color: #141414;
    color: #fff;
    cursor: pointer;
}

.sort select {
    appearance: none;
    border: 1px solid #ddd;
    background: #fff;
    min-width: 230px;
    padding: 16px 20px 17px;
    border-radius: 2px;
    color: #73788a;
    width: 100%;
    height: auto;
}

.sort .sort-div {
    display: flex;
    margin-right: 10px;
    margin-left: 10px;
}

.sort .sort-select {
    position: relative;
}

.sort i {
    position: absolute;
    pointer-events: none;
    font-size: 14px;
    right: 1px;
    background-color: transparent;
    top: 1px;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 38px;
    color: #a5a7b1;
}



/* ?????? */

.bestsellers-list {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    margin-top: 40px;
}

.bestsellers-list .bestsellers-list-box {
    box-sizing: border-box;
    width: 25%;
    padding: 0 15px;
    margin: 10px 0 50px;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img {
    width: 100%;
    position: relative;
    height: 0;
    background-color: #eee;
    padding-bottom: 100%;
    margin-bottom: 20px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
 .bestsellers-list .bestsellers-list-box .bestsellers-box-img{
  margin-bottom: 6px;
  }
}
.bestsellers-box-img img {
    background-color: #fff;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover {
    opacity: 0;
    transition: all 0.5s linear;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img:hover .img-hover {
    opacity: 1;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box {
    display: flex;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    background-color: #fff;
    border-radius: 4px;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover::after {
    position: absolute;
    content: "";
    background-color: rgba(256, 256, 256, 0.3);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box span,
.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box a {
    display: block;
    padding: 15px;
    white-space: nowrap;
    font-size: 20px;
    color: #757a8b;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box span:hover,
.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box a:hover {
    color: #e95144;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .box-title {
    position: absolute;
    width: 100%;
    line-height: 50px;
    left: 0;
    bottom: 15px;
    background-color: var(--main-color);
    color: #FFF;
    border-radius: 34px;
    font-size: 18px;
    z-index: 10;
    text-align: center;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .box-title:hover {
    background-color: var(--main-color-second);
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img .img-hover .icon-box span:nth-child(1) {
    border-right: 0.1px solid #efefef;
}

.bestsellers-list .bestsellers-list-box .bestsellers-box-img img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.bestsellers-list .bestsellers-list-box .bestsellers-text-box {
    position: static;
    z-index: 20;
}

.bestsellers-list .bestsellers-list-box .bestsellers-text-box h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--font-color);
  cursor: pointer;
}
.bestsellers-text-box .sub-title {
  margin-bottom: 8px;
  font-size: 14px;
  color: #AFAFAF;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.bestsellers-list .bestsellers-list-box .bestsellers-text-box p {
    font-size: 16px;
    color: #999;
}
@media screen and (max-width:768px) {
  .bestsellers-text-box .sub-title {
    margin-bottom: 2px;
    font-size: 12px;
  }
}
.yd-bestsellers {
    display: none;
}


/* ????????? */

.yd-dreams {
    display: none;
}


/* ?????? */

.dreams .dreams-list {
    margin-bottom: 50px;
    margin-top: 30px;
}

.dreams .dreams-list .dreams-list-box {
    display: flex;
    padding: 0 20px 20px 50px;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left {
    position: relative;
    display: flex;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(251, 246, 242);
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box {
    padding: 8% 12%;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box-left {
    margin-left: 80px;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box span {
    font-size: 16px;
    color: var(--main-color);
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box h2 {
    font-size: 46px;
    font-weight: bold;
    color: var(--main-color);
    margin-top: 20PX;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box p {
    font-size: 24px;
    color: var(--main-color);
    margin: 20px 0;
    padding-right: 80px;
    font-weight: 400;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box a {
    display: inline-block;
    background-color: var(--main-color);
    color: #fff;
    height: 50px;
    line-height: 50px;
    padding: 0 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 30px;
    font-size: 16px;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-right {
    max-width: 33.333333%;
    flex: 0 0 33.333333%;
    position: relative;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-right .img-box {
    position: absolute;
    top: 50%;
    left: -18%;
    transform: translateY(-50%);
    font-size: 0;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-right .img-box-left {
    right: -18%;
    left: 0;
    z-index: 1;
}

.dreams .dreams-list .dreams-list-box .dreams-list-box-right img {
    max-width: 100%;
    object-fit: cover;
    transition: all 250ms ease-in-out 0s;
}

/* ?????? */

.swiper {
    --swiper-theme-color: #ff6600;
    /* ???Swiper??? */
    --swiper-navigation-color: var(--main-color);
    /* ???????????? */
    --swiper-navigation-size: 30px;
    /* ????????? */
}


/* ???1500px?? */

@media screen and (max-width:1500px) {}


/* ???1400px?? */

@media screen and (max-width:1400px) {}


/* ???1200px?? */

@media screen and (max-width:1200px) {}


/* ???1100px?? */

@media screen and (max-width:1100px) {
    .dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box h2 {
        font-size: 32px;
    }

    .dreams .dreams-list .dreams-list-box .dreams-list-box-left .text-box p {
        font-size: 16px;
    }
}

@media screen and (max-width:1000px) {

    /* .banner-text h1 {
        display: none;
    } */
    .bestsellers {
        display: none;
    }

    .yd-bestsellers {
        display: block;
        width: auto;
        padding: 0 10px;
    }

    .yd-bestsellers h2 {
        text-align: center;
        padding: 24px 0 40px 0;
        font-size: 36px;
        font-weight: 400;
        color: #000D41;
    }

    .yd-bestsellers .bestsellers-box {
        display: flex;
        flex-wrap: wrap;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box {
        flex: 0 0 33.333333%;
        padding: 0 15px 15px;
        box-sizing: border-box;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box .bestsellers-box-img {
        width: 100%;
        padding-bottom: 100%;
        height: 0;
        position: relative;
        display: block;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box .bestsellers-box-img img {
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box a.btn-select {
        width: 100%;
        margin: 0 auto;
        display: block;
        line-height: 40px;
        border-radius: 30px;
        border: 1px solid var(--main-color);
        color: var(--main-color);
        background-color: #fff;
        margin-top: 10px;
        text-align: center;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box .bestsellers-text-box h3 {
        font-size: 14px;
        padding-top: 20px;
        color: var(--font-color);
        font-weight: 500;
        margin-bottom: 8px;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box .bestsellers-text-box span {
        color: #73788a;
        font-size: 14px;
    }
    .yd-bestsellers .bestsellers-box .bestsellers-list-box .bestsellers-text-box>span {
        color: var(--main-color-second);
    }
    .sort-price input[type="search"] {
        width: 100px;
    }
}

@media screen and (max-width:767px) {

    /* .banner-text h1 {
        font-size: 24px;
    } */
    .banner-text h1 {
        margin: 20px auto;
    }

    .yd-bestsellers .bestsellers-box .bestsellers-list-box {
        flex: 0 0 50%;
        padding: 0 10px 10px;
    }

    .dreams .dreams-list .dreams-list-box .dreams-list-box-right .img-box {
        width: 100%;
        height: 360px;
        background-color: #ccc;
        font-size: 0;
    }

    .dreams {
        display: none;
    }

    .yd-dreams {
        display: block;
        padding: 30px 20px;
    }

    .yd-dreams .dreams-title {
        text-align: center;
        margin-top: 20px;
    }

    .yd-dreams .dreams-title h1 {
        font-size: 32px;
        font-weight: 400;
        color: #000D41;
        margin: 10px 0;
        padding-top: 10px;
    }

    .yd-dreams .dreams-title p {
        color: #73788A;
        margin-bottom: 20px;
    }

    .dreams-list .dreams-list-box {
        margin-bottom: 30px;
    }

    .yd-dreams .dreams-list-box .img-box {
        width: 100%;
        background: #eee;
        position: relative;
        font-size: 0;
    }

    .dreams-list .dreams-list-box .img-box img {
        width: 100%;
        max-width: 100%;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left {
        margin-bottom: 10px;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left .text-box {
        background-color: rgb(251, 246, 242);
        padding: 4% 5%;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left .text-box {
        color: var(--main-color);
        font-size: 16px;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left .text-box h2 {
        font-size: 24px;
        font-weight: bolder;
        color: var(--main-color);
        margin-top: 10px;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left .text-box p {
        color: var(--main-color);
        font-size: 14px;
        margin: 10px 0;
    }

    .dreams-list .dreams-list-box .dreams-list-box-left .text-box a {
        width: 120px;
        line-height: 50px;
        border-radius: 8px;
        border: none;
        background-color: var(--main-color);
        color: #fff;
        margin-top: 10px;
        padding: 14px 12px;
    }

    .sort {
        flex-wrap: wrap;
    }

    .sort label {
        line-height: 44px;
    }

    .sort select {
        padding: 10px 20px 10px;
    }

    .sort i {
        height: 39px;
    }

    .sort-price input[type="search"] {
        width: 84px;
        padding: 10px 20px 10px;
    }

    .sort-price input[type="button"] {
        padding: 10px
    }

    .sort .sort-price {
        margin-right: 10px;
    }
}

[data-section-type='image_text_list_1'] .dreams .dreams-list .dreams-list-box .dreams-list-box-right .img-box {
    left: unset;
    right: -18%;
    z-index: 2;
}