<STYLE type=text/css>
BODY {
    FONT-SIZE: 14px;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

INPUT, SELECT, TEXTAREA {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

INPUT:focus, SELECT:focus, TEXTAREA:focus {
    border-color: #0066FF;
    outline: none;
}

A {
    color: #0066FF;
    text-decoration: none;
    transition: color 0.3s;
}

A:hover {
    color: #0044CC;
}

.title {
    color: #333;
    font-weight: bold;
}

.table-content {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.table-content th {
    background-color: #0066FF;
    color: white;
    padding: 12px;
    text-align: left;
}

.table-content td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
}

.table-content tr:hover td {
    background-color: #f9f9f9;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0066FF;
    color: white;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0044CC;
    color: white;
}

.header {
    background-color: #0066FF;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

.footer {
    background-color: #333;
    color: #ccc;
    padding: 30px 0;
    margin-top: 30px;
    text-align: center;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.article-list li:last-child {
    border-bottom: none;
}

/* ÏìÓ¦Ê½Éè¼Æ */
@media (max-width: 768px) {
    .table-content {
        display: block;
        overflow-x: auto;
    }
}
</STYLE>