* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Markazi", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.clearfix::before, .clearfix::after {
    content: '';
    display: table;
}
.clearfix::after {
    clear: both;
}

a {
    text-decoration: none;
    color: #337ab7;
}

b {
    font-family: "Markazi_SemiBold", serif;
}

i {
    font-style: italic;
}

p {
    word-wrap: break-word;
}

ul {
    list-style-position: outside;
}

li {
    margin-left: 24px;
    padding-left: 8px;
}

table {
    border-collapse: collapse;
    border: 1px solid black;
    text-align: center;
}

thead {
    background-color: #f3f3f3;
}

th, td {
    padding: 8px;
    border: 1px solid black;
}

body {
    background-color: white;
}

/* 隐藏滚动条的同时仍能滚动 */
.scroll-container {
    overflow: auto; /* 启用滚动功能 */
    -ms-overflow-style: none; /* 适用于 Internet Explorer 和旧版 Edge */
    scrollbar-width: none; /* 适用于 Firefox */
}

/* Webkit 浏览器 */
.scroll-container::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.wrapper {
    margin: 0 auto;
}

.first {
    margin-top: 0;
}

.leftbar {
    position: fixed;
    top: 0;
    z-index: 9998;
    width: 360px;
    padding: 16px 40px;
    height: 100vh; /* 使用视口高度 */
    background-color: white;
    color: #363636;
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    overflow-y: auto; /* 允许垂直滚动 */
}

.leftbar .icon {
    margin-bottom: 16px;
    margin-top: 56px;
    width: 60%;
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.leftbar .name {
    font-size: 28px;
}

.leftbar .intro {
    margin-top: 8px;
    margin-bottom: 24px;
    font-size: 24px;
}

.leftbar button {
    margin-bottom: 16px;
    width: 80%;
    height: auto;
    background-color: white;
    color: #363636;
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 6px;
}

.leftbar button:hover {
    cursor: pointer;
}

.leftbar button p {
    margin: 8px 0;
    font-size: 24px;
}

@media (max-width: 768px) {
    .leftbar .name {
        font-size: 24px;
    }
    .leftbar .intro {
        font-size: 20px;
    }
    .leftbar button p {
        font-size: 20px;
    }
}

.header {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 40px;
    background-color: white;
    box-shadow: 0 2px 3px 3px rgba(0, 0, 0, 0.1);
}

.header .where {
    position: absolute;
    left: 10%;
    transform: translate(-50%);
    margin: 8px 0;
    text-align: center;
    font-size: 24px;
}

.header .name {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    margin: 8px 0;
    text-align: center;
    font-size: 24px;
}

@media (max-width: 768px) {
    .header .where {
        margin: 10px 0;
        font-size: 20px;
    }
    .header .name {
        margin: 10px 0;
        font-size: 20px;
    }
}

.header .more {
    cursor: pointer;
    position: absolute;
    margin: 8px 0;
    left: 19.5%;
    height: 24px;
}

.container {
    position: absolute;
    margin-top: 36px;
    left: 57.5%;
    transform: translate(-50%);
    width: 60%;
    transition: all 0.5s;
}

.container .box {
    margin-bottom: 20px;
    padding: 24px 28px;
    width: 100%;
    height: auto;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

.container .box .topbar {
    margin: 8px 0;
    height: auto;
    color: #1C1C1C;
}

.container .box .topbar .title {
    font-size: 28px;
    font-family: "Markazi_SemiBold", serif;
}

.container .box .content {
    font-size: 24px;
    color: #363636;
}

.container .box .content table {
    font-size: 20px;
}

@media (max-width: 768px) {
    .container .box .content {
        font-size: 20px;
    }
    .container .box .topbar .title {
        font-size: 24px;
    }
    .container .box .content table {
        font-size: 16px;
    }
}

.container .box .content p {
    margin-top: 8px;
}

.container .box .bottombar {
    margin-top: 8px;
    color: #777;
    height: auto;
}