.contact-banner {
    width: 1920px;
    height: 400px;
    margin: 0 auto;
    background-image: url(../images/contactUs.png);
    background-size: 100% auto;
    background-repeat: no-repeat;

    .container {
        width: 1280px;
        height: 400px;
        margin: 0 auto;
        position: relative;
    }

    .contact-banner-text {
        position: absolute;
        left: 0px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.contact {
    width: 1920px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 120px;

    .container {
        width: 1280px;
        margin: 0 auto;

        .contact-title {
            font-family: Microsoft YaHei UI, Microsoft YaHei UI;
            font-weight: 400;
            font-size: 48px;
            color: #1F1F1F;
            line-height: 56px;
            margin-bottom: 32px;
            text-align: center;
        }

        .contact-text {
            font-family: Microsoft YaHei UI, Microsoft YaHei UI;
            font-weight: 400;
            font-size: 16px;
            color: #646464;
            line-height: 24px;
            text-align: center;
            margin-bottom: 64px;
        }

        .contact-info {
            display: flex;
            justify-content: space-between;

            .contact-item {
                width: 416px;
                height: 136px;
                background: #F5F6FA;
                border-radius: 8px 8px 8px 8px;
                padding: 40px;
                box-sizing: border-box;
                display: flex;
                align-items: center;

                .icon {
                    width: 56px;
                    height: 56px;
                    background: #2A3D86;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-right: 40px;

                    img {
                        width: 24px;
                    }
                }

                .info {
                    h3 {
                        font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                        font-weight: 400;
                        font-size: 22px;
                        color: #1F1F1F;
                        line-height: 30px;
                        margin-bottom: 14px;
                    }

                    p {
                        font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                        font-weight: 400;
                        font-size: 16px;
                        color: #646464;
                        line-height: 24px;
                    }
                }
            }
        }

        .message {
            width: 100%;
            height: 746px;
            background: #F5F6FA;
            border-radius: 8px 8px 8px 8px;
            margin-top: 64px;
            padding: 64px 227px;
            box-sizing: border-box;

            h2 {
                margin-bottom: 40px;
                font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                font-weight: 400;
                font-size: 28px;
                color: #1F1F1F;
                line-height: 36px;
                text-align: center;
            }

            .form-item {
                width: 826px;
                height: 56px;
                background: #FFFFFF;
                padding: 16px 32px;
                box-sizing: border-box;
                margin-bottom: 16px;
                display: flex;
                align-items: center;

                label {
                    font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                    font-weight: 400;
                    font-size: 16px;
                    color: #999999;
                    line-height: 24px;
                    flex: 0 0 112px;
                }

                input::placeholder {
                    color: #C8C8C8;
                }

                input {
                    outline: none;
                    border: none;
                    font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    width: 100%;
                }
            }

            button {
                margin-top: 46px;
                width: 826px;
                height: 56px;
                background: #1F1F1F;
                font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                font-weight: 400;
                font-size: 16px;
                color: #FFFFFF;
                line-height: 24px;
            }

            .form-item-textarea {
                width: 826px;
                height: 296px;
                background: #FFFFFF;
                padding: 16px 32px;
                box-sizing: border-box;
                margin-bottom: 16px;
                display: flex;
                align-items: flex-start;

                label {
                    font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                    font-weight: 400;
                    font-size: 16px;
                    color: #999999;
                    line-height: 24px;
                    flex: 0 0 112px;
                }

                textarea::placeholder {
                    color: #C8C8C8;
                }

                textarea {
                    outline: none;
                    border: none;
                    font-family: Microsoft YaHei UI, Microsoft YaHei UI;
                    font-weight: 400;
                    font-size: 16px;
                    line-height: 24px;
                    width: 100%;
                    height: 100%;
                    resize: none;
                }
            }
        }
    }
}