body{
    background-color: #F7F7F7;
}
.base-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 610px;
    background-color: #ffffff;
    margin-top: 20px;
}

.base-info .pdesc {
    width: 700px;
    margin-top: 30px;
    padding-top: 5px;
    margin-right: 30px;
    height: 567px;
    position: relative;
}
.base-info .pdesc .share-area{
    position: absolute;
    top: 0px;
    right: 30px;
    display: flex;
    width: 187px;
    justify-content: space-between;
}
.base-info .pdesc .share-area .share-btn{
    position: relative;

}
.base-info .pdesc .share-area .share-btn{
    position: relative;

}
.base-info .pdesc .share-area .share-btn:hover .share-down-box{
    display: block;
}

/**分享**/
.share-down-box{
    position: absolute;
    bottom: 12px;
    right: -16px;
    transform: translateY(calc(100% + 9px));
    width: 114px;
    height: 171px;
    background-color: #ffffff;
    box-shadow: 0px 4px 7px 0px
    rgba(222, 222, 222, 0.55);
    border-radius: 4px;
    border: solid 1px #28cccc;
    padding: 6px 4px;
    z-index: 2;
    display: none;
}
.share-down-box .share-down-item{
    height: 32px;
    line-height: 32px;
    position: relative;
    font-size: 14px;
    color: #333;
    padding-left: 37px;
    margin-bottom: 9px;
    border-radius: 2px;
    cursor: pointer;
}
.share-down-box .share-down-item:last-child{
    margin-bottom: 0;
}
.share-down-box .share-down-item img{
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translate(0,-50%);
    height: 16px;
}
.share-down-box .share-down-item:hover{
    background: rgba(40, 204, 204, 0.1);
}
.wx-share-modal{
    position: fixed;
    z-index: 105;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
}
.wx-share-content{
    width: 340px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding-bottom: 50px;
}
.wx-share-content .wx-share-title{
    height: 45px;
    border-bottom: 1px solid #f2f2f2;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 45px;
    position: relative;
    background-color: #f7f7f7;
}
.wx-share-content .wx-share-title i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #666;
    cursor: pointer;
}
.wx-share-content #wx-share-qrcode{
    width: 200px;
    height: 200px;
    margin: 50px auto;
}
.wx-share-content #wx-share-qrcode img{
    width: 100%;
}
.wx-share-content p{
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.base-info .pdesc h1 {
    line-height: 1.5;
    margin-bottom: 10px;
}

.base-info .advance {
    font-size: 14px;
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 2px;
    color: #ff2222;
    margin-bottom: 10px;
    position: relative;
}

.base-info .place {
    font-size: 16px;
    color: #3e3c3c;
}

.base-info .price {
    font-size: 20px;
    color: #ff2222;
    padding-right: 10px;
    margin-bottom: 10px;
}

.base-info .market-price {
    color: #666666;
    text-decoration: line-through;
}

.base-info .price small {
    font-size: 13px;
    color: #333333;
}

.base-info .number {
    margin-bottom: 35px;
}

.base-info .el-button--primary {
    width: 175px;
}

/*商品详情*/
.gift_detail {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px 35px;
}

.gift_detail .gift_hot {
    width: 296px;
    border: 2px solid #e6e6e6;
    position: relative;
    margin-top: 45px;
}

.gift_detail .gift_hot .tit {
    width: 138px;
    font-size: 18px;
    font-weight: bold;
    color: #02b4b6;
    position: absolute;
    left: 80px;
    top: -14px;
    background-color: #fff;
    text-align: center;
}

.gift_detail .gift_hot .list {
    width: 219px;
    display: block;
    margin: 0 auto;
    margin-top: 26px;
}

.gift_detail .gift_hot .list li {
    width: 217px;
    height: 302px;
    list-style-type: none;
    overflow: hidden;
    background-color: #fff;
    text-align: center;
    transition: all 0.1s linear;
    margin-bottom: 30px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.18);
}

.gift_detail .gift_hot .list li:hover {
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.1s linear;
    transform: translate3d(0, -2px, 0);
    border-color: #02b4b6;
}

.gift_detail .list li .gift-img {
    width: 217px;
    height: 181px;
    overflow: hidden;
    background-position: center center;
    margin-bottom: 7px;
    cursor: pointer
}

.gift_detail .list li .gift-img img {
    width: 217px;
    height: 181px;
    transition: all 0.2s linear;
}

.gift_detail .list li a .gift-img:hover > img {
    transform: scale(1.05);
}

.gift_detail .list li .gift-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 32px;
    line-height: 16px;
    word-break: break-all;
    padding: 0 25px;
    color: #4c4c4c;
}

.gift_detail .list li .hotsp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 13px;
    height: 46px;
}

.gift_detail .list li .gift-score {
    line-height: 30px;
    height: 30px;
    overflow: hidden;
}

.gift_detail .list li .gift-score span {
    color: #eb6161;
    width: 60px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    vertical-align: top;
    text-align: left;
}

.gift_detail .list li .gift-num .input-box {
    width: 84px;
    height: 28px;
    border: 1px solid #cecece;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    overflow: hidden;
}

.gift_detail .list li .gift-num .input-box button {
    border: none;
    background-color: transparent;
    color: #26bfc0;
    width: 28px;
    font-size: 20px;
    height: 28px;
    cursor: pointer;
    outline: none;
}

.gift_detail .list li .gift-num .input-box .disabled {
    color: #8b8b8b;
    cursor: default;
}

.gift_detail .list li .gift-num .input-box input {
    border: none;
    background-color: transparent;
    width: 28px;
    height: 28px;
    text-align: center;
    color: #4c4c4c;
    font-size: 16px;
    outline: none;
    line-height: 28px;
}

.gift_detail .list li .add-giftbox {
    height: 36px;
    background-color: #02b4b6;
    color: #fff;
    cursor: pointer;
    line-height: 36px;
}

.gift-descriptions {
    width: 825px;
}

.gift-descriptions img {
    width: 825px;
}

.gift-descriptions .tit {
    height: 45px;
    border-bottom: 2px solid #e6e6e6;
    position: relative;
}

.gift-descriptions .tit span {
    position: absolute;
    top: 0;
    line-height: 43px;
    font-size: 18px;
    color: #4c4c4c;
    font-weight: bold;
    width: 92px;
    text-align: center;
    border-bottom: 2px solid #e6e6e6;
    cursor: pointer;
}

.gift-descriptions .tit span:nth-of-type(2) {
    left: 136px;
}

.gift-descriptions .tit span.on {
    color: #02b4b6;
    border-bottom: 2px solid #02b4b6;
}

.gift-descriptions .content {
    margin-top: 30px;
}

.gift-descriptions .content_q {
    background-color: #f7f7f7;
    padding: 10px 35px;
    line-height: 22px;
    min-height: 984px;
    color: #969696;
}

.gift-descriptions .content_q h2 {
    line-height: 32px;
    color: #4c4c4c;
    font-size: 14px;
    margin-top: 15px;
}

.gift-descriptions .content_d {
    font-size: 15px;
    line-height: 30px;
}

.gift-descriptions .content_d img {
    max-width: 100%;
    display: block;
    margin: auto;
}

.swiper {
    width: 100%;
    height: 100%;
}

.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;
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 84%;
    width: 100%;
}

.mySwiper {
    height: 16%;
    box-sizing: border-box;
    padding: 5px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bread {
    width: 1200px;
    margin: 30px auto 25px;
}

/**商品详情 图片+视频 轮播BEGIN**/
.photos-show {
    width: 430px;
    float: left;
    margin: 30px ;
}
.photos-show .box {
    width: 430px;
}
.photos-show .box .tb-booth {
    position: relative;
    z-index: 3;
    width: 430px;
    height: 430px;
    border: #ededed solid 1px;
}
.photos-show .box .tb-booth .tb_img {
    width: 430px;
    height: 430px;
    position: relative;
    display: block;
}
.photos-show .box .tb-booth .tb_img .searchImgIcon {
    width: 30px;
    height: 30px;
    background-color: #E5E5E5;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}
.photos-show .box .tb-booth .tb_img img {
    width: 430px;
    height: 430px;
}
.photos-show .box .box_list {
    width: 400px;
    overflow: hidden;
    height: 70px;
    margin: 15px auto 0;
    position: relative;
}
.photos-show .box .box_list #ibox {
    height: 100%;
    left: 0;
    position: absolute;
    width: 2550px;
}
.photos-show .box .box_list #ibox .tb-thumb li {
    float: left;
    width: 70px;
    height: 70px;
    padding: 0 5px;
    position: relative;
}
.photos-show .box .box_list #ibox .tb-thumb li img {
    width: 68px;
    height: 68px;
    border: 1px solid #e6e6e6;
}
.photos-show .box .box_list #ibox .tb-thumb .tb-selected img {
    border: 1px solid #28CCCC;
    width: 68px;
    height: 68px;
}
.photos-show .box .page_thumb {
    width: 100%;
    z-index: 1;
    position: relative;
}
.photos-show .box .page_thumb a {
    width: 18px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    color: #999;
}
.photos-show .box .page_thumb .disabeld {
    cursor: auto;
}
.photos-show .box .page_thumb .disabeld i {
    color: #EAEAEA;
    cursor: auto;
}
.photos-show .box .page_thumb a i {
    color: #999;
    font-size: 25px;
    transform: scale(.8);
}
.photos-show .box .page_thumb a i:hover {
    color: #19B0B0;
}
.photos-show .box .page_thumb .disabeld i:hover {
    color: #EAEAEA;
}
.photos-show .box .page_thumb .pre i {
    transform: scale(.8) rotate(-180deg);
}
.photos-show .box .page_thumb .pre {
    left: 0;
}
.photos-show .box .page_thumb .pre:hover i {
    background-position: -37px -99px;
}
.photos-show .box .page_thumb .pre i {
    background-position: -37px -83px;
}
.photos-show .box .page_thumb .next {
    right: 0;
}
.photos-show .box .page_thumb .next:hover i {
    background-position: -46px -99px;
}
.photos-show .box .page_thumb .next i {
    background-position: -46px -83px;
}
.photos-show .box .page_thumb .num {
    display: none;
}
.photos-show .tb_video_box {
    display: flex;
    align-items: center;
    width: 430px;
    height: 430px;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.photos-show  #tb_video {
    width: 99%;
    margin: 0 auto;
    outline: none;
}
.photos-show .img_explain {
    color: #999;
    font-size:14px;
    line-height:36px;
}
.photos-show .video_play {
    width: 32px!important;
    height: 32px!important;
    position: absolute;
    transform: initial;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border: 0!important;
}
/**商品详情 图片+视频 轮播END**/

.goods-parameter{
    margin-bottom: 15px;
    margin-top: -10px;
    padding:0 10px;
}
.goods-parameter{
    width: 100%;
    float: left;
    background-color: #f9f9f9;
    padding: 10px 10px;
}
.goods-parameter li{
    float: left;
    width: 255px;
    margin: 8px 0;
    margin-right: 20px;
}
.goods-parameter li:nth-child(3n){
    margin-right: 0;
    margin-bottom: 5px;
}
.goods-parameter li .p-title{
    font-weight: bold;
    margin-right: 5px;
}
.goods-parameter li .p-value{
    color: #6a6868;
}
.sku-info{
    margin-bottom: 30px;
    margin-top: -10px;
}
.sku-info .sku-item{
    display: flex;
    margin-top: 20px;
}
.sku-info .title{
    font-weight: bold;
    width: 60px;
    text-align: start;
    letter-spacing: 2px;
}
.sku-info .spec-item {
    display: inline-block;
    margin-right: 10px;
}
.sku-info .spec-item span {
    border: 1px solid #eee;
    cursor: pointer;
    padding: 5px 10px;
}
.sku-info .spec-item .active {
    border: 1px solid red;
    background-color: red;
    color: #fff;
}
.sku-info .spec-item .disabled {
    color: #c0c4cc;
    cursor: not-allowed;
    background-image: none;
    background-color: #fff;
    border-color: #ebeef5;
}