.date-section {
    margin-bottom: .1rem;
}
.section {
    display: flex;
    background: #fff;
}
.section-active {
    background-color: #f2f2f2;
}
.section-title {
    color: #000;
    flex: 0 0 1rem;
}

picker {
    width: 100vw;
    height: .6rem;
    padding: 0 .17rem;
    /* 兼容适老版，文字垂直居中 */
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.picker {
    width: calc(100vw - .68rem);
    font-size: .18rem;
    line-height: .18rem;
    /* 兼容适老版，处理文字溢出 */
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.disabled {
    color: #9e9a9a;
}