/* 区块1 */
.products-section1-container{
    width: 100%;
}
.products-section1-container-header{
    width: 100%;
    height: 18.125rem;
    position: relative;
}
.products-section1-container-header-bg{
    width: 100%;
    height: 18.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.products-section1-container-header-bg-img{
    width: 100%;
    height: 18.125rem;
    object-fit: cover;
}
.products-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);
}
.products-section1-container-header-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.products-section1-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 4.5rem;
    color: #ffffff;
}
.products-section1-container-body{
    width: 100%;
    padding: 2.5rem 0;
}
.products-section1-container-description{
    text-align: left;
    font-size: 1.125rem;
}

/* 区块2 */
.products-section2-product-list{
    width: 100%;
}
.products-section2-product-group{
    width: calc(100% - 2.5rem);
    padding: 0 1.25rem;
    display: grid;
    grid-template-rows: repeat(1, 21.25rem);
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 1.25rem;
    grid-column-gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.products-section2-product-group:last-of-type{
    margin-bottom: 0;
}
.products-section2-product{
    width: 100%;
    height: 100%;
    position: relative;
}
.products-section2-product-bg{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.products-section2-product-bg-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-section2-product-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(27,29,54,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.products-section2-product-info{
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.products-section2-product-icon{
    width: 7.5rem;
    height: 7.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.products-section2-product-icon-img{
    width: 7.5rem;
    height: 7.5rem;
    object-fit: contain;
}
.products-section2-product-title{
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 1.875rem;
    padding-top: 0.625rem;
}
.products-section2-product-description{
    width: 100%;
    padding-top: 0.625rem;
    text-align: center;
    font-size: 1.125rem;
    color: #ffffff;
}
.products-section2-product-btn{
    padding: 0 1.875rem;
    height: 2.75rem;
    border-radius: 0 2.875rem 0 0;
    border: rgba(233,81,29,1) solid 1px;
    text-align: center;
    text-decoration: none;
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 2.75rem;
    font-weight: bold;
    margin-top: 0.9375rem;
}
.products-section2-product-btn:hover{
    background: rgba(233,81,29,1);
}
.products-section2-product-white .products-section2-product-content{
    background: rgba(255,255,255,0.8);
}
.products-section2-product-white .products-section2-product-title{
    color: #1e235a;
}
.products-section2-product-white .products-section2-product-description{
    color: #1e235a;
}
.products-section2-product-white .products-section2-product-btn{
    background: rgba(233,81,29,1);
}
.products-section2-product-white .products-section2-product-btn:hover{
    background: #1e235a;
    border: #1e235a solid 1px;
}