.content-container {
    margin-top: 30%;
    margin-right: auto;
    width: 30%;
    right: 0%;
    min-width: 175px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    pointer-events: none;
    transition: all 0.5s;
    padding: 20px;
    color: white;
    font-size: 2rem;
    font-family: MiSans;
}

.content-container:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.6);
}

.item {
    margin-bottom: 20px; /* 每个子元素之间的间距 */
    padding: 10px; /* 子元素内边距 */
    border-radius: 10px; /* 子元素圆角 */
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.1); /* 子元素背景 */
    transition: all 0.3s; /* 添加过渡效果 */
    z-index: 1001;
}

.item:hover {
    background-color: rgba(255, 255, 255, 0.2); /* 悬停时的背景颜色 */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3); /* 悬停时的阴影效果 */
}

.item img {
    width: 100%; /* 图片宽度自适应 */
    border-radius: 10px; /* 图片圆角 */
}

.item p {
    margin-top: 10px; /* 文字与图片之间的间距 */
    color: white; /* 文字颜色 */
    font-size: 1.5rem; /* 文字大小 */
}
