/* 日期选择器滚轮样式 */
.gearDate {
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: .26667rem;
    background-color: rgba(0, 0, 0, .2);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9900;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: translateZ(0);
}

.date_ctrl {
    vertical-align: middle;
    background-color: #f0f0f0;
    box-shadow: 0 0 .05333rem rgba(0, 0, 0, .4);
    color: #363837;
    margin: 0;
    height: auto;
    max-width: 10rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9902;
    margin: 0 auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -ms-user-select: none;
}

.slideInUp {
    animation: slideInUp .3s ease-in;
    -webkit-animation: slideInUp .3s ease-in;
    -ms-animation: slideInUp .3s ease-in;
    -moz-animation: slideInUp .3s ease-in;
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

.date_roll {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    width: 100%;
    height: auto;
    font-weight: 700;
    -webkit-mask: -webkit-linear-gradient(top, #debb47 50%, rgba(36, 142, 36, 0));
}

.date_roll > div {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    font-size: 1.6em;
    height: 12em;
    float: left;
    width: 33.33%;
    white-space: nowrap;
}

.date_roll_more > div {
    width: 17%;
}

.date_roll_more > div:nth-child(4) {
    width: 49%;
}

.date_roll_mask {
    padding: 0 1em;
    -webkit-mask: -webkit-linear-gradient(bottom, #debb47 50%, rgba(36, 142, 36, 0));
}

.date_grid {
    position: relative;
    top: 4em;
    width: 100%;
    height: 2em;
    margin: 0;
    box-sizing: border-box;
    z-index: 0;
    background-color: #e8e8e8;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}

.date_grid > div {
    color: #000;
    position: absolute;
    right: 0;
    top: 0;
    font-size: .8em;
    line-height: 2.5em;
}

.date_choice_wrap {
    display: block;
}

.date_class_box {
    text-align: center;
    padding: 1em 2em;
}

.date_class {
    display: inline-block;
    font-size: 1.4em;
    width: 40%;
    text-align: center;
    color: var(--pickertheme, #c02a10);
    border: 1.5px solid var(--pickertheme, #c02a10);
    cursor: pointer;
    line-height: 1.6em;
}

.date_class_box .date_class:first-child {
    border-top-left-radius: .2em;
    border-bottom-left-radius: .2em;
}

.date_class_box .date_class:last-child {
    border-top-right-radius: .2em;
    border-bottom-right-radius: .2em;
}

.date_class_box .active {
    background-color: var(--pickertheme, #c02a10);
    color: #fff;
}

.date_btn_box {
    overflow: hidden;
    position: relative;
    border-top: 1px solid #d4d4d4;
}

.date_btn {
    font-size: 1.6em;
    line-height: 1em;
    text-align: center;
    padding: .8em 1em;
    cursor: pointer;
    float: right;
    width: 50%;
    box-sizing: border-box;
    font-family: PingFangSC-Regular;
    color: var(--pickertheme, #c02a10);
    letter-spacing: 0;
}

.date_btn:first-child {
    border-left: 1px solid var(--pickertheme, #c02a10);
    background-color: var(--pickertheme, #c02a10);
    color: #fff;
}

.gear {
    float: left;
    position: absolute;
    z-index: 9902;
    width: 5.5em;
    margin-top: -1em;
    cursor: pointer;
}

.date_roll > div .gear {
    width: 100%;
}

.tooth {
    height: 2em;
    line-height: 2em;
    text-align: center;
    color: #b2b9bd;
    font-weight: 500;
}

.date_confirm_wrap {
    padding: 1em 2em;
    text-align: center;
    display: none;
}

.confirm_tit {
    display: inline-block;
    font-size: 1.4em;
    color: #666;
    cursor: pointer;
    line-height: 1.6em;
    margin-bottom: 1em;
}

.confirm_p {
    font-size: 1.6em;
    line-height: 2em;
}

.confirm_p b {
    color: var(--pickertheme, #c02a10);
    font-weight: 400;
}

.date_btn_wrap {
    padding: .4rem;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    flex-direction: row-reverse;
}

.date_btn_wrap:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    font-size: 0;
}

.date_btn_wrap .date_btn {
    border: 1px solid var(--pickertheme, #c02a10);
    border-radius: .13333rem;
    width: 100%;
}

.lcalendar_cancel {
    margin-right: .4rem;
}

.date_ctrl.bounceInUp {
    background: #fff;
    max-width: 10rem;
}

.date_class {
    width: 2rem;
    height: .96rem;
    line-height: .96rem;
    font-size: .37333rem;
}

.date_class_box .date_class:first-child {
    border-radius: .13333rem 0 0 .13333rem;
}

.date_class_box .date_class:last-child {
    border-radius: 0 .13333rem .13333rem 0;
}

.date_grid {
    border-top: 1px solid var(--pickertheme, #c02a10);
    border-bottom: 1px solid var(--pickertheme, #c02a10);
    background-color: #fff;
    color: var(--pickertheme, #c02a10);
}

.confirm_tit, .date_grid {
    font-family: PingFangSC-Medium;
    font-size: .42667rem;
    letter-spacing: 0;
    text-align: center;
}

.confirm_tit {
    color: #4a4a4a;
}

.confirm_p-box {
    background: #f7f7f7;
    border-radius: .13333rem;
    padding: .53333rem;
    margin: 0 -.13333rem;
}

.tooth.selected {
    color: var(--pickertheme, #c02a10);
    font-weight: 700;
}
