.banner {
    height: 480px;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slogan {
    position: absolute;
    width: 1200px;
    left: calc(50% - 600px);
    bottom: 160px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-shadow: 0px 8px 10px #3D3D3D;
}

.banner .slogan span {
    font-size: 20px;
    text-shadow: 0px 8px 10px #3D3D3D;
}

.main .title {
    text-align: center;
}

.main .title .en {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
    background-color: #E3EFFF;
    padding: 0 12px;
    font-size: 10px;
    font-weight: bolder;
    color: var(--blue);
}

.main .title .subtitle {
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    font-weight: bold;
}

.main .name .icon {
    margin-right: 8px;
}

.main .about {
    padding: 50px 0;
}

.main .about .container {
    padding: 20px 32px;
    border-radius: 8px;
    margin-top: 20px;
    background-color: #F5F5F9;
}

.main .about .img {
    width: 400px;
    height: 300px;
    margin-top: 46px;
}

.main .about .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .about .article {
    flex: 1;
    padding-right: 28px;
}

.main .about .article .name {
    line-height: 36px;
    font-weight: bold;
    font-size: 20px;
    color: #333F99;
}

.main .about .article .content {
    margin-top: 10px;
    line-height: 24px;
    text-align: justify;
    color: #000;
}

.main .services {
}

.main .services .list {
    margin-top: 16px;
    border-bottom: 1px solid #333F99;
}

.main .services .list .item {
    padding: 24px 0;
    border-top: 1px solid #333F99;
    display: flex;
}

.main .services .list .item:nth-child(odd) .info {
    order: 1;
    padding-left: 0;
    padding-right: 36px;
}

.main .services .list .item:nth-child(odd) .img {
    order: 2;
}

.main .services .list .item .img {
    width: 400px;
    height: 300px;
    border-radius: 4px;
}

.main .services .list .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.main .services .list .item .info {
    flex: 1;
    padding-left: 36px;
}

.main .services .list .item .info .category {
    font-size: 12px;
    line-height: 16px;
}

.main .services .list .item .info .name {
    margin-top: 12px;
    font-size: 20px;
    color: #333F99;
    font-weight: bold;
}

.main .services .list .item .info .name .icon {
    margin-top: 2px;
}

.main .services .list .item .info .more {
    font-size: 12px;
    font-weight: bold;
    color: var(--blue);
}

.main .services .list .item .info .more .more-icon {
    margin-left: 2px;
}

.main .services .list .item .info .content {
    margin-top: 10px;
    line-height: 24px;
    color: #000;
    text-align: justify;
}
.contact-form {
    width: 480px;
    padding: 24px 32px 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity .5s;
}
.contact-form.show {
    opacity: 1;
}
.contact-form .title {
    text-align: center;
}

.contact-form .title .en {
    display: inline-block;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
    background-color: #E3EFFF;
    padding: 0 12px;
    font-size: 10px;
    font-weight: bolder;
    color: var(--blue);
}

.contact-form .title .subtitle {
    margin-top: 10px;
    line-height: 28px;
    font-size: 18px;
    font-weight: bold;
    color: #000;
}
.contact-form .form {
    padding: 20px 0 26px;
}
.contact-form .form .label {
    line-height: 20px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: bold;
}
.contact-form .form .input,
.contact-form .form .textarea {
    width: 100%;
    height: 36px;
    margin-top: 4px;
    margin-bottom: 16px;
    outline: none;
    border: 1px solid #333F99;
    border-radius: 4px;
    background-color: #F5F5F9;
    font-size: 14px;
    color: var(--text-color);
    padding: 0 12px;
}
.contact-form .form .input.error,
.contact-form .form .textarea.error {
    border: 2px solid #FF0000;
}
.contact-form .form .input::-webkit-input-placeholder,
.contact-form .form .textarea::-webkit-input-placeholder {
    color: #B5B5B6;
}
.contact-form .form .textarea {
    resize: none;
    height: 160px;
    line-height: 20px;
    padding: 10px 12px;
    margin-bottom: 0;
}
.contact-form .btns {
    display: flex;
    justify-content: center;
}
.contact-form .btns .btn {
    width: 88px;
    height: 32px;
    border: 1px solid #333F99;
    border-radius: 32px;
    font-size: 14px;
    color: #333F99;
    outline: none;
    cursor: pointer;
    background-color: #fff;
}
.contact-form .btns .btn.submit {
    background-color: #333F99;
    color: #fff;
    margin-right: 16px;
}

.main .profile {
    padding: 50px 0;
}

.main .profile .container {
    padding: 20px 80px;
    border-radius: 8px;
    margin-top: 20px;
    background-color: #F5F5F9;
}

.main .profile .info {
    padding: 12px 0;
    color: #000;
    line-height: 26px;
}

.main .profile .info .label {
    min-width: 96px;
    margin-right: 8px;
}

.main .profile .info .text {
    font-weight: bolder;
    line-height: 24px;
}

.main .profile .info .left {
    width: 616px;
}

.main .profile .info .left .item {
    margin-bottom: 6px;
}