.cart-freight-insurance{
    padding: 10px;
    display: flex;
    justify-content: space-between;
}
.cart-freight-insurance-price{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.freight-insurance-check{
    width: 49px;
    height: 25px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}
.freight-insurance-check .sliding-block{
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s;
}
[data-check="true"]{
    background-color: #987FFF;
}
[data-check="true"] .sliding-block{
    top: 2px;
    left: calc(100% - 2px);
    transform: translateX(-100%);
}
[data-check="false"]{
    background-color: rgba(41, 37, 44,0.1);
}
[data-check="false"] .sliding-block{
    top: 2px;
    left: 2px;
}
.freight-insurance-price{
    font-size: 18px;
    font-weight: 500;
    color: #987FFF;
    margin: 0;
}
.cart-freight-insurance-content{
    margin-left: 12px;
}
.freight-insurance-title{
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    margin-bottom: 12px;
}
.freight-insurance-des{
    font-size: 14px;
    font-weight: 500;
    color: rgba(41, 37, 44,0.6);
    margin: 0;
}