body{
    margin: 0;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    
    padding: 2rem;
    box-sizing: border-box;

}
/* 产品特标 */

.navbar-list li a::after{
    content: '®';
}
/* 特色推荐 */
.jiuzhen-title{
    color: #ff8400;
    font-size: 3rem;

    margin: 2rem auto;
    width: 1080px;
    border-bottom: 2px #ff8400 solid;

    display: flex;
    align-items: end;
}
.jiuzhen-title> a:first-child{
    margin-left: auto;
    border-radius: 5rem 0 0 5rem;
}
.jiuzhen-title> a:last-child{
    border-radius: 0 5rem 5rem 0;
}

.jiuzhen-title > a{
    background-color: #ff8400;
    color: rgba(254,243,232,1);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    padding: 5px 1rem;
    margin-bottom: 5px;
}

.jiuzhen-title > a:hover{
    color: #ff8400;
    background-color: rgb(254,243,232);
}



.referShop{
    width: 1080px;

    margin: 0 auto;     
    padding: 5px;

    height: 400px;
    /* background-color: #000; */
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.referShop .referImg{
    height: 400px;
    width: 400px;
}
.referShop .referImg img{
    width: 100%;
    height: 100%;


    object-fit: cover;
    object-position: center;
}
.referUl{
    width: 60%;
    height: 100%;
    margin-left: 5%;
}
.referUl ul{
    width: 100%;
    height: 100%;
    text-align: left;
    font-size: 2.4rem;
    color: #ff8400;
    font-weight: 300;
    overflow: hidden;
}

.referUl ul li{
    font-size: 1rem;
    height: 2rem;
    color: rgb(95,93,93);
    margin-top: 1.5rem;
    line-height: 2rem;
    height: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
}
.referUl ul li :first-child{
    background-color: #ff8400;
    width: 120px;
    font-size: 1rem;
    color: whitesmoke;
    border-radius:1rem;
    float: left;
    text-align: center;
    margin-right: 2rem;
}
/* svg */
.svgBack{
    margin: 0 auto;
    width: 100%;
    height: 20px;
    background-color: rgba(238, 123, 29,.2);
}
.svgLi{
    position: relative;
    margin: 0 auto;
    width: 100%;
}
.custom-shape-divider-bottom-1683166909 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1683166909 svg {
    position: relative;
    display: block;
    width: calc(135% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1683166909 .shape-fill {
    fill: rgba(238, 123, 29,.2);
}

/* ********轮播*************** */


/* 商品列表 */
.backColor{
    background-color: rgba(254,243,232,.8);
    margin: 0 auto ;
}
.productShow{
    width: 1080px;
    height: auto;
    
    box-sizing: border-box;
    position: relative;
}
/* 导航 */
.productShow .navProduct{
    width: 90%;
    max-height: 80px;

    background-color: rgb(210,90,43);
    opacity: .8;

    box-sizing: border-box;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    
    top: -2rem;
    left: 5%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.navProduct ul{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 1rem;

    list-style-type: none;
    text-decoration: none;
}

.navProduct ul li{
    flex: 1;
    text-align: center;
    line-height: 80px;
    font-size: 1.5rem;
    cursor: pointer;

    transition-property: all;
    transition-delay: 0s;
    transition-duration: .5s;
    transition-timing-function: linear;
}
.navProduct ul li:first-child{
    border-radius: 1rem 0 0 1rem;
}
.navProduct ul li:last-child{
    border-radius: 0 1rem 1rem 0;
}
.navProduct ul li a{
    color: whitesmoke;
}

.navProduct ul li:hover{
    background-color: whitesmoke;
}
.navProduct ul li:hover a{
    color: #ff8400;
}

/* *********商品展示************* */
.productContainer{
    margin: 0 auto;
    width: 100%;

    box-sizing: border-box;
    /* background-color: brown; */
    
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;

    align-content: flex-start;
    flex-wrap: wrap;

}

.productBox{
    width: 250px;
    height: 280px;
    margin: 1rem .5rem;
    box-sizing: border-box;

    position: relative;

    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.productBox .productImg{
    width: 100%;
    height: 70%;
}
.productImg img{
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
.content{
    height: 30%;
    padding: .5rem;

    transition-property: all;
    transition-delay: 0s;
    transition-duration: .5s;
    transition-timing-function: linear;
}
.productBox h3{
    font-size: larger;
    color: rgb(229,111,35);
}

.productBox p{
    color: rgb(95,93,93);
    line-height: 1.5;
    overflow: hidden;
}
.maskBtn{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgb(95,93,93);
    opacity: .5;
    border-radius: 0 0 15px 15px;

    transform: translateY(100%);

    transition-property: all;
    transition-delay: 0s;
    transition-duration: .3s;
    transition-timing-function: linear;
}

.maskBtn a{
    padding: 8px 20px;
    margin-top: 15px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.productBox:hover .maskBtn{
    transform: translateY(0%);
}
.productBox:hover .content{
    filter: blur(3px);
}
/* ******** */
.otherShop{
    width: 1080px;
    height: 40px;
    margin: 0 auto;
    padding: 0 1rem;

    
    display: flex;
    flex-direction: row;
    align-items: start;
}
.otherShop a{
    font-size: 20px;
    z-index: 1;
    margin-left: .5rem;
    color: rgb(95,93,93);
}
.otherShop a:last-child{
    margin-left: auto;
}
.otherShop .active{
    color: #ff8400;
}
/* 720响应式 */
@media screen and  (max-width: 720px){
    /* 标题 */
    .jiuzhen-title{
        font-size: 2rem;
        width: 100%;
    }
    .jiuzhen-title a{
        font-size: 8px;
    }
    
    /* 招牌 */

    .referShop{
        flex-direction: column;
        width: 300px;
        height: auto;
    }
    .referShop .referImg,.referShop .referUl{
        width: 100%;
        margin-left: 0;
    }
    .referShop .referUl li span:first-child{
        width: 80px;

    }
    /* 商品列表 */
    .productShow{
        width: 100%;
    }
    .productContainer{
        justify-content: center;
    }
    /* 底部 */
    .otherShop{
        width: 100%;
    }
    .otherShop a{
        font-size: 12px;
    }
}