.appt {
    height: calc(-60px + 100vh);
    position: relative;
    overflow: hidden;
}

.drive {
    background-color: #FFF;
    position: absolute;
    left: 0;
    width: 500px;
    padding: 2vw;
    top: 0;
    bottom: 0;
    overflow-y: auto;
}

.drive .title {
    margin-bottom: 2vw;
}

.drive .title h1 {
    font-size: 2vw;
}

.drive .title p {
    color: #bbbbbb;
    margin-top: 0.8vw;
    font-size: 14px;
}

.drive .car {
    position: relative
}

.drive .car .top {
    display: flex;
    cursor: pointer;
    border: 1px solid #f1f1f1;
    border-radius: 3px;
    align-items: center;
    background-color: #f1f1f1;
}

.drive .car .top .img {
    padding: 0 10px;
}

.drive .car .top .name {
    flex: 1;
    text-align: right;
    color: #666666;
}

.drive .car .top .iconfont {
    width: 50px;
    text-align: center;
    color: #666666;
    transition: all .3s ease-in-out;
}

.drive .car .open .iconfont {
    transform: rotate(90deg);
}

.drive .car .top img {
    width: 100px;
}

.drive .item {
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    align-items: center;
    position: relative;
}

.drive .item.item_error {
    border-bottom-color: #d90000;
}

.drive .item .error-message {
    position: absolute;
    right: 0;
    bottom: 5px;
    color: #d90000;
    left: 0;
    font-size: 12px;
    margin-left: 140px;
}


.drive .item span {
    width: 130px;
}

.drive .item p {
    flex: 1;
}

.drive .item p input,
.drive .item p select {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    background: none;
    border: none;
    color: #616161;
    font-size: 15px;
    font-family: 'HarmonyOS_Sans';
    color: #666666;
    outline: none;
    padding: 25px 10px;
}

.drive .item p input::placeholder {
    color: #bbbbbb;
}

.drive .agreement {
    margin: 25px 0;
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    margin-bottom: 40px;
}

.drive .agreement input.check {
    position: relative;
    top: 5px;
    width: 18px;
    height: 18px;
    border: 2px solid black;
    -webkit-appearance: none;
    outline: none;
    margin-right: 8px;
    cursor: pointer;
    border-radius: 0 !important;
}


.drive .agreement input.check:checked {
    background: url(/static/images/checked-icon.png) no-repeat center -2px;
    background-size: 18px 18px;
}

.drive .agreement a {
    text-decoration: underline;
    color: #bd2130;
}

.drive .button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 15px;
    background-color: #bd2130;
    border-radius: 4px;
    color: #FFF;
    border: none;
}

.car-list {
    position: absolute;
    background-color: #FFF;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    width: 100%;
    z-index: 10;
    box-shadow: 0 0px 15px 0px #e1e1e1;
    display: none
}

.car-list div span img {
    width: 100px
}

.car-list div {
    display: flex;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 3px;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.car-list div .img {
    padding: 0 10px;
}

.car-list div .name {
    margin-right: 50px;
    flex: 1;
    text-align: right;
    color: #666666;
}

.car-list div:hover {
    background-color: #e9e9e9
}


.but {
    margin-bottom: 25px;
    display: flex;
}

.but a {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 50px;
    font-size: 15px;
    padding: 10px;
    color: #121212;
    border: 1px solid #616161;

}

.but a.active {
    background-color: #d90000;
    border-color: #d90000;
    color: #FFF;
}

.but a:first-child {
    margin-right: 20px;
}

@media screen and (max-width: 1280px) {
    .appt {
        height: auto;
    }

    .drive {
        position: relative;
        margin-top: 58vw;
        width: auto;
        padding: 10px;
    }

    .content {
        position: absolute;
        top: 0;
    }

    .drive .title h1 {
        font-size: 20px;
    }

    .drive .title p {
        margin-top: 10px;
        font-size: 12px;
    }

    .drive .item span {
        width: 100px;
        font-size: 14px;
    }

    .drive .item p input,
    .drive .item p select {
        font-size: 14px;
    }
}