* {
    margin: 0;
    padding: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

html,
body {
    width: 100%;
    height: 100%;
    -moz-user-select: none; /*火狐*/
    -webkit-user-select: none; /*webkit浏览器*/
    -ms-user-select: none; /*IE10*/
    -khtml-user-select: none; /*早期浏览器*/
    user-select: none;
}

.app {
    position: relative;
    height: 100%;
}
.header-box {
    width: 100%;
    background: #fff;
    min-width: 1080px;
}

.header {
    width: 1080px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
}

    .header img {
        width: 120px;
    }

    .header .name {
        font-size: 32px;
        font-weight: bold;
        margin-left: 38px;
    }

        .header .name span {
            color: #f15d1f;
        }

    .header .back {
        width: 130px;
        height: 40px;
        border: 1px solid #f15d1f;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #f15d1f;
        border-radius: 5px;
        margin-left: 400px;
        cursor: pointer;
    }

.video-box {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -100;
}

.video-z {
    position: fixed;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -90;
    background: rgba(0, 0, 0, 0.65);
}

.content {
    height: 700px;
    width: 1080px;
    margin: 0 auto;
    display: flex;
}

    .content .left {
        width: 580px;
        height: 600px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

        .content .left .p1 {
            color: #fff;
            font-size: 27px;
            font-weight: 400;
        }

        .content .left .p2 {
            font-size: 50px;
            font-weight: bold;
            color: #f15d1f;
            margin: 20px 0;
        }

        .content .left .p3 {
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .content .left .p4 span {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
            margin-left: 15px;
        }

    .content .right {
        width: 420px;
        height: 540px;
        background: rgba(255, 255, 255, 1);
        margin-left: 80px;
        margin-top: 50px;
        border-radius: 12px;
        position: relative;
    }

        .content .right .tab-menu {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .content .right .tab-menu .title1 {
                font-size: 20px;
                font-weight: bold;
                color: #333;
            }

            .content .right .tab-menu .active {
                color: #f15d1f;
            }

                .content .right .tab-menu .active span {
                    border-color: #f15d1f;
                }

.form-box1 {
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
}

.input-box {
    width: 100%;
    height: 50px;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
    display: flex;
    margin-bottom: 26px;
}
.input-box-last {
    margin-bottom: 0px;
}
.agreement-line{
    height:50px;
    font-size:14px;
    display:flex;
    align-items:center;
    
}
    .agreement-line input{
        margin-right:8px;

    }
    .agreement-line span{
        color:#f15d1f;
        cursor:pointer;
    }
    .input-box .icon {
        width: 60px;
        height: 50px;
        background: #f15d1f;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .input-box .icon img {
            width: 25px;
            height: 25px;
        }

    .input-box input {
        border: 0;
        flex-grow: 1;
        display: block;
        outline: none;
        box-sizing: border-box;
        padding-left: 10px;
        font-size: 16px;
        border-radius: 5px;
    }

.login-btn {
    width: 100%;
    height: 50px;
    background: #f15d1f;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    outline: none;
    border: 0;
    cursor: pointer;
}

button:active {
    opacity: 0.8;
}

.content .right .bottom {
    width: 90%;
    margin: 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;

}

    .content .right .bottom span {
        font-size: 16px;
    }

        .content .right .bottom span a {
            color: #f15d1f;
            font-size: 16px;
        }

.footer-box {
    height: calc(100% - 800px);
    width: 100%;
    display: flex;
}

.foot {
    width: 1180px;
    margin: 0 auto;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding-bottom: 30px;
    flex-direction: column;
}

    .foot div {
        margin-bottom: 10px;
    }

    .foot a {
        color: #fff;
        text-decoration: none;
        margin-right: 4px;
    }

.ts-yzm {
    position: relative;
}

    .ts-yzm span {
        position: absolute;
        color: #f15d1f;
        font-size: 14px;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        cursor: pointer;
    }

.VerifyBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 540px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-info {
    width: auto;
    max-width: 260px;
    padding: 4px 10px;
    height: auto;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 26px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.tip-box {
    position: relative;
}

.tips {
    width: 200px;
    height: 180px;
    background: #e1e1e1;
    position: absolute;
    top: -65px;
    left: -215px;
    border-radius: 8px;
    padding:15px;
    box-sizing:border-box;
    font-size:14px;
}
    .tips p {
        line-height: 24px;
        color: #333;
        display: flex;
        align-items: center;
        height: 30px;
    }
        .tips p img{
            margin-right:6px;
            width:16px;
            height:16px;
        }
        .tips .p1 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom:4px;
        }
        .tips:after {
            content: "";
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-left: 10px solid #e1e1e1;
            border-bottom: 10px solid transparent;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: -10px;
        }
.agreement{
    width:100%;
    height:100%;
    background:rgba(0, 0, 0, 0.4);
    position:fixed;
    top:0;
    left:0;
    display:flex;
    align-items:center;
    justify-content:center;
}
.agreement-content{
    width:800px;
    height:500px;
    background:#fff;
    border-radius:10px;
}
    .agreement-content .title {
        font-size: 24px;
        font-weight: bold;
        color: #333333;
        line-height: 75px;
        text-align:center;
    }
    .agreement-content .article {
        width:100%;
        height:340px;
        overflow-y:scroll;
        padding:0 20px;
        box-sizing:border-box;
    }
    .agreement-content .bottom{
        display:flex;
        align-items:center;
        justify-content:center;
        height:82px;
    }
        .agreement-content .bottom button {
            width: 387px;
            height: 53px;
            background: #F15D1F;
            border-radius: 5px;
            color:#fff;
            border:0;
            cursor:pointer;
            outline:none;
        }
.agreement-content p{
    margin-top:10px;
    text-indent:2em;
    line-height:22px;
}
.go-login{
    margin-top:10px;
}
.go-login a{
    color:#f15d1f;
}
.agreement-line input[type=checkbox] {
    cursor: pointer;
    width: 14px;
    height: 14px;
    position: relative;
}

    .agreement-line input[type=checkbox]:after {
        position: absolute;
        width: 14px;
        height: 14px;
        content: " ";
        background-color: #fff;
        outline: none;
        border: 1px solid #666;
        border-radius: 3px;
    }

    .agreement-line input[type=checkbox]:checked:after {
        content: "✓";
        font-size: 12px;
        line-height: 16px;
        text-align: center;
        background-color: #f15d1f;
        outline: none;
        color: #fff;
        border: 1px solid #f15d1f;
        border-radius: 3px;
    }