/* 区块1 */
.contact-section1-container {
    width: 100%;
    padding-top: 11.625rem;
}
.contact-section1-container-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.contact-section1-container-left{
    width: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-container-poster{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 1.25rem;
    overflow: hidden;
}
.contact-section1-container-poster-img{
    width: 100%;
    object-fit: contain;
}
.contact-section1-container-right{
    flex: 1;
    padding-left: 3.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-section1-contact-info{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-contact-info-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-contact-info-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
}
.contact-section1-contact-info-header-description{
    width: 100%;
    padding-top: 0.9375rem;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 500;
}
.contact-section1-contact-info-body{
    width: 100%;
    padding-top: 2.8125rem;
}
.contact-section1-contact-address-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.875rem;
}
.contact-section1-contact-address{
    width: 100%;
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    border-top: #000000 solid 1px;
    border-bottom: #000000 solid 1px;
}
.contact-section1-contact-address-title{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
    font-weight: bold;
}
.contact-section1-contact-address-description{
    width: 100%;
    padding-top: 0.9375rem;
    text-align: left;
    font-size: 0.875rem;
    font-weight: 500;
}
.contact-section1-contact-methods-list{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.875rem;
}
.contact-section1-contact-methods{
    padding-top: 1.25rem;
    padding-bottom: 1.875rem;
    border-bottom: #000000 solid 1px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-contact-method{
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #000000;
    margin-bottom: 0.625rem;
}
.contact-section1-contact-method:last-of-type{
    margin-bottom: 0;
}
.contact-section1-contact-method:hover{
    color: #209443;
}
.contact-section1-contact-form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-contact-form-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section1-contact-form-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
}
.contact-section1-contact-form-body{
    width: 100%;
    padding-top: 1.5625rem;
}
.contact-section1-contact-form-group{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.75rem;
    margin-bottom: 1.25rem;
}
.contact-section1-contact-form-group:last-of-type{
    margin-bottom: 0;
}
.contact-section1-contact-form-group-single{
    grid-template-columns: 1fr;
}
.contact-section1-contact-form-item{
    width: calc(100% - 2.5rem - 0.125rem);
    padding: 0.4375rem 1.25rem;
    border: #b5b5b5 solid 1px;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.contact-section1-contact-form-item-input-wrap{
    width: 100%;
    text-align: left;
}
.contact-section1-contact-form-item-input{
    width: 100%;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: left;
    font-size: 1.125rem;
    border: none;
    outline: none;
}
textarea.contact-section1-contact-form-item-input{
    height: unset;
}
.contact-section1-contact-form-btn{
    width: 100%;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    display: block;
    background: #209443;
    color: #ffffff;
    font-size: 1.4375rem;
    border: none;
    outline: none;
    border-radius: 1.25rem;
    cursor: pointer;
}
.contact-section1-contact-form-btn:hover{
    opacity: 0.8;
}

/* 区块2 */
.contact-section2-container{
    width: 100%;
    padding: 9.375rem 0;
}
.contact-section2-container-body{
    width: 100%;
}
.contact-section2-desc-list{
    width: 100%;
}
.contact-section2-desc-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.contact-section2-desc{
    width: calc(25% - 0.5rem);
    margin-right: 0.75rem;
    height: 34.375rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    transition: width 0.6s;
}
.contact-section2-desc-full{
    width: calc(50% - 0.5rem);
}
.contact-section2-desc:last-of-type{
    margin-right: 0;
}
.contact-section2-desc-poster{
    width: 100%;
    height: 34.375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.contact-section2-desc-poster-img{
    width: 100%;
    height: 34.375rem;
    object-fit: cover;
}
.contact-section2-desc-info{
    width: calc(100% - 5rem);
    height: calc(34.375rem - 7.5rem);
    padding: 3.75rem 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-section2-desc-info-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section2-desc-info-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    color: #ffffff;
    font-weight: bold;
}
.contact-section2-desc-info-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section2-desc-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    display: none;
}
.contact-section2-desc-description{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    color: #ffffff;
    padding-top: 1.75rem;
}
.contact-section2-desc-actions{
    width: 100%;
    padding-top: 2.8125rem;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-section2-desc-action{
    font-size: 1.125rem;
    color: #ffffff;
    text-decoration: none;
    padding: 0.625rem 0;
    border-bottom: #209443 solid 0.125rem;
}
.contact-section2-desc-full .contact-section2-desc-title{
    display: block;
}
.contact-section2-desc-full .contact-section2-desc-actions{
    display: flex;
}