@font-face {
    font-family: sourcesanspro;
    src: url(../fonts/SourceSansPro-Regular.ttf);
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: sourcesanspro;
    src: url(../fonts/SourceSansPro-Semibold.ttf);
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: sourcesanspro;
    src: url(../fonts/SourceSansPro-Semibold.ttf);
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: sourcesanspro;
    src: url(../fonts/SourceSansPro-Bold.ttf);
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
#banner{
    max-width: 160px;
    max-height: 600px;
    height: 600px;
    background: #f3f3f3;
}
#banner .owl-carousel{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
#banner .owl-stage-outer,
#banner .owl-stage,
#banner .owl-item,
#banner .item,
#banner .item a{
    height: 100%;
    display: inline-block;
}
#banner .item a{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.owl-carousel .owl-item img {
    object-fit: cover;
    height: 501px;
}
.owl-nav .owl-prev,
.owl-nav .owl-next{
    position: absolute;
}
.owl-nav .owl-prev{
    left: 0;
}
.owl-nav .owl-next{
    right: 0;
}
.banner-text,
.banner-price{
    padding: 10px 10px;
    text-decoration: none;
    text-align: center;
    width: 100%;
}
.item a{
    text-decoration: none;
}
.banner-text strong{
    font-size: 14px;
    font-family: sourcesanspro;
    font-weight: 700;
    margin-right: 5px;
    color: #551A8B;
}
.banner-text{
    font-size: 14px;
    font-family: sourcesanspro;
    font-weight: 400;
    color: #666;
    height: 56px;
    overflow: hidden;
    line-height: 21px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}
.banner-price{
    color: #f27a1a;
    font-weight: 400;
    font-family: sourcesanspro;
    font-size: 18px;
}
.owl-nav img{
    max-width: 40px;
}