.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    min-height: 60px;

}

.header .containerLeft {
    display: flex;
    align-items: center;
    flex: 1;
}

.header .containerLeft .logo {
    margin-right: 20px;
    background-image: url(https://lanhu-dds-backend.oss-cn-beijing.aliyuncs.com/merge_image/imgs/5ef5c94e4d04467cbd59d0a72c847390_mergeImage.png);
    width: 120px;
    height: 34px;
    background-size: contain;
}

.header .navbar {
    display: flex;
    flex-wrap: nowrap;
    flex: 1;
    justify-content: center;
}

.header .navbarItem {
    padding: 5px 20px;
    border-radius: 50px;
    /* margin: 0 15px; */
    cursor: pointer;
    font-family: 'Poppins-Medium';
}

.navbar .check {
    background: #f1f4f9;
}

.contactBtn {
    /* background: #6145f1;
    color: #fff;
    padding: 6px 30px;
    border-radius: 50px;
    box-shadow: 0px 5px 10px 4px rgba(153, 153, 153, 0.24);
    font-size: 15px;
    font-family: "Poppins-SemiBold";
    cursor: pointer; */
    background: #fff;
    color: #7257f4;
    border: 1px solid #7257f4;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    font-family: "Poppins-SemiBold";
    cursor: pointer;
  }
  
.header .contactBtn:hover {
    background: #533acd;
    color: #fff;
}

main {
    background: #f1f4f9 !important;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #f1f4f9;
    padding: 120px 0 100px 0;
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content .title {
    font-size: 44px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.content .title div{
    font-family: 'Poppins-Bold';
}

.content .tm{
    font-size:24px;
    margin-top: 5px;
    margin-right: 5px;
}

.content .text {
    background: linear-gradient(to right, #6949f0, #ffb4bc);
    -webkit-background-clip: text;
    color: transparent;
}

.content .subTitle {
    font-size: 32px;
    margin: 20px 0;
    text-align: left;
    font-family: 'Poppins-SemiBold';
}

.content .subDesc div {
    line-height: 2.4;
    text-align: left;
    font-size: 20px;
    font-family: 'Poppins-Regular';
}

@media screen and (max-width:500px) {
    .content {
        padding: 90px 0;
        text-align: left;
    }

    .content .title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .content .subDesc div {
        font-size: 15px;
        line-height: 22px;
    }

    .content .subTitle {
        font-size: 16px;
        margin: 18px 0;
    }

    .content .tm{
        font-size: 12px;
        margin-top: 2px;
        justify-content: left;
    }
}