* {
    margin: 0;
    padding: 0;
}

body {
    width: 100vw;
    min-height: 100vh;
    background: #ddeffe;
}

#minimizeBox {
    display: none !important;
}

.viewport_wrap {
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    max-height: 780px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 4rem;
}

.form_logo img {
    display: block;
    width: 400px
}

.con_wrap {
    flex: 1;
    overflow: hidden;
    box-sizing: border-box;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.form_right {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 3rem;
}

.form_con {
    flex: 1;
    overflow: auto;
    box-sizing: border-box;
}

.form_con::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.form_wrap {
    border-radius: 1.5rem;
    background: #fff;
    box-sizing: border-box;
    width: 100%;
    padding: 2rem;
}

.input_group {
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}

.input_group .label {
    font-size: 2rem;
    width: 13rem;
    text-align: right;
}

.input_wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 0.1rem solid #ccc;
    border-radius: 0.3rem;
    box-sizing: border-box;
    padding-left: 1rem;
    background: #f5f5f5;
}

.input_wrap .iconfont {
    font-size: 3rem;
    width: 4rem;
    color: #ddd;
}

input,
select {
    outline: none;
    border: none !important;
    flex: 1;
}

.input_group input,
.input_group select {
    width: 100%;
    height: 4rem;
    font-size: 2rem;
    box-sizing: border-box;
    border: 0.1rem solid #ccc;
    border-radius: 0.5rem;
    padding: 0 1rem;
    background: #f5f5f5;
}

input::placeholder,
textarea::placeholder {
    color: #ddd;
}

.input_group textarea {
    width: 100%;
    line-height: 1.6;
    font-size: 2rem;
    margin-top: 1rem;
    padding: 0 1rem;
    box-sizing: border-box;
    outline: none;
    border: none;
    background: #f5f5f5;
}

.input_group .required {
    margin-left: 1.5rem;
    color: red;
    vertical-align: middle;
    display: inline-block;
    width: 2rem;
    height: 4rem;
    line-height: 4rem;
    text-align: left;
}

.btn_wrap {
    width: 100%;
    height: 12rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    padding:0 2rem;
}
#btn {
    width: 100%;
    height: 6rem;
    background: #5c9aea;
    outline: none;
    border-radius: 1rem;
    color: #fff;
    font-size: 2rem;
    line-height: 4rem;
    font-weight: bold;
    border: none;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: 0.3s linear;
    margin-right: 3rem;
}

#btn:hover{
    background-color: #326db9;
}
.input_foucs{
    border: 0.1rem solid rgb(221, 121, 6);
}
.tips{
    text-align: center;
    font-size: 1.6rem;
    color: #999;
}