<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*瀹氫箟鍏ㄥ眬棰滆壊鍙橀噺*/
:root {
    --themeColor: #2357C5;
    --themeColored: #003366;
    --aColor: #646464;
    --bgColor: #f5f5f5;
    --navColor: #27345F;
    --navHeight: 32px;
    --inputHeight: 32px;
    --bgColor2: rgba(15,33,57,0.05);
    --footerColor: #5c5c5c;
    --newHeight: 40px;
    --underlineColor: #cccccc;
}

*{
    padding: 0;
    margin: 0;
    /*font-family: "寰蒋闆呴粦", tahoma, arial, "瀹嬩綋", sans-serif;*/
    /*font-size: 14px;*/
}
/*椤甸潰杩涜鐏拌壊娓叉煋鐨勬晥鏋�*/
/*html {*/
/*    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);*/
/*    -webkit-filter: grayscale(100%);*/
/*}*/
body{
    height: 100%;
    width: 100%;
    background: white;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    /*overflow: hidden;*/
}
ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
}
/*a:hover{*/
/*    color: var(--themeColored);*/
/*}*/


.div-button{
    color: white;
    user-select: none;
    background-color: var(--themeColor);
    text-align: center;
    height: var(--inputHeight);
    line-height: var(--inputHeight);
    border-radius: 3px;
    font-size: 14px;
    width: 120px;
}

.div-del-button{
    color: white;
    user-select: none;
    background-color: red;
    text-align: center;
    height: var(--inputHeight);
    line-height: var(--inputHeight);
    border-radius: 3px;
    font-size: 14px;
    width: 120px;
}
.div-login-button{
    color: white;
    user-select: none;
    background-color: var(--themeColor);
    text-align: center;
    height: var(--inputHeight);
    line-height: var(--inputHeight);
    border-radius: 3px;
    font-size: 14px;
    /*width: 240px;*/
}
.div-login-button:hover{
    background-color: var(--themeColored);
    cursor: pointer;
}
.div-login-button:active{
     background-color: var(--themeColor);
}
.div-button:hover{
    background-color: var(--themeColored);
    cursor: pointer;
}
.div-button:active{
     background-color: var(--themeColor);
}
.div-del-button:hover{
    background-color: darkred;
    cursor: pointer;
}
.div-del-button:active{
     background-color: red;
}
input.input_form{
    border: none;
    outline: 0.1px solid var(--themeColor);
    width: 240px;
    height: var(--inputHeight);
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0 8px;
}

select{
    border: none;
    outline: 0.1px solid var(--themeColor);
    width: 260px;
    height: var(--inputHeight);
    border-radius: 3px;
    box-sizing: border-box;
    padding: 0 8px;
}

</pre></body></html>