/* 自定义轮播导航按钮 */
.custom-swiper-navigation{
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 1.6875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #f47f00;
    border: #f47f00 solid 0.0625rem;
    z-index: 99;
    cursor: pointer;
    user-select: none;
}
.custom-swiper-navigation-icon{
    width: 1rem;
    height: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.custom-swiper-navigation-icon-img{
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}
.custom-swiper-navigation-icon-img:last-of-type{
    display: none;
}
.custom-swiper-navigation.swiper-button-disabled{
    background: none;
    border: #000000 solid 0.0625rem;
}
.custom-swiper-navigation.swiper-button-disabled .custom-swiper-navigation-icon-img:first-of-type{
    display: none;
}
.custom-swiper-navigation.swiper-button-disabled .custom-swiper-navigation-icon-img:last-of-type{
    display: block;
}
.custom-swiper-navigation-prev{
    position: absolute;
    top: calc(50% - 1.6875rem);
    left: calc(13.125rem - 5.5rem);
}
.custom-swiper-navigation-next{
    position: absolute;
    top: calc(50% - 1.6875rem);
    right: calc(13.125rem - 5.5rem);
}

/* 全球布局 */
.global-layout-container{
    width: 100%;
    height: 62.5rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.global-layout-container-content{
    height: calc(62.5rem - 17.5rem);
    padding: 8.75rem 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.global-layout-container-left{
    width: calc(50% - 0.9375rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.global-layout-container-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
    color: #FFFFFF;
}
.global-layout-container-right{
    width: calc(50% - 0.9375rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
}
.global-layout-data-list{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.global-layout-data{
    width: calc(100% / 3 - 2.875rem);
    margin-right: 4.3125rem;
    padding: 1.25rem 0;
    border-top: rgba(255,255,255,0.7) solid 0.0625rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.global-layout-data:last-of-type{
    margin-right: 0;
}
.global-layout-data-value{
    width: 100%;
    text-align: left;
    font-size: 3.125rem;
    color: #FFFFFF;
    font-weight: bold;
}
.global-layout-data-title{
    width: 100%;
    padding-top: 1.125rem;
    text-align: left;
    font-size: 1.125rem;
    color: #afafaf;
}


/* 合作伙伴 */
.partners-container{
    width: 100%;
    padding: 9.375rem 0;
}
.partners-container-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.partners-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
}
.partners-partner-list{
    width: 100%;
    padding-top: 5rem;
}
.partners-partner-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.partners-partner-group:last-of-type{
    margin-bottom: 0;
}
.partners-partner{
    width: calc(100% / 5 - 1rem - 0.125rem);
    margin-right: 1.25rem;
    height: 11.5rem;
    border: #a1a1a1 solid 0.0625rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.partners-partner:last-of-type{
    margin-right: 0;
}
.partners-partner-logo{
    width: 80%;
    height: 10rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.partners-partner-logo-img{
    max-width: 100%;
    height: 10rem;
    object-fit: contain;
}

/* 联系表单弹窗 */
.contact-modal-container{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 999;
}
.contact-modal-container-content-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-modal-container-content{
    width: calc(93.75rem - 16.875rem);
    padding: 5.625rem 8.4375rem;
    background-color: #FFFFFF;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}
.contact-modal-container-close-btn{
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 1.6875rem;
    background-color: #f08200;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -4rem;
    top: -2.75rem;
    cursor: pointer;
}
.contact-modal-container-close-btn-icon{
    width: 1.125rem;
    height: 1.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.contact-modal-container-close-btn-icon-img{
    width: 1.125rem;
    height: 1.125rem;
    object-fit: contain;
}
.contact-modal-container-left{
    width: calc(50% - 12.5rem);
    padding-right: 12.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-modal-container-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
}
.contact-modal-container-address{
    width: 100%;
    padding-top: 3.75rem;
    text-align: left;
    font-size: 1.25rem;
}
.contact-modal-contact-methods{
    width: 100%;
    padding-top: 3.125rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-modal-contact-method{
    width: 100%;
    text-align: left;
    font-size: 1.375rem;
    color: #878787;
    text-decoration: none;
    margin-bottom: 1.5rem;
}
a.contact-modal-contact-method:hover{
    color: #f08200;
}
.contact-modal-container-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-modal-form-wrap{
    width: 100%;
}
.contact-modal-form-group{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.1875rem;
}
.contact-modal-form-item{
    width: calc(50% - 0.9375rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact-modal-form-item label{
    width: 100%;
    text-align: left;
    font-size: 1.25rem;
}
.contact-modal-form-item label span{
    color: red;
}
.contact-modal-form-item input[type="text"], .contact-modal-form-item input[type="email"], .contact-modal-form-item input[type="tel"]{
    width: calc(100% - 3.125rem);
    padding: 0.6875rem 1.5625rem;
    height: 2.1875rem;
    line-height: 2.1875rem;
    font-size: 1rem;
    border-radius: 1.25rem;
    background-color: #eaeaea;
    border: none;
    outline: none;
    margin-top: 1.1875rem;
}
.contact-modal-form-item textarea{
    width: calc(100% - 3.125rem);
    padding: 0.6875rem 1.5625rem;
    line-height: 1.8;
    min-height: 1.8125rem;
    font-size: 1rem;
    border-radius: 1.25rem;
    background-color: #eaeaea;
    border: none;
    outline: none;
    margin-top: 1.1875rem;
}
.contact-modal-form-group-single .contact-modal-form-item{
    width: 100%;
}
.contact-modal-form-item p{
    width: 100%;
}
.contact-modal-form-group input[type="submit"]{
    display: block!important;
    width: 100%!important;
    height: 3.5625rem;
    border-radius: 1.25rem;
    background-color: #f08200;
    color: #FFFFFF;
    font-size: 1.5625rem;
    line-height: 3.5625rem;
    text-align: center;
    border: none;
    outline: none;
}

/* 系统服务提供商 */
.system-services-provider-container{
    width: 100%;
    padding-bottom: 10.9375rem;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
}
.system-services-provider-container-padding{
    width: 100%;
    padding-top: 6.5625rem;
}
.system-services-provider-container-padding .system-services-provider-container{
    padding-bottom: 0;
}
.system-services-provider-container-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.system-services-provider-container-header-title{
    width: 100%;
    text-align: center;
    font-size: 2.8125rem;
    font-weight: bold;
}
.system-services-provider-swiper-wrap{
    width: 100%;
    padding-top: 6.875rem;
}
.system-services-provider-swiper{
    width: 100%;
}
.system-services-provider-swiper .swiper-slide{
    width: 72.75rem;
}
.system-services-provider-swiper .swiper-button-prev{
    left: calc((100% - 72.75rem) / 2 - 2.0625rem - 0.4375rem);
    width: 0.875rem;
    height: 1.5rem;
    color: #f47f00;
}
.system-services-provider-swiper .swiper-button-prev:after{
    width: 0.875rem;
    height: 1.5rem;
    font-size: 1.5rem;
}
.system-services-provider-swiper .swiper-button-next{
    right: calc((100% - 72.75rem) / 2 - 2.0625rem - 0.4375rem);
    width: 0.875rem;
    height: 1.5rem;
    color: #f47f00;
}
.system-services-provider-swiper .swiper-button-next:after{
    width: 0.875rem;
    height: 1.5rem;
    font-size: 1.5rem;
}
.system-services-provider-swiper .swiper-button-disabled{
    opacity: 1;
    color: #000000;
}
.system-services-provider-desc-item{
    width: 100%;
    height: 36.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1.25rem;
    overflow: hidden;
}
.system-services-provider-desc-item-bg{
    width: 100%;
    height: 36.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.system-services-provider-desc-item-bg-img{
    width: 100%;
    height: 36.75rem;
    object-fit: cover;
}
.system-services-provider-desc-item-content{
    width: calc(100% - 13.75rem);
    height: calc(36.75rem - 10.25rem);
    padding: 5.125rem 6.875rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgba(0,0,0,0.3);
}
.system-services-provider-desc-item-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.system-services-provider-desc-item-icon{
    width: 2.4375rem;
    height: 2.875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.system-services-provider-desc-item-icon-img{
    width: 2.4375rem;
    height: 2.875rem;
    object-fit: contain;
}
.system-services-provider-desc-item-title{
    width: 100%;
    padding-top: 0.9375rem;
    text-align: left;
    font-size: 1.875rem;
    color: #FFFFFF;
}
.system-services-provider-desc-item-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.system-services-provider-desc-item-description{
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    color: #FFFFFF;
}

/* 产品定制化服务 */
.product-customized-services-container{
    width: 100%;
    padding: 10.4375rem 0;
}
.product-customized-services-container-header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.product-customized-services-container-header-title{
    width: 100%;
    text-align: center;
    font-size: 2.8125rem;
}
.product-customized-services-container-content{
    width: 100%;
    position: relative;
    margin-top: 8.125rem;
}
.product-customized-services-swiper{
    width: 100%;
}
.product-customized-services-data-item{
    width: 100%;
    height: 32.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
}
.product-customized-services-data-item-bg{
    width: 100%;
    height: 32.5rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.product-customized-services-data-item-bg-img{
    width: 100%;
    height: 32.5rem;
    object-fit: cover;
}
.product-customized-services-data-item-content{
    width: calc(100% - 5.625rem);
    height: calc(32.5rem - 7.5rem);
    padding: 3.75rem 2.8125rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
}
.product-customized-services-data-item-title{
    width: 100%;
    text-align: left;
    font-size: 1.875rem;
    color: #FFFFFF;
}

/* 卓越的品质和一流的服务 */
.great-quality-and-services-container{
    width: 100%;
    padding: 8.375rem 0;
}
.great-quality-and-services-container-header{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.great-quality-and-services-container-header-left{
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.great-quality-and-services-container-header-title{
    width: 100%;
    text-align: left;
    font-size: 2.8125rem;
}
.great-quality-and-services-container-header-right{
    width: 40%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
}
.great-quality-and-services-container-header-right .swiper-button-next{
    width: 3.25rem;
    height: 3.25rem;
    background: #f47f00;
    border: #f47f00 solid 0.0625rem;
    border-radius: 1.6875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    user-select: none;
    position: unset;
}
.great-quality-and-services-container-header-right .swiper-button-prev{
    width: 3.25rem;
    height: 3.25rem;
    background: #f47f00;
    border: #f47f00 solid 0.0625rem;
    border-radius: 1.6875rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: unset;
    user-select: none;
    margin-right: 0.4375rem;
}
.great-quality-and-services-container-header-right .swiper-button-disabled{
    width: 3.25rem;
    height: 3.25rem;
    background: #FFFFFF;
    border: #000000 solid 0.0625rem;
    opacity: 1;
}
.great-quality-and-services-container-header-right .swiper-button-next:after, .great-quality-and-services-container-header-right .swiper-button-prev:after{
    display: none;
}
.great-quality-and-services-container-header-right .swiper-button-icon{
    width: 0.9375rem;
    height: 0.9375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.great-quality-and-services-container-header-right .swiper-button-icon-img{
    width: 0.9375rem;
    height: 0.9375rem;
    object-fit: contain;
}
.great-quality-and-services-container-header-right .swiper-button-icon-img:last-of-type{
    display: none;
}
.great-quality-and-services-container-header-right .swiper-button-disabled .swiper-button-icon-img:first-of-type{
    display: none;
}
.great-quality-and-services-container-header-right .swiper-button-disabled .swiper-button-icon-img:last-of-type{
    display: block;
}
.great-quality-and-services-swiper-wrap{
    width: 100%;
    padding-top: 6.875rem;
}
.great-quality-and-services-swiper{
    width: 100%;
}
.great-quality-and-services-desc-item{
    width: 100%;
    height: 29.9375rem;
    border-radius: 1.25rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}
.great-quality-and-services-desc-item-bg{
    width: 100%;
    height: 29.9375rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.great-quality-and-services-desc-item-bg-img{
    width: 100%;
    height: 29.9375rem;
    object-fit: cover;
}
.great-quality-and-services-desc-item-content{
    width: calc(100% - 7.5rem);
    height: calc(29.9375rem - 7.5rem);
    padding: 3.75rem 3.75rem;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}
.great-quality-and-services-desc-item-title{
    width: 100%;
    text-align: left;
    font-size: 1.5625rem;
    color: #FFFFFF;
}