.full-width {
    width: 100%;
}
.half-width {
    width: 50%;
}
.z999 {
    z-index: 999!important;
}

.flex-start {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.flex-center-end-column {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
}

.flex-start-column {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.flex-center-start-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.flex-center-start {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.flex-center-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-center-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-start-center {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flex-start-between {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.flex-align-center {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.margin-left-normal {
    margin-left: 1em;
}
.margin-left-small {
    margin-left: .5em;
}

.margin-left-xs {
    margin-left:5px;
}
.margin-left-xxs {
    margin-left: 2px;
}

.margin-left-large {
    margin-left: 2em;
}

.margin-right-small {
    margin-right: .5em;
}

.margin-top-small {
    margin-top: .5em;
}

.margin-top {
    margin-top:1em;
}

.margin-top-lg {
    margin-top:2em;
}

.margin-top-xl {
    margin-top:3em;
}

.margin-top-xxl {
    margin-top:5em;
}

.margin-bottom-small {
    margin-bottom: .5em;
}

.ml-1 {
    margin-left:.25rem!important;
}

.mr-2 {
    margin-left:.5rem!important;
}
.mr-1  {
    margin-right: .5em;
}
.mr-3 {
    margin-right: 1em;
}
.mr-4 {
    margin-right: 2em;
}
.ml-2 {
    margin-left: 2px;
}

.ml-3 {
    margin-left: 5px;
}

.ml-4 {
    margin-left: .5em;
}

.ml-5 {
    margin-left: 1em;
}

.mt-1 {
    margin-top:5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top:.5em;
}

.mt-4 {
    margin-top: 1em;
}

.mt-5 {
    margin-top:2em;
}

.fa {
    font-weight: 900;
}

.padding {
    padding:2em;
}

.padding-sm {
    padding:1em;
}

.padding-xs {
    padding:.5em;
}

.main-text-color {
    color: #212529;
}

.main-title {
    font-size:16px;
    color: #212529;
    font-weight: 700;
}

.big-title {
    color: #212529;
    font-size:24px;
    font-weight: 700;
}

.sub-title {
    color: #b5b5b5;
    font-size:12px;
}

.big-text {
    font-size: 28px;
    font-weight: 700;
}

.huge-text {
    font-size: 32px;
    font-width: 700;
}

.normal-text {
    color: #212529;
    font-size: 14px;
    color: #212529;
}

.tip-text {
    font-size: 12px;
    color:#aaa;
}

.tip-alert {
    font-size: 12px;
    color: red;
}

.bold-text {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
}
.dot {
    border-radius: 50%;
    height: 6px;
    margin-right: 5px;
    width: 6px;
    background-color: #2196F3;
}
.dot-green {
    border-radius: 50%;
    height: 6px;
    margin-right: 5px;
    width: 6px;
    background-color: #4CAF50;
}
.dot-yellow {
    border-radius: 50%;
    height: 6px;
    margin-right: 5px;
    width: 6px;
    background-color: #FFC200;
}
.bg-green {
    background: #4CAF50;
    color: #FFF;
}
.bg-blue {
    background: #2196F3;
    color: #FFF;
}
.text-yellow {
    color: #FFC200;
    font-size: 20px;
    font-weight: 700;
}
.text-right {
    text-align: right;
}
.fr {
    float: right;
}

.flex-1 {
    flex:1;
}
.flex-2 {
    flex:2;
}
.flex-3 {
    flex:3;
}

.ripple-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ripple-button:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
    transition: width 0.5s ease-out, height 0.5s ease-out, opacity 0.5s ease-out, transform 0.5s ease-out;
}


.ripple-button:hover:after {
    width: 200%;
    height: 200%;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(2);
}

/* 模态框样式 */
.modalOverlay {
    display: block;
    animation: modalAnimation 0.3s ease-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal {
    width: 400px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
}

.modalOverlay.modalVisible {

}

@keyframes modalAnimation {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* input框样式 */
/* Input container */
.input-container {
    position: relative;
    margin: 20px;
}

/* Input field */
/* From uiverse.io by @alexruix */
.input-1 {
    width: 300px;
    line-height: 28px;
    border: 2px solid transparent;
    border-bottom-color: #777;
    padding: .2rem 0;
    outline: none;
    background-color: transparent;
    color: #0d0c22;
    transition: .3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.input-1:focus, input-1:hover {
    outline: none;
    padding: .2rem 1rem;
    border-radius: 1rem;
    border-color: #43CBFF;
}

.input-1::placeholder {
    color: #777;
}

.input-1:focus::placeholder {
    opacity: 0;
    transition: opacity .3s;
}

/* Input field:focus styles */
.input-field:focus + .input-label {
    top: -20px;
    font-size: 12px;
    color: #007bff;
}

.input-field:focus + .input-label + .input-highlight {
    width: 100%;
}

/* 登录弹窗el-dialog自定义样式类 */
.loginDialog {
    border-radius: 10px!important;
    position: relative;
    left: 0px!important;
}

.loginDialog .el-dialog__header {
    display: none;
}

.loginDialog .el-dialog__body {
    padding:0px !important;
}

/* 进入工作台按钮 */
.enter-button {
    padding: 5px 10px;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff80;
    text-shadow: none;
    background: transparent;
    box-shadow: transparent;
    border: 1px solid #ffffff80;
    transition: 0.5s ease;
    user-select: none;
}

.enter-button:hover,.enter-button:focus {
    cursor: pointer;
    color: #ffffff;
    background: #008cff;
    border: 1px solid #008cff;
    text-shadow: 0 0 5px #ffffff,
    0 0 10px #ffffff,
    0 0 20px #ffffff;
    box-shadow: 0 0 5px #008cff,
    0 0 20px #008cff,
    0 0 50px #008cff,
    0 0 100px #008cff;
}

/* 客服按钮 */
.kefu-btn {
    font-size: 12px;
    color: #fff;
    margin-right: 1em;
    height: 40px;
    width: 40px;
    transition: .5s;
}
.kefu-btn:hover {
    cursor: pointer;
    color: #9708CC;
    border-radius: 5px;
    background: #efefef;
    transition: .5s;
}

.kefu-btn-black {
    font-size: 12px;
    color: #333;
    margin-right: 1em;
    height: 40px;
    width: 40px;
    transition: .5s;
}
.kefu-btn-black:hover {
    cursor: pointer;
    color: #FFF;
    border-radius: 5px;
    background: #1387f4;
    transition: .5s;
}

/*清空悬浮按钮*/
.clear-float-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background-color: rgb(163, 142, 255);
}

/* plus sign */
.float-btn {
    position: fixed;
    bottom: 75px;
    right: 30px;
    z-index: 99999;
}
.clear-float-sign {
    z-index: 999999;
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clear-float-sign svg {
    width: 17px;
}

.clear-float-sign svg path {
    fill: white;
}
/* text */
.clear-float-text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 12px;
    font-weight: 600;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
    transition-duration: .3s;
}
/* hover effect on button width */
.clear-float-btn:hover {
    width: 125px;
    border-radius: 40px;
    transition-duration: .3s;
}

.clear-float-btn:hover .clear-float-sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}
/* hover effect button's text */
.clear-float-btn:hover .clear-float-text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}
/* button click effect*/
.clear-float-btn:active {
    transform: translate(2px ,2px);
}


/* 复制内容按钮 */
.copy-answer-btn {
    position: relative;
    padding: 10px 22px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #7d2ae8;
    transition: all 0.2s ease;
    font-size: 12px;
}

.copy-answer-btn-blue {
    background-color: #647feb;
}
.copy-answer-btn-pink {
    background-color: #ff297b;
}
.copy-answer-btn:active {
    transform: scale(0.96);
}

.copy-answer-btn:before,
.copy-answer-btn:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
}

.copy-answer-btn-pink:hover:before {
    background-image: radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #ff297b 20%, transparent 30%),
    radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #ff297b 15%, transparent 20%),
    radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, #ff297b 20%, transparent 20%),
    radial-gradient(circle, #ff297b 20%, transparent 20%);
}

.copy-answer-btn-blue:hover:before {
    background-image: radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #647feb 20%, transparent 30%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #647feb 15%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%);
}

.copy-answer-btn:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 20%, #7d2ae8 20%, transparent 30%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
    10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.copy-answer-btn-blue:hover::after {
    background-image: radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #647feb 15%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%),
    radial-gradient(circle, #647feb 20%, transparent 20%);
}

.copy-answer-btn:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, transparent 10%, #7d2ae8 15%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%),
    radial-gradient(circle, #7d2ae8 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.bg-image {
    z-index: -1;
    max-width: 720px;
    background-image: radial-gradient(at 27% 37%,#3a8bfd 0,transparent 0),radial-gradient(at 97% 21%,#72fe7d 0,transparent 50%),radial-gradient(at 52% 99%,#fd3a4e 0,transparent 50%),radial-gradient(at 10% 29%,#855afc 0,transparent 50%),radial-gradient(at 97% 96%,#e4c795 0,transparent 50%),radial-gradient(at 33% 50%,#8ca8e8 0,transparent 50%),radial-gradient(at 79% 53%,#eea5ba 0,transparent 50%);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    filter: blur(100px) saturate(150%);
    top: 0;
    opacity: .1;
}

/* 加载更多按钮 */
.loadmore-button {
    font-family: monospace;
    background-color: #f3f7fe;
    color: #3b82f6;
    border: none;
    border-radius: 8px;
    width: 200px;
    height: 45px;
    transition: .3s;
}

.loadmore-button:hover {
    cursor: pointer;
    background-color: #3b82f6;
    box-shadow: 0 0 0 5px #3b83f65f;
    color: #fff;
}

.loadmore-button-sm {
    font-family: monospace;
    background-color: #f3f7fe;
    color: #3b82f6;
    border: none;
    border-radius: 8px;
    width: 150px;
    height: 35px;
    transition: .3s;
}

.loadmore-button-sm:hover {
    cursor: pointer;
    background-color: #3b82f6;
    box-shadow: 0 0 0 5px #3b83f65f;
    color: #fff;
}

/* 加载更多loading */
.more-loading {
    display: block;
    --height-of-loader: 4px;
    --loader-color: #0071e2;
    width: 130px;
    height: var(--height-of-loader);
    border-radius: 30px;
    background-color: rgba(0,0,0,0.2);
    position: relative;
}

.more-loading::before {
    content: "";
    position: absolute;
    background: var(--loader-color);
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    animation: moving 1s ease-in-out infinite;
;
}

@keyframes moving {
    50% {
        width: 100%;
    }

    100% {
        width: 0;
        right: 0;
        left: unset;
    }
}

/* 复制按钮 */
/* tooltip settings 👇 */

.copy-btn {
    /* button */
    --button-bg: #FFF;
    --button-hover-bg: #464646;
    --button-text-color: #CCCCCC;
    --button-hover-text-color: #8bb9fe;
    --button-border-radius: 10px;
    --button-diameter: 36px;
    --button-outline-width: 1px;
    --button-outline-color: rgb(141, 141, 141);
    /* tooltip */
    --tooltip-bg: #FFF;
    --toolptip-border-radius: 4px;
    --tooltip-font-family: Menlo, Roboto Mono, monospace;
    /* 👆 this field should not be empty */
    --tooltip-font-size: 12px;
    /* 👆 this field should not be empty */
    --tootip-text-color: rgb(50, 50, 50);
    --tooltip-padding-x: 7px;
    --tooltip-padding-y: 7px;
    --tooltip-offset: 8px;
    /* --tooltip-transition-duration: 0.3s; */
    /* 👆 if you need a transition,
    just remove the comment,
    but I didn't like the transition :| */
}

.copy-btn {
    box-sizing: border-box;
    width: var(--button-diameter);
    height: var(--button-diameter);
    border-radius: var(--button-border-radius);
    background-color: var(--button-bg);
    color: var(--button-text-color);
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
}

.tooltip {
    position: absolute;
    opacity: 0;
    visibility: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font: var(--tooltip-font-size) var(--tooltip-font-family);
    color: var(--tootip-text-color);
    background: var(--tooltip-bg);
    padding: var(--tooltip-padding-y) var(--tooltip-padding-x);
    border-radius: var(--toolptip-border-radius);
    pointer-events: none;
    transition: all var(--tooltip-transition-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltip::before {
    content: attr(data-text-initial);
}

.tooltip::after {
    content: "";
    position: absolute;
    bottom: calc(var(--tooltip-padding-y) / 2 * -1);
    width: var(--tooltip-padding-y);
    height: var(--tooltip-padding-y);
    background: inherit;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    z-index: -999;
    pointer-events: none;
}

.copy-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkmark {
    display: none;
}

/* actions */

.copy-btn:hover .tooltip,
.copy-btn:focus:not(:focus-visible) .tooltip {
    opacity: 1;
    visibility: visible;
    top: calc((100% + var(--tooltip-offset)) * -1);
}

.copy-btn:focus:not(:focus-visible) .tooltip::before {
    content: attr(data-text-end);
}

.copy-btn:focus:not(:focus-visible) .clipboard {
    display: none;
}

.copy-btn:focus:not(:focus-visible) .checkmark {
    display: block;
}

.copy-btn:hover,
.copy-btn:focus {
    background-color: var(--button-hover-bg);
}

.copy-btn:active {
    outline: var(--button-outline-width) solid var(--button-outline-color);
}

.copy-btn:hover svg {
    color: var(--button-hover-text-color);
}

/* 生成按钮 */
.generate-btn {
    align-items: center;
    background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 15px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 100px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s;
}

.generate-btn:active,
.generate-btn:hover {
    outline: 0;
}

.generate-btn span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.generate-btn:hover span {
    background: none;
}

.generate-btn:active {
    transform: scale(0.9);
}

/*连续对话开关*/
.checkbox-wrapper-35 .switch {
    display: none;
}

.checkbox-wrapper-35 .switch + label {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #78768d;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 15px;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-wrapper-35 .switch + label::before,
.checkbox-wrapper-35 .switch + label::after {
    content: '';
    display: block;
}

.checkbox-wrapper-35 .switch + label::before {
    background-color: #05012c;
    border-radius: 500px;
    height: 15px;
    margin-right: 8px;
    -webkit-transition: background-color 0.125s ease-out;
    transition: background-color 0.125s ease-out;
    width: 25px;
}

.checkbox-wrapper-35 .switch + label::after {
    background-color: #fff;
    border-radius: 13px;
    box-shadow: 0 3px 1px 0 rgba(37, 34, 71, 0.05), 0 2px 2px 0 rgba(37, 34, 71, 0.1), 0 3px 3px 0 rgba(37, 34, 71, 0.05);
    height: 13px;
    left: 1px;
    position: absolute;
    top: 1px;
    -webkit-transition: -webkit-transform 0.125s ease-out;
    transition: -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out;
    transition: transform 0.125s ease-out, -webkit-transform 0.125s ease-out;
    width: 13px;
}

.checkbox-wrapper-35 .switch + label .switch-x-text {
    display: block;
    margin-right: .3em;
}

.checkbox-wrapper-35 .switch + label .switch-x-toggletext {
    display: block;
    font-weight: bold;
    height: 15px;
    overflow: hidden;
    position: relative;
    width: 25px;
}

.checkbox-wrapper-35 .switch + label .switch-x-unchecked,
.checkbox-wrapper-35 .switch + label .switch-x-checked {
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out;
    transition: transform 0.125s ease-out, opacity 0.125s ease-out, -webkit-transform 0.125s ease-out;
}

.checkbox-wrapper-35 .switch + label .switch-x-unchecked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.checkbox-wrapper-35 .switch + label .switch-x-checked {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.checkbox-wrapper-35 .switch + label .switch-x-hiddenlabel {
    position: absolute;
    visibility: hidden;
}

.checkbox-wrapper-35 .switch:checked + label::before {
    background-color: #5B42F3;
}

.checkbox-wrapper-35 .switch:checked + label::after {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}

.checkbox-wrapper-35 .switch:checked + label .switch-x-unchecked {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.checkbox-wrapper-35 .switch:checked + label .switch-x-checked {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

/*鼠标手型*/
.cursor-pointer {
    cursor: pointer;
}

/* 闪烁的光标 */
.animate-blink {
    animation: blink 1.2s infinite steps(1,start);
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* 消息 */
.alert {
    padding: .5rem 1rem;
    color: #383d41 !important;
}
.alert-secondary {
    background-color: #ededed;
}

/* 拷贝 */
.code-block-copy {
    cursor: pointer;
}
.code-block-copy:hover {
    color: #16ac51;
}

.top-menu {
    color: #333;
    font-size: 16px;
    margin-left: 20px;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
}

.top-menu:hover {
    color: #1387f4;
    cursor: pointer;
}

.top-menu-active {
    color: #1387f4;
    font-size: 16px;
    margin-left: 20px;
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
    padding-bottom: 5px;
    border-bottom: 2px solid #1387f4;
}

/* 颜色变量声明 */
/* 乌克兰色 */
:root {
    --ukrain-blue: #005bba;
    --ukrain-yellow:#fdd302;
    --color-black: #000000;
    --color-weak-black:#333;
    --color-white: #ffffff;
    --color-tip: #999999;
    --color-background: #f0f4f4;
    --font-yahei: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
    --font-big-title-color:#606468;
}

.text-tip {
    font-size: 12px;
    color: #b5b5b5;
}

*::-webkit-scrollbar {
     width: 6px;
     background-color: #eee;
 }

*::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #eee;
}

.wave {

}
.aubox {
    display: flex;
    align-items: flex-end;
}

.auItem{
    width: 1px;
    margin-right: 5px;
    list-style: none;
    background: #8799a3;
    height:15px;
}
.au1{
    animation: audio .5s linear .1s infinite alternate;
}
.au2{
    animation: audio .5s linear .2s infinite alternate;
}
.au3{
    animation: audio .5s linear .5s infinite alternate;
}
.au4{

}
.au5{
    animation: audio .5s linear .2s infinite alternate;
}
.au6{
    animation: audio .5s linear .3s infinite alternate;
}
.au7{
    animation: audio .5s linear .1s infinite alternate;
}
@keyframes audio{
    from{height: 1px;}
    to{height: 15px;}
}

/* 紫色loading */
.purple-loader {
    margin-top:15px;
    width: 90px;
    height: 50px;
    position: relative;
}

.purple-loader-text {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    color: #C8B6FF;
    animation: text_713 3.5s ease both infinite;
    font-size: .8rem;
    letter-spacing: 1px;
}

.purple-load {
    background-color: #9A79FF;
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
}

.purple-load::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #D1C2FF;
    border-radius: inherit;
    animation: loading2_713 3.5s ease both infinite;
}

/* 蓝色loading */
.blue-loader {
    margin-top:15px;
    width: 90px;
    height: 50px;
    position: relative;
}

.blue-loader-text {
    position: absolute;
    top: 0;
    padding: 0;
    margin: 0;
    color: #96cff4;
    animation: text_713 3.5s ease both infinite;
    font-size: .8rem;
    letter-spacing: 1px;
}

.blue-load {
    background-color: #067bef;
    border-radius: 50px;
    display: block;
    height: 16px;
    width: 16px;
    bottom: 0;
    position: absolute;
    transform: translateX(64px);
    animation: loading_713 3.5s ease both infinite;
}

.blue-load::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #d5e2ff;
    border-radius: inherit;
    animation: loading2_713 3.5s ease both infinite;
}

@keyframes text_713 {
    0% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }

    40% {
        letter-spacing: 2px;
        transform: translateX(26px);
    }

    80% {
        letter-spacing: 1px;
        transform: translateX(32px);
    }

    90% {
        letter-spacing: 2px;
        transform: translateX(0px);
    }

    100% {
        letter-spacing: 1px;
        transform: translateX(0px);
    }
}

@keyframes loading_713 {
    0% {
        width: 16px;
        transform: translateX(0px);
    }

    40% {
        width: 100%;
        transform: translateX(0px);
    }

    80% {
        width: 16px;
        transform: translateX(64px);
    }

    90% {
        width: 100%;
        transform: translateX(0px);
    }

    100% {
        width: 16px;
        transform: translateX(0px);
    }
}

@keyframes loading2_713 {
    0% {
        transform: translateX(0px);
        width: 16px;
    }

    40% {
        transform: translateX(0%);
        width: 80%;
    }

    80% {
        width: 100%;
        transform: translateX(0px);
    }

    90% {
        width: 80%;
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0px);
        width: 16px;
    }
}

/* 芭比配色 */
/* 芭比红 */
:root {
    --barbie-pink: #FE47B1;
}
/* 芭比蓝 */
:root {
    --barbie-blue: #399AEB;
}

/* 芭比渐变 */
:root {
    --barbie-gradient: linear-gradient(135deg, #FE47B1, #399AEB);
}