input {
    outline: none;
    border: none;
}

.changeShardBox {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    position: fixed;
    left: 0;
    top: 0;
}

.changeShardBox>.changeShard_wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #F5F5F5;
    width: 450px;
    border-radius: 20px;
    padding-bottom: 20px;
    animation: animations .5s linear;
}

.changeShardBox>.changeShard_wrap>.tan_close {
    position: absolute;
    top: -20px;
    right: -25px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.changeShardBox>.changeShard_wrap>h3 {
    font-size: 25px;
    text-align: center;
    margin-top: 30px;
    color: #0729AE;
}

.changeShardBox>.changeShard_wrap>.inp_box {
    width: 330px;
    margin: 0 auto;
    height: 50px;
    border: 1px solid #237aeb;
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-left: 10px;
}

.changeShardBox>.changeShard_wrap>.inp_box>img {
    width: 20px;
}

.changeShardBox>.changeShard_wrap>.inp_box>input {
    height: 97%;
    width: 300px;
    background-color: #F5F5F5;
    font-size: 20px;
    margin-left: 10px;
}

.changeShardBox>.changeShard_wrap>.shuoming {
    width: 330px;
    margin: auto;
    text-align: center;
    font-size: 15px;
    margin-top: 10px;
}

.changeShardBox>.changeShard_wrap>.shuoming input {
    width: 20px;
    height: 20px;
}

.changeShardBox>.changeShard_wrap>.shuoming a {
    color: #237aeb;
}

.changeShardBox>.changeShard_wrap>.shuoming>p:nth-child(1) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.changeShardBox>.changeShard_wrap>.btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.changeShardBox>.changeShard_wrap>.btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 15px 60px;
    font-size: 20px;
    text-transform: uppercase;
    border: 0;
    background-color: #096bce;
    border-radius: 12px;
    overflow: hidden;
    transition: 31ms cubic-bezier(0.5, 0.7, 0.4, 1);
    cursor: pointer;
}

.changeShardBox>.changeShard_wrap>.btn button:before {
    content: attr(alt);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
    letter-spacing: 4px;
    opacity: 1;
}

.changeShardBox>.changeShard_wrap>.btn button:active {
    box-shadow: none;
    transform: translateY(7px);
    transition: 35ms cubic-bezier(0.5, 0.7, 0.4, 1);
}

.changeShardBox>.changeShard_wrap>.btn button:hover:before {
    transition: all .0s;
    transform: translateY(100%);
    opacity: 0;
}

.changeShardBox>.changeShard_wrap>.btn button i {
    color: white;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 4px;
    font-style: normal;
    transition: all 2s ease;
    transform: translateY(-20px);
    opacity: 0;
}

.changeShardBox>.changeShard_wrap>.btn button:hover i {
    transition: all .2s ease;
    transform: translateY(0px);
    opacity: 1;
}

.changeShardBox>.changeShard_wrap>.btn button:hover i:nth-child(1) {
    transition-delay: 0.045s;
}

.changeShardBox>.changeShard_wrap>.btn button:hover i:nth-child(2) {
    transition-delay: calc(0.045s * 3);
}

.changeShardBox>.changeShard_wrap>.btn button:hover i:nth-child(3) {
    transition-delay: calc(0.045s * 4);
}

.changeShardBox>.changeShard_wrap>.btn button:hover i:nth-child(4) {
    transition-delay: calc(0.045s * 5);
}

@keyframes animations {
    0% {

        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-5-14 15:10:34
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation focus-in-expand-fwd
 * ----------------------------------------
 */
 @keyframes focus-in-expand-fwd {
    0% {
      letter-spacing: -0.5em;
      transform: translateZ(-800px);
      filter: blur(12px);
      opacity: 0;
    }
    100% {
      transform: translateZ(0);
      filter: blur(0);
      opacity: 1;
    }
  }
  .bg-white{
    transition: all 0.5s ease;
  }
  .bg-white:hover {
    cursor: pointer;
    transform: translateY(-10px);
  }