/**
 * 投诉须知页面样式
 */

.notice-container {
    width: 100%;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px 15px;
}

.notice-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.notice-title {
    font-size: 18px;
    font-weight: 500;
    color: #303133;
    text-align: center;
    margin: 10px 0;
}

.notice-text {
    font-size: 14px;
    color: #606266;
    line-height: 1.8;
    margin: 10px 0;
    text-align: justify;
}

.notice-text strong {
    font-weight: 600;
    color: #303133;
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
    .notice-container {
        padding: 15px 10px;
    }

    .notice-content {
        padding: 15px;
    }

    .notice-title {
        font-size: 16px;
    }

    .notice-text {
        font-size: 13px;
    }
}

/* 响应式设计 - 桌面端 */
@media (min-width: 769px) {
    .notice-container {
        max-width: 800px;
        margin: 0 auto;
    }
}

