﻿    {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

*:focus {
    outline: none;
}

ul,
li {
    list-style-type: none;
}

.mask {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2222;
}

.tcz {
    position: fixed;
    z-index: 3333;
    display: none;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform-origin: center;
    max-width: 80%;
    max-height: 80%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
/*    box-shadow: 0 0 3px 2px rgba(255,255,255,0.3)  */ 
}

.tcz.alert,
.tcz.confirm {
    width: 280px;
}

.tcz.model {
    width: 400px;
}

.tcz.success,
.tcz.error {
    padding: 20px 12px;
    width: 140px;
}

.tcz.tips {
    margin-bottom: 20vh;
    padding: 8px 12px;
    max-width: 80%;
    background: rgba(0, 0, 0, 0.6);
}

.tcz.tips .text {
    padding: 0;
    color: #fff;
}

.tcz.loading {
    padding: 20px 12px;
    width: 14rem;
    background: rgba(0, 0, 0, 0.6);
}

.tcz.loading .text {
    min-height: 4rem;
    line-height: 4rem;
    text-align: center;
    padding: 0;
    color: #fff;
}

.tcz .load {
    display: flex;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.tcz .load b {
    width: 6px;
    animation: load 1s ease infinite;
    transform: translateY(10px);
    animation-delay: 0.1s;
    margin: 0 5px;
    height: 6px;
    opacity: 0;
    border-radius: 6px;
    background: #fff;
}

.tcz .load b:nth-child(2) {
    animation-delay: 0.2s;
}

.tcz .load b:nth-child(3) {
    animation-delay: 0.3s;
}

.tcz .title {
    padding: 15px 0;
    opacity: 0;
    color: #333;
    transform: translateY(10px);
    animation: text 0.3s ease forwards;
    animation-delay: 0.2s;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
    background: #03be8d;
    color:#FFF;
    letter-spacing: 0.2rem;

}

.tcz .text {
    font-size: 1.2rem;
    text-align: center;
    color: #333;
    margin:0 5%;
    border-radius: 0.4rem;
    min-height: 6rem;
/*    background: #cfc;*/
    padding: 1rem;
    opacity: 0;
    transform: translateY(10px);
    animation: text 0.3s ease forwards;
    animation-delay: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.05rem;
}
.tcz .text span{
    line-height: 2rem;
    text-align: left
}
.tcz .text.l {
    text-align: left;
}

.tcz .icon {
    padding-bottom: 12px;
}

.tcz .icon svg {
    margin: 0 auto;
    display: block;
}

.tcz.success .text,
.tcz.error .text {
    min-height: 2rem;
    line-height: 2rem;
    color: #14d6a2;
    padding: 0;
    opacity: 0;
    transform: translateY(10px);
    animation: text 0.3s ease forwards;
    animation-delay: 0.9s;
}

.tcz.error .text {
    color: #f54655
}

.tcz .content {
    padding-top: 0;
    overflow: hidden auto;
    max-height: 80%;
    font-size: 1.3rem;
}

.tcz .btn {
    display: flex;
    align-items: center;
    border-top: 1px solid #f1f1f1;
    justify-content: center;
    opacity: 0;
    animation: button 0.6s ease forwards;
    animation-delay: 0.6s;
    padding: 0.4rem;
}

.tcz .btn button {
    flex: 1;
    color: #999;
    cursor: pointer;
    border: 0;
    background: none;
    padding: 1.2rem;
}

.tcz .btn button:last-child {
    color: #fe5c42
}

.tcz .btn button.cancel {
    border-right: 1px solid #f1f1f1;
}

.tcz .btn button:active {
    opacity: 0.8;
}

.open {
    animation: tcz-open 0.3s ease forwards;
}

.close {
    animation: tcz-close 0.3s ease forwards;
}

@-webkit-keyframes tcz-open {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes tcz-close {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    30% {
        transform: scale(1.05);
        opacity: 0.5;
    }

    100% {
        transform: scale(0.7);
        opacity: 0;
    }
}

.svgcircle {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: ruand 0.5s ease-in-out forwards
}

.svggou {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: tick .6s ease-out forwards;
    animation-delay: .75s;
}

.svgca1 {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: tick .6s ease-out forwards;
    animation-delay: .75s;
}

.svgca2 {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: tick .6s ease-out forwards;
    animation-delay: .85s;
}

@keyframes ruand {
    form {
        stroke-dashoffset: 200;
    }

    to {
        stroke-dashoffset: 400;
    }
}

@keyframes tick {
    from {
        stroke-dashoffset: 80;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes text {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes button {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes load {
    0% {
        transform: translateY(0px);
        opacity: 0;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 0;
    }
}

/*2024.12.31 追加 记载*/

.load_0 {
  color: white;
  background-color: #10B981;
  --ring-color: #6EE7B7;
  font-weight: 500;
  border-radius: 0.5rem;
  font-size: 1rem;
  line-height: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  text-align: center;
  margin-right: 0.5rem;
  display: inline-flex;
  align-items: center;
  border: none;
}

.load_0:hover {
  background-color: #059669;
}

.load_0:focus {
  box-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
}

.load_0 svg {
  display: inline;
  width: 1.3rem;
  height: 1.3rem;
  margin-right: 0.75rem;
  color: white;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(5px);
  }
}

.loader2 {
    position: fixed;
    top: 0;
    left:0;
    display: flex;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.8);
    color:#03be8d;
    align-items: center;
    padding-top: 25vh;
    justify-content: center;
    z-index: 100;
}

.loader2 > div {
  width: 5px;
  height: 5px;
  border-radius: 100%;
  box-shadow: 0 0 4px #393;
  background: #03be8d;
  float: left;
  margin: 5px;
  transform: scale(2);
}

.loader2 > div:nth-child(1) {
  animation: anm-BL-53-move1 1s infinite linear;
}

.loader2 > div:nth-child(2) {
  animation: anm-BL-53-move2 1s infinite linear;
  animation-delay: 0.2s;
}

.loader2 > div:nth-child(3) {
  animation: anm-BL-53-move3 1s infinite linear;
  animation-delay: 0.3s;
}

.loader2 > div:nth-child(4) {
  animation: anm-BL-53-move4 1s infinite linear;
  animation-delay: 0.4s;
}

.loader2 > div:nth-child(5) {
  animation: anm-BL-53-move5 1s infinite linear;
  animation-delay: 0.5s;
}

@keyframes anm-BL-53-move1 {
  50% {
    background: #03be8d;
    transform: scale(1);
  }
}

@keyframes anm-BL-53-move2 {
  50% {
    background: #03be8d;
    transform: scale(1);
  }
}

@keyframes anm-BL-53-move3 {
  50% {
    background: #03be8d;
    transform: scale(1);
  }
}

@keyframes anm-BL-53-move4 {
  50% {
    background: #03be8d;
    transform: scale(1);
  }
}

@keyframes anm-BL-53-move5 {
  50% {
    background: #03be8d;
    transform: scale(1);
  }
}
  


/*2024.12.31 追加 记载*/