.banner {
    width: 100%;
    height: 300px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .title {
    font-size: 25px;
    font-weight: bold;
    color: var(--titColor);
    text-align: center;
    margin: 30px 0 40px;
}

.row {
    display: flex;
}

.row .item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 20px 15px;
}

.row input,
.row select {
    flex: 1;
    padding: 8px;
    border: 1px solid #cccccc;
    border-radius: 10px;
    outline-style: none;
}

.row label {
    width: 120px;
    text-align: right;
    margin-right: 10px;
}

form .btn {
    margin: 20px auto;
    width: 300px;
    background-color: red;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    cursor: pointer;
}

.row .item:last-child {
    border-right: none;
    border-bottom: none;
}

.item .text {
    margin: 10px 0;
}

.item form {
    display: flex;
    flex-direction: column;
}

.ps {
    margin: 30px 0;
}

.row .left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 49%;
}

form {
    padding: 30px;
    background-color: #fff;
    border-radius: 5px;
    margin: 40px 0;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}

form h4 {
    font-size: 28px;
}

form ul {
    list-style: square;
    padding-left: 20px;
}

form p {
    font-size: 16px;
    color: rgba(0, 0, 0, .6);
    margin-top: 12px;
}

form .row .item {
    display: flex;
}

.row .right {
    width: 49%;
}

.right img {
    width: 100%;
}

.row .left .cont {
    display: flex;
    align-items: center;
    background-color: #fafafa;
    padding: 50px 50px;
}

.row .left .cont .icon {
    width: 40px;
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.row .left .cont p {
    margin-top: 8px;
}

.item form input,
.item form textarea {
    margin: 10px 0;
    padding: 5px 10px;
    border-radius: 5px;
    outline-style: none;
    border: 1px solid #d6d6d6;
}

.item form .btn {
    text-align: center;
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    cursor: pointer;
    background-color: #1329ee;
}

@media screen and (max-width:850px) {
    .row {
        flex-direction: column;
    }
    .row .item {
        border-right: none;
        border-bottom: 1px solid #ccc;
    }
}