
@media screen and (min-width:751px) {
    .m-20{
        margin: 20px;
    }

    body{
        font-size: 16px;
        line-height: 1.8;
        font-weight: normal;
        font-family: "Poppins", Arial, sans-serif;
    }
    .car-content{
        width: 1200px;
        margin: auto;
    }
    .car-header {
        list-style: none;  /* 取消默认样式 */
        display: flex; /* 使用flex */
        counter-reset: steps;
        margin: 45px 0;
    }
    .car-header  li {
        flex-grow: 1;
        display: flex;
        justify-content: center;
        position: relative;
        align-items: center;
    }
    
    .car-header  li::before {
        width: 20px;  /* 步骤圆的宽 */
        height: 20px; /* 步骤圆的高 */
        line-height: 20px;
        background: #bcbcbc; /* 里面的小圆 */
        box-shadow: 0 0 0 0.5rem #bcbcbc, 0 0 0 1rem transparent; /* 两层投影 改变投影颜色就可以实现步骤的不同状态 这里默认未完成状态 */
        border-radius: 50%; /* 设置形状为原型 */
        margin: 7px; /* 没有设置margin的话，会位置不正确，因为投影不占用位置，而这里投影确实需要占用，所以手动给margin */
        display: block; /* 需要设置为块级 不然不生效*/
        counter-increment: steps; /* 使 steps 自增 */
        content: counter(steps); /* 修改content的内容为steps的值 */
    
        /* 使 步骤数字水平垂直居中，并设置字号 */
        display: flex;
        color: white;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        position: relative;
        z-index: 1;
    }
    
    .car-header li:nth-child(n+2):after {
        content: '';
        height: 2px;
        width: 100%;
        background: #bcbcbc;
        position: absolute;
        left: -50%;
    }
    
    .car-header li div {
        color: black;
    }
    .car-header li div:before {
        content: attr(data-text);
        color: inherit;
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .car-header  li.active:nth-child(n+2)::after {
        background: #00bc9b;
    }
    
    .car-header  li.active::before {
        background: #00bc9b;
        box-shadow: 0 0 0 3.5px rgb(255 255 255), 0 0 0 7px #00bc9b;
    }

    .car-header .car-procedure{
        color: #000;
    }
    .car-div{
        display: flex;
        justify-content: space-between;
    }
    .car-left,
    .car-info-left{
        width: 900px;
    }

    /* car.css */
    .car-left>div{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .car-left .car-left-head{
        font-size: 18px;
        background-color: #f3f3f3;
        border-bottom:1px solid #00bc9b;
    }
    .car-left .car-left-head div{
        padding: 8px;
        box-sizing: border-box;
    }
    .car-left .car-cont {
        display: flex;
        overflow: hidden;
        flex-direction: column;
    }

    .w80{
        width: 80px;
        justify-content: center;
    }
    .w120{
        width: 120px;
    }
    .length {
        flex: 1 !important;
    }

    .length p a,.length p span{
        display: block;
    }


    .car-left-title, .car-right-title,.block-title{
        position: relative;
        padding: 8px;
        padding-left: 0;
        font-size: 18px;
        border-bottom: 1px solid #ccc;
    }

    .car-left-title::before, .car-right-title::before,.block-title::before{
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 200px;
        height: 1px;
        background-color: #00bc9b;
    }

    .car-left .car-cont .cart-item{
        display: flex;
        width: 100%;
        box-sizing: border-box;
        align-items: center;
        border: 1px solid #f3f3f3;
        margin-top: 20px;
    }

    .car-cont .cart-item>div{
        display: flex;
        align-items: center;
    }
    .car-left .car-cont .cart-item .cart-item-one>div,
    .car-left .car-cont .cart-item .cart-item-two>div{
        display: flex;
        padding: 10px;
        display: flex;
        box-sizing: border-box;
        font-size: 14px;
        border: none;
    }

    .cart-item .remove::after,.cart-item .remove::before{
        content: "";
        cursor: pointer;
        display: inline-block;
        width: 15px;
        height: 2px;
        border-radius: 3px;
        transition: transform 0.3s;
        background-color: #484848;
    }

    .cart-item .remove{
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    input[type="checkbox"],input[type="radio"]{
        position: absolute;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
    }

    .cart-item .checkbox-label{
        display: inline-block;
        border: 1px solid silver;
        text-align: center;
        width: 15px;
        height: 15px;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
    }

    .cart-item input[type="checkbox"]:checked~.checkbox-label::before{
        content: "\2713";
        color: #ff3f68;
        display: inline-block;
        transform: translateY(-2px);
    }

    .cart-item input[type="checkbox"]:checked~.checkbox-label{
        border-color: #ff3f68;
    }

    .cart-item .remove::after{
        transform: translateX(-50%) rotate(-45deg);
    }

    .cart-item .remove::before{
        transform: translateX(50%) rotate(45deg);
    }

    .cart-item .remove:hover::after,.cart-item .remove:hover::before{
        background-color: #ff3f68;
    }

    .cart-item .remove:hover::after{
        transform: translateX(-50%) rotate(45deg);
    }

    .cart-item .remove:hover::before{
        transform: translateX(50%) rotate(-45deg);
    }

    .cart-item img{
        width: 100px;
        max-height: 120px;
        object-fit: contain;
    }

    .car-left .car-cont .car-number-val{
        display: flex;
        position: relative;
        height: 34px;
        border-radius: 5px;
        border: 1px solid #ccc;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: 80px;
    }

    .car-number-val input{
        border: none;
        outline: none;
        padding: 10px 15px;
        width: 100%;
        font-size: 14px;
        background-color: transparent;
    }

    .car-number-val div{
        display: flex;
        flex-direction: column;
        align-items: center;
        border-left: 1px solid #ccc;
    }

    .car-number-val div span{
        padding-left: 5px;
        padding-right: 5px;
        height: 18px;
        display: inline-block;
        width: 100%;
        font-size: 12px;
        text-align: center;
        user-select: none;
        box-sizing: border-box;
    }

    .destroy{
        animation-duration: 1s;
        animation-delay: .33s;
        animation-name: removeSelf;
        background-color: #f5f5f5;
    }

    @keyframes removeSelf {
        0% {
            opacity: 1;
            transform: translate(0);
        }
        5% {
            transform: translate(-5%);
        }
        10% {
            transform: translate(-10%);
        }
        30%{
            transform: translate(-40%);
        }
        100% {
            opacity: 0;
            transform: translate(100%);
            display: none;
        }
    }

    .car-number-val div .reduce_val{
        border-bottom: 1px solid #ccc;
    }

    .car-number-val div span:hover{
        cursor: pointer;
        background-color: #ccc;
    }

    .car-number-val .reduce_val:active, .car-number-val .plus_val:active{
        color: #fff;
        background-color: #888;
    }

    .car-right{
        width: 280px;
    }

    .car-right .car-right-block-div{
        align-items: center;
        line-height: 24px;
        padding: 10px 0;
        border-top: 1px solid #ccc;
    }

    .car-right-block-div .coupon_code{
        display: flex;
        align-items: center;
        border-radius: 5px;
        box-sizing: border-box;
        overflow: hidden;
        margin-top: 10px;
        border: 1px solid #b2b2b2;
    }

    .coupon_code:focus-within{
        border: 1px solid #ff3f68;
    }

    .coupon_code input{
        width: 100%;
        border: #000;
        outline: none;
        font-size: 14px;
        padding: 7px 10px;
        color: #666;
        background-color: transparent;
    }

    .coupon_code:focus-within span{
        background: #ff3f68;
    }

    .coupon_code span{
        color: #fff;
        cursor: pointer;
        font-size: 12px;
        padding: 4px 7px;
        background-color: #ff3f68;
    }

    .car-right .car-right-div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 24px;
        padding: 10px 0;
        font-size: 14px;
        border-top: 1px solid #ccc;
    }

    .car-right .car-right-div:nth-child(2){
        border: none;
    }

    .car-right-div p {
        font-size: 12px;
        padding: 10px 0;
        align-items: center;
        border-bottom: 1px dashed #eee;
        justify-content: space-between;
    }

    .car-right-div p a{
        color: #666;
        flex: 1;
    }

    .car-right-div p a:hover{
        color: #ff3f68;
        text-decoration: underline;
    }

    .car-right-div p span{
        font-size: 14px;
        display: inline-flex;
        height: 100%;
        margin-left: 15px;
    }

    .car-right-div p:last-child{
        padding-bottom: 0;
        border: none;
    }

    .car-right .right-color{
        color: #ff3f68;
        font-size: 16px;
        font-weight: bold;
    }
    .car-right p .btn-default{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        color: #fff;
        background-color: #46ab78;
        border-radius: 3px;
    }
    .car-right p .btn-primary{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        color: #fff;
        background-color: #2f90de;
        border-radius: 3px;
    }
    .car-right .car-right-text{
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #666;
    }


    /* car-info.css */
    .car-info-left .address-info {
        margin-top: 20px;
        padding: 20px;
        position: relative;
        border-radius: 5px;
        background-color: #efefef;
    }

    .address-info .more-address{
        position: absolute;
        width: 100%;
        left: 0;
        box-sizing: border-box;
        z-index: 1;
        max-height: 600px;
        background-color: #efefef;
        box-shadow: 0px 10px 5px -2px rgb(0 0 0 / 30%);
        /* border: 1px solid #efefef; */
        /* border-top: none; */
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        overflow: hidden;
    }

    .more-address .address-item{
        position: relative;
        padding: 20px;
    }

    .more-address .address-item:hover{
        background-color: aliceblue;
    }

    .more-address .address-item:last-child{
        border: none;
    }

    .arrow-down.active~.more-address{
        animation: movein .5s ease-in-out;
    }

    .arrow-down~.more-address {
        animation: moveout .5s ease-out;
    }

    @keyframes movein {
        from{
            transform: translateY(-20%);
            opacity: 0;
        }
    }

    @keyframes moveout {
        from{
            transform: translateY(5%);
            opacity: 1;
        }
        to{
            transform: translateY(-50%);
            opacity: 0;
        }
    }

    .car-info-left .address-info .user-info{
        vertical-align: middle;
        font-size: 16px;
    }

    .car-info-left .address-info img{
        margin-right: 4px;
        max-width: 24px;
        max-height: 24px;
        height: 100%;
        padding: 2px;
        box-sizing: border-box;
        margin-top: -2px;
    }

    /* .car-info-left .address-info::before,.car-info-left .more-address::before{
        position: absolute;
	    right: 0;
	    left: 0;
	    height: 2px;
	    background: repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);
	    background-size: 80px;
	    content: "";
    } */
    .car-info-left .address-info::before{
        position: absolute;
	    right: 0;
	    left: 0;
        bottom: 0;
	    height: 2px;
	    background: repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);
	    background-size: 80px;
	    content: "";
        z-index: 2;
    }
    .car-info-left .more-address::before{
        top: 0;
    }

    .car-info-left .address-info .arrow-down{
        width: 30px;
        height: 30px;
        cursor: pointer;
        background-image: url('/static/images/down.png');
        transform: rotate(-90deg);
        background-repeat: no-repeat;
        background-position: center;
        transition: all .5s;
    }

    .arrow-down.active{
        transform: none !important;
    }

    .car-info-left .car-info-form p{
        margin-top: 10px;
    }
    .car-info-left .car-info-form p input[type=text]{
        width: 100%;
        height: 40px;
        text-indent: 10px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }
    .car-info-left .car-info-form p select{
        width: 100%;
        height: 40px;
        padding: 0 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }

    .car-info-left .car-info-form p textarea{
        width: 100%;
        padding: 10px;
        height: 120px;
        font-size: 16px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
        resize: none;
    }

    .car-info-left .car-info-form p textarea::placeholder{
        font-size: 14px;
    }

    .car-info-left .car-info-form .car-info-title{
        font-size: 14px;
        font-weight: 600;
        text-transform: capitalize;
    }
    .car-info-left .car-info-form .info-text{
        font-size: 14px;
        color: #666;
        margin-top: 10px;
    }
    .car-info-left .car-info-form .info-text input{
        margin-right: 10px;
    }

    .car-info-left .car-info-form div{
        display: flex;
        justify-content: space-between;
    }
    .car-info-left .car-info-form .info-two p{
        width: 49%;
    }
    .car-info-left .car-info-form .info-three p{
        width: 32%;
    }
    .info-sub{
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
    .info-sub a:hover{
        color: #2f90de;
    }
    .info-sub a img{
        width: 30px;
        margin-right: 5px;
        margin-top: -3px;
    }
    .info-sub span{
        display: inline-block;
        padding: 8px 20px;
        background-color: #000;
        color: #fff;
        cursor: pointer;
    }


    .car-block{
        padding-top: 20px;
    }

    .block-content{
        padding-top: 20px;
    }

    .block-content .item{
        position: relative;
        margin-bottom: 20px;
        border-radius: 5px;
        overflow: hidden;
    }

    .item label{
        line-height: 20px;
        padding: 10px 40px 10px 20px;
        background-color: #efefef;
    }

    .address-item label::before, .item label::before{
        content: "";
        top: 50%;
        right: 16px;
        width: 16px;
        height: 16px;
        position: absolute;
        border-radius: 50%;
        background-color: #fff;
        transform: translateY(-50%);
    }

    .item input[type='radio']:checked~label{
        color: #fff;
        background-color: #00bc9b;
    }

    .address-item input[type='radio']:checked~label::after,.item input[type='radio']:checked~label::after{
        content: "";
        top: 50%;
        right: 19px;
        width: 10px;
        height: 10px;
        position: absolute;
        border-radius: 50%;
        transform: translateY(-50%);
        background-color: #00bc9b;
    }

    .block-content .item:last-child{
        margin-bottom: 0;
    }

    .block-content .item-name {
        font-size: 18px;
    }

    .block-content .item-intro {
        font-size: 14px;
        padding-right: 20px;
        color: #666;
    }

    .item input[type='radio']:checked~label .item-intro{
        color: rgba(255, 255, 255, 0.8)
    }

    .fee {
        font-size: 18px;
    }

    .radio-group {
        overflow: hidden;
        position: relative;
        border-radius: 5px;
        margin-right: 20px;
        margin-bottom: 20px;
        width: calc(50% - 10px);
    }

    .radio-group:nth-child(2n) {
        margin-right: 0;
    }

    .radio-group img{
        margin-left: 5px;
        height: 100%;
        max-height: 26px;
    }

    .radio-group .radio-label{
        display: flex;
        cursor: pointer;
        padding: 10px 20px 10px 40px;
        background-color: #efefef;
    }

    .radio-label,.radio-label span{
        vertical-align: middle;
    }

    .radio-label::before{
        content: "";
        top: 50%;
        left: 16px;
        width: 16px;
        height: 16px;
        position: absolute;
        border-radius: 50%;
        background-color: #fff;
        transform: translateY(-50%);
    }

    .radio-box:checked~.radio-label{
        color: #fff;
        background-color: #00bc9b;
    }

    .radio-box:checked~.radio-label::after{
        content: "";
        top: 50%;
        left: 19px;
        width: 10px;
        height: 10px;
        position: absolute;
        border-radius: 50%;
        transform: translateY(-50%);
        background-color: #00bc9b;
    }

    .info-car{
        display: flex;
        justify-content: space-between;
    }
    .info-car div{
        width: calc(100% - 105px);
        display: flex;
        justify-content: space-between;
    }
    .info-car div img{
        width: 65px;
        margin-right: 10px;
    }
    .info-car div p{
        width: calc(100% - 75px);
        font-size: 15px;
        color: #ff3f68;
    }
    .info-car span{
        display: inline-block;
        width: 90px;
        text-align: right;
    }
    
    .info-money{
        display: flex;
        justify-content: space-between;
        color: #666;
        font-size: 14px;
        padding: 10px 0;
        line-height: 26px;
        margin-top: 10px;
        border-top: 1px solid #ccc;
    }
    .info-money p span{
        display: inline-block;
        width: 100%;
        text-align: right;
        font-size: 16px;
        color: #000;
        font-weight: bold;
    }
    .info-number{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #333;
        padding-top: 10px;
        border-top: 1px solid #ccc;
    }
}



@media screen and (max-width:750px) {

    
    .car-content{
        margin: 0 10px;
    }
    .car-header{
        display: none;
    }

    /* 修改之后的car.css */
    .car-div{
        margin: 0 10px ;
    }
    .car-left{
        width: 100%;
    }
    .car-info-left{
        width: 100%;
    }

    /* car.css */
    .car-left>div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .car-left .car-left-head{
        display: none;
        background-color: #f3f3f3;
        border-bottom:1px solid #00bc9b;
    }
    .car-left .car-left-head div{
        padding: 8px;
        box-sizing: border-box;
    }
    .mod-hidden{
        display: none;
    }
    .car-left .car-cont {
        display: flex;
        overflow: hidden;
        flex-direction: column;
    }

    /* .w80{
        width: 80px;
        justify-content: center;
    }
    .w120{
        width: 120px;
    } */
    .length {
        flex: 1 !important;
        margin-bottom: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .length p a,.length p span{
        display: block;
        font-size: 12px;
    }


    .car-left-title, .car-right-title,.block-title{
        position: relative;
        margin-bottom: 5px;
        padding: 8px;
        padding-left: 0;
        font-size: 18px;
        border-bottom: 1px solid #ccc;
    }

    .car-left-title::before, .car-right-title::before,.block-title::before{
        content: '';
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 200px;
        height: 1px;
        background-color: #00bc9b;
    }

    .car-left .car-cont .cart-item{
        display: flex;
        width: 100%;
        padding: 10px 5px;
        box-sizing: border-box;
        align-items: center;
        border: 1px solid #f3f3f3;
        margin-top: 20px;
    }

    .car-cont .cart-item .cart-item-one{
        /* padding: 10px; */
        display: flex;
        align-items: center;
        box-sizing: border-box;
        font-size: 14px;
        border: none;
    }

    .car-cont .cart-item .cart-item-two{
        position: relative;
    }

    .cart-item .remove::after,.cart-item .remove::before{
        content: "";
        cursor: pointer;
        display: inline-block;
        width: 15px;
        height: 2px;
        border-radius: 3px;
        transition: transform 0.3s;
        background-color: #484848;
    }

    /* .cart-item .car-remove{
        display: none;
    } */
    .cart-item .remove{
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: inline-block;
        position: absolute;
        right: 20px;
        bottom: 30px;
    }

    input[type="checkbox"],input[type="radio"]{
        position: absolute;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
    }

    .cart-item .checkbox-label{
        display: inline-block;
        border: 1px solid silver;
        text-align: center;
        width: 15px;
        height: 15px;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
    }

    .cart-item input[type="checkbox"]:checked~.checkbox-label::before{
        content: "\2713";
        color: #ff3f68;
        display: inline-block;
        transform: translateY(-2px);
    }

    .cart-item input[type="checkbox"]:checked~.checkbox-label{
        border-color: #ff3f68;
    }

    .cart-item .remove::after{
        transform: translateX(-50%) rotate(-45deg);
    }

    .cart-item .remove::before{
        transform: translateX(50%) rotate(45deg);
    }

    .cart-item .remove:hover::after,.cart-item .remove:hover::before{
        background-color: #ff3f68;
    }

    .cart-item .remove:hover::after{
        transform: translateX(-50%) rotate(45deg);
    }

    .cart-item .remove:hover::before{
        transform: translateX(50%) rotate(-45deg);
    }

    .cart-item img{
        width: 100px;
        max-height: 120px;
        object-fit: contain;
    }

    .car-left .car-cont .car-number-val{
        margin: 5px 0;
        display: flex;
        position: relative;
        height: 34px;
        border-radius: 5px;
        border: 1px solid #ccc;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        width: 80px;
    }

    .car-number-val input{
        border: none;
        outline: none;
        padding: 10px 15px;
        width: 100%;
        font-size: 14px;
        background-color: transparent;
    }

    .car-number-val div{
        display: flex;
        flex-direction: column;
        align-items: center;
        border-left: 1px solid #ccc;
    }

    .car-number-val div span{
        padding-left: 5px;
        padding-right: 5px;
        height: 18px;
        display: inline-block;
        width: 100%;
        font-size: 12px;
        text-align: center;
        user-select: none;
        box-sizing: border-box;
    }

    .destroy{
        animation-duration: 1s;
        animation-delay: .33s;
        animation-name: removeSelf;
        background-color: #f5f5f5;
    }

    @keyframes removeSelf {
        0% {
            opacity: 1;
            transform: translate(0);
        }
        5% {
            transform: translate(-5%);
        }
        10% {
            transform: translate(-10%);
        }
        30%{
            transform: translate(-40%);
        }
        100% {
            opacity: 0;
            transform: translate(100%);
            display: none;
        }
    }

    .car-number-val div .reduce_val{
        border-bottom: 1px solid #ccc;
    }

    .car-number-val div span:hover{
        cursor: pointer;
        background-color: #ccc;
    }

    .car-number-val .reduce_val:active, .car-number-val .plus_val:active{
        color: #fff;
        background-color: #888;
    }

    .car-right{
        width: 100%;
    }

    .car-right .car-right-block-div{
        align-items: center;
        line-height: 24px;
        padding: 10px 0;
        border-top: 1px solid #ccc;
    }

    .car-right-block-div .coupon_code{
        display: flex;
        align-items: center;
        border-radius: 5px;
        box-sizing: border-box;
        overflow: hidden;
        margin-top: 10px;
        border: 1px solid #b2b2b2;
    }

    .coupon_code:focus-within{
        border: 1px solid #ff3f68;
    }

    .coupon_code input{
        width: 100%;
        border: #000;
        outline: none;
        font-size: 14px;
        padding: 7px 10px;
        color: #666;
        background-color: transparent;
    }

    .coupon_code:focus-within span{
        background: #ff3f68;
    }

    .coupon_code span{
        color: #fff;
        cursor: pointer;
        font-size: 12px;
        padding: 4px 7px;
        background-color: #ff3f68;
    }

    .car-right .car-right-div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 24px;
        padding: 10px 0;
        font-size: 14px;
        border-top: 1px solid #ccc;
    }

    .car-right .car-right-div:nth-child(2){
        border: none;
    }

    .car-right-div p {
        font-size: 12px;
        padding: 10px 0;
        align-items: center;
        border-bottom: 1px dashed #eee;
        justify-content: space-between;
    }

    .car-right-div p a{
        color: #666;
        flex: 1;
    }

    .car-right-div p a:hover{
        color: #ff3f68;
        text-decoration: underline;
    }

    .car-right-div p span{
        font-size: 14px;
        display: inline-flex;
        height: 100%;
        margin-left: 15px;
    }

    .car-right-div p:last-child{
        padding-bottom: 0;
        border: none;
    }

    .car-right .right-color{
        color: #ff3f68;
        font-size: 16px;
        font-weight: bold;
    }
    .car-right p .btn-default{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        color: #fff;
        background-color: #46ab78;
        border-radius: 3px;
    }
    .car-right p .btn-primary{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        color: #fff;
        background-color: #2f90de;
        border-radius: 3px;
    }
    .car-right .car-right-text{
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #666;
    }


    /* car-info.css */
    .car-info-left .address-info {
        margin-top: 20px;
        padding: 20px;
        position: relative;
        border-radius: 5px;
        background-color: #efefef;
    }

    .address-info .more-address{
        position: absolute;
        width: 100%;
        left: 0;
        box-sizing: border-box;
        z-index: 1;
        max-height: 600px;
        background-color: #efefef;
        box-shadow: 0px 10px 5px -2px rgb(0 0 0 / 30%);
        /* border: 1px solid #efefef; */
        /* border-top: none; */
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        overflow: hidden;
    }

    .more-address .address-item{
        position: relative;
        padding: 20px;
    }

    .more-address .address-item:hover{
        background-color: aliceblue;
    }

    .more-address .address-item:last-child{
        border: none;
    }

    .arrow-down.active~.more-address{
        animation: movein .5s ease-in-out;
    }

    .arrow-down~.more-address {
        animation: moveout .5s ease-out;
    }

    @keyframes movein {
        from{
            transform: translateY(-20%);
            opacity: 0;
        }
    }

    @keyframes moveout {
        from{
            transform: translateY(5%);
            opacity: 1;
        }
        to{
            transform: translateY(-50%);
            opacity: 0;
        }
    }

    .car-info-left .address-info .user-info{
        vertical-align: middle;
        font-size: 14px;
    }
    .car-info-left .address-info .user-info span{
        display: block;
        margin: 5px 0;
    }

    .car-info-left .address-info img{
        margin-right: 4px;
        max-width: 24px;
        max-height: 24px;
        height: 100%;
        padding: 2px;
        box-sizing: border-box;
        margin-top: -2px;
    }

    /* .car-info-left .address-info::before,.car-info-left .more-address::before{
        position: absolute;
	    right: 0;
	    left: 0;
	    height: 2px;
	    background: repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);
	    background-size: 80px;
	    content: "";
    } */
    .car-info-left .address-info::before{
        position: absolute;
	    right: 0;
	    left: 0;
        bottom: 0;
	    height: 2px;
	    background: repeating-linear-gradient(-45deg,#ff6c6c,#ff6c6c 20%,transparent 0,transparent 25%,#1989fa 0,#1989fa 45%,transparent 0,transparent 50%);
	    background-size: 80px;
	    content: "";
        z-index: 2;
    }
    .car-info-left .more-address::before{
        top: 0;
    }

    .car-info-left .address-info .arrow-down{
        width: 30px;
        height: 30px;
        cursor: pointer;
        background-image: url('/static/images/down.png');
        transform: rotate(-90deg);
        background-repeat: no-repeat;
        background-position: center;
        transition: all .5s;
    }

    .arrow-down.active{
        transform: none !important;
    }

    .car-info-left .car-info-form p{
        margin-top: 10px;
    }
    .car-info-left .car-info-form p input[type=text]{
        width: 100%;
        height: 40px;
        text-indent: 10px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }
    .car-info-left .car-info-form p select{
        width: 100%;
        height: 40px;
        padding: 0 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }

    .car-info-left .car-info-form p textarea{
        width: 100%;
        padding: 10px;
        height: 120px;
        font-size: 16px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
        resize: none;
    }

    .car-info-left .car-info-form p textarea::placeholder{
        font-size: 14px;
    }

    .car-info-left .car-info-form .car-info-title{
        font-size: 14px;
        font-weight: 600;
        text-transform: capitalize;
    }
    .car-info-left .car-info-form .info-text{
        font-size: 14px;
        color: #666;
        margin-top: 10px;
    }
    .car-info-left .car-info-form .info-text input{
        margin-right: 10px;
    }

    .car-info-left .car-info-form div{
        display: flex;
        justify-content: space-between;
    }
    .car-info-left .car-info-form .info-two p{
        width: 49%;
    }
    .car-info-left .car-info-form .info-three p{
        width: 32%;
    }
    .info-sub{
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }
    .info-sub a:hover{
        color: #2f90de;
    }
    .info-sub a img{
        width: 30px;
        margin-right: 5px;
        margin-top: -3px;
    }
    .info-sub span{
        display: inline-block;
        padding: 8px 20px;
        background-color: #000;
        color: #fff;
        cursor: pointer;
    }


    .car-block{
        padding-top: 20px;
    }

    .block-content{
        padding-top: 15px;
    }

    .block-content .item{
        position: relative;
        margin-bottom: 20px;
        border-radius: 5px;
        overflow: hidden;
    }

    .item label{
        line-height: 20px;
        padding: 10px 40px 10px 20px;
        background-color: #efefef;
    }

    .address-item label::before, .item label::before{
        content: "";
        top: 50%;
        right: 16px;
        width: 16px;
        height: 16px;
        position: absolute;
        border-radius: 50%;
        background-color: #fff;
        transform: translateY(-50%);
    }

    .item input[type='radio']:checked~label{
        color: #fff;
        background-color: #00bc9b;
    }

    .address-item input[type='radio']:checked~label::after,.item input[type='radio']:checked~label::after{
        content: "";
        top: 50%;
        right: 19px;
        width: 10px;
        height: 10px;
        position: absolute;
        border-radius: 50%;
        transform: translateY(-50%);
        background-color: #00bc9b;
    }

    .block-content .item:last-child{
        margin-bottom: 0;
    }

    .block-content .item-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .block-content .item-intro {
        font-size: 12px;
        padding-right: 20px;
        color: #666;
    }

    .item input[type='radio']:checked~label .item-intro{
        color: rgba(255, 255, 255, 0.8)
    }

    .fee {
        font-size: 18px;
    }

    .radio-group {
        width: 100%;
        overflow: hidden;
        position: relative;
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .radio-group:nth-child(2n) {
        margin-right: 0;
    }

    .radio-group img{
        margin-left: 5px;
        height: 100%;
        max-height: 26px;
    }

    .radio-group .radio-label{
        display: flex;
        cursor: pointer;
        align-items: center;
        padding: 10px 20px 10px 40px;
        background-color: #efefef;
    }

    .radio-label,.radio-label span{
        vertical-align: middle;
    }

    .radio-label::before{
        content: "";
        top: 50%;
        left: 16px;
        width: 16px;
        height: 16px;
        position: absolute;
        border-radius: 50%;
        background-color: #fff;
        transform: translateY(-50%);
    }

    .radio-box:checked~.radio-label{
        color: #fff;
        background-color: #00bc9b;
    }

    .radio-box:checked~.radio-label::after{
        content: "";
        top: 50%;
        left: 19px;
        width: 10px;
        height: 10px;
        position: absolute;
        border-radius: 50%;
        transform: translateY(-50%);
        background-color: #00bc9b;
    }

    .info-car{
        display: flex;
        justify-content: space-between;
    }
    .info-car div{
        width: calc(100% - 105px);
        display: flex;
        justify-content: space-between;
    }
    .info-car div img{
        width: 65px;
        margin-right: 10px;
    }
    .info-car div p{
        width: calc(100% - 75px);
        font-size: 15px;
        color: #ff3f68;
    }
    .info-car span{
        display: inline-block;
        width: 90px;
        text-align: right;
    }
    
    .info-money{
        display: flex;
        justify-content: space-between;
        color: #666;
        font-size: 14px;
        padding: 10px 0;
        line-height: 26px;
        margin-top: 10px;
        border-top: 1px solid #ccc;
    }
    .info-money p span{
        display: inline-block;
        width: 100%;
        text-align: right;
        font-size: 16px;
        color: #000;
        font-weight: bold;
    }
    .info-number{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #333;
        padding-top: 10px;
        border-top: 1px solid #ccc;
    }

 
    /* 原始car.css */
    /*.car-left>div{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .car-left>div div:first-child{
        width: calc(100% - 180px);
    }
    .car-left>div div:nth-child(2){
        width: 100px;
        text-align: center;
    }
    .car-left>div>div:nth-child(3){
        width: 80px;
        text-align: center;
    }
    .car-left .car-left-head{
        font-weight: bold;
        padding: 8px 0;
        border-bottom: 1px solid #ccc;
    }
    .car-left .car-cont{
        padding: 10px 0;
    }
    .car-left .car-cont>div:first-child{
        display: flex;
    }
    .car-left .car-cont>div:first-child input{
        margin-right: 5px;
    }
    .car-left .car-cont>div:first-child img{
        width: 60px;
        margin-right: 10px;
    }
    .car-left .car-cont>div:first-child div{
        width: calc(100% - 85px);
        align-self: center;
        color: #ff3f68;
    }
    .car-left .car-cont>div:first-child div p:first-child{
        font-size: 12px;
    }
    .car-left .car-cont>div:first-child div p:nth-child(2){
        margin-top: 20px;
        font-weight: bold;
    }
    .car-left .car-cont .car-cont-number .car-number-val{
        display: flex;
        justify-content: center;
    }
    .car-left .car-cont .car-cont-number span{
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 1px solid #ccc;
        text-align: center;
        font-size: 20px;
        line-height: 18px;
    }
    .car-left .car-cont .car-cont-number input{
        width: 50px;
        margin: 0 5px;
        text-align: center;
        border: 1px solid #ccc;
    }
    .car-left .car-cont .car-cont-number p:nth-child(2){
        margin-top: 10px;
        color: #333;
    }

    .car-right{
        margin-top: 20px;
    }
    .car-right .car-right-title{
        font-weight: bold;
        padding: 8px 0;
    }
    .car-right .car-right-div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        line-height: 24px;
        padding: 10px 0;
        border-top: 1px solid #ccc;
    }
    .car-right .right-color{
        color: #ff3f68;
        font-size: 16px;
        font-weight: bold;
    }
    .car-right p a{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px 0;
        margin-top: 10px;
        color: #fff;
        background-color: #ff3f68;
        border-radius: 3px;
    }
    .car-right .car-right-text{
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        color: #666;
    } */


    /* car-info.css */
    .car-info-left .car-info-form p{
        margin-top: 10px;
    }
    .car-info-left .car-info-form p input[type=text]{
        width: 100%;
        height: 40px;
        text-indent: 10px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }
    .car-info-left .car-info-form p select{
        width: 100%;
        height: 40px;
        padding: 0 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        box-sizing: border-box;
        outline: none;
    }
    .car-info-left .car-info-form .car-info-title{
        font-size: 18px;
    }
    .car-info-left .car-info-form .info-text{
        font-size: 14px;
        color: #666;
        margin-top: 10px;
    }
    .car-info-left .car-info-form .info-text input{
        margin-right: 10px;
    }
    .car-info-left .car-info-form div{
        display: flex;
        justify-content: space-between;
    }
    .car-info-left .car-info-form .info-two p{
        width: 49%;
    }
    .car-info-left .car-info-form .info-three p{
        width: 32%;
    }
    .info-sub{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }
    .info-sub a img{
        width: 30px;
        margin-right: 5px;
        margin-top: -3px;
    }
    .info-sub span{
        display: inline-block;
        padding: 8px 20px;
        background-color: #000;
        color: #fff;
        cursor: pointer;
    }

    .info-car{
        display: flex;
        justify-content: space-between;
    }
    .info-car div{
        width: calc(100% - 105px);
        display: flex;
        justify-content: space-between;
    }
    .info-car div img{
        width: 65px;
        margin-right: 10px;
    }
    .info-car div p{
        width: calc(100% - 75px);
        font-size: 15px;
        color: #ff3f68;
    }
    .info-car span{
        display: inline-block;
        width: 90px;
        text-align: right;
    }
    
    .info-money{
        display: flex;
        justify-content: space-between;
        color: #666;
        font-size: 14px;
        padding: 10px 0;
        line-height: 26px;
        margin-top: 10px;
        border-top: 1px solid #ccc;
    }
    .info-money p span{
        display: inline-block;
        width: 100%;
        text-align: right;
        font-size: 16px;
        color: #000;
        font-weight: bold;
    }
    .info-number{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #333;
        padding-top: 10px;
        border-top: 1px solid #ccc;
    }
}