* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;
}

.shadow_css {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 10;
    /* 为mozilla firefox 设置透明度  */
    -moz-opacity: 0.6;
    /* 设置透明度 */
    opacity: .60;
    /* 为IE 设置透明度  */
    filter: alpha(opacity=66);
}

.containers {
    /**  这里可以设置 成你想要的比例*/
    zoom: 0.9;
    display: none;
    z-index: 11;
    text-align: center;
    /*让p内部文字居中*/
    width: 900px;
    height: 800px;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.containers .box {
    width: 900px;
    height: 800px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.containers .box .transtion-box {
    position: absolute;
    left: 0;
    transition: 0.5s all ease-in-out;
}

.containers .box .transtion-box .login-box,
.reg-box {
    width: 640px;
    height: 100%;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 35px 30px;
}

.containers .box .transtion-box h1 {
    margin-bottom: 20px;
}

.containers .box .transtion-box section {
    display: flex;
    flex-flow: inherit;
    align-items: inherit;
    width: 100%;
    margin-bottom: 20px;
}

.containers .box .transtion-box section label {
    font-size: 14px;
    color: #909399;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.containers .box .transtion-box section input {
    width: 50%;
    outline: 0;
    border: none;
    font-size: 18px;
    color: tomato;
    text-align: center;
    padding: 4px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.containers .box .transtion-box section span {
    color: rgb(80, 80, 77);
    font-size: 15px;
    cursor: pointer;
    margin-top: 18px;
}

.containers .box .transtion-box button {
    width: 50%;
    padding: 6px 0;
    text-align: center;
    border: 3px solid #d4af7a;
    border-radius: 20px;
    background: #d4af7a;
    color: #fff;
    font-size: 17px;
    letter-spacing: 6px;
    text-indent: 6px;
    cursor: pointer;
}

.containers .box .transtion-box .other {
    border: 3px solid #d3dae9;
    background: #fff;
    color: rgb(124, 145, 184);
    font-weight: 600;
}

.containers .box .transferToReg {
    width: 260px;
    height: 100%;
    background: linear-gradient(to bottom right,
            #0e92eb 0%,
            #5f90ec 50%,
            #b08fe5 100%);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    position: absolute;
    left: 640px;
    top: 0;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 50px 0;
    color: white;
    transition: all 1s ease-in-out;
}

.containers .box .transferToReg .title {
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.containers .box .transferToReg button {
    margin-top: 260px;
    width: 50%;
    padding: 8px 0;
    border-radius: 14px;
    letter-spacing: 10px;
    text-indent: 10px;
    font-size: 18px;
    color: #fff;
    border: 3px solid #fff;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
}

.containers .box .transferToReg button:hover {
    border: 3px solid #206dfc;
}