/* styles.css */
.hidden {
    display: none;
}

html,body {
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #333333; /* 更浅的起始颜色 */
    background: linear-gradient(to bottom, #333333 0%, #80bfff 100%); /* 更浅的结束颜色 */
}

#passwordPrompt {
    background: white;
    background: linear-gradient(to bottom,  #333333 0%, #80bfff 100%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#content {
    background: white;
    background: linear-gradient(to bottom,  #333333 0%, #80bfff 100%);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 80%; /* ���Ը�����Ҫ������� */
    max-width: 600px; /* ��������� */
    text-align: left;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;

    .recommend-tab span {
    background-color: inherit; /* 使用继承属性使背景颜色与父元素相同 */
    color: white; /* 设置文本颜色为白色 */
}