/* 公告样式 */
.notice-title {
    font-size: 1.4em;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0066CC !important;
    -webkit-text-fill-color: #0066CC !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.notice-text {
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.8;
    margin: 10px 0;
    color: #003399 !important;
    -webkit-text-fill-color: #003399 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.ip-text {
    font-weight: 700;
    font-size: 1.1em;
    padding: 0 5px;
    color: #0052CC !important;
    -webkit-text-fill-color: #0052CC !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .notice-title {
        font-size: 1.2em;
    }
    
    .notice-text {
        font-size: 1.05em;
        line-height: 1.6;
    }
    
    .ip-text {
        font-size: 1em;
    }
} 