.pingshang-goods-read{
    padding: 100px 0;
    background: #FEF8F8;
}
.goods-read-list{
    display: flex;
    gap: 55px;
}
.goods-read-list .goods-read-left{
    width: 610px;
    position: relative;
}
.goods-read-left .left-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #D9D9D9;
    position: absolute;
    right: 25px;
    top: 23px;
    z-index: 2;
    cursor: pointer;
}
.goods-read-left .left-icon > a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thumb-content .thumb-swiper{
    max-height: 1890px;
}
.thumb-swiper .swiper-slide{
    width: 100%;
    height: 100% !important;
    aspect-ratio: 1;
    border-radius: 20px;
    border: 2px dashed #EB715A;
}
.thumb-swiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.goods-read-left .goods-read-img-show{
    width: 42px;
    aspect-ratio: 1;
    padding: 5px;
    margin: 20px auto 0;
    background: #fff;
    border-radius: 2px;
}
.goods-read-left .goods-read-img-show img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goods-read-list .goods-read-right{
    flex: 1;
}
.goods-read-right .goods-read-title{
    color: var(--text-color);
    font-family: var(--font-primary-family);
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.goods-read-right .goods-read-desc{
    color: #333;
    font-family: var(--font-text-family);
    font-size: 18px;
    font-style: var(--font-18);
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
    margin-top: 30px;
}
.goods-read-spec{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.goods-read-spec .goods-read-spec-item{
    display: flex;
    align-items: center;
}
.goods-read-spec-item .goods-read-spec-item-text{
    color: #000;
    font-family: var(--font-primary-family);
    font-size: var(--font-24);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
    width: 90px;
}
.goods-read-color-wrap,
.goods-read-tags-wrap{
    display: flex;
    gap: 40px;
}
.goods-read-color-wrap .goods-read-color-item{
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}
.goods-read-color-wrap .goods-read-color-item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.goods-read-tags-wrap .goods-read-tags-item{
    color: var(-text-color);
    font-family: var(--font-primary-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.goods-read-button{
    padding: 30px;
    width: 100%;
    display: block;
    margin-top: 50px;
    border-radius: 100px;
    background: var(--primary-color);
    color: #FFF;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
}

.goods-read-content{
    padding: 20px 0;
    border-bottom: 2px solid var(--primary-color);
}
.goods-read-content-item{
    margin-top: 40px;
}
.goods-read-content-item .goods-read-content-item-title-wrap{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}
.goods-read-content-item-title-wrap .goods-read-content-item-title{
    color: var(--text-color);
    font-family: var(--font-primary-family);
    font-size: var(--font-30);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
.goods-read-content-item-title-wrap img{
    width: 24px;
    aspect-ratio: 1;
}
.goods-read-content-item-rich{
    margin-top: 20px;
    color: #333;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-transform: capitalize;
}
.goods-read-content-item-rich li{
  list-style: inside;
}
.goods-read-content-item-title-wrap img{
    cursor: pointer;
    transition: transform 0.3s;
}
.goods-read-content-item.collapsed .goods-read-content-item-title-wrap img{
    transform: rotate(180deg);
}
.goods-read-content-item .goods-read-content-item-rich{
    max-height: 5000px;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.goods-read-content-item.collapsed .goods-read-content-item-rich{
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}
#goods-read-form div{
    padding: 0;
    margin: 0;
}
#goods-read-form .inqury_title_text{
    display: none;
}
#goods-read-form form{
    gap: 24px;
}
#goods-read-form .input-label,
#goods-read-form .char-count{
    display: none;
}
#goods-read-form input,
#goods-read-form textarea{
    border: 2px solid #F4C3C1;
    background: #FFF;
    padding: 23px 30px;
}
#goods-read-form input::placeholder,
#goods-read-form textarea::placeholder{
    color: #999;
    font-family: var(--font-text-family);
    font-size: var(--font-18);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}
#goods-read-form input{
    height: 80px;
    border-radius: 200px;
}
#goods-read-form textarea{
    height: 160px;
    border-radius: 20px;
}
#goods-read-form button[type='submit']{
    color: #FFF;
    font-family: var(--font-text-family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    padding: 27px;
    border-radius: 100px;
    background: #4B2423;
    width: 100%;
}
.goods-read-left .goods-read-img-show{
    cursor: pointer;
    transition: opacity 0.3s;
}
.goods-read-left .goods-read-img-show:hover{
    opacity: 0.8;
}
.pingshang-goods-read.expanded .goods-read-img-show{
    transform: rotate(180deg);
}


@media screen and (max-width: 1500px) {
    .pingshang-goods-read{
        padding: 50px 0;
    }
    .goods-read-list .goods-read-left{
        width: 40%;
    }
    .goods-read-list{
        gap: 30px;
    }
    .goods-read-right .goods-read-title{
        font-size: 40px;
    }
}
@media screen and (max-width: 1200px) {
    .goods-read-right .goods-read-title{
        font-size: 36px;
    }
}
@media screen and (max-width: 992px) {
    .goods-read-right .goods-read-title{
        font-size: 30px;
    }
    .goods-read-color-wrap,
    .goods-read-tags-wrap{
        gap: 20px;
    }
    .goods-read-spec{
        gap: 20px;
        margin-top: 20px;
    }
    .goods-read-button{
        margin-top: 20px;
    }
    .goods-read-spec-item .goods-read-spec-item-text{
        width: 70px;
    }
    .goods-read-color-wrap .goods-read-color-item{
        width: 30px;
        height: 30px;
    }
}
@media screen and (max-width: 768px) {
    .goods-read-right .goods-read-title{
        font-size: 24px;
    }
    .goods-read-list{
        flex-direction: column;
    }
    .goods-read-button{
        padding: 10px;
    }
    .goods-read-list .goods-read-left{
        margin: 0 auto;
    }
    .goods-read-left .left-icon{
        width: 30px;
        height: 30px;
        right: 5px;
        top: 5px;
    }
    .goods-read-left .left-icon img{
        width: 15px;
    }
}