/* 分页 */
.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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.625rem;
    cursor: pointer;
    text-decoration: none;
    color: #000000;
    font-size: 1.25rem;
    font-family: var(--font-heading), "sans-serif";
}
.custom-pagination .prev:hover, .custom-pagination .next:hover {
    color: #21395b;
}
.custom-pagination .page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0.625rem;
    cursor: pointer;
    text-decoration: none;
    color: #bcbcbc;
    font-family: var(--font-heading), "sans-serif";
    font-size: 1.25rem;
}
.custom-pagination .page:hover, .custom-pagination .active {
    color: #000000;
}

/* 视频播放弹窗 */
.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: #209443;
    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;
}

/* 自定义轮播导航 */
.custom-swiper-button {
    width: 2.875rem;
    height: 2.875rem;
    border: #209443 solid 1px;
    border-radius: 1.5rem;
    background: #209443;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.custom-swiper-button:after {
    display: none;
}
.custom-swiper-button-icon {
    width: 1.5625rem;
    height: 1.5625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.custom-swiper-button-icon-img {
    width: 1.5625rem;
    height: 1.5625rem;
    object-fit: contain;
}
.custom-swiper-button.swiper-button-disabled {
    border: #ffffff solid 1px;
    background: rgba(0, 0, 0, 0);
    opacity: 1;
}

/* 采石场描述 */
.quarry-desricption-container {
    width: 100%;
    padding-bottom: 9.375rem;
    background: #000000;
}
.quarry-desricption-desc-swiper-wrap {
    width: 100%;
}
.quarry-desricption-desc-swiper {
    width: 100%;
}
.quarry-desricption-desc {
    width: 100%;
    height: 45.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}
.quarry-desricption-desc-video-wrap {
    width: 100%;
    height: 45.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.quarry-desricption-desc-video {
    width: 100%;
    height: 45.5rem;
    object-fit: cover;
}
.quarry-desricption-desc-info {
    width: calc(100% - 16.25rem);
    height: calc(45.5rem - 3.75rem);
    padding: 1.875rem 8.125rem;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.quarry-desricption-desc-sub-title {
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    color: #ffffff;
}
.quarry-desricption-desc-title {
    width: 100%;
    text-align: left;
    font-size: 4.375rem;
    color: #ffffff;
    padding-top: 0.625rem;
}
.quarry-desricption-desc-description {
    width: 100%;
    margin-top: 1.875rem;
    padding-top: 1.875rem;
    border-top: #ffffff solid 1px;
    text-align: left;
    font-size: 0.9375rem;
    color: #ffffff;
}
.quarry-desricption-desc-controls {
    width: 100%;
    padding-top: 2.1875rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.quarry-desricption-desc-control {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.quarry-desricption-desc-control-icon {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
}
.quarry-desricption-desc-control-icon:last-of-type {
    display: none;
}
.quarry-desricption-desc-control-play .quarry-desricption-desc-control-icon:last-of-type {
    display: block;
}
.quarry-desricption-desc-control-play .quarry-desricption-desc-control-icon:first-of-type {
    display: none;
}
.quarry-desricption-desc-paginations {
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.quarry-desricption-desc-pagination {
    width: max-content;
    padding: 0 1.125rem;
    height: 3.125rem;
    border: rgba(255, 255, 255, 0) solid 1px;
    border-radius: 1.625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 1.25rem;
    cursor: pointer;
}
.quarry-desricption-desc-pagination:last-of-type {
    margin-right: 0;
}
.quarry-desricption-desc-pagination-active, .quarry-desricption-desc-pagination:hover {
    border: rgba(255, 255, 255, 0.5) solid 1px;
}
.quarry-desricption-desc-pagination-icon {
    width: 0.9375rem;
    height: 0.9375rem;
    object-fit: contain;
    margin-right: 0.3125rem;
    visibility: hidden;
}
.quarry-desricption-desc-pagination-active .quarry-desricption-desc-pagination-icon, .quarry-desricption-desc-pagination:hover .quarry-desricption-desc-pagination-icon {
    visibility: visible;
}
.quarry-desricption-desc-pagination-title {
    font-size: 0.9375rem;
    color: #ffffff;
}

/* 大理石奇观 */
.marble-wonders-container {
    width: 100%;
    padding: 9.375rem 0;
    background-position: top center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #000000;
}
.marble-wonders-container-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.marble-wonders-container-header-title {
    width: 100%;
    text-align: center;
    font-size: 4.375rem;
    color: #ffffff;
}
.marble-wonders-container-body {
    width: 100%;
    padding-top: 4.6875rem;
}
.marble-wonders-desc-swiper-wrap {
    width: 100%;
}
.marble-wonders-desc-swiper {
    width: 100%;
}
.marble-wonders-desc-swiper .swiper-slide {
    width: 21.25rem;
    padding-bottom: 7.8125rem;
}
.marble-wonders-desc {
    width: 100%;
    height: 32.9375rem;
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    user-select: none;
    display: block;
}
.marble-wonders-desc-poster {
    width: 100%;
    height: 32.9375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.marble-wonders-desc-poster-img {
    width: 100%;
    height: 32.9375rem;
    object-fit: cover;
}
.marble-wonders-desc-info {
    width: calc(100% - 4.375rem);
    height: calc(32.9375rem - 4.375rem);
    padding: 2.1875rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.marble-wonders-desc-title {
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    color: #ffffff;
}
.marble-wonders-desc-swiper .swiper-pagination-bullet {
    width: 0.6875rem;
    height: 0.6875rem;
    border-radius: 0;
    background: #eee7df;
    opacity: 1;
}
.marble-wonders-desc-swiper .swiper-pagination-bullet-active {
    background: #21395b;
}

/* 客户支持系统 */
.customer-support-system-container {
    width: 100%;
    padding: 8.4375rem 0;
    background-image: url("/wp-content/themes/bellestone/assets/images/index/index_section2and3_bg.png");
    background-position: top center;
    background-size: 100% auto;
}
.customer-support-system-container-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5rem;
    border-bottom: #c1c1c1 solid 1px;
}
.customer-support-system-container-header-title {
    width: 35%;
    text-align: left;
    font-size: 4.375rem;
}
.customer-support-system-container-header-description {
    width: 55%;
    text-align: right;
    font-size: 1.125rem;
    line-height: 1.7;
}
.customer-support-system-container-body {
    width: 100%;
}
.customer-support-system-desc-swiper-wrap {
    width: 100%;
}
.customer-support-system-desc-swiper {
    width: 100%;
}
.customer-support-system-desc-swiper .swiper-pagination {
    width: calc(27.75rem - 5.625rem);
    padding: 0 2.8125rem;
    top: unset;
    left: unset;
    right: 0;
    bottom: 2.1875rem;
    text-align: left;
}
.customer-support-system-desc-swiper .swiper-pagination-bullet {
    background: none;
    opacity: 1;
    width: max-content;
    height: max-content;
    font-size: 1.5625rem;
    color: #aaaaaa;
}
.customer-support-system-desc-swiper .swiper-pagination-bullet-active {
    color: #000000;
}
.customer-support-system-desc {
    width: 100%;
    height: 47.8125rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}
.customer-support-system-desc-poster {
    width: calc(100% - 27.8125rem - 6.25rem);
    padding-right: 6.25rem;
    padding-top: 4.0625rem;
    height: 43.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.customer-support-system-desc-poster-img {
    width: 100%;
    height: 43.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
    object-fit: cover;
}
.customer-support-system-desc-info {
    width: calc(27.75rem - 5.625rem);
    border-left: #c1c1c1 solid 1px;
    padding: 4.0625rem 2.8125rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.customer-support-system-desc-no {
    width: 100%;
    text-align: left;
    font-size: 3.125rem;
}
.customer-support-system-desc-title {
    width: 100%;
    padding-top: 0.9375rem;
    text-align: left;
    font-size: 1.5625rem;
}
.customer-support-system-desc-description {
    width: 100%;
    padding-top: 1.875rem;
    text-align: left;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* 弹幕+品牌简介 */
.danmu-with-brand-desc-container {
    width: 100%;
    padding: 8.125rem 0;
}
.danmu-with-brand-desc-container-header {
    width: 100%;
}
.danmu-with-brand-desc-danmu-list {
    width: 100%;
}
.danmu-with-brand-desc-danmu-row {
    width: 100%;
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.danmu-with-brand-desc-danmu-row-inner {
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
@keyframes site-foot-marquee-slide {
    0% {
        transform: translateX(-0%)
    }
    100% {
        transform: translateX(-100%)
    }
}
.danmu-with-brand-desc-danmu-row .danmu-with-brand-desc-danmu-row-inner {
    animation: site-foot-marquee-slide 20s linear infinite;
}
.danmu-with-brand-desc-danmu {
    width: max-content;
    padding: 0 2.5rem;
    font-size: 2.8125rem;
    color: #b5b5b5;
}
.danmu-with-brand-desc-container-body {
    padding-top: 8.75rem;
}
.danmu-with-brand-desc-desc-list {
    width: 100%;
}
.danmu-with-brand-desc-desc-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.danmu-with-brand-desc-desc {
    width: calc(20% - 0.9375rem);
    margin-right: 1.25rem;
    height: 36.75rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    transition: width 0.6s;
}
.danmu-with-brand-desc-desc:last-of-type {
    margin-right: 0;
}
.danmu-with-brand-desc-desc-full {
    width: calc(40% - 0.9375rem);
    transition: width 0.6s;
}
.danmu-with-brand-desc-desc-poster {
    width: 100%;
    height: 36.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.danmu-with-brand-desc-desc-poster-img {
    width: 100%;
    height: 36.75rem;
    object-fit: cover;
}
.danmu-with-brand-desc-desc-info {
    width: calc(100% - 5rem);
    height: calc(36.75rem - 9.375rem);
    padding: 4.6875rem 2.5rem;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}
.danmu-with-brand-desc-desc-full .danmu-with-brand-desc-desc-info {
    align-items: flex-start;
}
.danmu-with-brand-desc-desc-title {
    width: 100%;
    text-align: center;
    font-size: 1.5625rem;
    color: #ffffff;
}
.danmu-with-brand-desc-desc-full .danmu-with-brand-desc-desc-title {
    text-align: left;
}
.danmu-with-brand-desc-desc-description {
    width: 100%;
    padding-top: 0.625rem;
    text-align: left;
    font-size: 1rem;
    color: #ffffff;
    display: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.danmu-with-brand-desc-desc-full .danmu-with-brand-desc-desc-description {
    display: block;
}

/* 开屏欢迎弹窗 */
.welcome-dialog-container{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #21395b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
@keyframes fadeDecreaseHeight {
    0%{
        height: 100vh;
    }
    100%{
        height: 0;
    }
}
.welcome-dialog-container-hidden{
    height: 0;
    animation: fadeDecreaseHeight ease-out 0.5s;
    overflow: hidden;
}
.welcome-dialog-content{
    width: 22.8125rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.welcome-dialog-logo{
    width: 22.8125rem;
    height: 11.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.welcome-dialog-logo-img{
    width: 22.8125rem;
    height: 11.4375rem;
}
@keyframes fadeDecreaseLogoMaskHeight {
    0%{
        height: 11.4375rem;
    }
    100%{
        height: 0;
    }
}
.welcome-dialog-logo-mask{
    width: 22.8125rem;
    position: absolute;
    height: 0;
    top: 0;
    left: 0;
    background: #21395b;
    opacity: 0.7;
    animation: fadeDecreaseLogoMaskHeight ease-in-out 1s;
    /*background: rgba(0,0,0,0.7);*/
}

/* 询盘 */
.enquiry-container{
    width: 100%;
    padding: 5.625rem 0;
    background-image: url("/wp-content/themes/bellestone/assets/images/index/index_section2and3_bg.png");
    background-position: top center;
    background-size: 100% auto;
}
.enquiry-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.enquiry-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 3.75rem;
}
.enquiry-container-header-actions{
    width: 100%;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}
.enquiry-container-header-action{
    width: max-content;
    padding: 0 3.125rem;
    height: 3.75rem;
    line-height: 3.75rem;
    border-radius: 1.875rem;
    font-size: 1.25rem;
    color: #ffffff;
    background: #21395b;
    text-decoration: none;
}
.enquiry-container-body{
    width: 100%;
    padding-top: 8.125rem;
}
.enquiry-container-body-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.enquiry-container-body-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.1875rem;
}
.enquiry-desc-list{
    width: 100%;
    padding-top: 1.875rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.1875rem;
    grid-row-gap: 2.1875rem;
}
.enquiry-desc{
    width: 100%;
    height: 29.8125rem;
    border-radius: 1.25rem;
    overflow: hidden;
}
.enquiry-desc-elem-swiper{
    width: 100%;
}
.enquiry-desc-elem-swiper .swiper-pagination{
    width: calc(100% - 7.5rem);
    left: 3.75rem;
    top: unset;
    bottom: 4.0625rem;
    text-align: left;
}
.enquiry-desc-elem-swiper .swiper-pagination-bullet {
    width: 0.6875rem;
    height: 0.6875rem;
    border-radius: 0;
    background: #eee7df;
    opacity: 1;
}
.enquiry-desc-elem-swiper .swiper-pagination-bullet-active {
    background: #21395b;
}
.enquiry-desc-elem{
    width: 100%;
    height: 29.8125rem;
    position: relative;
}
.enquiry-desc-elem-poster{
    width: 100%;
    height: 29.8125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.enquiry-desc-elem-poster-img{
    width: 100%;
    height: 29.8125rem;
    object-fit: cover;
}
.enquiry-desc-elem-info{
    width: calc(100% - 7.5rem);
    height: calc(29.8125rem - 10rem);
    padding: 3.125rem 3.75rem 6.875rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: rgba(0,0,0,0.4);
}
.enquiry-desc-elem-date{
    width: 100%;
    text-align: left;
    font-size: 0.9375rem;
    color: #ffffff;
}
.enquiry-desc-elem-title{
    width: 70%;
    padding-top: 1.25rem;
    text-align: left;
    font-size: 1.875rem;
    color: #ffffff;
}