/* 未能缩小。正在返回未缩小的内容。
(43,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(60,22): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color-light'
(74,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
(115,17): run-time error CSS1039: Token not allowed after unary operator: '-design-theme-color'
 */
/* 校区地址 */
.address-section {
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 20px;
    margin-top: 20px !important;
}


/* 地址列表 */
.section-left-content,
.address-lists {
    display: flex;
    flex-direction: column;
}

.section-left-content {
    flex: 1;
}

.address-lists {
    gap: 16px;
    width: calc( 100% - 32px);
    padding: 0 16px;
}

/* 单个地址 */
.address-list-item {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    background: #FFF;
    padding-bottom: 16px;
    border-bottom: 1px solid #EEE;
}
.address-list-item:last-child{
    border: none;
}

.local-prefix,
.local-suffix {
    color: var(--design-theme-color, #12bfaf);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}

.local-prefix {
    width: 18px;
    height: 18px;
    font-size: 18px;
    margin-right: 7px;
}

.local-suffix {
    width: 32px;
    height: 32px;
    background: var(--design-theme-color-light, rgba(194, 50, 42, 0.04));
    font-size: 24px;
    border-radius: 100%;
}


.add-list-agency-name {
    color: #333239;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
}

.address-list-item:hover .add-list-agency-name {
    color: var(--design-theme-color, #12bfaf);

}

.add-list-add {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    color: #333;
    flex: 1;
    margin-right: 12px;
}


.add-list-add-text {
    text-align: left;
    margin: 0;
    color: #636363;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

.add-list-check {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #999;
}

.add-list-check .iconfont {
    font-size: 10px;
    margin-left: 10px;
    color: #999;
}

.add-list-check.cur,
.add-list-check.cur .iconfont {
    color: var(--design-theme-color, #12bfaf);
}

.add-list-transportation {
    margin-top: 20px;
    border-top: 1px solid #eee;
}

.add-list-route {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #333;
    margin-top: 20px;
}

.add-list-bus {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-top: 8px;
}


.section-right-content {
    position: -webkit-sticky;
    /* 对于 Safari */
    position: sticky;
    top: 97px;
    width: 380px;
    height: 494px;
    border: 1px solid #eee;
    background: #d0d0d0;
}
