
#goods-placehold {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#goods-placehold .row {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 31rem;
    text-align: center;
    box-sizing: border-box;
    padding: 0 1rem;
    justify-content: center;
    align-items: stretch;
}

#goods-placehold .row .col {
    flex: 0 1 calc(50% - 0.5rem);
    min-height: 15.7rem;
    padding: 1.55rem 1rem 1.5rem;
    border-radius: 1.45rem;
    border: 0.28rem solid transparent;
    background-color: #fff;
    color: initial;
    font-size: 1.2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-shadow: 0 12px 28px rgba(23, 82, 104, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#goods-placehold .row .col .choose {
    display: none;
    background-color: #876298;
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    width: 3.55rem;
    height: 3rem;
    border-top-left-radius: 1.45rem;
    border-bottom-right-radius: 1.15rem;
    align-items: center;
    justify-content: center;
}

#goods-placehold .row .col_active {
    border-color: #876298;
    box-shadow: 0 18px 36px rgba(88, 65, 122, 0.24);
    transform: translateY(-0.15rem);
}

#goods-placehold .row .col .img {
    height: 5.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
}

#goods-placehold .row .col .img img {
    width: 5.15rem;
    height: 5.15rem;
    object-fit: contain;
}

#goods-placehold .row .col .h_1 {
    font-size: 1rem;
    line-height: 1.25;
    color: #5c6172;
    font-weight: 600;
    letter-spacing: 0.02em;
}

#goods-placehold .row .col .h_2 {
    margin-top: 0.1rem;
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    line-height: 1;
    color: #2f3147;
    font-weight: 800;
    letter-spacing: -0.04em;
}

#goods-placehold .row .statistics {
    margin-top: auto;
    padding-top: 1.05rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #8d8bb3;
    line-height: 1.15;
}

#goods-placehold .row .statistics .statistics_label {
    font-size: 0.84rem;
    letter-spacing: 0.03em;
    color: #8480aa;
}

#goods-placehold .row .statistics .statistics_value {
    font-size: 1.18rem;
    font-weight: 700;
    color: #66618f;
}

.button{
    display: inline-block;
    min-width: 9.8rem;
    text-align: center;
    line-height: 1;
    padding: 1.02rem 1.15rem;
    background: linear-gradient(180deg, #94d0e2 0%, #6fb4c8 100%);
    border-radius: 0.95rem;
    margin-top: 1.55rem;
    font-size: 1.12rem;
    font-weight: 600;
    color: #fff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.34),
        inset 0 -2px 0 rgba(0, 0, 0, 0.14),
        0 14px 28px rgba(70, 159, 188, 0.22);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

#goods-placehold .actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    align-items: stretch;
}

#goods-placehold .actions .button p {
    margin: 0;
}

#goods-placehold .actions .button_notice {
    min-width: 10rem;
    background: linear-gradient(180deg, #8ccfe3 0%, #67adc2 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        inset 0 -2px 0 rgba(0, 0, 0, 0.16),
        0 14px 28px rgba(69, 160, 190, 0.24);
}

#goods-placehold .actions .button_notice .notice_btn {
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

#goods-placehold .actions .button_primary {
    min-width: 12.4rem;
    padding: 1.08rem 1.65rem;
    background: linear-gradient(180deg, #a57abb 0%, #876298 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        inset 0 -2px 0 rgba(0, 0, 0, 0.18),
        0 16px 30px rgba(110, 74, 128, 0.28);
}

#goods-placehold .actions .button_primary .button_text {
    font-size: 1.34rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

#goods-placehold .actions .button_primary {
    cursor: pointer;
    user-select: none;
}

#goods-placehold .actions .button_primary.is-loading {
    opacity: 0.88;
    pointer-events: none;
}

body.modal-open {
    overflow: hidden;
}

.notice-modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(13, 24, 40, 0.54);
    z-index: 1200;
    box-sizing: border-box;
}

.notice-modal {
    width: min(33rem, 100%);
    max-height: min(85vh, 42rem);
    background: #ffffff;
    border-radius: 1.3rem;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.24);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.notice-modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #475569;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.notice-modal-head {
    padding: 1.35rem 1.35rem 0.75rem;
    text-align: center;
}

.notice-modal-head h3 {
    font-size: 1.35rem;
    color: #2f3147;
}

.notice-modal-body {
    padding: 0 1.35rem 1.2rem;
    overflow-y: auto;
    color: #455065;
    line-height: 1.75;
    font-size: 0.95rem;
}

.notice-modal-body p + p,
.notice-point + .notice-point {
    margin-top: 0.9rem;
}

.notice-point-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2f3147;
    margin-bottom: 0.3rem;
}

.notice-modal-body strong {
    color: #2b2d42;
    font-weight: 700;
}

.notice-modal-foot {
    padding: 0.95rem 1.35rem 1.35rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0) 0%, #f8fafc 58%);
}

.notice-modal-cta {
    width: 100%;
    border: none;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(180deg, #9d71b1 0%, #88609b 100%);
    color: #fff;
    font-size: 1.08rem;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(110, 74, 128, 0.22);
    cursor: pointer;
}

.notice-modal-cta:disabled {
    opacity: 0.78;
    cursor: default;
}

@media screen and (max-width: 400px) {
    #goods-placehold .row {
        gap: 0.75rem;
        padding: 0 0.75rem;
    }

    #goods-placehold .row .col {
        min-height: 14.7rem;
        padding: 1.35rem 0.8rem 1.25rem;
    }

    #goods-placehold .row .col .img {
        height: 5rem;
    }

    #goods-placehold .row .col .img img {
        width: 4.5rem;
        height: 4.5rem;
    }

    #goods-placehold .row .col .h_2 {
        font-size: 2rem;
    }

    #goods-placehold .row .col .h_1 {
        font-size: 0.96rem;
    }

    #goods-placehold .row .statistics {
        padding-top: 0.95rem;
    }

    #goods-placehold .row .statistics .statistics_label {
        font-size: 0.78rem;
    }

    #goods-placehold .row .statistics .statistics_value {
        font-size: 1.08rem;
    }

    .button {
        min-width: 0;
        flex: 1;
        padding: 1.02rem 0.9rem;
        font-size: 1.02rem;
    }

    #goods-placehold .actions .button_notice {
        min-width: 0;
    }

    #goods-placehold .actions .button_notice .notice_btn {
        font-size: 0.96rem;
    }

    #goods-placehold .actions .button_primary {
        min-width: 12.8rem;
        max-width: none;
        padding: 1.06rem 1.2rem;
    }

    #goods-placehold .actions .button_primary .button_text {
        font-size: 1.18rem;
    }

    .notice-modal {
        width: 100%;
        max-height: 86vh;
        border-radius: 1.05rem;
    }

    .notice-modal-head {
        padding: 1.2rem 1.05rem 0.65rem;
    }

    .notice-modal-head h3 {
        font-size: 1.2rem;
    }

    .notice-modal-body {
        padding: 0 1.05rem 1.05rem;
        font-size: 0.9rem;
    }

    .notice-point-title {
        font-size: 0.96rem;
    }

    .notice-modal-foot {
        padding: 0.85rem 1.05rem 1.05rem;
    }

    .notice-modal-cta {
        font-size: 1rem;
    }
}


.text_center{
    margin-top: 20px;
}
.font_blue {
    color: rgb(66 152 180)
}

.border_solid {
    border-radius: 1rem;
    border: 2px solid rgb(246 246 246);
    margin-top: 2rem;
}
.border_b {
    border-bottom: 2px solid rgb(246 246 246);
}
.main .line_height_4 {
    line-height: 4rem;
}
.text{
    text-align: left;
    padding: .8rem 1.8rem;
}

.text p{
    margin: 1rem 0;
}

/* 找回报告按钮 */
.retrieve-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #8663c9, #6c5ce7);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(134, 99, 201, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.retrieve-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(134, 99, 201, 0.4);
}

.retrieve-button-inner {
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    #goods-placehold .actions .button_notice {
        min-width: 9.6rem;
    }

    #goods-placehold .actions .button_notice .notice_btn {
        font-size: 1rem;
    }

    #goods-placehold .actions .button_primary {
        min-width: 13.3rem;
        padding: 1.14rem 1.45rem;
    }

    #goods-placehold .actions .button_primary .button_text {
        font-size: 1.24rem;
    }

    .retrieve-button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }

    .retrieve-button-inner {
        font-size: 10px;
    }
}
