.announcement{

/* 恢复弹窗内的段落样式 */
p {
    display: block;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
}

/* 恢复列表样式 */
ul,
ol {
    list-style-position: outside !important;
    padding-inline-start: 40px !important;
    margin-block-start: 1em !important;
    margin-block-end: 1em !important;
}

ul {
    list-style-type: disc !important;
}

ol {
    list-style-type: decimal !important;
}

li {
    list-style: inherit !important;
    display: list-item !important;
    text-align: match-parent !important;
}

/* 可选：恢复默认盒模型 */
* {
    box-sizing: content-box !important;
}



/* 弹窗遮罩层 */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1100;
    /*backdrop-filter: blur(0.5px);*/
}

/* 弹窗主体 */
.popup-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    width: min(80%, 600px);
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);*/
    transform: scale(0.95);
    /*opacity: 0;*/
    animation: popIn 0.3s ease forwards;
}
.popup-header svg{
    color: #3b82f6 !important;
}

/* 弹窗动画 */
@keyframes popIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 标题样式 */
.popup-header {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* 内容区域 */
.popup-body {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/*.popup-body ul li{*/
/*    color: #555;*/
/*}*/

/* 按钮容器 */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* 通用按钮样式 */
.popup-button {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.popup-button:hover {
    transform: translateY(-1px);
}

.popup-button:active {
    transform: translateY(1px);
    opacity: 0.9;
}

/* 关闭按钮样式 */
.close-button {
    background: #f5f5f5;
    color: #666;
}

/* 不再提示按钮样式 */
.disable-button {
    /*background: #409EFF;*/
    color: white;
    background: #3b82f6;
}

@media (max-width: 749px) {
    .popup-header {
        font-size: 1.3rem;
        color: #2c3e50;
        margin-bottom: 1.1rem;
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }
}

}