.notice-header {
    background: #fffbe6;
    border-radius: 8px 8px 0 0;
    border-bottom: 1.5px dashed #ffe58f;
    padding: 28px 24px 18px 24px;
    margin: 0 -24px 18px -24px;
    box-shadow: 0 2px 8px rgba(255, 229, 143, 0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.notice-title {
    color: #ad6800;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.notice-meta {
    color: #bfa055;
    font-size: 15px;
    margin-top: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    align-items: center;
    background: #fffbe6;
    border-radius: 0 0 8px 8px;
    padding: 8px 0 4px 0;
    box-shadow: 0 1px 4px rgba(255, 229, 143, 0.04);
}

.notice-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #bfa055;
    padding: 2px 0;
    transition: color 0.2s;
}
.notice-meta .meta-item a {
    color: #d48806;
    text-decoration: none;
    transition: color 0.2s;
}
.notice-meta .meta-item a:hover {
    color: #fa541c;
    text-decoration: underline;
}
.notice-meta .icon-calendar,
.notice-meta .icon-folder,
.notice-meta .icon-eye {
    color: #ffe58f;
    font-size: 15px;
    margin-right: 3px;
}

.notice-content {
    /*padding: 30px 0;*/
    line-height: 1.8;
    position: relative;
    background: none !important;
    z-index: 0;
    user-select: none;         /* 禁止选中 */
    -webkit-user-select: none; /* 兼容Safari/Chrome */
    -moz-user-select: none;    /* 兼容Firefox */
    -ms-user-select: none;     /* 兼容IE/Edge */
}

.notice-footer {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
}

/* 薪资卡片样式 */
.salary-post {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    padding: 24px 18px 12px 18px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(255, 229, 143, 0.08);
    font-size: 16px;
    line-height: 2;
    color: #614700;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 0;
}
.salary-post::after {
    content: "";
    pointer-events: none;
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    z-index: 10;
    opacity: 1;
    background-image: url("data:image/svg+xml;utf8,<svg width='293' height='120' xmlns='http://www.w3.org/2000/svg'><text x='0' y='70' font-size='36' font-family='Microsoft YaHei,Arial,sans-serif' fill='rgba(200,160,60,0.13)' transform='rotate(-20 100 40)'>衢州哈冷</text></svg>");
    background-repeat: repeat;
    background-size: 293px 120px;
}
.salary-row {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.salary-label {
    font-weight: bold;
    color: #d48806;
    min-width: 110px;
    display: inline-block;
}
.salary-num {
    color: #fa541c;
    font-weight: bold;
    font-size: 18px;
    margin: 0 2px;
}
.salary-total {
    border-top: 1px dashed #ffe58f;
    margin-top: 12px;
    padding-top: 10px;
    font-size: 18px;
    color: #ad6800;
}

/* 补充说明美化 */
.salary-desc {
    margin-top: 16px;
    background: #fffbe6;
    border-left: 4px solid #ffe58f;
    border-radius: 6px;
    padding: 18px 16px 14px 16px;
    font-size: 15px;
    color: #8c8c8c;
    box-shadow: 0 2px 8px rgba(255, 229, 143, 0.08);
    position: relative;
}
.salary-desc-title {
    font-size: 17px;
    font-weight: bold;
    color: #d48806;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 1px;
}
.salary-desc p {
    margin: 0 0 10px 0;
    line-height: 1.9;
    text-indent: 2em;
}
.salary-desc strong {
    color: #fa541c;
    font-weight: bold;
}
.salary-desc .salary-num {
    color: #fa541c;
    font-weight: bold;
    font-size: 16px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .notice-title {
        font-size: 20px;
    }
    .notice-content {
       /* padding: 20px 0;*/
    }
}
@media (max-width: 600px) {
    .salary-post {
        padding: 14px 6px 8px 6px;
        font-size: 15px;
    }
    .salary-label {
        min-width: 90px;
        font-size: 15px;
    }
    .salary-num {
        font-size: 16px;
    }
    .salary-total {
        font-size: 16px;
    }
    .salary-desc {
        font-size: 14px;
        padding: 10px 6px 8px 10px;
    }
    .salary-desc-title {
        font-size: 15px;
    }
    .notice-header {
        padding: 16px 8px 10px 8px;
        margin: 0 -8px 10px -8px;
        border-radius: 6px 6px 0 0;
    }
    .notice-title {
        font-size: 20px;
    }
    .notice-meta {
        font-size: 13px;
        gap: 10px 12px;
        padding: 4px 0 2px 0;
        border-radius: 0 0 6px 6px;
    }
    .notice-meta .meta-item {
        font-size: 13px;
    }
}

.notice-list-container {
    margin: 32px 0;
}
.notice-list-title {
    font-size: 26px;
    color: #ad6800;
    font-weight: bold;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.notice-list-item {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 229, 143, 0.06);
    padding: 18px 20px 14px 20px;
    margin-bottom: 22px;
    transition: box-shadow 0.2s;
}
.notice-list-item:hover {
    box-shadow: 0 4px 16px rgba(255, 229, 143, 0.18);
}
.notice-list-item-title {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #d48806;
}
.notice-list-item-title a {
    color: #d48806;
    text-decoration: none;
    transition: color 0.2s;
}
.notice-list-item-title a:hover {
    color: #fa541c;
}
.notice-list-meta {
    font-size: 13px;
    color: #bfa055;
    margin-bottom: 8px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.notice-list-meta i {
    margin-right: 3px;
    color: #ffe58f;
}
.notice-list-intro {
    color: #614700;
    font-size: 15px;
    line-height: 1.7;
    margin-top: 2px;
}
.pagebar {
    margin-top: 30px;
    text-align: center;
}

.notice-btn-group {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
    justify-content: center;
}

.notice-btn {
    background: linear-gradient(90deg, #ffe58f 0%, #fffbe6 100%);
    color: #ad6800;
    border: 1px solid #ffe58f;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 229, 143, 0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    outline: none;
    text-decoration: none;
    display: inline-block;
}

.notice-btn:hover, .notice-btn:focus {
    background: linear-gradient(90deg, #fffbe6 0%, #ffe58f 100%);
    color: #fa541c;
    box-shadow: 0 4px 16px rgba(255, 229, 143, 0.18);
}

.notice-btn-save::before {
    content: "💾";
    margin-right: 6px;
    font-size: 16px;
}

.notice-btn-post::before {
    content: "✉️";
    margin-right: 6px;
    font-size: 16px;
}

/* 保存图片按钮的禁用状态 */
.notice-btn:disabled {
    background: #f5f5f5;
    color: #999;
    border-color: #d9d9d9;
    cursor: not-allowed;
    box-shadow: none;
}

.notice-btn:disabled:hover {
    background: #f5f5f5;
    color: #999;
    box-shadow: none;
}

/* 保存图片按钮的加载状态 */
.notice-btn.loading {
    position: relative;
    color: transparent;
}

.notice-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #ad6800;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}