﻿.container {
    height: calc(100vh - 40px);
    margin: 20px;
}

    .container .header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
        height: 120px;
    }

        .container .header .right a {
            margin-left: 20px;
            font-size: 16px;
            /*color: #2097FF;*/
            color:black;
        }

.main {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, #96c9ff, white); /* 渐变颜色 */
}

.main-left {
    width: 100%;
}

    .main-left .title {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        font-size: 40px;
        padding: 40px 0;
        font-weight: 900;
        font-style: italic;
        text-shadow: 2px 2px 2px gray;
    }

        .main-left .title span {
            color: orange;
            font-style: normal;
        }

    .main-left .image {
        display: flex;
        justify-content: center;
 
        align-items: center;
    }

    .main-left img {
        width: 55%;
    }

.main-right {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}

    .main-right > div {
        padding: 30px 60px;
        border: #409eff 1px solid;
        box-sizing: border-box;
    }

    .main-right .title {
        display: flex;
        justify-content: center;
        width: 100%;
        align-items: center;
        margin-bottom: 20px;
    }

/*        .main-right .title span {
            font-size: 20px;
            letter-spacing: 4px;
            font-weight: 700;
        }*/

        .main-right .title .logo {
            width:200px;
        }

.button {
    display: flex;
    justify-content: space-between;
}

.help {
    display: flex;
    justify-content: right;
    margin-bottom: 20px;
}

    .help a {
        color: #2097FF;
    }

.input_wrape {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    height: 44px;
    margin-bottom: 20px;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 3px;
    width: 320px;
}

.layui-layer-content {
    padding: 20px;
}

    .layui-layer-content button {
        padding: 20px;
    }
.footer {
    position: absolute;
    bottom: 0;
    background: #f6f6f6;
    width: 100%;
}

    .footer > div {
        width: calc(100% - 40px);
        margin: 20px 20px;
    }

    .footer .info {
        color: #999 !important;
        display: flex;
        justify-content: space-between;
    }