* {
    padding: 0;
    margin: 0;
}

.clear::after {
    content: "";
    display: block;
    clear: both;
}

p {
    margin: 0;
    padding: 0;
}

body {
    background-color: #F3F4F9;
}

.footer {
    width: 100%;
    background-color: white;
    padding: 48px 0px 0px 40px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 38px;
}


.synopsis {
    position: relative;
    z-index: 999;
    width: 1440px;
    background-color: #ffffff;
    /* background-color: lightcoral; */
    border-radius: 40px;
    margin-top: -126px;
    display: flex;
    justify-content: center;
}

.CompanyProfile {
    width: 1204px;
    margin: 75px 118px;
    /* background-color: lawngreen; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.CompanyProfile_title {
    font-family: PingFangSC-Regular;
    text-align: center;
    font-weight: bold;
    font-stretch: normal;
    margin-bottom: 60px;
    letter-spacing: 0px;
    font-size: 22px;
    color: #000000;
}

.Divider {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid #EDEDED;
    /* background-color: red; */
    margin-top: 30px;
}

.Divider_botton {
    padding-bottom: 30px;
    border-bottom: 1px solid #EDEDED;
}

.Divider img {
    width: 19px;
    height: 28px;
}

.Divider h3 {
    font-weight: bold;
    margin-left: 26px;
    margin-top: 5px;
}

.classification {
    display: flex;
    justify-content: center;
}

.middle {
    width: 750px;
    display: flex;
    justify-content: space-between;
}

.middle h4 {
    font-weight: bold;
}

.middle p {
    margin-top: 15px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.50);
}

.middle img {
    width: 300px;
    height: 200px;
}


.support {
    margin:80px 0 60px 0;
    font-family: PingFangSC-Regular;
    text-align: center;
    font-weight: bold;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #000000;
    font-size: 22px;
}



/* 表单 */

.submitTo {
    width: 1200px;
    display: flex;
    justify-content: center;
}


form {
    /* max-width: 400px; */
    background-color: #fff;
    padding: 12px 40px 80px 40px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */

    width: 1200px;
    height: 638px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.08);
}

form input,
form select {
    border: none;
    outline: none;
    border-bottom: 1px solid #D8D8D8;
}

.input_top{
    display: flex;
    justify-content: space-between;
}

.input_top>input {
    width: 45%;
    height: 34px;
    margin-top: 38px;
    /* background-color: red; */
    padding: 0px 20px 12px 0px;
}

/* 邮箱 */
.mailbox{
    width: 100%;
    height: 34px;
    /* background-color: red; */
    padding: 0px 20px 12px 0px;
}


.drop_down{
    display: flex;
    justify-content: space-between;
}

.drop_down>select{
    width: 45%;
    height: 34px;
    padding: 0px 20px 12px 0px;
}

.problem_input{
    height: 34px;
    border: none;
    outline: none;
    border-bottom: 1px solid #D8D8D8;
}


.render{
    width: 200px;
    line-height: 60px;
    height: 60px;
    text-align: center;
    border: 1px solid #B2B2B2;
    background-color: white;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    color: #000000;

    transition: border 1s ease;
}

.render:hover{
    border: 1px solid #000000;
}