.swipShow{
    width: 60%;
    height: 50vh;
    margin: 0 auto;


    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
/* 轮播 */
.swipShow .swipCard{
    width: 40%;
    height: 80%;

    position: relative;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;

    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
    --swiper-navigation-color: rgb(238,123,29);
    user-select: none;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }



/* 描述文字 */

.swipShow .swipContent{
    width: 50%;
    height: 70%;
    background-image: linear-gradient(to top,rgba(254,243,232,.8),whitesmoke);

    border-left: 2px solid #efefef; 
    border-radius: 0 15px 15px 0;
    box-sizing: border-box;
    box-shadow: rgba(238, 129, 29, 0.09) 0px 2px 1px, rgba(238, 129, 29, 0.09) 0px 4px 2px, rgba(238, 129, 29, 0.09) 0px 8px 4px, rgba(238, 129, 29, 0.09) 0px 16px 8px, rgba(238, 129, 29, 0.09) 0px 32px 16px;
    padding: 3rem 1rem;  
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 20px;

}

  .swipContent  h2 {
   color: rgb(95,93,93);
    margin: 0;
    font-size: 24px;
  }

.swipContent  h3 {
   color: rgb(238,123,29);
   margin: 0;

   font-size: 20px;
   text-transform: uppercase;
   font-weight: 500;
}


 
 
  .swipContent  p {
    color: rgb(95,93,93);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
 }


/* 商品底部 */
.goodsMgs{
    width: 70%;
    height: auto;

    padding: 1rem;
    box-sizing: border-box;
    margin: 1rem auto;
}

.goodsConnect{
    width: 100%;
    height: auto;

    /* background-color: antiquewhite; */
    color: rgb(95,93,93);
    padding: 2rem;
}
.goodsConnect h2{
    border-bottom: 2px solid rgb(95,93,93);
    font-size: 2rem;
    padding-bottom: 1rem;
    
}
.connectMgs{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}
.connectMgs .connectP{
    flex: 1;
    min-width: 45%;
    margin-top: 1rem;
    margin-right: 1rem;

    line-height: 2rem;
    letter-spacing: 4px;
    padding-right: 2rem;
    box-sizing: border-box;
    /* border-right: 2px solid rgb(95,93,93); */
    background-color: antiquewhite;

}

.goodsConnect img{
    
    float: right;
    width: 50%;
    margin-top: 1rem;

    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    
    transition-property: all;
    transition-duration: .5s;
    transition-timing-function: linear;


}

.goodsConnect img:hover{
    border-radius: 15px;
    box-shadow:rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.clearF{
    clear: both;
}
/* 分享 */
.shareGoods{
    position: relative;
    width: 1080px;
    height: 50px;

    margin: 20px auto;
    display: flex;
    justify-content: end;
}

.shareGoods .shareIco{
    color: #ff8400;
    font-size: 2rem;
}
.shareIco:hover{
    cursor: pointer;
    transform: scale(1.2);
    transition: .3s linear;
}
.shareGoods .share-window{
    position: absolute;
    right: 0;
    top: 0;
    width: 250px;
    height: 250px;
    z-index: 1;
    transform: translate(100%,-30%);
    display: none;
}
.shareGoods .shareIco:hover +.share-window,.shareGoods .share-window:hover{
        display: block;
}
/* 分享浮窗 */
.popup{
    width: 100%;
    height: 100%;
    background: rgb(254, 243, 232);
    color: rgb(95,93,93);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    padding: 20px 12px;
    border-radius: 1rem;
}
.popup>p{
    padding-bottom: 5px;
    border-bottom: #ff6600 1px solid;
    font-size: 1.5rem;
    font-weight: 600;
}
.popup p:not(:first-child){
    font-weight: 300;
}
.icons{
    display: flex;
    justify-content: space-around;
}
.popup .content{
    margin: 20px 0;
  }
  .popup .icons{
    margin: 15px 0;
  }
.content .icons a{
    height: 40px;
    width: 40px;
    font-size: 15px;
    line-height: 40px;
    text-decoration: none;
    border: 1px solid #ff6600;
    border-radius: 50%;
    text-align: center;
  }

  .field input{
    width: 65%;
    height: 30px;
    border: none;
    outline: none;
    font-size: 15px;
    font-weight: 300;
    margin-right: 5px;
  }
  .field button{
    text-align: center;
    width: 25%;
    height: 36px;
    color: #fff;
    padding: 4px 10px;
    border-color: rgb(254, 243, 232);
    background: #ff6600;
    cursor: pointer;
  }


/* 720p */
@media screen and  (max-width: 720px){
    .swipShow{
        width: 90%;
        flex-direction: column;
        margin-top: 2rem;
    }
    .goodsMgs{
        width: 80%;
    }
    .swipShow .swipCard,.swipShow .swipContent,.goodsConnect p,.goodsConnect img{
        width: 100%;
    }
    .swipShow{
        height: auto;
    }
    .swipShow .swipCard{
        height: 360px;
    }

    .goodsConnect p{
        border-right: 0;
    }
}