* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}

html, body {
    width: 100%;
    height: 100%;
}

#form1 {
    width: 100%;
    height: 100%
}

.master {
    height: 100%;
    background-image: url('#');
    display: flex;
    flex-direction: row;
    width: 100%;
}


.master > .MainPage {
    width: 10%;
    height: 100%;
    background-color: rgb(132 199 198 / 80%);
    backdrop-filter: blur(3px); /*背景模糊*/
    background-size: cover;
    position: fixed;
    overflow-y: scroll;
}

.master > .MainPage::-webkit-scrollbar { /*滚动条整体部分*/
    width: 6px;
}

.master > .MainPage::-webkit-scrollbar-track { /*外层轨道*/
    background: rgba(128,128,128,0.4);
    border-radius: 2px;
}

.master > .MainPage::-webkit-scrollbar-thumb { /*滚动条里面可以拖动的那个*/
    background: rgb(210,223,186);
    border-radius: 10px;
}

.master > .MainPage::-webkit-scrollbar-thumb:hover { /*鼠标悬停*/
    background: rgb(223,176,150);
}

.master > .MainPage > .logo {
    margin-top: 8%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.master > .MainPage > .logo img {
    width: 70%;
}
.master > .MainPage > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* position: fixed;*/
    width: 100%;
    margin-top: 10px;
}

.master > .MainPage ul > .lab {
    margin-top: 20px;
    margin-left: 10px;
    margin-bottom: 15px;
    color: rgb(35, 33, 33);
    font-weight: bold;
    background-color: rgba(119, 10, 10, 0.07);
}

.master > .MainPage ul > .a {
    width: 100%;
    height: 50px;
    display: inline;
    align-items: center; /* 垂直居中 */
}

.master > .MainPage ul > .a:hover {
    background-color: rgba(213, 213, 213, 0.1);
}

.master > .MainPage ul > .a > a {
    display:block;
    height:100%;
    text-indent: 30px;
    text-decoration: none;
    color: rgb(0 0 0);
    padding-top: 8%;
}

.master > .MainPage ul > .a > i {

}

.master > .SubPage {
    width: 90%;
    height: 100%;
    background-color: rgb(255 255 255 / 40%);
    backdrop-filter: blur(5px); /*背景模糊*/
    position: fixed;
    left: 10%;
    overflow-y: scroll;
}

.master > .SubPage::-webkit-scrollbar { /*滚动条整体部分*/
    width: 6px;
}

.master > .SubPage::-webkit-scrollbar-track { /*外层轨道*/
    background: rgba(128,128,128,0.4);
    border-radius: 2px;
}

.master > .SubPage::-webkit-scrollbar-thumb { /*滚动条里面可以拖动的那个*/
    background: rgb(210,223,186);
    border-radius: 10px;
}

.master > .SubPage::-webkit-scrollbar-thumb:hover { /*鼠标悬停*/
    background: rgb(223,176,150);
}


.master > .SubPage > .top {
    background-color: rgb(132 199 198 / 80%);
    width: 100%;
    height: 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px; /* 调整间距 */
}

.master > .SubPage > .top > .User {
    align-items: center; /* 垂直居中 */
    display: flex;
    position: relative;
}

.master > .SubPage > .top > .User > .hi {
    position: absolute;
    right: 2%;
    display: inline-block;
}

.master > .SubPage > .top > .User > .hi > #LabHi {
    color: dimgrey;
    font-weight: bold;
}

.master > .SubPage > .top > .User > .hi > #ImgHi {
    position: relative;
    top: 8px;
    border-radius: 100%; /*将img设置为圆框*/
    width: 30px;
    height: 30px;
}


.master > .SubPage > .top > .search-container {
    text-align: center;
    height: 100%;
    margin: 20px auto; /* 使用 auto 居中，并调整上下间距 */
    display: flex;
    align-items: center; /* 垂直居中 */
}

.master > .SubPage > .top > .search-container input[type="text"] {
    margin-right: 5px;
    padding: 10px;
    height: 100%;
    width: 80%; /* 调整搜索框宽度 */
    border: none;
    border-radius: 5px;
}

.master > .SubPage > .top > .search-container button.search-btn {
    padding: 9px; /* 调整按钮的 padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    white-space: nowrap;
    background-color: #ffffff;
    color: #111;
}
.master > .SubPage > .top > .search-container button.search-btn:hover {
    background-color: #e0b539;
}

.User > button {
        background-color: #ffffff;
        color: #111;
        border: none;
        padding: 10px 15px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 14px;
}

#shower { /*换肤*/
    align-items: center;
    justify-items: center;
    height: 10%;
    display: none;
    margin: 10px;
}

.color {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* 如果子元素过多，允许换行 */
}

.ba {
    background-color: rgba(210, 210, 210, 0.4);
}

#an1 {
    margin: 10px;
    width: 8%;
    height: 70px;
}

.bb {
    background-color: #504343;
}

#an2 {
    margin: 10px;
    width: 8%;
    height: 70px;
}

.bc {
    background-color: #ffb4e5;
}

#an3 {
    margin: 10px;
    width: 8%;
    height: 70px;
}

.bd {
    background-color: #ffe4ab;
}

#an4 {
    margin: 10px;
    width: 8%;
    height: 70px;
}

.be {
    background-color: #d5abff;
}

#an5 {
    margin: 10px;
    width: 8%;
    height: 70px;
}