@charset "utf-8";
body {
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
}
.flight-picker-panel {
    position: absolute;
    z-index: 9999;
    display: none;
    width: 640px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    color: #202124;
}
.flight-picker-inner {
    display: flex;
    padding: 28px 20px 0;
}
.flight-picker-calendar {
    flex: 1;
    padding-right: 20px;
}
.flight-picker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.flight-picker-month {
    flex: 1;
    padding: 0 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 34px;
    color: #182230;
    text-align: center;
}
.flight-picker-nav {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: transparent;
    font-size: 28px;
    line-height: 34px;
    color: #364152;
    cursor: pointer;
    transition: background-color .2s ease;
}
.flight-picker-nav:hover {
    background: #f2f4f7;
}
.flight-picker-week,
.flight-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.flight-picker-week {
    margin-bottom: 10px;
}
.flight-picker-week-item {
    text-align: center;
    font-size: 16px;
    line-height: 22px;
    color: #212121;
}
.flight-picker-days {
    row-gap: 8px;
}
.flight-picker-day {
    width: 100%;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
}
.flight-picker-day span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    transition: background-color .2s ease, color .2s ease;
}
.flight-picker-day:hover span {
    background: #f4f4f5;
    color: #101828;
}
.flight-picker-day.is-today span {
    color: #ff6a00;
    font-weight: 700;
}
.flight-picker-day.is-selected span,
.flight-picker-day.is-selected:hover span {
    background: #ff6a00;
    color: #fff;
}
.flight-picker-day.is-disabled,
.flight-picker-day.is-disabled:hover {
    cursor: not-allowed;
}
.flight-picker-day.is-disabled span,
.flight-picker-day.is-disabled:hover span {
    background: transparent;
    color: #a8a8a8;
}
.flight-picker-day-empty {
    cursor: default;
}
.flight-picker-day-empty:hover span {
    background: transparent;
}
.flight-picker-side {
    width: 230px;
}
.flight-picker-title {
    color: #8a8a8a;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.flight-picker-subtitle {
    color: #8a8a8a;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}
.flight-picker-time {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}
.flight-picker-time-field {
    position: relative;
    width: 108px;
}
.flight-picker-colon {
    padding: 0 8px;
    font-size: 16px;
    color: #475467;
}
.flight-picker-time-trigger {
    color: #212121;
    width: 106px;
    height: 44px;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.flight-picker-time-field.is-open .flight-picker-time-trigger {
    border-color: #ffb482;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.08);
}
.flight-picker-time-value {
    font-size: 17px;
    line-height: 1;
}
.flight-picker-time-arrow {
    width: 7px;
    height: 7px;
    margin-right: 6px;
    border-right: 2px solid #475467;
    border-bottom: 2px solid #475467;
    transform: rotate(45deg) translateY(-1px);
    transition: transform .2s ease;
}
.flight-picker-time-field.is-open .flight-picker-time-arrow {
    transform: rotate(-135deg) translateY(-1px);
}
.flight-picker-time-dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    display: none;
    max-height: 236px;
    padding: 10px 0;
    overflow-y: auto;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.12);
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 24, 40, 0.28) transparent;
}
.flight-picker-time-field.is-open .flight-picker-time-dropdown {
    display: block;
}
.flight-picker-time-dropdown::-webkit-scrollbar {
    width: 8px;
}
.flight-picker-time-dropdown::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}
.flight-picker-time-dropdown::-webkit-scrollbar-track {
    border-radius: 999px;
    background: transparent;
}
.flight-picker-time-dropdown::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    border-radius: 999px;
    background: rgba(16, 24, 40, 0.28);
    background-clip: padding-box;
}
.flight-picker-time-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 24, 40, 0.4);
    background-clip: padding-box;
}
.flight-picker-time-option {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 44px;
    color: #344054;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}
.flight-picker-time-option:hover {
    background: #f9fafb;
}
.flight-picker-time-option-check {
    display: none;
    font-size: 16px;
    line-height: 1;
}
.flight-picker-time-option.is-selected {
    color: #ff6a00;
    font-weight: bold;
}
.flight-picker-time-option.is-selected .flight-picker-time-option-check {
    display: inline-block;
}
.flight-picker-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px 20px;
}
.flight-picker-note {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
    color: #667085;
}

.flight-picker-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-right: 8px;
    border: 1px solid #667085;
    border-radius: 50%;
    font-size: 10px;
    line-height: 1;
}
.flight-picker-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.flight-picker-btn {
    min-width: 72px;
    height: 36px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}
.flight-picker-btn-cancel {
    background: transparent;
    color: #344054;
}
.flight-picker-btn-confirm {
    background-color: #ff6a00;
    color: #fff;
}
.flight-picker-btn-confirm:hover{
    background-color: #e05000;
}
.flight-picker-input {
    width: 320px;
    height: 46px;
    padding: 0 16px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    color: #101828;
    cursor: pointer;
    outline: none;
}
