/* 区块1 */
.projects-section1-container{
    width: 100%;
    height: 62.5rem;
    position: relative;
}
.projects-section1-container-bg{
    width: 100%;
    height: 62.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.projects-section1-container-bg-img{
    width: 100%;
    height: 62.5rem;
    object-fit: cover;
}
.projects-section1-container-content{
    width: 100%;
    height: calc(62.5rem - 14.375rem);
    padding: 7.1875rem 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.projects-section1-container-content-wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.projects-section1-container-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.projects-section1-container-title{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.projects-section1-container-title-item{
    font-size: 3.3125rem;
    color: #ffffff;
}
.projects-section1-container-title-line{
    width: 1px;
    background: #ffffff;
    margin: 0 3.125rem;
}
.projects-section1-container-description{
    width: 100%;
    padding-top: 3.75rem;
    text-align: left;
    font-size: 1.5rem;
    color: #ffffff;
}
.projects-section1-container-right{
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}
.projects-section1-actions{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.projects-section1-action{
    padding: 0 2.1875rem;
    height: 4.125rem;
    line-height: 4.125rem;
    border-radius: 2.0625rem;
    text-align: center;
    background: #ffffff;
    color: #000000;
    font-size: 1.25rem;
    text-decoration: none;
}

/* 区块2 */
.projects-section2-container{
    width: 100%;
    padding: 7.5rem 0;
}
.projects-section2-container-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.projects-section2-container-header-left{
    flex: 1;
    padding-right: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.projects-section2-filter-list{
    width: 100%;
    /*overflow-x: auto;*/
}
.projects-section2-filter-list-wrap{
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.projects-section2-filter{
    width: 20.1875rem;
    position: relative;
    border-top: #e4e4e4 solid 1px;
    margin-right: 3.125rem;
    user-select: none;
}
.projects-section2-filter:last-of-type{
    margin-right: 0;
}
.projects-section2-filter-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5625rem 0;
    cursor: pointer;
}
.projects-section2-filter-icon{
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.projects-section2-filter-icon-img{
    width: 0.8125rem;
    height: 0.8125rem;
    object-fit: contain;
}
.projects-section2-filter-icon-img:first-of-type{
    display: none;
}
.projects-section2-filter-open .projects-section2-filter-icon-img:first-of-type{
    display: block;
}
.projects-section2-filter-open .projects-section2-filter-icon-img:last-of-type{
    display: none;
}
.projects-section2-container-header-right{
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.projects-section2-container-header-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.projects-section2-container-header-action{
    font-size: 1.625rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.projects-section2-container-header-action span{
    font-size: 0.875rem;
}
.projects-section2-filter-options{
    width: calc(100% - 4.375rem);
    padding: 2.1875rem;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fbf8f5;
    z-index: 99;
    max-height: 60vh;
    overflow-y: auto;
    box-shadow: 0 0 0 1px rgba(125,125,125,.1),0 0.125rem 0.25rem 1px rgba(125,125,125,.18);
    display: none;
}
.projects-section2-filter-open .projects-section2-filter-options{
    display: block;
}
.projects-section2-filter-options-wrap{
    width: 100%;
    height: max-content;
}
.projects-section2-filter-option{
    width: 100%;
    text-align: left;
    font-size: 1.0625rem;
    color: #000000;
    margin-bottom: 0.625rem;
    cursor: pointer;
}
.projects-section2-filter-option:last-of-type{
    margin-bottom: 0;
}
.projects-section2-filter-option-active{
    color: #beb5ae;
}
.projects-section2-container-body{
    width: 100%;
    padding-top: 5rem;
}
.projects-section2-desc-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
}
.projects-section2-desc{
    width: 100%;
    color: #000000;
    text-decoration: none;
}
.projects-section2-desc-poster{
    width: 100%;
    height: 23.4375rem;
    border-radius: 1.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.projects-section2-desc-poster-img{
    width: 100%;
    height: 23.4375rem;
    object-fit: cover;
}
.projects-section2-desc-poster-info{
    width: calc(100% - 4.375rem);
    height: calc(23.4375rem - 6.25rem);
    padding: 3.125rem 2.1875rem;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
}
.projects-section2-desc-country{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.projects-section2-desc-country-icon{
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.projects-section2-desc-country-icon-img{
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}
.projects-section2-desc-country-title{
    flex: 1;
    padding-left: 0.625rem;
    text-align: left;
    font-size: 1.0625rem;
    color: #ffffff;
}
.projects-section2-desc-info{
    width: calc(100% - 0.625rem);
    padding: 1.25rem 0.3125rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.projects-section2-desc-title{
    width: 100%;
    text-align: left;
    font-size: 1.625rem;
}
.projects-section2-desc-tags{
    width: 100%;
    padding-top: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.projects-section2-desc-tag{
    width: max-content;
    padding:  0 1.25rem;
    height: 1.75rem;
    border-radius: 0.9375rem;
    border: #beb5ae solid 1px;
    color: #beb5ae;
    font-size: 0.9375rem;
    line-height: 1.75rem;
    margin-right: 0.5rem;
}
.projects-section2-desc-tag:last-of-type{
    margin-right: 0;
}