/* 分页 */
.custom-pagination {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: none;
    padding: 2.5rem 0;
}
.custom-pagination .prev, .custom-pagination .next {
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.625rem;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    font-size: 1rem;
    font-family: var(--font-heading), "sans-serif";
}
.custom-pagination .prev:hover, .custom-pagination .next:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.custom-pagination .page {
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.625rem;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    font-family: var(--font-heading), "sans-serif";
    font-size: 1rem;
}
.custom-pagination .page:hover, .custom-pagination .active {
    background: var(--primary-color);
    color: #ffffff;
}

/* 视频播放弹窗 */
.video-dialog-container {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.video-dialog-body {
    width: calc(50vw - 2.5rem);
    padding: 1.25rem;
    background: #ffffff;
    border-radius: 1.25rem;
    overflow: hidden;
}
.video-dialog-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.video-dialog-header-close-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    cursor: pointer;
}
.video-dialog-header-close-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.video-dialog-header-close-btn-icon-img {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
}
.video-dialog-content {
    width: 100%;
    padding-top: 1.25rem;
}
.video-dialog-video {
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

/* 产品搜索弹窗 */
.product-search-dialog-container{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    z-index: 999;
}
.product-search-dialog-content{
    margin-top: 30vh;
    position: relative;
}
.product-search-dialog-content-actions{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.product-search-dialog-content-action{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-search-dialog-content-action-icon{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-search-dialog-content-action-icon-img{
    width: 1.875rem;
    height: 1.875rem;
    object-fit: contain;
    filter: grayscale(100%);
}
.product-search-dialog-content-action:hover .product-search-dialog-content-action-icon-img{
    filter: grayscale(0%);
}
.product-search-dialog-content-header{
    width: 100%;
    padding-top: 1.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-search-dialog-content-header-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    color: #444444;
}
.product-search-dialog-input-bar{
    margin-top: 1.25rem;
    padding: 1.875rem 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: #CCCCCC solid 1px;
}
.product-search-dialog-input-wrap{
    width: calc(100% - 3.125rem);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.product-search-dialog-input{
    width: 100%;
    height: 1.875rem;
    line-height: 1.875rem;
    text-align: left;
    border: none;
    outline: none;
}
.product-search-dialog-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.product-search-dialog-action{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-search-dialog-action-icon{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-search-dialog-action-icon-img{
    width: 1.875rem;
    height: 1.875rem;
    object-fit: contain;
    filter: grayscale(100%);
}
.product-search-dialog-action:hover .product-search-dialog-action-icon-img{
    filter: grayscale(0%);
}

/* 区块嵌入表单 */
.section-embded-form-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    background: #ffffff;
}
.section-embded-form-poster{
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.section-embded-form-poster-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-embded-form-info{
    width: calc(50% - 8.75rem);
    padding: 3.125rem 4.375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.section-embded-form-info-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.section-embded-form-title{
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
}
.section-embded-form-description{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #7d7d7d;
}
.section-embded-form-info-body{
    width: 100%;
    padding-top: 2.5rem;
}

/* FAQ+表单 */
.faq-with-form-container{
    width: 100%;
    padding: 7.8125rem 0;
    background: #ebe4db;
}
.faq-with-form-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.faq-with-form-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    font-weight: bold;
}
.faq-with-form-container-header-description{
    width: 100%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #7d7d7d;
}
.faq-with-form-container-body{
    width: 100%;
    padding-top: 2.8125rem;
}
.faq-with-form-faq-list{
    width: 100%;
    padding-bottom: 5.9375rem;
}
.faq-with-form-faq{
    width: calc(100% - 6.25rem);
    padding: 1.875rem 3.125rem;
    background: #ffffff;
    margin-bottom: 0.625rem;
    cursor: pointer;
}
.faq-with-form-faq:last-of-type{
    margin-bottom: 0;
}
.faq-with-form-faq-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.faq-with-form-faq-title{
    flex: 1;
    padding-right: 2.5rem;
    text-align: left;
    font-size: 1.6875rem;
    font-weight: bold;
}
.faq-with-form-faq-icon{
    width: 1.875rem;
    height: 1.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.faq-with-form-faq-icon-img{
    width: 0.9375rem;
    height: 0.9375rem;
}
.faq-with-form-faq-icon-img:last-of-type{
    display: none;
}
.faq-with-form-faq.open .faq-with-form-faq-icon-img:last-of-type{
    display: block;
}
.faq-with-form-faq.open .faq-with-form-faq-icon-img:first-of-type{
    display: none;
}
.faq-with-form-faq-body{
    padding-top: 0.625rem;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    color: #7d7d7d;
    display: none;
}
.faq-with-form-faq.open .faq-with-form-faq-body{
    display: block;
}