body {
    font-family: Arial, sans-serif;
    font-size: 1.2em;
    line-height: 1.6;
    margin: 20px;
    background-color: #f4f4f4;
}

h1, h2, h3 {
    color: #333;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}

p {
    color: #555;
    margin-bottom: 1em;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

code {
    background-color: #e8e8e8;
    color: green;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 1.2em;
}

pre code {
    background-color: #dcdcdc;
    color: #333;
    display: block;
    padding: 10px;
    border-radius: 5px;
	font-size: 1.2em;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: bold;
    border-bottom: 2px solid #dee2e6;
}

tr:hover {
    background-color: #f5f5f5;
}

/* 响应式处理 */
@media screen and (max-width: 600px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px 10px;
    }
}
