/* 区块1 */
.about-section1-container{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.about-section1-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section1-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.about-section1-info{
    width: 100%;
    height: calc(62.5rem - 20rem);
    padding: 10rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background: rgba(0,0,0,0.2);
    position: absolute;
    top: 0;
    left: 0;
}
.about-section1-info-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.about-section1-title{
    flex: 1;
    padding-right: 1.875rem;
    text-align: left;
    font-size: 3.3125rem;
    font-weight: bold;
    color: #FFFFFF;
}
.about-section1-sub-title{
    width: max-content;
    font-size: 1.625rem;
    font-weight: bold;
    color: #FFFFFF;
}

/* 区块2 */
.about-section2-container{
    width: 100%;
    padding: 13.75rem 0;
    background: #000000;
}
.about-section2-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.about-section2-container-header-title{
    width: 100%;
    text-align: center;
    font-size: 4.125rem;
    font-weight: bold;
    color: #FFFFFF;
}
.about-section2-container-body{
    width: 100%;
    padding-top: 7.8125rem;
}
.about-section2-desc-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.about-section2-desc{
    width: calc(100% / 3 - 2.5625rem);
    border-left: #666666 solid 1px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-section2-desc:last-of-type{
    width: calc(100% / 3 - 2.625rem);
    border-right: #666666 solid 1px;
}
.about-section2-desc-value{
    width: 100%;
    text-align: center;
    font-size: 3.3125rem;
    color: var(--primary-color);
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.about-section2-desc-label{
    width: 100%;
    text-align: center;
    font-size: 1.625rem;
    color: #FFFFFF;
    padding-top: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 区块3 */
.about-section3-container{
    width: 100%;
    padding-bottom: 13.75rem;
    background: #000000;
}
.about-section3-container-body{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.about-section3-poster{
    width: 44rem;
    height: 47.3125rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section3-poster-img{
    width: 44rem;
    height: 47.3125rem;
    object-fit: cover;
}
.about-section3-info{
    flex: 1;
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.about-section3-title{
    width: 100%;
    text-align: left;
    font-size: 3.3125rem;
    font-weight: bold;
    color: #FFFFFF;
}
.about-section3-description{
    width: 100%;
    padding-top: 3.125rem;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF;
}

/* 区块7 */
.about-section7-container{
    width: 100%;
    padding-top: 9.375rem;
}
.about-section7-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.about-section7-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 3.3125rem;
    font-weight: bold;
}
.about-section7-container-header-description{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1rem;
    color: #a1a1a1;
}
.about-section7-container-body{
    width: 100%;
    padding-top: 6.875rem;
}
.about-section7-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
}
.about-section7-desc{
    width: 100%;
    height: 38.125rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}
.about-section7-desc-poster{
    width: 100%;
    height: 38.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section7-desc-poster-img{
    width: 100%;
    height: 38.125rem;
    object-fit: cover;
}
.about-section7-desc-info{
    width: calc(100% - 7.5rem);
    height: calc(38.125rem - 10rem);
    padding: 5rem 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}
.about-section7-desc-title{
    width: 100%;
    text-align: left;
    font-size: 2.0625rem;
    font-weight: bold;
    color: #FFFFFF;
    height: 40%;
}
.about-section7-desc-description{
    width: 100%;
    text-align: left;
    font-size: 1.0625rem;
    color: #FFFFFF;
    height: 40%;
}