.justify-text {
    text-align: justify;
}
.justify-text::after {
    content: '';
    display: inline-block;
    width: 100%;
}
.aboutUsTXTDIV {
    padding: 0 10px;
}

.profile_div{
    padding: 0 10px;
}

.profile-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.profile-photo {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.profile-meta {
    padding: 18px 20px 22px;
    border-top: 1px solid #f0f0f0;
}

.profile-meta .aboutUsTXT_bold {
    margin-bottom: 6px;
    display: block;
}

.profile-bio {
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    height: 100%;
}

.aboutUsTXT {
    font-size: 12px;
}

.fontSizeDefault{
    font-size: 10px;
}

/*当屏幕小于或等于768px时*/
@media screen and (max-width: 768px) {
    .aboutUsTXT {
        font-size: 14px;
        /*margin: 20px 20px;*/
        /*font-weight: 200;*/
        text-align: left;
        letter-spacing: 0.5px;
        line-height: 18px;
    }

    .aboutUsTXT_bold {
        font-weight: 500;
    }
}

/*屏幕大于或等于768px时 for pc*/
@media screen and (min-width: 768px) {
    .aboutUsTXTDIV {
        padding: 0 50px;
    }

    .profile_div{
        padding: 0 20px;
    }

    .profile-bio {
        padding: 24px 28px;
    }

    .aboutUsTXT {
        font-size: 14px;
        /*margin: 20px 5px;*/
        /*font-weight: 200;*/
        text-align: left;
        letter-spacing: 1px;
        line-height: 20px;
    }

    .fontSizeDefault{
        font-size: 12px;
    }

    .aboutUsTXT_bold {
        font-weight: 600;
    }
}

/*屏幕大于或等于992px时 for pc*/
@media screen and (min-width: 992px) {
    .aboutUsTXTDIV {
        padding: 0 50px;
    }

    .profile_div{
        padding: 0 30px;
    }

}

/*屏幕大于或等于1200px时 for pc*/
@media screen and (min-width: 1200px) {
    .aboutUsTXTDIV {
        padding: 0 80px;
    }

    .profile_div{
        padding: 0 40px;
    }

}