/* 区块1 */
.industry-section1-container{
    width: 100%;
}
.industry-section1-container-header{
    width: 100%;
    height: 18.125rem;
    position: relative;
}
.industry-section1-container-header-bg{
    width: 100%;
    height: 18.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.industry-section1-container-header-bg-img{
    width: 100%;
    height: 18.125rem;
    object-fit: cover;
}
.industry-section1-container-header-content{
    width: 100%;
    height: 18.125rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(27,29,54,0.75);
}
.industry-section1-container-header-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.industry-section1-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 4.5rem;
    color: #ffffff;
}
.industry-section1-container-body{
    width: 100%;
    padding: 2.5rem 0;
}
.industry-section1-container-description{
    text-align: left;
    font-size: 1.125rem;
}

/* 区块2 */
.industry-section2-container{
    width: 100%;
    padding-bottom: 2.5rem;
}
.industry-section2-industry-list{
    width: 100%;
}
.industry-section2-industry-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 1.25rem;
}
.industry-section2-industry-group:last-of-type{
    margin-bottom: 0;
}
.industry-section2-industry{
    width: calc(100% / 3 - 2.5rem);
    margin-right: 3.75rem;
    background: #1e235a;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.industry-section2-industry:last-of-type{
    margin-right: 0;
}
.industry-section2-industry-poster{
    width: 100%;
    height: 14.0625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.industry-section2-industry-poster-img{
    width: 100%;
    height: 14.0625rem;
    object-fit: cover;
}
.industry-section2-industry-info{
    flex: 1;
    width: calc(100% - 2.5rem);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.industry-section2-industry-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    color: #ffffff;
}
.industry-section2-industry-btn{
    margin-top: 1.25rem;
    width: max-content;
    max-width: 80%;
    text-align: left;
    padding: 0.625rem 1.875rem;
    border: rgba(233,81,29,1) solid 1px;
    border-radius: 0 3.75rem 0 0;
    color: #ffffff;
    text-decoration: none;
}
.industry-section2-industry-btn:hover{
    background: rgba(233,81,29,1);
}