.product-menu {
    position: fixed;
    top: 75px;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 76px;
    backdrop-filter: blur(50px);
    background: rgba(0, 0, 0, 0.2);
    /* background: rgb(0, 0, 0); */
    padding: 0 45px 0 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
}

.product-menu .btn-back {
    width: 14.2px;
    height: 13.17px;
}

.product-menu .right-menu {
    display: flex;
    align-items: center;
    height: 100%;
}

.product-menu .right-menu .parent-menu {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.product-menu .right-menu .parent-menu>a {
    display: flex;
    align-items: center;
    height: 100%;
    color: rgb(255, 255, 255);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: 0px;
    text-align: left;
    overflow: hidden;
    padding: 0 20px;
}

.product-menu .right-menu .parent-menu img {
    width: 16px;
    margin-right: 10px;
}

.product-menu .right-menu .parent-menu>a .number {
    position: absolute;
    left: 30px;
    top: 50%;
    z-index: 9;
    transform: translateY(-100%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(255, 139, 0);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
}

.product-menu .right-menu .parent-menu>a:hover {
    color: rgb(255, 139, 0);
    text-decoration: none;
}

.product-menu .right-menu .parent-menu>a:hover img {
    /* 第一步 设置阴影 选好颜色蓝色 */
    filter: drop-shadow(0px 50px rgb(255, 139, 0));
    /* 第二步 设置偏移 把蓝色图放置原图位置 */
    transform: translateY(-50px);
    color: rgb(255, 139, 0);
}

.product-menu .right-menu .parent-menu .dropdown-box {
    width: 146px;
    height: 180px;
    background: rgb(255, 255, 255);
    position: absolute;
    top: 66px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    display: none;
}

.product-menu .right-menu .parent-menu .dropdown-box li a {
    padding: 10px 20px;
    display: block;
    font-size: 12px;
    line-height: 1;
    color: rgb(15, 17, 17);
    font-weight: 400;
    letter-spacing: 0px;
}

.product-menu .right-menu .parent-menu .dropdown-box li a:hover {
    text-decoration: none;
    color: rgb(255, 139, 0);
}


.pro_details_crumbs {
    margin-bottom: 30px;
}

.pro_details_crumbs>p {
    line-height: 50px;
}

.pro_details_crumbs>p>a,
.pro_details_crumbs>p>span {
    margin-left: 15px;
    font-family: 'Montserrat';
    font-weight: 400;
    color: rgb(55, 55, 55);
    font-size: 13px;
    /* text-transform: capitalize; */
    text-decoration: none;
}

.pro_details_crumbs>p>a:nth-of-type(1) {
    margin-left: 0;
    text-transform: uppercase;
}

.pro_details_crumbs>p>a:last-of-type {
    font-weight: 600;
}

.pro_details_crumbs>p>span:nth-last-of-type(1) {
    display: none;
}

/* 星星评分 */
.star-rating {
    color: rgb(255, 139, 0);
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    white-space: nowrap;
}

.star-rating img {
    margin-right: 10px;
    width: 16px;
    height: 16px;
}

.star-rating img:last-of-type {
    margin-right: 10px !important;
}




.unfold_mask {
    display: none;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99998;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
}

.product_right_drawer {
    min-width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99999;
    background: rgb(255, 255, 255);
    padding: 60px 16px 30px;
    transform: translateX(300px);
    transition: transform 0.4s;
}

.product_right_drawer.unfold {
    transform: translateX(0px) !important;
}

.product_right_drawer .close-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    right: 17px;
    top: 17px;
}

.product_right_drawer .drawer-title {
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0px;
    margin-bottom: 25px;
}

.product_right_drawer.wish_list,
.product_right_drawer.compare_list {
    width: 300px;
    transform: translateX(300px);
}

.product_right_drawer .list {
    height: calc(100% - 110px);
    overflow-y: auto;
}

.product_right_drawer .drawer-footer button {
    width: 100%;
    height: 45px;
    background: rgb(255, 139, 0);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    margin: 15px auto 40px;
}



/* 心愿单 */
.wish_list .list li,
.compare_list .list li {
    margin-bottom: 25px;
    padding: 10px;
    display: flex;
}

.wish_list .list li:hover,
.compare_list .list li:hover {
    background: rgba(255, 139, 0, 0.1);
}

.wish_list .list li .product-img,
.compare_list .list li .product-img {
    width: 60px;
    height: 60px;
    margin-right: 12px;
    display: inline-block;
}

.wish_list .list li .right-box,
.compare_list .list li .right-box {
    flex: 1;
    min-width: 100px;
}

.wish_list .list li .name,
.compare_list .list li .name {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 5px;
}

.wish_list .list li .price,
.compare_list .list li .price {
    display: flex;
    align-items: center;
    color: rgb(158, 158, 166);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0px;
}

.wish_list .list li .price .current-price,
.compare_list .list li .price .current-price {
    color: rgb(255, 139, 0);
    font-weight: 700;
    margin-right: 4px;
}

.wish_list .list li .price .list-price,
.compare_list .list li .price .list-price {
    flex: 1;
    text-decoration-line: line-through;
}

.wish_list .list li .price .delete-icon,
.compare_list .list li .price .delete-icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}



/* 购物车 */
.shopping_cart .list {
    flex: 1;
}

.product_right_drawer.shopping_cart {
    width: 500px;
    transform: translateX(500px);
    display: flex;
    flex-direction: column;
}

.shopping_cart .list li {
    margin-bottom: 40px;
    padding-bottom: 25px;
    display: flex;
    border-bottom: 1px solid rgb(230, 230, 230);
}

.shopping_cart .list li:last-of-type {
    margin-bottom: 0;
}

.shopping_cart .list li input[type="checkbox"] {
    margin: 35px 13px 0 0;
}

.shopping_cart .list li .product-img {
    width: 90px;
    height: 90px;
    margin-right: 20px;
    display: inline-block;
}

.shopping_cart .list li .right-box {
    flex: 1;
    min-width: 100px;
}

.shopping_cart .list li .name {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 5px;
}

.shopping_cart .list li .size {
    color: rgb(125, 125, 125);
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    margin-bottom: 17px;
}

.shopping_cart .list li .price {
    display: flex;
    align-items: center;
    color: rgb(158, 158, 166);
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-bottom: 17px;
}

.shopping_cart .list li .price .current-price {
    color: rgb(255, 139, 0);
    font-weight: 700;
    margin-right: 4px;
}

.shopping_cart .list li .price .list-price {
    flex: 1;
    text-decoration-line: line-through;
}

.shopping_cart .list li .status-fa {
    display: flex;
    align-items: center;
}

.shopping_cart .list li .quantity_div {
    display: flex;
    align-items: center;
}

.shopping_cart .list li .quantity_div button,
.shopping_cart .list li .quantity_div input[type="number"] {
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background: rgb(242, 244, 244);
    color: rgb(0, 0, 0);
    font-size: 24px;
    margin-right: 7px;
}

.shopping_cart .list li .quantity_div button:disabled {
    color:  rgb(164, 165, 171);
    cursor: not-allowed;
}

.shopping_cart .list li .quantity_div input[type="number"] {
    font-size: 12px;
    font-weight: 700;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.shopping_cart .list li .inventory-status {
    color: rgb(255, 84, 3);
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    flex: 1;
    margin: 0 3px;
}

.shopping_cart .list li .like-icon {
    width: 13px;
    height: 12px;
    cursor: pointer;
    margin-right: 23px;
}

.shopping_cart .list li .delete-icon {
    width: 13px;
    height: 13px;
    cursor: pointer;
}

.shopping_cart .drawer-footer {
    margin-top: 27px;
}

.shopping_cart .drawer-footer .total-fa {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.shopping_cart .drawer-footer .total-fa #total {
    margin-right: 13px;
}

.shopping_cart .drawer-footer .total-fa #total+label {
    color: rgb(15, 17, 17);
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.shopping_cart .drawer-footer .total-fa .selected {
    flex: 1;
    color: rgb(15, 17, 17);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: right;
}

.shopping_cart .drawer-footer .total-fa .selected>span {
    flex: 1;
    color: rgb(255, 139, 0);
    text-align: right;
}

.shopping_cart .drawer-footer .payment-total {
    color: rgb(15, 17, 17);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.shopping_cart .drawer-footer .payment-total .amount {
    line-height: 36px;
    display: flex;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.shopping_cart .drawer-footer .payment-total .amount>span {
    font-size: 14px;
    line-height: inherit;
    margin-left: 12px;
}
.shopping_cart .drawer-footer .payment-total:last-of-type {
    font-weight: 600;
    margin-bottom: 0;
}

.shopping_cart .drawer-footer .payment-total:last-of-type .amount {
    color: rgb(255, 139, 0);
    font-size: 24px;
    font-weight: 700;
}

.shopping_cart .drawer-footer .payment-total:last-of-type .amount>span {
    line-height: 30px;
}
.shopping_cart .drawer-footer .off {
    color: rgb(255, 139, 0);
    font-size: 14px;
    font-weight: 400;
    line-height: 14px;
    text-align: right;
}

.shopping_cart .drawer-footer .btn-apply {
    margin: 20px auto 0;
}


/* 优惠券 */
.product_right_drawer.coupon_center {
    width: 400px;
    transform: translateX(400px);
}

.not-logged-in .drawer-title {
    text-align: center;
}

.not-logged-in .list p {
    color: rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: left;
    margin-bottom: 17px;
}

.not-logged-in .btn-log-in {
    width: 264px;
    height: 45px;
    line-height: 45px;
    background: rgb(255, 139, 0);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(50% - 22.5px);
}

/* 优惠券-已登录 */

.coupon_center .list li {
    height: 100px;
    margin-bottom: 20px;
    background: linear-gradient(270.00deg, rgb(255, 113, 11), rgb(255, 84, 3) 100%);
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.coupon_center .list li .left-box {
    width: calc(100% - 62px);
    height: 100%;
    border-right: 1px dashed rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 13px 8px 8px 10px;
    border-radius: 4px 0 0 4px;
}

.coupon_center .list li .left-box .d-flex {
    width: 100%;
}

.coupon_center .list li .left-box .amount {
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 700;
    line-height: 37px;
    letter-spacing: 0px;
    margin-bottom: 26px;
    margin-right: 9px;
    display: flex;
    width: 1.5em;
}

.coupon_center .list li .left-box .amount>span {
    font-size: 12px;
    line-height: 24px;
}

.coupon_center .list li .left-box .btn-coupon {
    width: 70px;
    height: 20px;
    background: linear-gradient(180.00deg, rgb(255, 246, 223), rgb(255, 255, 255) 100%);
    color: rgb(255, 111, 11);
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    text-align: center;
}

.coupon_center .list li {
    position: relative;
}

.coupon_center .list li::before,
.coupon_center .list li::after {
    content: '';
    position: absolute;
    right: 57px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fff;
}

.coupon_center .list li::before {
    bottom: -6px;
}

.coupon_center .list li::after {
    top: -6px;
}

.coupon_center .list li .right-box {
    height: 100%;
    width: 62px;
    background: rgb(255, 139, 0);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.coupon_center .list li .coupons-name {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    margin-bottom: 4px;
    margin-top: 5px;
}

.coupon_center .list li .limit {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    padding: 0 8px;
    display: inline-block;
    width: auto;
}

.coupon_center .list li .expiration-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    width: 100%;
    text-align: left;
}

.coupon_center .list li .left-gift-fa {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    padding: 10px 4px 6px 10px;
}

.coupon_center .list li .left-gift {
    width: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-right: 8px;
}

.coupon_center .list li .gift-img-fa {
    width: 60px;
    height: 60px;
    border-radius: 2px;
    background: rgb(255, 255, 255);
    padding: 3px;
}

.coupon_center .list li .gift-img-fa img {
    width: 54px;
    height: 54px;
}

.coupon_center .list li .left-gift-fa .btn-gift {
    width: 60px;
    height: 16px;
    border-radius: 40px;
    background: rgb(255, 139, 0);
    color: rgb(255, 255, 255);
    font-size: 9px;
    font-weight: 500;
    line-height: 11px;

}

.coupon_center .list li .right-gift .get-free {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 500;
    line-height: 10px;
    margin-bottom: 8px;
}


.coupon_center .list li .right-gift .limit {
    margin-bottom: 10px;
}


/* 比较列表  */
.compare_list .tips-info {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0px;
    text-align: justify;
    margin-bottom: 25px;
    margin-top: -15px;
}

.compare_list .list li {
    background: rgb(247, 247, 247);
}

/* 更多网站购买 */
.product_right_drawer.websites_list {
    width: 300px;
    transform: translateX(-300px);
    left: 0;
    right: auto;
}

.websites_list .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.websites_list .list li {
    width: calc(50% - 8px);
    margin-bottom: 20px;
}

.websites_list .list li img {
    width: 100%;
}
.websites_list .list li .hover-effect:hover .default-image {
    display: none;
}
.websites_list .list li .hover-effect .hover-image {
    display: none;
}
.websites_list .list li .hover-effect:hover .hover-image {
    display: block;
}

.websites_list .list li .wtb_nav_content_channel_name {
    color: rgb(0, 0, 0);
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
    text-align: center;
    margin-top: 8px;
}

.websites_list .list {
    height: auto;
    max-height: calc(100% - 60px);
}


/* 图片预览 */
.pswp .pswp__custom-caption {
    background: rgba(0, 0, 0,0.8);
    border-bottom: 1px solid #42403f;
    color: #ffffff;
    font-size: 13px;
    font-family: Montserrat;
    text-align: center;
    padding: 24px;
}