﻿@charset "UTF-8";

.van-toast {
    word-break: break-word !important;
}

.cg-default.van-button {
    box-shadow: 0 0.05333rem #e04846;
    font-weight: 700;
    font-size: 0.4rem;
}

    .cg-default.van-button .van-button__icon {
        height: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

        .cg-default.van-button .van-button__icon > img {
            height: 80%;
        }

#app .noticeBar__container {
    --theme-color: v-bind("getStyle");
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: .32rem;
    width: 100%;
    height: .98667rem;
    position: relative;
    color: #fff;
    background: -webkit-linear-gradient(0deg,#5d1f1f,#3d1010 20%,#1a0808);
    background: linear-gradient(0deg,#5d1f1f,#3d1010 20%,#1a0808);
    border-radius: .32rem;
    padding: 0 .26667rem;
    box-shadow: 0 2px 8px #601212, 0 -2px 5px #6f2828 inset;
}

#app .noticeBar__container-body {
    width: 9.33333rem;
    overflow: hidden;
    position: relative;
    height: 0.8rem;
    line-height: 0.98667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#app .noticeBar__container-body-text {
    color: #fff;
    width: 100%;
    height: -webkit-fit-content;
    height: fit-content;
    max-height: 0.98667rem;
    line-height: 0.49333rem;
    -webkit-animation: marquee 7s linear infinite;
    animation: marquee 7s linear infinite;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: left;
    -webkit-justify-content: left;
    justify-content: left;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
}

@-webkit-keyframes marquee {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes marquee {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    90% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

#app .noticeBar__container > svg {
    width: 0.44rem;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    height: auto;
    margin-right: 0.22667rem;
}

#app .noticeBar__container button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    gap: 0.06667rem;
    width: 2rem;
    height: 0.53333rem;
    margin-left: auto;
    color: #fff; 
    border-radius: 0.13333rem;
    border: 0.01333rem solid #fab26c;
    background: -webkit-linear-gradient(0deg, #5d1f1f, #3d1010 20%, #1a0808);
    background: linear-gradient(0deg, #5d1f1f, #3d1010 20%, #1a0808);
}

    #app .noticeBar__container button svg {
        width: 0.32rem;
        height: auto;
    }




.date-picker-body {
    display: flex;
    height: 250px;
}

.date-column {
    flex: 1;
    overflow-y: auto;
    text-align: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .date-column::-webkit-scrollbar {
        display: none;
    }

.date-item {
    padding: 12px;
    font-size: 14px;
    color: #fff;
}

    .date-item.active {
        color: #fae59f;
        font-weight: bold;
        font-size: 16px;
    }


#pickerContainer, #datePickerContainer {
    width: 10rem;
    height: -webkit-fit-content;
    height: fit-content;
}

@media screen and (max-width: 500px) {
    #pickerContainer, #datePickerContainer {
        width: 100%;
    }

        #pickerContainer::-webkit-scrollbar, #datePickerContainer::-webkit-scrollbar {
            width: 0;
            background: transparent;
        }
}

.filter-box {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 8px;
}

/* Overlay */
.picker-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 999;
}

/* Container */
.picker-container {
    position: fixed;
    bottom: -400px;
    width: 100%;
    background: #8F5206;
    border-radius: 20px 20px 0 0;
    z-index: 1000;
    transition: 0.3s;
}


    /* Show */
    .picker-container.show {
        bottom: 0;
    }

/* Header */
.picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #fae59f;
}

.picker-title {
    color: #fff;
    font-weight: 700;
}

.picker-btn {
    border: none; 
    background: #a61831;
    border-radius: .66667rem;
    line-height: .64rem;
    text-align: center;
    font-size: .34667rem;
    margin-bottom: .13333rem;
    white-space: nowrap;
    padding: 0 .33333rem;
    color: #fae59f;
}

    .picker-btn.ok {
        color: #fff;
    }

/* Body */
.picker-body {
    max-height: 250px;
    overflow-y: auto;
    text-align: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .picker-body::-webkit-scrollbar {
        display: none;
    }
/* Items */
.picker-item {
    padding: 12px;
    font-size: 14px;
    color: #fff;
}

    /* Selected */
    .picker-item.active {
        color: #fae59f;
        font-size: 15px;
        font-weight: bold;
    }





/* Overlay */
.calendaroverlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

/* Bottom Full Sheet */
.calendar-sheet {
    position: fixed;
    bottom: -100%;
    max-width: 10rem;
    width: 100%;
    height: 75vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
    z-index: 1000;
}

    /* Active state */
    .calendar-sheet.active {
        bottom: 0;
    }

/* Header */
.sheet-header {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #eee;
    position: relative;
}

    .sheet-header .close-btn {
        position: absolute;
        right: 15px;
        top: 12px;
        cursor: pointer;
        font-size: 20px;
    }

/* Calendar scroll area */
.calendar-body {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Bottom confirm button */
.sheet-footer {
    padding: 15px;
    border-top: 1px solid #eee;
}

.confirm-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #ff4d4f;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}
/* Litepicker full width */
.litepicker {
    width: 100% !important;
    max-width: 100% !important;
}

/* Calendar container full width */
#litepickerContainer {
    width: 100%;
}

/* Month container full stretch */
.litepicker .container__months {
    padding: 34px;
    font-size: 16px;
}

/* Har month full width */
.litepicker .month-item {
    width: 100% !important;
}
/* Month title */
.litepicker .month-item-header {
    font-size: 18px !important;
    font-weight: 600;
}

/* Week days (Mon Tue etc) */
.litepicker .weekdays-row span {
    font-size: 14px !important;
}

/* Date numbers */
/*.litepicker .day-item {
        font-size: 16px !important;
        height: 42px !important;
        width: 42px !important;
        line-height: 34px !important;
    }
    .litepicker .day-item {
        border-radius: 50% !important;
    }*/