@charset "utf-8";

*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}


section {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}


table {
    border-collapse: collapse;
    border-spacing: 0;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul,
li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
}

a:link,
a:visited {
    text-decoration: none
}

a:hover,
a:active {
    text-decoration: none;
}

input,
select,
textarea {
    font-family: helvetica;
}

.flex {
    display: -webkit-flex;
    display: flex;
}

.flex-1 {
    flex: 1;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-space-around {
    justify-content: space-around;
}

.justify-flex-end {
    justify-content: flex-end;
}

.justify-flex-start {
    justify-content: flex-start;
}

.align-center {
    align-items: center;
}


/* 表单 */
.in-l-form {
    padding: 70px 0;
    background: #f0f2f5;
    color: #000;
}

.in-l-form .box {
    width: 1220px;
    height: 680px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #ffffff;
    border-radius: 6px;
    background: #ffffff;
}

.in-l-form .form-img {
    width: 550px;
    height: 100%;
}

.in-l-form .form {
    padding: 0 20px;
    text-align: center;
    overflow: hidden;
}

.in-l-form .form .text {
    overflow: hidden;
    padding: 0 58px;
    margin-top: 32px;
}

.in-l-form .form h1 {
    font-size: 20px;
}

.in-l-form .form h2 {
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    margin-top: 25px;
}

.in-l-form .form h2 span {
    color: #ff0000;
}

.in-l-form .submit {
    color: #ffffff;
    line-height: 60px;
    text-align: center;
    font-weight: bold;
    display: block;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #ff5722;
    width: 100%;
    border-radius: 50px;
    font-size: 24px;
    margin-top: 40px;
}

.in-l-form .submit:hover {
    opacity: 0.8;
}

.in-l-form .item-s {
    margin-top: 28px;
    overflow: hidden;
    position: relative;
    height: 60px;
    width: 100%;
    border: 2px solid #b9b9b9;
    border-radius: 8px;
}

.in-l-form .item-s .label-s {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
}

.in-l-form .item-s .label-s span {
    color: #ff0000;
    padding-right: 8px;
}

.in-l-form .item-s .input-s {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: none;
    text-align: center;
    font-size: 20px;
    padding: 0 10px;
    border: 0;
    outline: none;
}