/* 区块1 */
.about-section1-container{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.about-section1-container-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section1-container-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.about-section1-container-content{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
}
.about-section1-container-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-section1-logo{
    width: 32.6875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section1-logo-img{
    width: 32.6875rem;
    object-fit: contain;
}

/* 区块2 */
.about-section2-container{
    width: 100%;
    padding: 9.375rem 0;
}
.about-section2-card{
    width: 100%;
    height: 43.3125rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.about-section2-card-poster{
    width: 45rem;
    height: 43.3125rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section2-card-poster-img{
    width: 45rem;
    height: 43.3125rem;
    object-fit: cover;
}
.about-section2-card-info{
    flex: 1;
    padding-left: 4.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.about-section2-card-sub-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    font-weight: bold;
}
.about-section2-card-title{
    width: 100%;
    text-align: left;
    padding-top: 0.625rem;
    font-size: 3.3125rem;
    font-weight: bold;
}
.about-section2-card-description{
    width: 100%;
    text-align: left;
    padding-top: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

/* 区块3 */
.about-section3-container{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.about-section3-container-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.about-section3-container-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.about-section3-container-body{
    width: 100%;
    height: calc(62.5rem - 10rem);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.about-section3-container-body-wrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.about-section3-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.375rem;
    grid-row-gap: 2.375rem;
}
.about-section3-desc{
    width: calc(100% - 8.125rem);
    padding: 4.375rem 4.0625rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background-color: #FFFFFF;
}
.about-section3-desc.active{
    background-color: #6fa032;
    background-image: url("/wp-content/themes/powerpackaging/assets/images/common/about_section3_desc_bg.png");
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-section3-desc-title{
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000;
}
.about-section3-desc.active .about-section3-desc-title{
    color: #FFFFFF;
}
.about-section3-desc-description{
    width: 100%;
    text-align: left;
    padding-top: 1.5625rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
}
.about-section3-desc.active .about-section3-desc-description{
    color: #FFFFFF;
}