/* 区块1 */
.products-section1-container{
    width: 100%;
    padding: 8.125rem 0;
}
.products-section1-container-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.products-section1-container-header-left{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.products-section1-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 4.125rem;
    font-weight: bold;
}
.products-section1-container-header-right{
    width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
}
.products-section1-container-header-search{
    width: 20.625rem;
    padding: 0.625rem 0;
    border-bottom: #c9c9c9 solid 1px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.products-section1-container-header-search-btn{
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.products-section1-container-header-search-btn-icon{
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.products-section1-container-header-search-btn-icon-img{
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}
.products-section1-container-header-search-input-wrap{
    flex: 1;
    padding-right: 1.25rem;
    height: 1.25rem;
}
.products-section1-container-header-search-input{
    width: 100%;
    height: 1.25rem;
    line-height: 1.25rem;
    text-align: left;
    font-size: 0.8125rem;
    color: #838383;
    border: none;
    outline: none;
}
.products-section1-filter-btn{
    display: none;
}
.products-section1-container-header-search-result{
    padding-left: 4.375rem;
    font-size: 1.0625rem;
}
.products-section1-container-header-search-result-num{
    color: #6fa032;
}
.products-section1-container-body{
    width: 100%;
    padding-top: 5.625rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.products-section1-container-body-left{
    width: 16.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.products-section1-filter-bar{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.products-section1-filter-bar-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.products-section1-filter-bar-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
}
.products-section1-filter-bar-header-btn{
    display: none;
}
.products-section1-filters{
    width: 100%;
    padding-top: 1.875rem;
}
.products-section1-filter{
    width: 100%;
    border-top: #bebebe solid 1px;
}
.products-section1-filter-header{
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.products-section1-filter-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: bold;
}
.products-section1-filter-options{
    width: 100%;
    padding-bottom: 1.25rem;
}
.products-section1-filter-option{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    font-size: 1rem;
    color: #8d8d8d;
    margin-bottom: 0.625rem;
    user-select: none;
    cursor: pointer;
}
.products-section1-filter-option.checked, .products-section1-filter-option:hover{
    color: #6fa032;
}
.products-section1-filter-option input{
    font-size: 1rem;
    margin-right: 0.625rem;
}
.products-section1-filter-option input:checked{
    background-color: #6fa032;
    accent-color: #6fa032;
}
.products-section1-filter-bar-footer{
    display: none;
}
.products-section1-container-body-right{
    flex: 1;
    padding-left: 3.5rem;
}
.products-section1-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
}
.products-section1-desc{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    color: #000000;
    text-decoration: none;
}
.products-section1-desc-poster{
    width: 100%;
    height: 12.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.products-section1-desc-poster-img{
    width: 100%;
    height: 12.5rem;
    object-fit: contain;
}
.products-section1-desc-info{
    width: 100%;
    padding-top: 1.875rem;
}
.products-section1-desc-tags{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.products-section1-desc-tag{
    width: max-content;
    padding: 0 1.25rem;
    height: 1.625rem;
    line-height: 1.625rem;
    border-radius: 0.875rem;
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 400;
    color: #838383;
    border: #979797 solid 1px;
    margin-right: 0.3125rem;
    margin-bottom: 0.3125rem;
}
.products-section1-desc-tag:last-of-type{
    margin-right: 0;
}
.products-section1-desc-title{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1.25rem;
    font-weight: bold;
}