body {
    background-color: rgb(75, 75, 75); /* 灰色偏暗 */
    color: white; /* 设置文字颜色为白色 */
    font-family: Arial, sans-serif; /* 设置字体 */
    margin: 0;
    padding: 0;
}

a:visited {
    color: green; /* 已访问的链接颜色 */
    text-decoration: none;
}

a:hover {
    color: red; /* 鼠标悬停时的颜色 */
    text-decoration: none;
}

a:active {
    color: darkblue; /* 链接被点击时的颜色 */
}

.container {
    align-content: center;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 810px;
    margin: 0 auto;
    /*overflow: hidden;*/
    height: auto;
}

.box {
    height: auto;
    width: 450px; /* 设置每个方框的宽度 */
    border: 1px solid #ccc; /* 设置边框样式 */
    margin: 10px;
    /* 让内容垂直居中 */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; /* 文本居中对齐 */
}

.box p {
    margin: 0;
}

.box hr {
    width: 100%; /* 让分隔线宽度铺满整个容器 */
    border: none; /* 清除默认边框样式 */
    margin: 0;
    border-top: 1px solid #ccc; /* 设置分隔线颜色和样式 */
}



.sidebar-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 24px;
    z-index: 9999;
    cursor: pointer;
    color: azure;
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
}

.sidebar {
    height: 100vh;
    width: 250px;
    background-color: rgba(128, 128, 128, 0.2);
    position: fixed;
    right: -250px;
    top: 0;
    transition: right 0.3s ease;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 使侧边栏内容和图片分布在两端 */
}

.sidebar.active {
    right: 0; /* 当侧边栏激活时，将其位置设为0 */
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
    text-align: center;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.sidebar ul li a:hover {
    background-color: #555;
}

.sidebar-toggle:hover {
    background-color: #555;
}

.sidebar-image {
    padding: 10px;
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-select {
    width: 100%; /* 根据需要调整宽度 */
    padding: 6px 12px; /* 内边距 */
    font-size: 14px; /* 字体大小 */
    border-radius: 4px; /* 边框圆角 */
    border: 1px solid #ccc; /* 边框颜色和宽度 */
    box-sizing: border-box; /* 包含内边距和边框的宽度 */
    background-color: transparent; /* 背景颜色 */
    appearance: none; /* 移除默认样式，兼容性可能有差异 */
    -webkit-appearance: none; /* 针对Webkit内核 */
    -moz-appearance: none; /* 针对Firefox */
}

.custom-select:focus {
    outline: none; /* 移除焦点时的轮廓 */
    border-color: #5bc0de; /* 当聚焦时改变边框颜色 */
}

#text-container{

}