/* Microsoft Fluent Design */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f3f3f3;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
h1 {
    font-size: 28px;
    color: #0078d4;
    margin-bottom: 10px;
}
h2 {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}
p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
p .easyblog {
    font-size: 2px;
    color: #666;
}
a {
    color: #0078d4;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}
ul li {
    font-size: 16px;
    line-height: 1.5;
}
.code {
    font-family: 'Courier New', Courier, monospace;
    background-color: #f5f5f5;
    padding: 10px;
}
.image {
    max-width: 100%;
    height: auto;
    display: block;
}
.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
button {
    /* Flunt Design */
    background-color: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #005a9e;
}
button:active {
    background-color: #004785;
}
.top-bar {
    background-color: rgba(0, 120, 212, 0.4);
    color: #fff;
    padding: 1px;
    text-align: center;
    /* 毛玻璃效果 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* 兼容webkit浏览器 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* 禁用自动换行 */
    white-space: nowrap;
}
.title {
    color: #fff;
    text-decoration: none;
    /* 强行横向布局 */
    display: inline-block;
    font-size: 24px;
}
a h1 {
    margin: 0;
    color: #fff;
}
.button {
    color: #fff;
    text-decoration: none;
    /* 强行横向布局 */
    display: inline-block;
}