.main-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    background: url(../image/profile/banner.png) no-repeat center top;
    margin-top: 88px;
}
.main-banner div{
    position: relative;
}
.main-banner div::before{
    content: '';
    position: absolute;
    top: calc(50% + 10px);
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 54px;
    height: 2px;
    background-color: #FFFFFF;
}
.main-banner div p {
    text-align: center;
    color: #FFFFFF;
}
.cn-title{
    font-weight: 600;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 56px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.en-title{
    font-weight: 500;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 33px;
}


.profile-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 1440px;
    box-sizing: border-box;
    padding: 59px 0 88px;
}
.profile-container::before{
    position: absolute;
    top: 24px;
    content: 'ABOUT US';
    font-weight: bold;
    font-size: 200px;
    color: #FAFAFA;
    line-height: 233px;
    text-align: center;
    font-style: normal;
    text-transform: uppercase;
}

.profile-container > img{
    width: 40px;
    height: 40px;
    margin-bottom: 33px;
    z-index: 10;
}

.profile-container .title{
    font-weight: 500;
    font-size: 24px;
    color: #000000;
    line-height: 33px;
    text-align: center;
    margin-bottom: 11px;
    z-index: 10;
}
.profile-container .context{
    margin-bottom: 54px;
    z-index: 10;
}
.profile-container .context p{
    font-weight: 500;
    font-size: 16px;
    color: #7E7E7E;
    line-height: 32px;
    text-align: center;
}

.image-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 40px;
}

.image-list img:nth-child(5) {
    grid-column: span 2;
    width: 100%;
    height: auto;
}

.image-list img {
    width: 100%;
    height: auto;
    object-fit: cover;
}