#shipping-calculator-module {
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    padding: 15px 20px;
    margin: 25px 0 0;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

#shipping-calculator-module:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#shipping-calculator-module h4 {
    margin: 0;
    cursor: pointer;
    padding:0 10px;
    font-size: 16px;
    color: #7a7a7a;
    position: relative;
    user-select: none;
    transition: color 0.3s ease;
}

#shipping-calculator-module h4::after {
    content: "▼";
    position: absolute;
    right: 12px;
    top: 4px;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.4s ease;
}

#shipping-calculator-module h4.active {
    color: #5869fa;
}

#shipping-calculator-module h4.active::after {
    transform: rotate(-180deg);
}

#shipping-calculator-module .sc-box {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0;
    transition: max-height 0.6s ease, opacity 0.6s ease, padding 0.4s ease;
}

#shipping-calculator-module .sc-box.open {
    max-height: 500px; /* 足够内容高度 */
    opacity: 1;
    padding: 10px 20px;
}

#shipping-calculator-module .sc-box label {
    display: none;
}

#shipping-calculator-module .sc-box select {
    margin: 10px 0;
}

#shipping-calculator-module .sc-results p {
    margin: 5px 0;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

#shipping-calculator-module .sc-results strong {
    color: #222;
    font-weight: bold;
}
