.paymentModalOverlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
}
/* .paymentModal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; 
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    display: none;
} */
.paymentContent{
    /* width: 540px; */
    width: 770px;
    height: 540px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.30);
    border-radius: 4px;
    padding: 0 30px;
    box-sizing: border-box;
    /* background-color: red; */
}
.paymentContentClose{
    width: 12px;
    height: 12px;
    /* background-color: red; */
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
}
.paymentContentHeader{
    width: 100%;
    height: 50px;
    /* background-color: aqua; */
    padding-top: 20px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
}
.paymentCommodityPrice{
    width: 100%;
    height: 285px;
    /* background-color: aqua; */
    display: flex;
    justify-content: space-between;
}
.paymentCommodityPriceItem{
    width: 170px;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    padding: 10px 0 0 10px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
}

.paymentCommodityPriceItemRecommend{
    width: 40%;
    height: 20px;
    background-color: #5855eb;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    line-height: 20px;
    font-size: 10px;
    color: #fff;
    box-sizing: border-box;
}




.paymentCommodityPriceItem:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background-color: #f8f9ff;
    z-index: 10;
}
.paymentCommodityPriceItemTitle{
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 600;
    margin-top: 10px;
    /* display: flex;
    justify-content: center; */
}
.paymentCommodityPriceItemPrice > span:nth-child(1),
.paymentCommodityPriceItemPrice > span:nth-child(2){
    font-family: PingFangSC-Medium;
    font-size: 25px;
    color: #333333;
    letter-spacing: 0;
    line-height: 50px;
    font-weight: 600;
}
.paymentCommodityPriceItemPrice > span:nth-child(3){
    font-family: PingFangSC-Medium;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    line-height: 50px;
    font-weight: 600;
}
.paymentCommodityPriceItemComment{
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #666666;
    letter-spacing: 0;
    font-weight: 400;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.paymentPaymentMethod{
    /* width: 470px; */
    width: 100%;
    height: 135px;
    /* background-color: aqua; */
    margin-top: 16px;
    border-top: 1px solid;
    border-image: linear-gradient(90deg, rgba(230,230,230,0.00) 0%, #E6E6E6 51%, rgba(230,230,230,0.00) 100%) 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.paymentPaymentMethodAmount{
    /* width: 167px; */
    height: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    /* padding-left: 10px; */
}
.paymentPaymentMethodType{
    /* width: 160px; */
    height: 100%;
    /* background-color: green; */
    margin-right: 20px;
    padding-top: 26px;
}
.paymentPaymentMethodQRBox{
    /* width: 100%; */
    /* flex: 1; */
    /* background-color: blue;; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.paymentPaymentMethodQR{
    width: 120px;
    height: 120px;
    /* margin-top: 13px; */
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.paymentPaymentMethodQR canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.paymentPaymentMethodAmountTitle{
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 500;
}
.paymentPaymentMethodAmountPrice{
    font-family: PingFangSC-Medium;
    font-size: 25px;
    color: #ef4444;
    letter-spacing: 0;
    font-weight: 600;
    margin: 10px 0;
}
.paymentPaymentMethodAmountType{
    font-family: PingFangSC-Regular;
    font-size: 12px;
    /* color: #333333; */
    letter-spacing: 0;
    font-weight: 500;
}
.paymentPaymentMethodType > div{
    /* width: 100%; */
    width: 160px;
    height: 42px;
    background: #FFFFFF;
    border: 1px solid #E6E6E6;
    border-radius: 4px;
    margin-bottom: 10px;
    font-family: PingFangSC-Regular;
    font-size: 14px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}
.paymentPaymentMethodWX > div:nth-child(1){
    width: 24px;
    height: 24px;
    /* background-color: red; */
    position: absolute;
    top: 50%;
    left: 13px;
    transform: translateY(-50%);
    /* background-image: url('/images/pay/wx1.png'); */
    background-size: 100% 100%;
}
.paymentPaymentMethodWX > div:nth-child(2){
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
}
.paymentPaymentMethodZFB > div:nth-child(1){
    width: 24px;
    height: 24px;
    /* background-color: red; */
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    /* background-image: url('/images/pay/zfb1.png'); */
    background-size: 100% 100%;
}
.paymentPaymentMethodZFB > div:nth-child(2){
    position: absolute;
    top: 50%;
    left: 55px;
    transform: translateY(-50%);
}
.paymentPaymentMethodAgreement{
    width: 100%;
    height: 20px;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.paymentPaymentMethodAgreementCheckbox{
    width: 12px;
    height: 12px;
    margin-right: 10px;
    cursor: pointer;
}
.paymentPaymentMethodAgreementText{
    font-family: PingFangSC-Regular;
    font-size: 12px;
    color: #333333;
    letter-spacing: 0;
    font-weight: 400;
}
.paymentPaymentMethodAgreementLink{
    color: #3449FF;
    cursor: pointer;
}
.paymentActive{
    border: 1px solid #3449FF !important;
}
[data-theme="dark"] .paymentContent{
    background: #333333;
    box-shadow: 0 0 2px 0 rgba(0,0,0,0.30);
}
[data-theme="dark"] .paymentContentHeader{
    color: #fff;
}
[data-theme="dark"] .paymentContentClose svg path{
    fill: #fff !important;
}
[data-theme="dark"] .paymentCommodityPriceItem{
    background: #333333;
    border: 1px solid #444444;
    border-radius: 4px;
}
[data-theme="dark"] .paymentCommodityPriceItem.paymentActive{
    background-color: #444;
}
[data-theme="dark"] .paymentCommodityPriceItemTitle{
    color: #fff;
}
[data-theme="dark"] .paymentCommodityPriceItemPrice span{
    color: #fff;
}
[data-theme="dark"] .paymentCommodityPriceItemComment{
    color: #fff;
}
[data-theme="dark"] .paymentPaymentMethod{
    border-image: linear-gradient(90deg, rgba(230,230,230,0.00) 0%, #282828 51%, rgba(230,230,230,0.00) 100%) 1;
}
[data-theme="dark"] .paymentPaymentMethodAmountTitle,
[data-theme="dark"] .paymentPaymentMethodAmountPrice,
[data-theme="dark"] .paymentPaymentMethodAmountType{
    color: #fff;
}
[data-theme="dark"] .paymentPaymentMethodWX,
[data-theme="dark"] .paymentPaymentMethodZFB{
    background: #333333;
    border: 1px solid #444444;
    border-radius: 4px;
    color: #fff;
}
[data-theme="dark"] .paymentPaymentMethodWX.paymentActive,
[data-theme="dark"] .paymentPaymentMethodZFB.paymentActive{
    background: #444;
}
[data-theme="dark"] .paymentPaymentMethodAgreementText,
[data-theme="dark"] .paymentPaymentMethodAgreementLink{
    color: #fff;
}
[data-theme="dark"] .paymentPaymentMethodAgreementCheckbox:checked{
    accent-color: #666;
}
[data-theme="dark"] .paymentPaymentMethodType svg path{
    fill: #fff !important;
}


/* .paymentPaymentMethodWX.paymentActive,
.paymentPaymentMethodZFB.paymentActive{
    background: #f01;
} */

.paymentCommodityPrice > div:nth-of-type(1){
    background-color: #f9faf4;
}
.paymentCommodityPrice > div:nth-of-type(2){
    background-color: #f8f7fd;
}
.paymentCommodityPrice > div:nth-of-type(3){
    background-color: #f7f7fc;
}
.paymentCommodityPrice > div:nth-of-type(4){
    background-color: #fcfbf7;
}



/* .paymentCommodityPriceItemTitle{
    position: relative;
} */

/* .paymentCommodityPriceItemTitle ::before{
    content: '1';
    width: 15px;
    height: 15px;
    background-color: red;
    position: absolute;
    top: 0;
    left: 0;最受欢迎 推荐
} */

.paymentCommodityPriceItemTitle{
    display: flex;
    align-items: center;
}

.paymentCommodityPriceItemTitle > div:nth-of-type(1){
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background-size: 100% 100%;
}

.paymentCommodityPrice > div:nth-of-type(1) .paymentCommodityPriceItemTitle > div:nth-of-type(1){
    background-image: url("/images/fhszsj-plat/fhszsj-home/limited_time.svg");
}
.paymentCommodityPrice > div:nth-of-type(2) .paymentCommodityPriceItemTitle > div:nth-of-type(1){
    background-image: url("/images/fhszsj-plat/fhszsj-home/lightning.svg");
}
.paymentCommodityPrice > div:nth-of-type(3) .paymentCommodityPriceItemTitle > div:nth-of-type(1){
    background-image: url("/images/fhszsj-plat/fhszsj-home/four_pointed_star.svg");
}
.paymentCommodityPrice > div:nth-of-type(4) .paymentCommodityPriceItemTitle > div:nth-of-type(1){
    background-image: url("/images/fhszsj-plat/fhszsj-home/crown.svg");
}

.paymentCommodityPrice > div:nth-of-type(1) .paymentCommodityPriceItemTitle{
    color: #d99a2a;
}
.paymentCommodityPrice > div:nth-of-type(2) .paymentCommodityPriceItemTitle{
    color: #8b5cf6;
}
.paymentCommodityPrice > div:nth-of-type(3) .paymentCommodityPriceItemTitle{
    color: #6a6cf1;
}
.paymentCommodityPrice > div:nth-of-type(4) .paymentCommodityPriceItemTitle{
    color: #f59f10;
}


.paymentCommodityPriceItemCommentIcon{
    width: 15px;
    height: 15px;
    margin-right: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 80% 80%;
    background-repeat: no-repeat;
    background-position: center;
}

.paymentCommodityPrice > div:nth-of-type(1) .paymentCommodityPriceItemCommentIcon{
    background-color: #f7efdb;
    background-image: url("/images/fhszsj-plat/fhszsj-home/tick3.svg");
}

.paymentCommodityPrice > div:nth-of-type(2) .paymentCommodityPriceItemCommentIcon{
    background-color: #ebe5fb;
    background-image: url("/images/fhszsj-plat/fhszsj-home/tick1.svg");
}

.paymentCommodityPrice > div:nth-of-type(3) .paymentCommodityPriceItemCommentIcon{
    background-color: #e3e4fa;
    background-image: url("/images/fhszsj-plat/fhszsj-home/tick2.svg");
}

.paymentCommodityPrice > div:nth-of-type(4) .paymentCommodityPriceItemCommentIcon{
    background-color: #fbf2d9;
    background-image: url("/images/fhszsj-plat/fhszsj-home/tick3.svg");
}


