.calendar-container {
    overflow: hidden;
    position: relative;
}
.calendar-week-bar {
    background: #fbfbfb;
}
.calendar-week-group {
    display: flex;
}
.calendar-week-group .week-item {
    color: #666;
    flex: 1 1 auto;
    width: 14.285714%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
}
.calendar-table-body__s1,
.calendar-table-body__s2 {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
    background: #fff;
}
.calendar-table-body__s1 .calendar-item {
    width: 14.285714%;
    height: 120px;
    position: relative;
    text-align: center;
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #f1f5f9;
}
.calendar-table-body__s2 .calendar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 14.285714%;
    height: 76px;
    position: relative;
    text-align: center;
    border-left: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    box-sizing: border-box;
    transition: all 0.3s;
    background: #f1f5f9;
}

.calendar-table-body__s1 .calendar-item:not(.disabled):hover,
.calendar-table-body__s2 .calendar-item:not(.disabled):hover {
    cursor: pointer;
    position: relative;
    z-index: 5;
    box-shadow: 1px 1px 8px 8px rgba(0, 0, 0, 0.05);
}

.calendar-table-body__s1 .calendar-item.disabled,
.calendar-table-body__s2 .calendar-item.disabled {
    background: #f5f5f5;
}
.calendar-table-body__s1 .calendar-item .day,
.calendar-table-body__s2 .calendar-item .day {
    color: #f60;
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 12px;
}

.calendar-table-body__s1 .calendar-item .day {
    top: 10px;
}

.calendar-table-body__s1 .calendar-item .date {
    padding: 10px;
    text-align: left;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.calendar-table-body__s2 .calendar-item .date {
    padding: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}
.calendar-table-body__s2 .calendar-item .price-info {
    color: #fc6000;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
.calendar-table-body__s1 .calendar-item .tit {
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    font-size: 14px;
}
.calendar-table-body__s1 .calendar-item .txt {
    color: #9e9e9e;
    padding: 8px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: left;
    font-size: 12px;
}
.calendar-table-body__s1 .calendar-item .handle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 0;
}
.calendar-table-body__s1 .calendar-item .handle .more {
    color: #9e9e9e;
    display: block;
}
.calendar-table-body__s1 .calendar-item .handle .more .i-arrow {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-right: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    vertical-align: middle;
    margin: -4px 0 0 4px;
    transform: rotate(45deg);
    transition: all 0.3s;
}
.calendar-table-body__s1 .calendar-item:hover .handle .more .i-arrow {
    margin-top: 0;
    transform: rotate(225deg);
}
.calendar-table-body__s1 .calendar-item .handle .price {
    color: #f60;
    font-family: Arial, Helvetica, sans-serif;
}

.calendar-switch-box {
    padding: 20px 0;
}
.switch-month {
    display: flex;
    width: 240px;
    height: 48px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
}

.switch-month-bar {
    display: flex;
    height: 48px;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
}

.switch-month-bar .switch-month-count,
.switch-month-bar .switch-month-prev,
.switch-month-bar .switch-month-next {
    border: 0;
}

.switch-month a:hover {
    border-color: #aaa;
    z-index: 2;
}
.switch-month-count {
    margin: 0 -1px;
    border: 1px solid #d8d8d8;
    position: relative;
    transition: all 0.2s;
    box-sizing: border-box;
}
.switch-month-prev,
.switch-month-next {
    width: 48px;
    height: 48px;
    text-align: center;
    line-height: 48px;
    position: relative;
    transition: all 0.2s;
    box-sizing: border-box;
    border: 1px solid #d8d8d8;
}
.switch-month-prev {
    border-right: 1px solid #d8d8d8;
    border-radius: 6px 0 0 6px;
}
.switch-month-next {
    border-left: 1px solid #d8d8d8;
    border-radius: 0 6px 6px 0;
}
.switch-month-prev .i-arrow,
.switch-month-next .i-arrow {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #999;
}
.switch-month-prev .i-arrow {
    border-left: 2px solid #999;
    transform: rotate(-45deg) translateY(3px);
}
.switch-month-next .i-arrow {
    border-right: 2px solid #999;
    transform: rotate(45deg) translateY(3px);
}
.switch-month-count {
    flex: 1 1 auto;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.switch-month-list {
    display: none;
    position: absolute;
    top: 47px;
    left: 47px;
    width: 144px;
    border: 1px solid #d8d8d8;
    z-index: 9;
    max-height: 240px;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    overflow-y: auto;
    cursor: pointer;
    background: #fff;
}
.switch-month-list a {
    display: block;
    line-height: 30px;
    font-size: 14px;
    color: #333;
}
.switch-month-list a:hover {
    background-color: #29e;
    color: #fff;
    text-decoration: none;
}

.popover-calendar-box {
    width: 540px;
    position: absolute;
    z-index: 20;
}
.popover-calendar-box .popover-arrow {
    width: 0;
    height: 0;
    position: absolute;
    z-index: 22;
}
.popover-calendar-box .popover-arrow.top {
    top: 0;
    border-bottom: 10px solid #006bd6;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.popover-calendar-box .popover-arrow.bottom {
    bottom: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.popover-calendar-head {
    color: #fff;
    height: 54px;
    line-height: 54px;
    padding: 0 20px;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    background: #006bd6;
}
.popover-calendar-body {
    height: 260px;
    overflow-y: auto;
    position: relative;
    border-radius: 0 0 8px 8px;
    box-shadow: 0px 4px 10px 0px #d3e1ee;
    background: #fff;
}

.popover-loading {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
}

.popover-loading::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border: 2px solid #1890ff;
    border-bottom: 2px solid rgba(24, 144, 255, 0.2);
    border-left: 2px solid rgba(24, 144, 255, 0.2);
    border-right: 2px solid rgba(24, 144, 255, 0.2);
    border-radius: 50%;
    animation: rotate 0.75s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.h-line-group {
}

.h-line-group .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #e8e8e8;
}
.h-line-group .item:hover {
    background: #f5f5f5;
}
.h-line-group .item:last-child {
    border-bottom: 0;
}
.h-line-group .item .bd {
    width: 400px;
    flex: 1 1 auto;
}
.h-line-group .item .bd .tit {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}
.h-line-group .item .bd .txt {
    color: #9e9e9e;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}
.h-line-group .item .fd {
    flex: 0 0 100px;
    text-align: right;
}
.h-line-group .item .fd .price {
    color: #f60;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
