#infoBox {
    display: none;
    /* background-color: crimson; */
    border-radius: 50%;
    z-index: 11;
    width: 1280px;
    height: 720px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
}



.info {
    /*弹性布局 让子元素称为弹性项目*/
    display: flex;
    /*让弹性项目垂直排列  原理是改变弹性盒子的主轴方向
	父元素就是弹性盒子  现在改变后的主轴方向是向下了*/
    flex-direction: column;
    border-radius: 40px;
    border: solid 3px;
    border-color: rgb(107, 212, 216);
    border-style: inset;
    /*让弹性项目在交叉轴方向水平居中  现在主轴的方向是向下
	交叉轴的方向是与主轴垂直 交叉轴的方向是向右*/
    align-items: center;
    /* text-align: center; */
    width: 40%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.info h2 {
    color: #fff;
    margin-bottom: 30px;
}

.info .info_box {
    /*相对定位*/
    position: relative;
    width: 100%;
}

.info .info_box input {
    /*清除input框自带的边框和轮廓*/
    outline: none;
    border: none;
    width: 100%;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #fff;
    /*背景颜色为透明色*/
    background-color: transparent;
}

.info .info_box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    color: #fff;
    /*这个属性的默认值是auto 默认是这个元素可以被点击
	但是如果我们写了none  就是这个元素不能被点击，就好像它可见但是不能用
	可望而不可及*/
    /*这个就是两者的区别*/
    pointer-events: none;
    /*加个过度*/
    transition: all 0.5s;
}

/*: focus 选择器是当input获得焦点是触发的样式 + 是相邻兄弟选择器
	去找与input相邻的兄弟label*/
/*：valid 选择器是判断input 框的内容是否合法，如果合法会执行下面的属性代码，
	不合法就不会执行，我们刚开始写布局的时候给input框写了required 我们删掉看对比
	当没有required的话   input框的值就会被认为一直合法，所以一直都是下方的样式，
	但是密码不会，密码框的值为空，那么这句话就不合法，required不能为空
	当我们给密码框写点东西的时候才会执行以下代码

*/
.info .info_box input:focus+label,
.info .info_box input:valid+label {
    top: -20px;
    color: #03e9f4;
    font-size: 12px;
}

/*.info a {*/
/*    !*overflow: hidden;*!*/
/*    position: relative;*/
/*    padding: 10px 20px;*/
/*    color: #03e9f4;*/
/*    !*取消a表现原有的下划线*!*/
/*    text-decoration: none;*/
/*    !*同样加个过渡*!*/
/*    transition: all 0.5s;*/
/*}*/

.info a input {
    /*overflow: hidden;*/
    position: relative;
    padding: 10px 20px;
    color: #03e9f4;
    /*取消a表现原有的下划线*/
    text-decoration: none;
    /*同样加个过渡*/
    transition: all 0.5s;
}

.info a input:hover {
    color: #fff;
    border-radius: 5px;
    background-color: #03e9f4;
    box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 0 0 100px #03e9f4;
}

/*.info a:hover {*/
/*    color: #fff;*/
/*    border-radius: 5px;*/
/*    background-color: #03e9f4;*/
/*    box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4, 0 0 100px #03e9f4;*/
/*}*/

.info a span {
    position: absolute;
}

.info a span:first-child {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    /*to right 就是往右边 下面的同理*/
    background: linear-gradient(to right, transparent, #03e9f4);
    /*动画 名称  时长 linear是匀速运动 infinite是无限次运动*/
    animation: move1 1s ease infinite;

}

.info a span:nth-child(2) {
    right: 0;
    top: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(transparent, #03e6f4);
    /*这里多了个0.25s其实是延迟时间*/
    animation: move2 1s ease 0s infinite;
}

.info a span:nth-child(3) {
    right: -100%;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #03e9f4);

    animation: move3 1s ease 0s infinite;
}

.info a span:last-child {
    left: 0;
    bottom: -100%;
    width: 2px;
    height: 100%;
    background: linear-gradient(#03e9f4, transparent);
    animation: move4 1s ease 0s infinite;
}

.btns {
    /* margin-left: 10%;
    margin-right: 10%; */
    display: flex;
    justify-content: space-between;
}

.infoBtn {
    /* margin-right: 20%; */

    position: relative;
    right: 20%;
}

.regBtn {
    /* margin-left: 20%; */

    position: relative;
    right: 10%;
    /* left: 20%; */
}

.cancelBtn {
    position: relative;
    left: 20%;
}

/*写一下动画 */
@keyframes move1 {
    0% {
        left: -50%;
        opacity: 1;
    }


    25%,
    100% {
        left: 50%;
        opacity: 0;
    }
}

@keyframes move2 {

    0%,
    25% {
        top: -50%;
        opacity: 0;
    }

    25% {
        top: -50%;
        opacity: 1;

    }

    50%,
    100% {
        top: 50%;
        opacity: 0;
    }


}

@keyframes move3 {

    0%,
    50% {
        right: -50%;
        opacity: 0;
    }

    50% {
        right: -50%;
        opacity: 1;

    }

    75%,
    100% {
        right: 50%;
        opacity: 0;
    }
}

@keyframes move4 {

    0%,
    74% {
        bottom: -50%;
        opacity: 0;
    }

    75% {
        bottom: -50%;
        opacity: 1;
    }

    100% {
        bottom: 50%;
        opacity: 0;
    }
}