html {
    font-size: 16px;
    /* 默认字体大小 */
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
        /* 在小屏幕上减小字体大小 */
    }
}

.bg-dark {
    width: 100%;
    height: 4.125rem;
    /* 66px / 16px = 4.125rem */
    background: #fff !important;
    box-shadow: 0 0.1875rem 0.375rem 0px rgba(155, 187, 245, 0.72);
    /* 3px / 16px = 0.1875rem, 6px / 16px = 0.375rem */
}

.banner {
    width: 100%;
    height: 16.375rem;
    /* 262px / 16px = 16.375rem */
    margin-top: 4.125rem;
    /* 66px / 16px = 4.125rem */
    background: url('../img/contactUs/banner.png');
    background-size: 100% 100%;
}
.bannerTitle{
    background: #F4F9FF;
    /* padding-top: 6.25rem;
    padding-bottom: 4.94rem; */
    padding-top: 2.29rem !important;
    padding-bottom: 1.14rem !important;
}
.banner h1 {
    font-weight: 500;
    font-size: 2.5rem;
    color: #FFFFFF;
    /* line-height: 1.71rem; */
    text-align: center;
    font-style: normal;
    margin-top: 5.38rem;
    margin-bottom: 1.13rem;
}

.banner p {
    font-weight: 500;
    font-size: 0.88rem;
    color: #FFFFFF;
    line-height: 1.14rem;
    text-align: center;
    font-style: normal;
}

.bannerTitle h1{
    font-size: 1.75rem !important;
}
.content h1 {
    font-size: 1.14rem;
    /* 28px / 16px = 1.75rem */
    color: #283548;
    line-height: 2.4375rem;
    /* 39px / 16px = 2.4375rem */
    text-align: center;
    font-style: normal;
    text-transform: none;
    /* 78px / 16px = 4.875rem */
}

.companyProfile {
    background: url('../img/contactUs/companyProfileBg.png');
    height: 11.625rem;
    /* 186px / 16px = 11.625rem */
    background-size: 100% 100%;
}

.companyProfileContent {
    width: 68rem;
    /* 1086px / 16px = 68rem */
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 2.75rem 12.5rem;
    /* 44px / 16px = 2.75rem, 200px / 16px = 12.5rem */
}

.companyProfileItem .number {
    font-size: 2.5rem;
    /* 40px / 16px = 2.5rem */
    color: #377CF7;
    line-height: 2.75rem;
    /* 44px / 16px = 2.75rem */
    text-align: center;
    font-style: normal;
    text-transform: none;
    font-weight: bold;
}

.companyProfileItem .text {
    font-size: 1rem;
    /* 16px / 16px = 1rem */
    color: #212121;
    line-height: 1.4375rem;
    /* 23px / 16px = 1.4375rem */
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.companyProfileInfo {
    width: 68rem;
    /* 1086px / 16px = 68rem */
    background: #ffffff;
    box-shadow: 0.625rem 0.625rem 1.75rem 0px rgba(203, 222, 255, 0.91);
    /* 10px / 16px = 0.625rem, 10px / 16px = 0.625rem, 28px / 16px = 1.75rem */
    border: 1px solid #FFFFFF;
    margin: auto;
    padding: 3.75rem 9rem;
    /* 60px / 16px = 3.75rem, 144px / 16px = 9rem */
    /* margin-top: 3.125rem; */
    /* 50px / 16px = 3.125rem */
    /* margin-bottom: 3.75rem; */
    /* 60px / 16px = 3.75rem */
    border-radius: 0.875rem;
    /* 14px / 16px = 0.875rem */
}
.companyProfileInfo .keyword{
    color: #377CF7;
}
.companyProfileInfo p {
    font-size: 1rem;
    /* 16px / 16px = 1rem */
    color: #5A687D;
    line-height: 1.4375rem;
    /* 23px / 16px = 1.4375rem */
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.corporateCulture {
    width: 100%;
    background: #FFFFFF;
}

.corporateCulture h1 {
    font-size: 1.75rem;
    /* 28px / 16px = 1.75rem */
    color: #283548;
    line-height: 2.4375rem;
    /* 39px / 16px = 2.4375rem */
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 6.625rem 0 5rem;
    /* 106px / 16px = 6.625rem, 80px / 16px = 5rem */
}

.corporateCultureContent {
    height: 26.75rem;
    /* 428px / 16px = 26.75rem */
    background: #131A30;
}

.corporateCultureList {
    display: flex;
    width: 77.25rem;
    /* 1236px / 16px = 77.25rem */
    margin: auto;
}

.corporateCultureItem {
    width: 19.3125rem;
    /* 309px / 16px = 19.3125rem */
    position: relative;
    cursor: pointer;
}

.corporateCultureItem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #002B79;
    opacity: 0.63;
}

.corporateCultureItem img {
    width: 100%;
}

.corporateCultureItem .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    /* 24px / 16px = 1.5rem */
    color: #FFFFFF;
    line-height: 2.125rem;
    /* 34px / 16px = 2.125rem */
    text-align: left;
    font-style: normal;
    text-transform: none;
    z-index: 999;
}

.corporateCultureItem:hover::after {
    background: #377CF7;
    opacity: 0.92;
    transition: background 0.3s ease, opacity 0.3s ease;
    /* 修改过渡效果 */
}

.corporateCultureItem:hover .title {
    display: none;
    transition: display 0.3s ease;
    /* 修改过渡效果 */
}

.corporateCultureItem:hover .itemInfo {
    display: block;
    transition: display 0.3s ease;
    /* 修改过渡效果 */
}

.itemInfo {
    width: 10.5rem;
    /* 168px / 16px = 10.5rem */
    position: absolute;
    top: 13.75rem;
    /* 220px / 16px = 13.75rem */
    left: 3.125rem;
    /* 50px / 16px = 3.125rem */
    font-size: 1.5rem;
    /* 24px / 16px = 1.5rem */
    color: #FFFFFF;
    line-height: 2.125rem;
    /* 34px / 16px = 2.125rem */
    text-align: left;
    font-style: normal;
    text-transform: none;
    z-index: 999;
    display: none;
}

.itemInfo .line {
    width: 2.0625rem;
    /* 33px / 16px = 2.0625rem */
    height: 0.1875rem;
    /* 3px / 16px = 0.1875rem */
    background: #FFFFFF;
}

.itemInfoContent {
    font-size: 0.875rem;
    /* 14px / 16px = 0.875rem */
    color: #FFFFFF;
    line-height: 1.25rem;
    /* 20px / 16px = 1.25rem */
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.aptitudeBox {
    /* height: 66.57rem; */
    /* 610px / 16px = 38.125rem */
    background: url('../img/contactUs/aptitudeBg.png');
    background-size: 100% 100%;
    overflow: hidden;
    padding-bottom: 6.25rem;
}

.aptitudeBox h1 {
    margin-top: 6.25rem;
    margin-bottom: 5rem;
    font-size: 1.75rem;
    /* 100px / 16px = 6.25rem */
}

.aptitudeContent {
    width: 77.25rem;
    /* 1236px / 16px = 77.25rem */
    margin: auto;
    position: relative;
    z-index: 999;
}

.aptitudeList {
    display: flex;
    justify-content: space-between;
}

.aptitudeItem {
    width: 11.875rem;
    /* 142px / 16px = 8.875rem */
    text-align: center;
    cursor: zoom-in;
}

.aptitudeItemImage {
    border: 0.45rem solid #D0DEF8;
    border-radius: 8px;
    width: 8.875rem;
    /* 142px / 16px = 8.875rem */
    height: 12.125rem;
    /* 194px / 16px = 12.125rem */
    margin-bottom: 1.25rem;
    /* 20px / 16px = 1.25rem */
}

.basketball {
    width: 2.125rem;
    /* 34px / 16px = 2.125rem */
    height: 2.125rem;
    /* 34px / 16px = 2.125rem */
}

.aptitudeContent .line {
    border: 0.0625rem dashed #D0E3FF;
    /* 1px / 16px = 0.0625rem */
    position: absolute;
    width: 88%;
    bottom: 1rem;
    /* 16px / 16px = 1rem */
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.companyProfileInfoBox {
    background: #F4F9FF;
    padding: 3.15rem 0 3.75rem;



}
@media (max-width: 768px) {
    /* .content {
        padding-top: 2.29rem;
    } */

    .banner {
        height: 7.71rem;
        margin-top: 3.55rem;
    }
    .banner h1 {
        font-weight: 500;
        font-size: 1.29rem;
        color: #FFFFFF;
        line-height: 1.71rem;
        text-align: center;
        font-style: normal;
        margin-top: 2rem;
    }

    .banner p {
        font-weight: 500;
        font-size: 0.86rem;
        color: #FFFFFF;
        line-height: 1.14rem;
        text-align: center;
        font-style: normal;
    }

    .content h1 {
        margin-bottom: 0;
    }
    .bannerTitle h1 {
        font-size: 1.14rem !important;
    }
    .companyProfile {
        height: 100%;
    }

    .companyProfileContent {
        width: 100%;
        padding: 1.21rem 1.57rem;
    }

    .companyProfileInfoBox {
        padding: 1.14rem;
    }

    .companyProfileInfo {
        width: 100%;
        padding: 1.71rem 1.14rem;
    }

    .corporateCulture h1 {
        margin-top: 2.29rem;
        margin-bottom: 1.14rem;
        font-size: 1.14rem;
    }

    .corporateCultureContent {
        height: 100%;
    }

    .corporateCultureList {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .mcorporateCultureItem {
        width: 100%;
        height: 13.43rem;
    }

    .mbg1 {
        background: url('../img/contactUs/mcorporateCulturebg1.png');
        background-size: 100% 100%;
    }

    .mbg2 {
        background: url('../img/contactUs/mcorporateCulturebg2.png');
        background-size: 100% 100%;
    }

    .mbg3 {
        background: url('../img/contactUs/mcorporateCulturebg3.png');
        background-size: 100% 100%;
    }

    .mbg4 {
        background: url('../img/contactUs/mcorporateCulturebg4.png');
        background-size: 100% 100%;
    }

    .mitemInfo {
        margin: auto;
        margin-top: 2.93rem;
        width: 19.93rem;
        /* 168px / 16px = 10.5rem */
        font-size: 1.5rem;
        /* 24px / 16px = 1.5rem */
        color: #FFFFFF;
        line-height: 2.125rem;
        /* 34px / 16px = 2.125rem */
        text-align: left;
        font-style: normal;
        text-transform: none;
        position: relative;
    }

    .mitemInfo .line {
        width: 2.0625rem;
        /* 33px / 16px = 2.0625rem */
        height: 0.1875rem;
        /* 3px / 16px = 0.1875rem */
        background: #FFFFFF;
    }

    .itemInfoTitle {
        display: block;
    }

    .maptitudeList {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 1.14rem;
    }

    .aptitudeItemImage {
        width: 10.14rem;
        height: 14rem;
        margin-bottom: 0.86rem;
    }

    .aptitudeBox {
        height: 100%;
    }
    .aptitudeBox h1{
        margin-top: 2.23rem;
        font-size: 1.14rem !important;
    }
    .maptitudeItem {
        text-align: center;
        width: 11rem;
    }

    .maptitudeRow {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .wide {
        margin: auto;
    }

    .itemInfoContent {
        font-size: 1rem;
    }
    .companyProfileItem .number{
        font-weight: bold;
        font-size: 1.29rem;
        color: #377CF7;
        margin-bottom: 0;
        line-height: 1;
        margin-bottom: 0.57rem;
    }
    .companyProfileItem .text {
font-weight: 400;
font-size: 1rem;
color: #212121;
/* line-height: 1.43rem; */
text-align: center;
font-style: normal;
margin-bottom: 0;
    }
}

.aptitudeList {
    display: block;
}

.aptitudeRow {
    display: flex;
    justify-content: space-between;
}

.aptitudeRow:nth-child(1) {
    padding: 0 5.21rem;
    margin-bottom: 2.29rem;
}

.wide {
    width: 21.29rem;
}

.wide .aptitudeItemImage {
    width: 21.29rem;
}

.wideLine {
    border: 0.0625rem dashed #D0E3FF;
    position: absolute;
    width: 66%;
    top: 16.9rem;
    left: 53%;
    transform: translateX(-50%);
    z-index: -1;
}