/* 
author:袁丽
time：20210701
title：场地安排 */

html,
body {
    height: 100%;
}

.top-header {
    background: url('../images/pages/header-bg.png')left top no-repeat;
    background-size: 100% 100%;
}

.top-header .header {
    background: transparent;
}

.width-12 {
    width: 1200px;
    margin: 0 auto;
}

.main {
    padding-top: 3px;
    padding-bottom: 32px;
    background: #f6f7f8;
    position: relative;
    min-height: calc(100% - 225px);
}

.main::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    display: block;
    top: 0;
    left: 0;
    background: #e5dfdf;
}


/* 顶部导航条 */

.navigation-wrap {
    font-family: 'SourceHanSansCN-Regular';
    line-height: 56px;
    font-size: 16px;
    color: #333;
}

.navigation-current-item {
    padding-left: 28px;
    margin-right: 21px;
    position: relative;
    background: url('../images/pages/position-icon.png')left center no-repeat;
}

.navigation-current-item::after {
    content: '>';
    width: 10px;
    position: absolute;
    right: -21px;
    top: 0;
}

.navigation-bar-item:last-child {
    color: #fc6e21;
}

.navigation-bar-item {
    padding: 0 11px;
    cursor: pointer;
}

.navigation-bar-item+.navigation-bar-item {
    position: relative;
    margin-left: 10px;
}

.navigation-bar-item+.navigation-bar-item::before {
    content: '>';
    position: absolute;
    left: -11px;
    color: #333;
}


/* 具体内容部分 */

.main-content-wrap {
    padding: 0 30px;
    padding-bottom: 37px;
    background: #fff;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0 0 15px rgba(134, 133, 133, .08);
}

.main-content-wrap .wrap-tag {
    padding-left: 11px;
    position: absolute;
    width: 179px;
    line-height: 55px;
    left: -11px;
    top: 18px;
    box-sizing: border-box;
    font-family: "PangMenZhengDao";
    background: url('../images/pages/detail-title-bg.png')left center no-repeat;
    font-size: 24px;
    background-size: 100% 100%;
    letter-spacing: 5px;
    text-shadow: 0px 3px 2.91px rgba(210, 48, 4, 0.5);
    -moz-transform: scale(1, 1.15);
    -webkit-transform: scale(1, 1.15);
    -ms-transform: scale(1, 1.15);
    cursor: pointer;
    color: #fff;
}

.detail-header-title {
    padding-bottom: 7px;
    line-height: 104px;
    text-align: center;
    font-size: 24px;
    font-family: 'SourceHanSansCN-Medium';
    color: #333;
}


/* 头部日期部分 */

.calendar-wrap {
    padding: 21px 159px 0 74px;
    width: 100%;
    height: 100px;
    border-radius: 5px;
    position: relative;
    box-sizing: border-box;
    font-family: 'SourceHanSansCN-Regular';
    background: url('../images/pages/calendar-icon.png')right 10px center no-repeat;
    background-color: rgb(243, 244, 246);
}

.calendar-btns {
    position: absolute;
    width: 18px;
    height: 32px;
    top: 50%;
    margin-top: -16px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    cursor: pointer;
}

.calendar-btns.left-btn {
    left: 34px;
    background-image: url('../images/pages/left-btn.png');
}

.calendar-btns.right-btn {
    right: 117px;
    background-image: url('../images/pages/right-btn.png');
}

.calendar-btns.left-btn:hover {
    background-image: url('../images/pages/left-btn-active.png');
}

.calendar-btns.right-btn:hover {
    background-image: url('../images/pages/right-btn-active.png');
}

.calendar-item {
    width: 128px;
    height: 100%;
    /* margin: 0 13px; */
    text-align: center;
    position: relative;
    cursor: pointer;
    color: #333;
}

.calendar-content-wrap {
    height: 100%;
}

.calendar-item.active {
    color: #d92a2b;
}

.calendar-item.active::before {
    content: '';
    position: absolute;
    width: 102px;
    height: 3px;
    display: block;
    bottom: 0px;
    left: 13px;
    background: #d92a2b;
}

.calendar-item.active::after {
    content: '';
    position: absolute;
    width: 102px;
    height: 12px;
    display: block;
    bottom: 3px;
    left: 13px;
    opacity: 0.239;
    background-image: -moz-linear-gradient( 90deg, rgb(254, 100, 101) 0%, rgba(254, 100, 101, 0.99) 1%, rgba(254, 100, 100, 0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(254, 100, 101) 0%, rgba(254, 100, 101, 0.99) 1%, rgba(254, 100, 100, 0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(254, 100, 101) 0%, rgba(254, 100, 101, 0.99) 1%, rgba(254, 100, 100, 0) 100%);
}

.calendar-item.active .calendar-item-date {
    font-family: 'SourceHanSansCN-Medium';
}

.calendar-item .calendar-item-date {
    line-height: 35px;
    font-size: 24px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.calendar-item .calendar-item-weekday {
    line-height: 32px;
    font-size: 18px;
}


/* 场地安排具体内容 */

.site-arrangement-wrap {
    position: relative;
    font-family: 'SourceHanSansCN-Regular';
}

.legend-wrap {
    position: absolute;
    right: 30px;
    top: 238px;
    line-height: 49px;
    font-size: 16px;
    color: #333;
}

.legend-item {
    padding-left: 24px;
    position: relative;
    cursor: pointer;
}

.legend-item+.legend-item {
    margin-left: 16px;
}

.legend-item::before {
    content: '';
    width: 14px;
    height: 14px;
    margin-top: -6px;
    position: absolute;
    left: 0;
    top: 50%;
}

.legend-item.reserved-legend::before {
    background: #fea13e;
}

.legend-item.free-legend::before {
    background: #3da1f6;
}


/* 场地选择 */

.site-item {
    line-height: 49px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.site-item+.site-item {
    margin-left: 52px;
}

.site-item.active {
    position: relative;
    color: #e53335;
}

.site-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #e53335;
}

.site-wrap {
    padding-top: 26px;
    border-bottom: 1px solid #eae8e8;
}

.tab-bd {
    padding-top: 6px;
}


/* 时间节点 */

.time-node-item {
    padding: 9.5px 0;
    width: 198px;
    position: relative;
}

.time-node-item+.time-node-item {
    position: relative;
}

.time-node-item+.time-node-item::before {
    content: '';
    position: absolute;
    right: 17px;
    top: -30px;
    width: 1px;
    height: 60px;
    background: #ddd;
    display: block;
    z-index: 1;
}

.time-node-item .time-node-content {
    margin-right: 6px;
    width: 170px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 20px;
    cursor: pointer;
    vertical-align: middle;
    font-size: 20px;
    background-image: -moz-linear-gradient( 180deg, rgb(251, 232, 232) 0%, rgb(252, 215, 216) 100%);
    background-image: -webkit-linear-gradient( 180deg, rgb(251, 232, 232) 0%, rgb(252, 215, 216) 100%);
    background-image: -ms-linear-gradient( 180deg, rgb(251, 232, 232) 0%, rgb(252, 215, 216) 100%);
    color: #e53335;
}

.time-node-item .time-node-point {
    width: 10px;
    height: 10px;
    margin-top: -7px;
    position: absolute;
    right: 13px;
    top: 50%;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #e1e3e5;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    z-index: 10;
}

.time-node-item.active .time-node-point {
    border-color: #d92a2b;
    background: #d92a2b;
}

.time-node-item.active .time-node-content {
    background: #d92a2b;
    box-shadow: 0px 5px 5px 0px rgba(217, 42, 43, 0.2);
    color: #fff;
}


/* 右侧具体安排内容 */

.arrangement-detail-wrap {
    padding: 11px 11px 0 15px;
    margin-top: 10px;
    width: calc(100% - 198px);
    height: 688px;
    border: 1px solid #e1e2e6;
    box-sizing: border-box;
    /* background: lightblue; */
}

.arrangement-detail-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floor-item {
    margin-top: 3px;
    width: 60px;
    height: 39px;
    line-height: 38px;
    background: url('../images/pages/floor-icon.png')center no-repeat;
    background-size: 100% 100%;
    text-align: center;
    cursor: pointer;
    font-family: 'SourceHanSansCN-Medium';
    font-size: 22px;
    color: #fff;
}

.area-item {
    margin-top: 10px;
    width: 56px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #fa642f;
    border-radius: 3px;
    box-sizing: border-box;
    background-image: -moz-linear-gradient( 180deg, rgba(244, 182, 121, .29) 0%, rgba(239, 134, 89, .29) 100%);
    background-image: -webkit-linear-gradient( 180deg, rgba(244, 182, 121, .29) 0%, rgba(239, 134, 89, .29) 100%);
    background-image: -ms-linear-gradient( 180deg, rgba(244, 182, 121, .29) 0%, rgba(239, 134, 89, .29) 100%);
    font-family: 'SourceHanSansCN-Medium';
    font-size: 22px;
    color: #fa642f;
}

.bidding-room-wrap {
    padding-left: 4px;
}

.bidding-room-item {
    padding-top: 15px;
    margin-right: 28px;
    margin-top: 20px;
    width: 200px;
    height: 90px;
    position: relative;
    background: #f3f4f6;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.bidding-room-item:nth-child(4n) {
    margin-right: 0;
}

.bidding-room-item .item-position {
    line-height: 31px;
}

.bidding-room-item .item-name {
    line-height: 28px;
}

.bidding-room-item::before {
    content: '';
    width: 53px;
    height: 57px;
    position: absolute;
    left: -4px;
    top: -4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.reserved.bidding-room-item::before {
    background-image: url('../images/pages/arranged-site.png');
}

.free.bidding-room-item::before {
    background-image: url('../images/pages/free-site.png');
}

.tab-hd-item{
    font-weight:600;
}