body{
    text-align: center;
    background-image: linear-gradient(to right,#999999,#330867);
}
#div-00{
    margin: 0 auto;
    width: 92%;
    padding: 0;
    text-align: center;
    display: inline-block;
}
.div-00{
    display: inline-block;
}
.tb-0{
    color:blue;
}
table{
    border: 0;
    margin: 0 auto;
}
#td{
    border-left: 1px solid black;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}
.inp{
    background-color: transparent;
    border-bottom: 1px solid rgb(128,125,125);
    color: #61dafb;
    caret-color: #61dafb;
    border: 0;
}
tbody{
    background-image: linear-gradient(to right,#a6c1ee,#fbc2ec);
}
.inp-1{
    border: 0;
    background-color: lightgrey;
}
.inp-1:hover{
    border: 0;
    background-color: #999999;
}
tr:hover{
    background-color: honeydew;
}
strong{
    background-image: -webkit-linear-gradient(bottom,red,#fd8403,yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#tctc{    
    display: none; /* 默认隐藏 */
    position: fixed; /* 固定定位 */
    z-index: 1; /* 设置在顶层 */
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}
/* 弹窗内容 */
.modal-content {
    background-image: linear-gradient(to right, #999999,#330867);
    margin: 15% auto; 
    padding: 20px;
    border: 0px solid #888;
    width: 80%; 
}

/* 关闭按钮 */
.close {
    display: none;
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ljname {
    margin-top: 0px;
}
.ljname span{
    font-weight: bold;
    color: #faebd7;
    animation: shadowing 1s ease-in-out infinite alternate;
}
.ljname span:nth-child(n+2){
    animation-delay: 0.2s;
}
.ljname span:nth-child(n+3){
    animation-delay: 0.2s;
}
@keyframes shadowing{
    to {
        color: #ff0266;
        text-shadow: 20px 0 70px #ff0266;
    }
}

.msg-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
    animation: fadeInOut 3s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; top: 0; }
    10% { opacity: 1; top: 20px; }
    90% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 0; }
}