#appointment {
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
}

#appointment .item {
    font-size: 14px;
    color: #606266;
    line-height: 40px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 22px;
}

#appointment .item .title {
    font-size: 14px;
    color: #606266;
    padding-right: 12px;
    white-space: nowrap;
    width: 80px;
    text-align: right;
}

#appointment .item textarea {
    width: 100%;
    resize: none;
    min-height: 33px;
    padding: 5px 15px;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    font-size: inherit;
    color: #606266;
    background-color: #FFF;
    background-image: none;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
}

#appointment .item input {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    height: 40px;
    line-height: 40px;
    outline: 0;
    padding: 0 15px;
    width: 100%;
}

#appointment .item .code {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
}

#appointment .btn {
    display: flex;
    justify-content: center;
    min-width: 172px;
}

#appointment .btn .border {
    border-radius: 50%;
    width: 172px;
    height: 172px;
    background: #fcfcfc;
    border: 1px solid #e74c3c;
    transition: .2s;
    box-shadow: 0 0 15px rgb(231 76 60 / 60%);
    display: flex;
    justify-content: center;
    align-items: center;
}

#appointment .btn .border:hover {
    /*增加动画效果-缩小height为140*/
    height: 140px;
    width: 140px;
    transition: .2s;
}

#appointment .btn .border .content {
    cursor: pointer;
    width: 100px;
    height: 100px;
    padding: 20px;
    text-align: center;
    background-color: #e74c3c;
    border-radius: 50%;
    font-size: 38px;
    color: #fff;
    line-height: 50px;
    box-shadow: 0 0 20px rgb(231 76 60 / 40%);
}

#appointment .btn .border .content p {
    margin: 0;
}

#appointment .banner {
    width: 100%;
    display: block;
    height: 258px;
}
