/* 基础信息 */
.basicInfo {
    width: 100%;
    height: 392px;
    background-color: white;
    margin-bottom: 20px;
    display: flex;
    padding: 20px;
    position: relative;
}
.basicInfo > .imgGroup {
    width: 300px;
    height: 352px;
    margin-right: 20px;
}
.basicInfo > .imgGroup > #gallery {
    width: 100%;
    height: 300px;
    border: 1px solid #f3f3f3;
}
.basicInfo > .imgGroup > #thumbs {
    width: 100%;
    height: 42px;
    margin-top: 10px;
}
.basicInfo > .imgGroup > #thumbs .swiper-wrapper {
    padding: 0 15px;
}
.basicInfo > .imgGroup > #thumbs .swiper-button-prev {
    width: 8px;
    height: 16px;
    background: url("../../images/swiperLeft2.png") center no-repeat;
    background-size: 100% 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    top: 50% !important;
    left: 0 !important;
    margin: 0 !important;
}
.basicInfo > .imgGroup > #thumbs .swiper-button-next {
    width: 8px;
    height: 16px;
    background: url("../../images/swiperRight2.png") center no-repeat;
    background-size: 100% 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    top: 50% !important;
    right: 0 !important;
    margin: 0 !important;
}
.basicInfo > .imgGroup > #thumbs .swiper-slide {
    width: 60px !important;
}
.basicInfo > .imgGroup > #thumbs .swiper-slide > div {
    width: 100%;
    height: 100%;
    background-color: rgba(205, 205, 205, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.basicInfo > .goCart {
    display: block;
    width: 36px;
    height: auto;
    position: absolute;
    top: 20px;
    right: 30px;
}
.basicInfo > .goCart > div {
    width: 100%;
    height: 32px;
    margin-bottom: 5px;
    background: url("../../images/cart.png") center no-repeat;
    background-size: contain;
}
.basicInfo > .goCart > p {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    line-height: 16px;
    color: #003399;
}

/* 右侧信息 */
.basicInfo > .textInfo {
    flex: 1;
}
.basicInfo > .textInfo > .goodsName {
    width: 100%;
    height: auto;
    min-height: 24px;
    /* font-family: 'phb'; */
    /* font-family: 微软雅黑; */
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 10px;
}
.basicInfo > .textInfo > .goodsDescription {
    width: 100%;
    font-size: 12px;
    line-height: 16px;
    color: #999999;
    margin-bottom: 20px;
}
.basicInfo > .textInfo > .jifen {
    width: 696px;
    height: 72px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    padding-left: 10px;
    margin-bottom: 20px;
}
.basicInfo > .textInfo > .jifen > div {
    width: 100%;
    height: 32px;
    display: flex;
    align-items: flex-end;
}
.basicInfo > .textInfo > .jifen > div > .p01 {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}
.basicInfo > .textInfo > .jifen > div > .p02 {
    /* font-family: 'phb'; */
    /* font-family: 微软雅黑; */
    font-weight: bold;
    font-size: 24px;
    color: #003399;
    line-height: 1em;
}
.basicInfo > .textInfo > .numSelect {
    width: 100%;
    height: 28px;
    display: flex;
    align-items: center;
    /* margin-bottom: 40px; */
}
.basicInfo > .textInfo > .numSelect > p {
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #666666;
    line-height: 1em;
    margin-right: 5px;
}
.basicInfo > .textInfo > .numSelect > .numChange {
    width: 96px;
    height: 28px;
    display: flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell {
    width: 28px;
    height: 28px;
    border: 1px solid #cdcdcd;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.basicInfo > .textInfo > .numSelect > .numChange.limitAlertShow > .numCell {
    border-color: #e52f2c;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell:hover {
    background-color: #f8f8f8;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell.disabled {
    background-color: #f3f3f3 !important;
    cursor: not-allowed;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell > div {
    width: 10px;
    height: 10px;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell.minus > div {
    background: url("../../images/minus2.png") center no-repeat;
    background-size: 100% 100%;
}
.basicInfo > .textInfo > .numSelect > .numChange > .numCell.plus > div {
    background: url("../../images/plus2.png") center no-repeat;
    background-size: 100% 100%;
}
.basicInfo > .textInfo > .numSelect > .numChange > .minus.disabled > div {
    background: url("../../images/minus.png") center no-repeat;
    background-size: 100% 100%;
}
.basicInfo > .textInfo > .numSelect > .numChange > .plus.disabled > div {
    background: url("../../images/plus.png") center no-repeat;
    background-size: 100% 100%;
}
.basicInfo > .textInfo > .numSelect > .numChange > input {
    width: 40px;
    height: 28px;
    border-top: 1px solid #cdcdcd;
    border-bottom: 1px solid #cdcdcd;
    text-align: center;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    color: #333333;
}
.basicInfo > .textInfo > .numSelect > .numChange.limitAlertShow > input {
    border-color: #e52f2c;
}
.basicInfo > .textInfo > .numSelect > .numChange > input::-webkit-outer-spin-button,
.basicInfo > .textInfo > .numSelect > .numChange > input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
}
.basicInfo > .textInfo > .numSelect > .numChange > input[type="number"] {
    -moz-appearance: textfield;
}
.basicInfo > .textInfo > .numSelect > .numChange > input:disabled {
    background-color: #f3f3f3;
}
.basicInfo > .textInfo > .numSelect > .numChange > .notice {
    font-size: 12px;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    color: #e52f2c;
    line-height: 16px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    position: absolute;
    left: 50%;
    bottom: -20px;
}
.basicInfo > .textInfo > .numSelect > .numChange > .noticeGroup {
    width: 500px;
    height: auto;
    position: absolute;
    left: 0;
    top: 28px;
}
.basicInfo > .textInfo > .numSelect > .numChange > .noticeGroup > p {
    font-size: 12px;
    line-height: 16px;
    margin-top: 5px;
}
.basicInfo > .textInfo > .numSelect > .numChange > .noticeGroup > .noticeGrey {
    color: #999999;
}
.basicInfo > .textInfo > .numSelect > .numChange > .noticeGroup > .noticeRed {
    color: #e52f2c;
}
.basicInfo > .textInfo > .numSelect > span {
    display: block;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 12px;
    line-height: 1em;
    color: #999999;
}
.basicInfo > .textInfo > .buttons {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    margin-top: 82px;
}
.basicInfo > .textInfo > .buttons > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    margin-right: 10px;
    border: 1px solid #ffcc00;
    background-color: white;
    /* font-family: 'phr'; */
    /* font-family: 微软雅黑; */
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -ms-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
}
.basicInfo > .textInfo > .buttons > a:hover {
    background-color: #fff7d6;
}
.basicInfo > .textInfo > .buttons > a.goBuy {
    background-color: #ffcc00;
}
.basicInfo > .textInfo > .buttons > a.goBuy:hover {
    border-color: #ffea98;
    background-color: #ffea98;
}
.basicInfo > .textInfo > .buttons > a.disabled {
    background-color: #f3f3f3;
    color: #cdcdcd;
    border: none;
    cursor: not-allowed;
}
.basicInfo > .textInfo > .buttons > a.disabled:hover {
    background-color: #f3f3f3;
    color: #cdcdcd;
}

/* 详细描述 */
.detailInfo {
    width: 100%;
    height: auto;
    background-color: white;
    margin-bottom: 20px;
    padding: 20px;
}
.detailInfo > .tabs {
    width: 100%;
    height: 36px;
    background-color: white;
    border-bottom: 2px solid #003399;
    margin-bottom: 20px;
    /* position: sticky;
    left: 0;
    top: 0; */
}
.detailInfo > .tabs > .item {
    width: auto;
    height: 24px;
    position: relative;
    /* font-family: 'phb'; */
    /* font-family: 微软雅黑; */
    font-weight: bold;
    font-size: 18px;
    color: #999999;
    line-height: 24px;
    margin-right: 50px;
}
.detailInfo > .tabs > .item > div {
    width: 100%;
    height: 2px;
    background-color: #f3f3f3;
    position: absolute;
    left: 0;
    bottom: 0;
}
.detailInfo > .tabs > .item.active {
    color: #003399;
}
.detailInfo > .tabs > .item:hover {
    color: #003399;
}
.detailInfo > .tabs > .item.active > div {
    background-color: #003399;
}
.detailInfo > .intro {
    width: 100%;
    height: auto;
}
.detailInfo > .intro > .item {
    width: 100%;
    height: auto;
}
.detailInfo > .intro > .item > .title {
    width: 100%;
    height: 64px;
    padding-top: 30px;
    /* font-family: 'phb'; */
    /* font-family: 微软雅黑; */
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    border-bottom: 2px solid #003399;
    margin-bottom: 20px;
}
.detailInfo > .intro img {
    width: 100%;
    max-width: 100%;
}

/* 不可购买提示 */
.disabledReason {
    width: 100%;
    height: 16px;
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.disabledReason > img {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}
.disabledReason > p {
    font-size: 12px;
    line-height: 16px;
    color: #333333;
}
