body, *{
    box-sizing: border-box;
}
body{
    color: rgba(41, 42, 48, .83);
    font-size: 100%;
    background: #F6F7F9;

}
*, ::after, ::before {
    box-sizing: inherit;
}
a {
    transition: color .3s, background-color .3s;
    text-decoration: initial;
}
[v-cloak] {
    display: none;
}
.header{
    background: #fff; padding: 24px 0;position:fixed;z-index:1;width: 100%
}
.header .ant-btn-text{
    display: flex;
    align-items: center;
    justify-content: center;
}
.main-container{
    padding: 14px 0;
    --bs-gutter-x: 0;
}
.stops-list{
    outline: 0;
    /*padding: 24px 60px;*/
    position: relative;
    display: table;
    width: 100%;
    border: 1px solid #f0f0f0;
    background: white;
    overflow: hidden;
    border-radius: 8px;
}
.stop-container{
    outline: 0;
    padding: 24px 60px;
    position: relative;
    display: table;
    width: 100%;
    color: rgba(41, 42, 48, .83);
}
.stop-container::before {
    background: #f0f0f0;
    top: inherit !important;
    bottom: 0 !important;
    content: "";
    display: block;
    height: 1px !important;
    position: absolute;
    width: calc(100%);
}
.stop-container:last-child::before {
    opacity: 0;
}
.stop-container:first-child .stop-body::before {
    height: 50%;
    top: calc(50% + 1px);
}
.stop-container:last-child .stop-body::before {
    height: 50%;
    top: 0;
}
.stop-container .stop-body{

}
.stop-container .stop-body>h3{
    font-size: inherit;
    font-weight: inherit;
}

.stop-container .stop-body::before {
    background: #bdc3c7;
    content: "";
    height: calc(100% + 1px);
    position: absolute;
    left: 28px;
    top: 0;
    width: 3px;
}
.stop-container .stop-body>h3::before {
    background: #fff;
    border: 3px solid #bdc3c7;
    border-radius: 50%;
    content: "";
    display: block;
    height: 14px;
    position: absolute;
    left: 23px;
    top: 50%;
    width: 14px;
    transform: translateY(-50%);
}
.stop-container:not(.grayed):hover {
    background-color: #f5f7f7;
}

.ant-modal-mask{
    backdrop-filter: blur(5px);
}
.ant-input-search-button{
    display: flex;
    align-items: center;
    justify-content: center;
}

.iconfont {
    font-size: 18px;
}
@media (max-width:996px) {
    html {
        font-size: 16px
    }
    .header{
        padding: 15px 0;
    }
}
@media (max-width:767px) {
    html {
        font-size: 14px
    }
}