body {
    font-size: 16px;
}
* {
    line-height: 1;
}
.banner {
    background-image: url('../images/contact/t17.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 450px;
}

/* 板块一 */
main > .block1 {
    margin: 100px auto 0;
}
.block1 .block-main {
    width: 73%;
    min-width: 1200px;
    margin: 60px auto 0;
    height: 410px;
    border-radius: 30px;
    background-image: url(../images/contact/t16.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 65px 60px 65px 90px;
    display: flex;
}
.block1 .block-main > div {
    flex: 1;
}
.block1 .block-main .left {
    border-right: 1px solid rgba(42, 188, 117, 0.2);
}
.block1 .block-main .left .name {
    margin-top: 25px;
    font-weight: 800;
    font-size: 28px;
    color: #444444;
}
.block1 .block-main .left .info {
    margin-top: 30px;
}
.block1 .block-main .left .info p {
    font-size: 18px;
    color: #222222;
    line-height: 40px;
    display: flex;
}
.block1 .block-main .left .info p span {
    line-height: 1.5;
}
.block1 .block-main .right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-direction: column;
}
.block1 .block-main .right .cell {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #2ABC75;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.block1 .qrcode {
    display: flex;
    gap: 10px;
}
.block1 .qrcode img {
    max-width: 120px;
    width: auto;
    flex: 1;
}
.block1 .qrcode .text {
    margin-top: 10px;
    text-align: center;
}
.button-block {
    flex-direction: column;
    margin-top: 70px;
    width: 95%;
    margin: 70px auto 30px;
}
.button-block .button-box {
    display: flex;
    justify-content: center;
    gap: 25px;
}
.button-block .button-box .cell {
    max-width: 800px;
    padding: 20px 0;
    border-radius: 30px;
    border: 2px solid #23A667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #2FAA6F;
    transition: .3s;
    margin-top: 20px;
    flex: 1;
}
/*.button-block .button-box .cell:hover {*/
/*    color: #fff;*/
/*    background-color: #2FAA6F;*/
/*}*/

/* 板块二 */
main > .block2 {
    margin: 115px auto 177px;
}
.block2 .block-main {
    width: 73%;
}
.block2 .block-main {
    margin: 50px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1020px;
    flex-direction: column;
    gap: 20px;
}
.block2 .block-main .row {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}
.block2 .block-main .row .cell {
    flex: 1;
}
.block2 .block-main button {
    margin-top: 60px;
    width: 400px;
    height: 60px;
    background: #2ABC75;
    border-radius: 30px;
    outline: none;
    border: none;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    cursor: pointer;
    transition: .2s;
}
.block2 .block-main button:hover {
    background: #2ABC75;
    opacity: .8;
}
.block2 .block-main button:active {
    transform: scale(.98);
}

/* 表单样式 */
main input,
main textarea,
main select {
    width: 100%;
    height: 60px;
    outline: none;
    border: #E5E5E5 solid 1px;
    border-radius: 6px;
    padding: 0 16px;
    transition: .3s;
}
main select option {
    outline: none;
}
main select option:hover {
    background-color: #000;
}
main textarea {
    resize: none;
    height: 150px;
    padding: 20px;
}
main input::placeholder {
    color: #CCCCCC;
}
main input:focus,
main textarea:focus,
main select:focus {
    border: #2ABC75 solid 1px;
    box-shadow: 0px 0px 15px 0px rgba(42,188,117,0.15);
}
.layui-select-title input {
    height: 60px;
}
.layui-form-select dl {
    top: 60px;
}

@media screen and (max-width: 1200px) {
    body {
        font-size: 14px;
    }
    .block1 .block-main{
        width: 95%;
        min-width: auto;
        height: auto;
        padding: 6% 4% 7%;
    }
    .block1 .block-main .right .cell {
        width: 20%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-width: 50px;
        max-height: 50px
    }
    .block1 .block-main .right .cell img {
        width: 50%;
        height: 50%;
        object-fit: contain;
    }
    .block1 .block-main .left .name {
        font-size: 1.8rem;
    }
    .block1 .block-main .left .info p {
        font-size: 1.2rem;
    }
    .block2 .block-main {
        width: 95%;
    }
}

@media screen and (max-width: 900px) {
    .block1 .block-main {
        flex-direction: column;
        padding: 3%;
        margin-top: 30px;
        border-radius: 20px
    }
    .block1 .block-main .left {
        border-right: none;
        border-bottom: 1px solid rgba(42, 188, 117, 0.2);
        padding-bottom: 20px;
    }
    .block1 .block-main .right {
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
    }
    .block1 .block-main .right .cell {
        width: 40px;
        height: 40px;
    }
    .block1 .block-main .left .info {
        margin-top: 20px;
    }
    .block1 .block-main .left .info p {
        line-height: 2.5rem;
    }
    .block1 .qrcode img {
        max-width: 100px;
    }
}
@media screen and (max-width: 768px) {
    body {
        font-size: 12px;
    }
    .block2 .block-main button {
        width: 300px;
        margin-top: 30px;
    }
    main > .block2 {
        margin-bottom: 80px;
    }
}
