/* Tag */

:root {
    --banner-height: 50px;
    --max-width: 1000px;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: #010712;
}

h1 {
    font-size: 18px;
    text-shadow: 1px 1px gray;
    margin: 0;
    padding: 0 10px;
}

h2 {
    font-size: 12px;
    text-shadow: 1px 1px gray;
    margin: 0;
    padding: 0 10px;
}

hr {
    border: none;
    /* 去掉默认的边框 */
    border-top: 2px solid rgb(19, 52, 82);
    /* 设置顶部边框为灰色，粗细为2px */
    width: 75%;
    /* 设置分隔线的宽度为50% */
    margin: 20px auto;
    /* 设置上下外边距为20px，水平居中 */
}

textarea {
    background-color: #24262D;
    width: 100%;
    height: 50vh;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a {
    font-weight: bolder;
}

a:link {
    color: white;
}

/* visited link */
a:visited {
    color: white;
}

/* mouse over link */
a:hover {
    color: greenyellow;
}



/* Class */
.Banner,
.Panel {
    width: calc(100% - 80px);
    max-width: var(--max-width);
    color: white;
    font-size: 15px;
    margin: 0 auto;
}


.Canvas {
    background-color: #13171F;
    padding: 10px;
    height: 100%;
    height: fit-content;
    min-height: calc(100vh - 70px);
}

.MsgBox {
    background-color: #3E606FEE;
    border-radius: 15px;
    padding: 25px;
    position: fixed;
    z-index: 999;
    width: fit-content;
    height: fit-content;
    top: 50%;
    /* 距离视口顶部 50% */
    left: 50%;
    /* 距离视口左侧 50% */
    transform: translate(-50%, -50%);
    /* 移动元素使其完全居中 */
    display: table;
}

.MsgBoxContent {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: white;
    text-shadow: 2px 2px #010712AA;
    /*font-weight: bolder;*/
}

.SpaceBetween {
    display: flex;
    justify-content: space-between;
    background-color: #00ff00;
}

.Banner {
    display: flex;
    justify-content: space-between;
    background-color: #193441;
    height: var(--banner-height);
    top: 0%;
}


.AlignLeft {
    display: grid;
    justify-items: start;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0;
}

.AlignRight {
    display: grid;
    justify-items: end;
    align-items: center;
    height: 100%;
    position: relative;
    top: 0;
}


.Panel {
    top: 40px;
    background-color: #1C1F26;
    height: fit-content;
    min-height: calc(100vh - 70px);
    /* height: 100% - var(--banner-height); */
}

.ListFrame {
    height: 100%;
    width: 10px;
    position: fixed;
    right: 0px;
    top: 0px;
    background-color: rgba(38, 72, 87, 0);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    padding: 0 10px;
}

.ListFrame .icon {
    opacity: 1;
    position: absolute;
    top: 50%;
    left: calc(50%-10);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.ListFrame .bird {
    opacity: 0;
}

.ListFrame:hover .icon {
    opacity: 0;
}

.ListFrame:hover .bird {
    opacity: 1;
}

.ListFrame:hover {
    width: 180px;
    background-color: rgba(38, 72, 87, 0.8);
}

.ListFrame:hover .B1 {
    opacity: 1;
}

.ListFrame:hover .B2 {
    opacity: 1;
}


.B1,
.B2 {
    width: 100%;

    /* height: 30px; */
    padding: 2px 5px;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    color: #193441;
    border-width: 2px;
    border-color: 3E606F;
    opacity: 0;
}

input {
    padding: 2px 20px;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    color: #193441;
    border-width: 2px;
    border-color: 3E606F;
    background-color: #eef3e5;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

button {
    padding: 2px 20px;
    font-size: 12px;
    text-align: center;
    border-radius: 8px;
    color: #193441;
    border-width: 2px;
    border-color: 3E606F;
    background-color: #D1DBBD;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

.B1 {
    background-color: #91AA9D;
}

.B2 {
    background-color: #D1DBBD;
    font-size: 12px;
}

.B1:hover {
    padding: 8px;
    font-weight: bold;
}

button:hover {
    background-color: #FCFFF5;
    vertical-align: center;
    color: black;
}

.B1,
.B2,
.ListFrame,
.Banner,
.Panel,
.MsgBox {
    transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    /* Safari */
}


.neon-text {
    font-size: 18px;
    /* 设置字体大小 */
    font-weight: bold;
    /* 设为粗体 */
    text-align: center;
    /* 文本居中 */
    color: #fff;
    /* 初始文字颜色 */
    animation: neon 2s linear infinite;
    /* 应用动画 */
}

/* 定义霓虹灯效果的动画 */
@keyframes neon {
    0% {
        /* text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 160px #ff00ff; */
        color: #ff00ff;
    }

    25% {
        /* text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff, 0 0 80px #00ffff, 0 0 160px #00ffff; */
        color: #00ffff;
    }

    50% {
        /* text-shadow: 0 0 5px #ffff00, 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 40px #ffff00, 0 0 80px #ffff00, 0 0 160px #ffff00; */
        color: #ffff00;
    }

    75% {
        /* text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 40px #00ff00, 0 0 80px #00ff00, 0 0 160px #00ff00; */
        color: #00ff00;
    }

    100% {
        /* text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 40px #ff00ff, 0 0 80px #ff00ff, 0 0 160px #ff00ff; */
        color: #ff00ff;
    }
}