/* 价格组件 */
.price-with-options .price-with-options__price .price-with-options__price__title {
    display: inline-block;
    padding: 0 10px;
    border-radius: 20px;
    position: relative;
    margin: 0 auto;
    font-size: 52px;
    background-color: var(--desc-bg-color);;
}
.price-with-options .price-with-options__price .price-with-options__price__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 10px solid var(--desc-bg-color);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.price-with-options .price-with-options__price__content{
      height: 150px;
      margin: 10px 0;
}
.price-with-options .price-with-options__price__content__discount {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.price-with-options .price-with-options__price__content__discount .discount {
    font-size: 60px;
    line-height: 1;
    padding-top: 14px;
}
.price-with-options .price-with-options__price__content__discount .off {
    line-height: 1;
    font-size: 30px;
}
.price-with-options .price-with-options__price .price-with-options__price__content__price {
    font-size: 146px;
    color: var(--price-color);
    height: 100%;
}
.price-with-options .price-with-options__price .price-with-options__price__content__comparePrice {
    font-size: 60px;
    color: #9b9a9a;
    font-weight: 400;
    text-decoration-thickness: from-font;
}
.price-with-options .price-with-options__button {
    font-size: 30px;
    border-radius: 30px;
    padding: 10px 20px;
}
@media (max-width: 800px) {
    .price-with-options .price-with-options__price .price-with-options__price__title {
        font-size: 2.06rem;
    }
    .price-with-options .price-with-options__price__content{
        height: 6.1rem;
        margin: 1rem 0;
    }
    .price-with-options .price-with-options__price .price-with-options__price__content__price {
        font-size: 5.77rem;
    }
    .price-with-options .price-with-options__price .price-with-options__price__content__comparePrice {
        font-size: 2.37rem;
    }
    .price-with-options .price-with-options__price__content__discount {
        width: 6.1rem;
        height: 6.1rem;
    }
    .price-with-options .price-with-options__price__content__discount .discount {
        font-size: 2.37rem;
        padding-top: 0.57rem;
    }
    .price-with-options .price-with-options__price__content__discount .off {
        font-size: 1.17rem;
    }
    .price-with-options .price-with-options__button {
        font-size: 1.172rem;
        border-radius: 1.172rem;
        padding: 0.39rem 1rem;
    }
}
  