﻿.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;
        }

.main {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, #96c9ff, white); /* 渐变颜色 */
}

.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;
    width: 100%;
    align-items: center;
}

.main-left img {
    width: 55%;
}

.left img {
    width: 200px;
}


.main-right {
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
}


    .main-right > div {
        padding: 30px 60px;
        box-sizing: border-box;
    }

.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;
}

.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;
    }

.button {
    display: flex;
    justify-content: right;
    padding-right: 20px;
}
