 html,
 body {
     margin: 0;
     padding: 0;
     height: 100%;
     background: linear-gradient(180deg, #8B0000 0%, #9E3B1B 100%);
 }

 body {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 /* 这一段是页脚 */
 .footer {
     font-size: 12px;
     font-weight: bold;
     color: #1A1A1A;
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     text-align: center;
     padding-bottom: 100px;
 }

 .footer a {
     color: inherit;
     text-decoration: none;
 }

 .footer a:hover {
     /* mix-blend-mode: overlay;
     will-change: transform; */
     transform: translateZ(0);
 }

 .line {
     margin-top: 12.5px;
     cursor: default;
 }

 /*《这一段是页脚》*/

 /*这一段是使用条款*/
 .tos-wrap {
     position: relative;
     display: none;
     width: 640px;
     height: 640px;
     border-radius: 25px;
     border: none;
     background-color: #1A1A1A;
     overflow: visible;
 }

 .tos-close {
     position: absolute;
     width: 12px;
     height: 12px;
     border-radius: 12px;
     background-color: #8B0000;
     border: none;
     display: flex;
     top: 17.5px;
     left: 17.5px;
     cursor: pointer;
 }

 .tos-box {
     display: flex;
     justify-content: center;
     flex-direction: column;
     width: 100%;
     overflow: hidden;
     padding: 12.5px;
     margin: 31px;
 }

 .tos-title {
     color: #fff;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: Inter;
     font-style: normal;
     line-height: normal;
     font-size: 24px;
     font-weight: bold;
     margin-bottom: 25px;
 }

 .tos-content {
     flex: 1;
     width: 100%;
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     font-family: Inter;
     font-style: normal;
     line-height: normal;
     overflow-y: auto;
 }

 .tos-content a {
     text-decoration: none;
     color: inherit;
 }

 .tos-content::-webkit-scrollbar {
     display: none;
 }

 /*《这一段是页脚》*/

 /*这一段是自定义滚动条*/
 .fake-scrollbar {
     position: absolute;
     top: 97.5px;
     right: -20px;
     width: 7.5px;
     height: 499.5px;
     background: transparent;
     border-radius: 5px;
 }

 .fake-thumb {
     position: absolute;
     top: 0;
     width: 100%;
     height: 50px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 5px;
     cursor: pointer;
 }

 .fake-thumb:active {
     cursor: grabbing;
     background: rgba(255, 255, 255, 0.5);
 }


 .fake-thumb:hover {
     background: rgba(255, 255, 255, 0.5);
 }

 /*《这一段是使用条款》*/

 /* 这一段是错误消息栏 */
 .errorDiv {
     display: none;
     background: #0C0C0C;
     border-radius: 25px;
     position: absolute;
     gap: 5px;
     padding: 12.5px;
     align-items: center;
     transform: translateY(-162px);
 }

 .errorDiv-button {
     display: flex;
     width: 12px;
     height: 12px;
     background: #8B0000;
     border-radius: 12px;
 }

 .errorDiv-message {
     font-size: 12px;
     font-weight: bold;
     color: #8B0000;
 }

 /* 登录，快捷登录，发送验证码等div */
 .card-wrap {
     display: none;
     width: 350px;
     padding: 25px;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     gap: 25px;
     border: 25px;
     border-radius: 25px;
     background: #1A1A1A;
     box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.25);
 }

 /* 标签title */
 .card-titleBox {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
 }

 .card-titleMessage {
     align-self: stretch;
     color: #FFF;
     text-align: center;
     font-size: 24px;
     font-weight: bold;
     line-height: normal;
     cursor: default;
 }

 .card-titleAccounts {
     position: absolute;
     right: 0px;
     display: flex;
     justify-content: flex-end;
     height: 25px;
     align-items: center;
     gap: -25px;
     border-radius: 25px;
     border: 2.5px solid #8B0000;
     background: #8B0000;
     cursor: pointer;
 }

 .card-titleAccountsItem {
     width: 25px;
     height: 25px;
     aspect-ratio: 1/1;
     border-radius: 25px;
     position: absolute;
     display: block;
 }

 /* 《标签title》 */

 .card-login {
     display: flex;
     flex-direction: column;
     width: 100%;
     gap: 25px;
 }

 .card-input,
 .card-showInput {
     display: flex;
     height: 35px;
     padding: 0px 12.5px;
     align-items: center;
     gap: 5px;
     align-self: stretch;
     border-radius: 12.5px;
     background: #0C0C0C;
     border: none;
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
 }

 .card-showInput {
     width: 100%;
 }

 .card-input:focus {
     outline: none;
     border: none;
 }

 .card-input::placeholder {
     color: #fff;
     opacity: 0.1;
 }

 .card-button {
     display: flex;
     width: 100%;
     height: 35px;
     gap: 5px;
     align-self: stretch;
     border-radius: 12.5px;
     background: #8B0000;
     align-items: center;
     justify-content: center;
     color: #1A1A1A;
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
     border: none;
     opacity: 1;
 }

 .card-button:disabled {
     opacity: 0.5;
 }

 .card-hint {
     align-self: stretch;
     text-align: center;
     font-size: 10px;
     font-weight: bold;
     line-height: normal;

     display: flex;
     align-items: center;
     flex-direction: row;
     justify-content: center;
 }

 .card-hint-child {
     color: #fff;
     opacity: 0.1;
     cursor: default;
 }

 .card-hint-a {
     color: #fff;
     opacity: 0.1;
     text-decoration: none;
 }

 .card-hint-a:hover {
     color: #fff;
     opacity: 0.5;
 }

 /* 登录，快捷登录，发送验证码等div */

 /* 接收到验证码输入验证码div */
 .card-inputCode {
     display: none;
     flex-direction: column;
     width: 100%;
     gap: 25px;
 }

 .card-emailGlobal {
     display: flex;
     align-items: center;
     width: 100%;
     position: relative;
 }

 .card-emailShow {
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
 }

 .card-countdownBox {
     display: flex;
     align-items: center;
     position: absolute;
     right: 12.5px;
 }

 .card-timer {
     display: flex;
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
 }

 .card-resetSendEmail {
     display: none;
     color: #fff;
     font-size: 12px;
     font-weight: bold;
     border: none;
     background: none;
     padding: 0px;
     line-height: normal;
     cursor: pointer;
 }

 .card-codeGlobal {
     display: flex;
     justify-content: space-between;
 }

 .card-codeInputGlobal {
     display: flex;
     justify-content: left;
     align-items: center;
     background: #0C0C0C;
     border-radius: 12.5px;
     padding: 0 12.5px;
     width: 226px;
     height: 35px;
 }

 .card-codeTitle {
     color: rgba(255, 255, 255, 0.1);
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
 }

 .card-codeTitle.active {
     color: rgba(255, 255, 255, 1);
 }

 .card-codeInput {
     background: transparent;
     border: none;
     color: rgba(255, 255, 255, 1);
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
     padding: 0px;
     line-height: normal;
     transform: translateY(1px);
 }

 .card-codeInput::placeholder {
     color: rgba(255, 255, 255, 0.1);
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
 }

 .card-codeInput:focus {
     outline: none;
     border: none;
 }

 .card-valideCode {
     background: #8b0000;
     opacity: 0.5;
     border-radius: 12.5px;
     color: #1A1A1A;
     font-size: 12px;
     font-weight: bold;
     line-height: normal;
     border: none;
     padding: 0px;
     width: 75px;
 }

 .card-valideCode.active {
     opacity: 1;
     cursor: pointer;
 }

 /* 多用户登录页面 */
 .card-userGlobal {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 17.5px;
 }

 .card-userIconList {
     display: flex;
     justify-content: center;
     gap: 17.5px;
     margin-bottom: 32px;
 }

 .card-userItemBox {
     height: 63px;
     background: rgba(blue, blue, blue, 0.5);
     display: flex;
     flex-direction: column;
     justify-content: space-between;
 }

 .card-userItem {
     overflow: hidden;
     cursor: pointer;
     display: flex;
     align-self: center;
     user-select: none;
     width: 40px;
     height: 40px;
     aspect-ratio: 1/1;
     border-radius: 40px;
     border: 2.5px solid rgba(255, 255, 255, 0.10);
 }

 .card-userItem img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .card-userItemRemove {
     width: 12px;
     height: 12px;
     aspect-ratio: 1/1;
     background: #8B0000;
     border-radius: 12px;
     align-self: center;
     cursor: pointer;
     visibility: hidden;
 }

 .card-userItemBox:hover .card-userItemRemove {
     visibility: visible;
 }

 .card-userItemBox:hover .card-userItem {
     border: 2.5px solid #8B0000;
 }

 .card-userAdd {
     position: relative;
     overflow: hidden;
     cursor: pointer;
     display: flex;
     align-self: flex-end;
     user-select: none;
     width: 45px;
     height: 45px;
     aspect-ratio: 1/1;
     border-radius: 45px;
 }

 .card-userAdd img {
     width: 100%;
     height: 100%;
     inset: 0;
     content: url("/icon/tools/userAdd.png");
     transition: 0.2s;
 }

 .card-userAdd:hover img {
     content: url("/icon/tools/userAddActive.png");
 }