/* 区块1 */
.application-section1-container{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.application-section1-container-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.application-section1-container-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.application-section1-container-content{
    width: 100%;
    height: calc(62.5rem - 23.75rem);
    padding: 11.875rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
}
.application-section1-container-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.application-section1-container-sub-title{
    width: 100%;
    text-align: left;
    font-size: 1.5625rem;
    color: #ffffff;
}
.application-section1-container-en-title{
    width: 100%;
    text-align: left;
    padding-top: 1.25rem;
    font-size: 4.375rem;
    font-weight: bold;
    color: #ffffff;
}
.application-section1-container-title{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 3.75rem;
    font-weight: bold;
    color: #ffffff;
}

/* 区块2 */
.application-section2-container{
    width: 100%;
    padding: 8.125rem 0;
}
.application-section2-container-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.application-section2-container-header-title{
    width: 45%;
    text-align: left;
    font-size: 2.8125rem;
}
.application-section2-container-header-description{
    width: 45%;
    text-align: right;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
}
.application-section2-container-body{
    width: 100%;
    padding-top: 5rem;
}
.application-section2-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.875rem;
    grid-row-gap: 1.875rem;
}
.application-section2-desc{
    width: 100%;
    height: 31.875rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    background: #eeeeee;
}
.application-section2-desc-poster{
    width: 100%;
    height: 31.875rem;
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.application-section2-desc:hover .application-section2-desc-poster{
    display: flex;
}
.application-section2-desc-poster-img{
    width: 100%;
    height: 31.875rem;
    object-fit: cover;
}
.application-section2-desc-info{
    width: calc(100% - 8.125rem);
    height: calc(31.875rem - 11.25rem);
    padding: 5.625rem 4.0625rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.application-section2-desc:hover .application-section2-desc-info{
    background: rgba(0,0,0,0.5);
}
.application-section2-desc-info-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.application-section2-desc-info-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.5625rem;
    font-weight: bold;
    color: #000000;
}
.application-section2-desc:hover .application-section2-desc-info-header-title{
    color: #ffffff;
}
.application-section2-desc-info-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.application-section2-desc-title{
    width: 100%;
    text-align: left;
    font-size: 2.1875rem;
    color: #000000;
}
.application-section2-desc:hover .application-section2-desc-title{
    color: #ffffff;
}
.application-section2-desc-description{
    width: 100%;
    padding-top: 2.5rem;
    text-align: left;
    font-size: 1.125rem;
    color: #000000;
}
.application-section2-desc:hover .application-section2-desc-description{
    color: #ffffff;
}