/* 设置遮罩层 */
.posterOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    z-index: 9999; /* 确保遮罩层在最上面 */
}

/* 中间的图片 */
.posterOverlay .posterImage {
    max-width: 80%; /* 限制图片最大宽度 */
    max-height: 80%; /* 限制图片最大高度 */
    border-radius: 10px; /* 图片的圆角 */
}

/* 关闭按钮样式 */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.posterCon {
    background-color: #f5f5f5;
    background-image: url('/static/picture/img_bg.png'); /* Replace with your background image */
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    padding: 5px 0;
}

.poster-container {
    max-width: 750px;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.poster-logo {
    text-align: center;
    /*padding: 15px 0;*/
}

.poster-logo img {
    max-width: 180px;
    height: auto;
}

.poster-article-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
    text-align: center;
}

.poster-article-date {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.poster-divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

.poster-article-content {
    margin-bottom: 30px;
}

.poster-article-content p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 15px;
    line-height: 1.8;
}

.poster-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    margin-top: 20px;
}

.poster-footer-text {
    font-weight: bold;
}

.poster-footer-text p {
    margin-bottom: 5px;
}

.poster-qr-code {
    text-align: center;
}

.poster-qr-code img {
    width: 80px;
    height: 80px;
}

.poster-qr-code-text {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.poster-highlight {
    color: #ff6600;
    font-weight: bold;
}
