/* 通知详情页样式 */
.notice-detail {
    padding: 25px;
}

.notice-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.notice-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-align: center;
}

.notice-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    color: #888;
    font-size: 14px;
}

.notice-meta span {
    display: flex;
    align-items: center;
}

.notice-meta i {
    margin-right: 5px;
}

.notice-content {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
	zoom: 1.15;
}

.notice-content p {
    margin-bottom: 20px;
}

.notice-content .pictitle {
    text-align: center;
	margin-bottom: 30px;
}

.notice-content h3 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    color: #2057a0;
}

.notice-content ul, .notice-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.notice-content li {
    margin-bottom: 10px;
}

.notice-attachment {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

.attachment-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #333;
}

.attachment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.attachment-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.attachment-item:hover {
    background-color: #e8f0f9;
}

.attachment-icon {
    margin-right: 10px;
    color: #2057a0;
    font-size: 18px;
}

.attachment-info {
    flex: 1;
}

.attachment-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.attachment-size {
    font-size: 12px;
    color: #888;
}

.attachment-download {
    padding: 5px 10px;
    background-color: #2057a0;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.attachment-download:hover {
    background-color: #184785;
}

.notice-actions {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.notice-share {
    display: flex;
    align-items: center;
}

.notice-share span {
    margin-right: 10px;
    color: #666;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #666;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn i {
    font-size: 16px;
}

.share-btn:hover i.fa-weixin {
    color: #07c160;
}

.share-btn:hover i.fa-weibo {
    color: #e6162d;
}

.share-btn:hover i.fa-qq {
    color: #12b7f5;
}

.notice-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.prev-notice, .next-notice {
    color: #666;
    transition: color 0.3s ease;
    max-width: 48%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prev-notice:hover, .next-notice:hover {
    color: #2057a0;
}

.prev-notice i, .next-notice i {
    margin: 0 5px;
}


/* 响应式调整 */
@media (max-width: 768px) {
    .notice-title {
        font-size: 20px;
    }
    
    .notice-meta {
        gap: 10px;
    }
    
    .notice-nav {
        flex-direction: column;
    }
    
    .prev-notice, .next-notice {
        max-width: 100%;
		white-space: wrap;
    }
}

@media (max-width: 576px) {
    .notice-detail {
        padding: 15px;
    }
    
    .notice-title {
        font-size: 18px;
    }
    
    .notice-content {
        font-size: 15px;
    }
}