/* 海报弹窗 */
main .poster_box {
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    z-index: 101;
    display: none;
}

main .poster_box .title_close_box {
    width: 300px;
    height: 40px;
    background: #676667;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    padding: 0px 10px;
    border-radius: 5px 5px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: calc(50% - 307px);
    left: calc(50% - 150px);
}

main .poster_box .title_close_box .poster_close_btn {
    width: 20px;
    height: 20px;
}

main .poster_box .poster_canvas_box {
    width: 300px;
    height: 534px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main .poster_box .poster_canvas_box .bg_poster {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

main .poster_box .poster_canvas_box .poster_title {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0%);
}

main .poster_box .poster_canvas_box .poster_thumbnail {
    width: 130px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

main .poster_box .poster_canvas_box .poster_qrcode {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

main .poster_box .poster_canvas_box .poster_hint {
    color: #909399;
    font-size: 12px;
    position: absolute;
    bottom: 50px;
    right: 20px;
}

main .poster_box .poster_canvas_box .poster_hint_2 {
    color: #3b3525;
    font-size: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}