footer{
    background-color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 15px 0;
    color: #2e2e2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}

header{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 0;
    color: #2e2e2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 10px 10px;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.sys-title{
    font-weight: bold;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 28px;
}
.home button {
    background-image: url('https://cdn.lopliter.cn/tuxie/tools/home.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    border: none;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

.back button {
    background-image: url('https://cdn.lopliter.cn/tuxie/tools/back.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-color: transparent;
    border: none;
    margin-left: 20px;
    width: 40px;
    height: 40px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}

*{
    margin: 0;
    padding: 0;
}
body{
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    text-align: center;
    padding-top: 90px;
    background-image: url("https://cdn.lopliter.cn/tuxie/tools/BGnew.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    color: #333;
    font-size: 16px;
    padding-bottom: 90px;
}
a{
    text-decoration: none;
    color: #333;
}

.notice{
    width: 75%;
    height: 100%;
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border-left: #ffab7d 15px solid;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.3s;
    padding: 15px;
    margin: auto;
}

.notice:hover{
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

table{
    width: 90%;
    margin: auto;
    transition: all 0.3s;
}

th, td, tr{
    padding: 10px;
    border-bottom: 1px solid #d8d8d8;
}

.show_table{
    width: 90%;
    padding: 20px;
    margin: auto;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: all 0.3s;
}

.show_table h2{
    padding: 10px;
    font-size: 30px;
    border-bottom: 1px solid #d8d8d8;
}

.search{
    width: 90%;
    padding: 20px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.56);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.search input{
    width: 200px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #7dcaff;
    box-sizing: border-box;
}

.search button{
    width: 200px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.search button:hover{
    border: 1px solid #fff;
    background-color: #7dcaff;
    cursor: pointer;
    transition: all 0.3s;

}

table button{
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
}

table button:hover{
    background-color: #7dcaff;
    cursor: pointer;
    transition: all 0.3s;
}

table button:disabled{
    background-color: #d8d8d8;
    cursor: not-allowed;
}

.action-buttons a{
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    padding: 10px;
    border-radius: 5px;
    margin: 5px;
    font-size: 14px;
}

.editarea{
    width: 90%;
    padding: 20px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.editarea input{
    width: 200px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    box-sizing: border-box;
}

.editarea label{
    display: inline-block;
    width: 100px;
    text-align: right;
    margin-right: 10px;
}

.editarea button{
    width: 200px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.editarea button:hover{
    border: 1px solid #fff;
    background-color: #7dcaff;
    cursor: pointer;
    transition: all 0.3s;
}