﻿.btnCopy {
    box-shadow: none;
    cursor: pointer;
    display: inline-flex;
    font-family: Inter,-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 14px !important;
    font-weight: 600;
    justify-content: center;
    margin: 0;
    outline: none;
    font-style: normal;
    color: #54a9ff;
    /* background-color: black; */
}

.smallTitle {
    font-size: 12px;
    color: dimgrey;
    float:right;
}


.title-content-mark {
    margin-left: 8px;
    background-size: 100% 100%;
    position: relative;
    top: -2px;
}
.c-text-new {
    background-color: #ff455b
}
.c-text-use {
    background-color: #4d83ff
}
.c-text-hot {
    background-color: #f60;
}
.c-text-cool {
    background-color: #cc17ed;
}
.c-text-why {
    background-color: #8e8999;
    padding-left: 4px !important;
    padding-right: 0px !important;
    font-weight: 800 !important;
}

.c-text {
    display: inline-block;
    padding: 0 2px;
    text-align: center;
    vertical-align: middle;
    font-style: normal;
    color: #fff;
    overflow: hidden;
    line-height: 16px;
    height: 16px;
    font-size: 12px;
    border-radius: 4px;
    font-weight: 200
}

/*逐渐消失-2秒内平滑过渡*/
.fade-out {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.coolText {
    margin: 0 !important;
    text-align: center;
    font: bold 100px/1 "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    color: #fff !important;
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15) !important;
    -webkit-transition: .2s all linear !important;
}
.c-text-custom {
    margin: 0 !important;
    text-align: left;
    /*font: bold 100px/1 "Helvetica Neue", Helvetica, Arial, sans-serif !important;*/
    /*    color: #fff !important;*/
    text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15) !important;
    -webkit-transition: .2s all linear !important;
    line-height: normal;
}

.textWarn {
    color: #d2a813 !important;
    font-weight: bold;
}


.textBlue {
    color: #0348e6 !important;
    font-weight: bold;
}

.txtGreen {
    color: green !important;
    font-weight: bold;
}
.txtError {
    color: red !important;
    font-weight: bold;
}

.txtSystem {
    color: #0097a7 !important;
    font-weight: bold;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    top: 20% !important;
    left: 50% !important;
    position: absolute;
}

.loading-text {
    /*color: #1369ef;*/
    color: #ef13e6;
    font-size: 14pt;
    font-weight: 600;
    margin-left: 10px;
}

.dot {
    margin-left: 3px;
    animation: blink 1.5s infinite;
}

    .dot:nth-child(2) {
        animation-delay: 0.3s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.6s;
    }

.loading-bar-background {
    --height: 30px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 5px;
    width: 200px;
    height: var(--height);
    background-color: #212121;
    box-shadow: #0c0c0c -2px 2px 4px 0px inset;
    border-radius: calc(var(--height) / 2);
}

.loading-bar {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    --height: 20px;
    width: 0%;
    height: var(--height);
    overflow: hidden;
    background: rgb(222, 74, 15);
    background: linear-gradient(0deg, rgba(222, 74, 15, 1) 0%, rgba(249, 199, 79, 1) 100%);
    border-radius: calc(var(--height) / 2);
    animation: loading 4s ease-out infinite;
}

.white-bars-container {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 18px;
}

.white-bar {
    background: rgb(255, 255, 255);
    background: linear-gradient(-45deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 70%);
    width: 10px;
    height: 45px;
    opacity: 0.3;
    rotate: 45deg;
}

@keyframes loading {
    0% {
        width: 0;
    }

    80% {
        width: 100%;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}


/* 遮罩层样式 */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景模糊黑色 */
    backdrop-filter: blur(5px); /* 背景模糊效果 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 确保遮罩层在最上层 */
    visibility: visible; /* 默认显示 */
    opacity: 1;
    transition: visibility 0.3s, opacity 0.3s;
}

    /* 隐藏遮罩层 */
    .overlay.hidden {
        visibility: hidden;
        opacity: 0;
    }


.golden-button {
    touch-action: manipulation;
    display: inline-block;
    outline: none;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
    border: none;
    border-radius: 0.3em;
    height: 2.75em;
    line-height: 2.5em;
    text-transform: uppercase;
    padding: 0 1em;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4), inset 0 -2px 5px 1px rgba(139, 66, 8, 1), inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: rgb(120, 50, 5);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
}

    .golden-button:focus,
    .golden-button:hover {
        background-size: 150% 150%;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
        border: 1px solid rgba(165, 93, 7, 0.6);
        color: rgba(120, 50, 5, 0.8);
    }

    .golden-button:active {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4), inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    }