
.weblist-container {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    margin-top: 1%;
    align-items: center;
}
.web_name {
    width: 100%;
    font-size: 30px;
    color: #c7ddff;
    user-select:none;
}


.web {
    height: 60px;
    width: 23%;
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-top: 20px;
    margin-left: 1%;
    margin-right: 1%;
    border-radius: 6px;
    background-color: #fafafa40;
    color: #ffffff;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.web:hover{
    background-color: rgb(222, 213, 229);
}
.web img {
    transition: transform 0.1s ease-in-out;
    position: absolute;
    left: 5%;
    height: 70%;
}

.web .web-id {
    font-size: 20px;
    position: absolute;
    left: 40%; 
    transition: transform 0.5s ease-in-out;
}

.web:hover img {
    transform: translateX(180%);
}

.web:hover .web-id {
    transform: translateX(400%);
}






/* 当屏幕最大宽度为768像素时应用以下样式 */
@media screen and (max-width: 768px) {
    .web {
        width: 40%;
        margin-right: 5%;
        margin-left: 5%;
    }
}

/* 备案 */
.beian {
    flex-wrap: wrap;
    height: auto;
    margin-top: 10%;
    text-align: center;
}
.beianma{
    font-size: 30px;
    color: #ffffff;
    user-select:none;
    text-align: center;
    cursor: pointer;
}