.canvas-box {
    margin-bottom: 12rem;
    /* 关闭触摸 */
    /* overflow-y: hidden;
    overflow-x: auto; */
    /* 开启触摸 */
    overflow: hidden;
}
.expo-canvas {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 0;
    transform-origin: 0 0;
}
.expo-pavilion {
    position: absolute;
    cursor: pointer;
    background-size: 100% 100%;
}
.pavilion-item.activate {
    /* box-shadow: 0 0 4px 200vw rgb(0 0 0 / 86%); */
    z-index: 4;
}

.bottom-fixed-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 -1px 4px #999;
}
.content-show-box {
    background-color: #fff;
}
.canvas-control-box {
    display: flex;
    height: 3rem;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
    background-color: #fff;
}
.btn-zoom {
    padding: 8px 12px;
    font-size: 1.2rem;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    margin-right: 10px;
    border-radius: 6px;
    cursor: pointer;
}
.btn-zoom.disabled {
    color: #999;
}
.hall-row {
    display: flex;
    border-bottom: 1px solid #f4f4f4;
    height: 2.6rem;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    font-size: 0.875rem;
}
.btn-box {
    display: flex;
    border-top: 1px solid #eee;
}
.btn {
    flex: 1;
    height: 2.8rem;
    line-height: 2.8rem;
    text-align: center;
    cursor: pointer;
}
.btn.btn-cancel {
    background-color: #ccc;
    color: #fff;
}
.content-show-box {
    background-color: #fff;
    display: none;
    border-top: 1px solid #eee;
}

.pavilion-name {
    padding: 8px 10px;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
}
.w50 {
    width: 50%;
    padding-top: 8px;
}
.pavilion-name > .w50:nth-child(odd) {
    width: 40%;
}
.pavilion-name > .w50:nth-child(even) {
    width: 60%;
}

/* 电脑端 */
.pc-private-container {
    margin-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}
.pc-private-container .canvas-box {
    margin-bottom: 0;
    overflow: hidden;
}
.pc-private-container .bottom-fixed-box {
    position: relative;
    margin-bottom: 1rem;
}
.pc-private-container .content-show-box {
    position: absolute;
    left: 0;
    top: 58px;
    right: 0;
    z-index: 7;
    box-shadow: 0 2px 2px #999;
}

.sold-out {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #f9f9f9;
    /* background-color: rgba(80,80,80,0.7);
    text-shadow: 0 0 10px #000; */
}
.pavilion-empty-number {
    position: absolute;
    background-color: rgba(243, 190, 29, 94%);
    padding: 4px 10px;
    color: #f9f9f9;
    left: 0%;
    top: 2%;
    z-index: 2;
    box-shadow: 2px 2px 1px rgb(243 190 29 / 20%);
    font-size: 14.6px;
    font-weight: 500;
}
.pavilion-empty-number:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px 12px;
    border-color: rgba(243, 190, 29, 88%) transparent transparent;
    border-style: solid;
    top: 95%;
    left: 50%;
    margin-left: -12px;
}