body {
    padding-top: 0px;
}

/* 头部 */
@media (max-width: 1100px) {
    .headerList>a {
        padding: 0px 10px;
    }
}
@media (max-width: 992px) {
    body {
        padding-top: 55px;
    }
}


/* banner */
body,
html {
    position: relative;
    width: 100%;
    height: 100%;
}

.bannerSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bannerSwiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.bannerSwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 首页 圆点样式 */
.bannerSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 50px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 首页 左右箭头样式 */
.bannerSwiper .swiper-button-next::after,
.bannerSwiper .swiper-button-prev::after {
    display: none;
}

.bannerSwiper .swiper-button-next,
.bannerSwiper .swiper-button-prev {
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 3px 3px 20px rgba(16, 59, 138, 0.03);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bannerSwiper .swiper-button-prev {
    background: url(../images/prev2.png)no-repeat center center, rgba(0, 0, 0, 0.1);
    background-size: 22px 22px;
}

.bannerSwiper .swiper-button-next {
    background: url(../images/next2.png)no-repeat center center, rgba(0, 0, 0, 0.1);
    background-size: 22px 22px;
}

.bannerSwiper .swiper-button-prev:hover {
    background: url(../images/prev2.png)no-repeat center center, #2B3D87;
    background-size: 22px 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.bannerSwiper .swiper-button-next:hover {
    background: url(../images/next2.png)no-repeat center center, #2B3D87;
    background-size: 22px 22px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1440px) {

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 1280px) {
    .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 40px;
    }
}

@media (max-width: 992px) {
    .bannerSwiper {
        height: auto;
    }

    .bannerSwiper .swiper-button-next,
    .bannerSwiper .swiper-button-prev {
        display: none;
    }

    .bannerSwiper .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .bannerSwiper .swiper-pagination .swiper-pagination-bullet-active {
        width: 30px;
    }
}




/* 关于公司 */
.aboutUs {
    padding: 80px 0px 60px 0px;
    background: url(../images/aboutUsBg.png)no-repeat center bottom;
    background-size: 100% auto;
}

.aboutUsTxt,
.productTxt,
.caseTxt {
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin: 46px 0px 55px 0px;
}

.aboutUsUl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.aboutUsUl li {
    width: 30%;
    overflow: hidden;
}

.aboutUsUl a {
    display: block;
    position: relative;
}

.aboutUsUl img {
    display: block;
    width: 100%;
    height: auto;
}

.aboutUsUl .aboutUsDiv {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    background: rgba(52, 67, 148, 0.7);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutUsUl i {
    display: block;
    width: 58px;
    height: 58px;
    margin: 0px auto 20px auto;
}

.aboutUsUl li:nth-child(1) i {
    background: url(../images/aboutUsI1.png)no-repeat center center;
    background-size: contain;
}

.aboutUsUl li:nth-child(2) i {
    background: url(../images/aboutUsI2.png)no-repeat center center;
    background-size: contain;
}

.aboutUsUl li:nth-child(3) i {
    background: url(../images/aboutUsI3.png)no-repeat center center;
    background-size: contain;
}

.aboutUsUl p {
    padding-bottom: 16px;
    position: relative;
}

.aboutUsUl p::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
}

.aboutUsUl li:hover .aboutUsDiv {
    transform: scale(1.0);
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutUsA {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    margin: 0px auto;
    background: #2B3D87;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutUsA p {
    line-height: 60px;
    color: #fff;
    margin-right: 30px;
}

.aboutUsA i {
    display: block;
    width: 20px;
    height: 6px;
    background: url(../images/triangle2.png)no-repeat center center;
    background-size: contain;
}

.aboutUsA:hover {
    transform: translateY(-8px);
    box-shadow: 0px 6px 16px rgba(43, 61, 135, 0.25);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 产品中心 */
.productCenter {
    padding: 80px 0px 70px 0px;
}

.productSwiper .swiper-slide a {
    display: block;
    text-align: center;
}

.productSwiper .imgBox {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #fff;
    margin-bottom: 12px;
}

.productSwiper .swiper-slide img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productSwiper span {
    color: #2D3D8B;
    margin-bottom: 10px;
}

.productSwiper p {
    font-weight: bold;
    color: #333333;
}

.productSwiper .swiper-slide:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.productSwiperButton {
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.productSwiperButton div {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0px 15px;
}

.productSwiperButton .productSwiperPrev {
    background: url(../images/prev3.png)no-repeat center center;
    background-size: 100% 100%;
}

.productSwiperButton .productSwiperPrev:hover {
    background: url(../images/prev4.png)no-repeat center center;
    background-size: 100% 100%;
}

.productSwiperButton .productSwiperNext {
    background: url(../images/next3.png)no-repeat center center;
    background-size: 100% 100%;
}

.productSwiperButton .productSwiperNext:hover {
    background: url(../images/next4.png)no-repeat center center;
    background-size: 100% 100%;
}



/* 工厂展示 */
.factoryDisplay {
    padding: 80px 0px;
}

.factorySwiper {
    margin-top: 70px;
}

.factorySwiper .swiper-wrapper {
    padding: 70px 0px;
}

.factorySwiper .swiper-slide {
    opacity: 0.5;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: scale(1.3);
    z-index: 5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-slide>div {
    width: 100%;
    padding-top: 57.25%;
    position: relative;
}

.factorySwiper .swiper-slide img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factorySwiper i {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: block;
    width: 60px;
    height: 60px;
    background: url(../images/view.png)no-repeat center center;
    background-size: 100% 100%;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.factorySwiper .swiper-slide.swiper-slide-active i {
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

/* 工厂展示 左右箭头 */
.factorySwiper .swiper-button-prev {
    left: 13%;
}

.factorySwiper .swiper-button-next {
    right: 13%;
}

.factorySwiper .swiper-button-prev::after,
.factorySwiper .swiper-button-next::after {
    display: none;
}

.factorySwiper .swiper-button-prev,
.factorySwiper .swiper-button-next {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0px 0px 16px rgba(43, 61, 135, 0.2);
}

.factorySwiper .swiper-button-prev {
    background: url(../images/prev5.png)no-repeat center center, #fff;
    background-size: 12px 22px;
}

.factorySwiper .swiper-button-prev:hover {
    background: url(../images/prev6.png)no-repeat center center, #344394;
    background-size: 12px 22px;
}

.factorySwiper .swiper-button-next {
    background: url(../images/next5.png)no-repeat center center, #fff;
    background-size: 12px 22px;
}

.factorySwiper .swiper-button-next:hover {
    background: url(../images/next6.png)no-repeat center center, #344394;
    background-size: 12px 22px;
}



/* 质量管控 */
.qualityManagement {
    width: 100%;
    padding-left: 12.5%;
    display: flex;
    align-items: center;
}

.qualityL {
    flex-shrink: 0;
    margin-right: 110px;
}

.qualityTitle {
    text-align: left;
    margin-bottom: 50px;
}

.qualityTitle h2 {
    color: #333333;
    margin-bottom: 16px;
}

.qualityTitle p {
    font-family: "ResourceHanRounded";
    color: #999999;
}

.qualityLTxt {
    color: #2B3D87;
    line-height: 1.6;
    font-weight: bold;
}

.qualityR {
    flex-grow: 1;
    height: 780px;
    background: url(../images/qualityBg.png)no-repeat center center;
    background-size: cover;
    overflow: hidden;
    display: flex;
}

.qualityR li {
    width: 25%;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qualityR li:last-child {
    border: none;
}

.qualitySmall {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 130px 0px 80px 0px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #fff;
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qualitySmall p {
    width: 40px;
    font-weight: bolder;
}

.qualitySmall span {
    font-family: "D-DIN";
}

.qualityBig {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    padding-top: 150px;
    opacity: 0;
    overflow: hidden;
}

.qualityBig h3 {
    padding-bottom: 42px;
    margin-bottom: 80px;
    position: relative;
}

.qualityBig h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: #fff;
}

.qualityBig p {
    text-align: center;
    max-width: 75%;
}

.qualityBig span {
    position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "D-DIN";
    opacity: 0.03;
}

.qualityR li.active {
    width: 50%;
    background: rgba(43, 61, 135, 0.9);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qualityR li.active .qualitySmall {
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.qualityR li.active .qualityBig {
    opacity: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 案例展示 */
.casePresentation {
    padding: 80px 0px;
    border-bottom: 1px solid #E6E6E6;
}

.casePresentation .pubIndexTab {
    margin-bottom: 60px;
}

.casePresentationBox .caseItem {
    display: none;
}

.caseSwiper {
    padding-bottom: 32px;
}

.caseSwiper .swiper-pagination {
    bottom: 0px;
}

.caseSwiper .swiper-slide {
    width: 50%;
}

.caseImgBox {
    width: 100%;
    padding-top: 56.2%;
    position: relative;
    overflow: hidden;
}

.caseImgBox img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.caseSwiperTxt {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 3;
    display: inline-block;
    background: #2B3D87;
    color: #fff;
    padding: 18px 30px;
}

.caseSwiper .swiper-slide:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.caseSwiper .swiper-pagination-bullet-active {
    background: #2B3D87;
}



/* 新闻中心 */
.newsCenter {
    padding-top: 80px;
}

.newsCenter .pubIndexTitle {
    margin-bottom: 60px;
}

.newsCenterBox {
    margin-top: 80px;
    padding-right: 12.5%;
}

.newsItem {
    display: none;
}

.newsItem>div {
    display: flex;
}

.newsL {
    width: 52%;
}

.newsL div {
    width: 100%;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}

.newsL img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.newsL:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.newsR {
    width: 48%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.newsR li {
    height: 33.3%;
    border-bottom: 1px solid #E6E6E6;
}

.newsR li:last-child {
    border-bottom: none;
}

.newsR a {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.newsR h3 {
    color: #333;
}

.newsR span {
    color: #999999;
    margin: 10px 0px;
}

.newsR p {
    color: #666;
}

.newsR li:hover h3 {
    color: #2B3D87;
}



/* 了解更多 */
.learnMore {
    background: #2B3D87;
    color: #fff;
    padding: 50px 0px;
}

.learnMoreCon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learnMoreCon h3 {
    margin-bottom: 20px;
}

.learnMoreR {
    display: inline-block;
    padding: 0px 44px;
    line-height: 50px;
    color: #fff;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.learnMoreR:hover {
    background: #fff;
    color: #2B3D87;
    transform: translateY(-8px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}





/* 适配 */
@media (max-width: 1680px) {
    .newsCenterBox {
        padding-right: 8.5%;
    }
}

@media (max-width: 1440px) {
    .productSwiperButton {
        margin-top: 50px;
    }

    .caseSwiperTxt {
        font-size: 18px;
        padding: 14px 26px;
    }

    .casePresentation {
        padding: 70px 0px;
    }

    .newsR p {
        font-size: 16px;
    }

    .newsR span {
        color: #999999;
        margin: 8px 0px;
    }

    .newsCenterBox {
        padding-right: 4.6%;
    }

    .qualityManagement {
        padding-left: 4.6%;
    }
}

@media (max-width: 1280px) {

    .aboutUs,
    .productCenter,
    .factoryDisplay,
    .casePresentation {
        padding: 50px 0px 40px 0px;
    }

    .aboutUsTxt,
    .productTxt,
    .caseTxt {
        margin: 30px 0px 40px 0px;
        font-size: 18px;
    }

    .aboutUsUl i {
        width: 46px;
        height: 46px;
        margin: 0px auto 12px auto;
    }

    .aboutUsUl p {
        font-size: 18px;
    }

    .aboutUsA {
        font-size: 16px;
        width: 180px;
    }

    .aboutUsA p {
        margin-right: 14px;
        line-height: 52px;
    }

    .aboutUsUl {
        margin-bottom: 50px;
    }

    .productSwiper p {
        font-size: 18px;
    }

    .productSwiperButton div {
        display: block;
        width: 26px;
        height: 26px;
        margin: 0px 10px;
    }

    .productSwiperButton {
        margin-top: 35px;
    }

    .factorySwiper {
        margin-top: 30px;
    }

    .factorySwiper i {
        width: 40px;
        height: 40px;
    }

    .factorySwiper .swiper-slide.swiper-slide-active {
        transform: scale(1.4);
    }

    .factorySwiper .swiper-button-prev,
    .factorySwiper .swiper-button-next {
        width: 55px;
        height: 55px;
        background-size: 10px 16px;
    }

    .factorySwiper .swiper-button-prev:hover,
    .factorySwiper .swiper-button-next:hover {
        background-size: 10px 16px;
    }

    .casePresentation .pubIndexTab {
        margin-bottom: 50px;
    }

    .caseSwiperTxt {
        left: 14px;
        bottom: 14px;
        font-size: 16px;
        padding: 10px 18px;
    }

    .newsCenter {
        padding-top: 50px;
    }

    .newsCenter .pubIndexTitle {
        margin-bottom: 40px;
    }

    .newsCenterBox {
        margin-top: 55px;
    }

    .newsR h3 {
        font-size: 20px;
    }

    .newsR span,
    .newsR p {
        font-size: 14px;
    }

    .learnMoreCon h3 {
        font-size: 24px;
    }

    .learnMoreCon p {
        font-size: 16px;
    }

    .learnMoreR {
        padding: 0px 34px;
        line-height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {

    .caseTxt {
        padding: 0px 4%;
    }

    .newsR h3 {
        font-size: 16px;
    }

    .newsR span {
        font-size: 12px;
        margin: 4px 0px;
    }
}

@media (max-width: 767px) {

    .aboutUs,
    .productCenter,
    .factoryDisplay,
    .casePresentation {
        padding: 30px 0px;
    }

    .aboutUsTxt,
    .productTxt,
    .caseTxt {
        font-size: 16px;
    }

    .aboutUsUl {
        flex-wrap: wrap;
        margin-bottom: 16px;
    }

    .aboutUsUl li {
        width: 100%;
        margin-bottom: 20px;
    }

    .aboutUsUl .aboutUsDiv {
        transform: scale(1.0);
        opacity: 1;
    }

    .aboutUsUl img {
        height: 180px;
    }

    .aboutUsUl i {
        width: 34px;
        height: 34px;
        margin: 0px auto 6px auto;
    }

    .aboutUsUl p {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .aboutUsA {
        font-size: 14px;
        width: 140px;
    }

    .aboutUsA p {
        margin-right: 12px;
        line-height: 46px;
    }

    .aboutUsA i {
        width: 18px;
        height: 5px;
    }

    .productSwiper span {
        font-size: 12px;
    }

    .productSwiper p {
        font-size: 14px;
    }

    .productSwiper .imgBox {
        margin-bottom: 8px;
    }

    .productSwiperButton {
        margin-top: 24px;
    }

    .productSwiperButton div {
        display: block;
        width: 22px;
        height: 22px;
        margin: 0px 8px;
    }

    .factoryDisplay {
        padding-left: 4%;
        padding-right: 4%;
    }

    .factorySwiper .swiper-button-prev,
    .factorySwiper .swiper-button-next {
        display: none;
    }

    .factorySwiper .swiper-slide.swiper-slide-active {
        transform: unset;
    }

    .factorySwiper i {
        left: 10px;
        bottom: 10px;
    }

    .factorySwiper .swiper-wrapper {
        padding: 0px;
    }

    .caseSwiper .swiper-slide {
        width: 92%;
    }

    .caseSwiperTxt {
        left: 10px;
        bottom: 10px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .casePresentation .pubIndexTab {
        margin-bottom: 32px;
    }

    .newsCenter {
        padding-top: 30px;
    }

    .newsItem>div {
        display: block;
    }

    .newsL,
    .newsR {
        width: 100%;
    }

    .newsCenterBox {
        padding: 0px 4%;
    }

    .newsL {
        margin-bottom: 20px;
    }

    .newsCenterBox {
        margin-top: 32px;
    }

    .newsR {
        padding-left: 0px;
        display: block;
    }

    .newsR li {
        padding-bottom: 16px;
        margin-bottom: 16px;
    }

    .learnMoreCon {
        display: block;
        text-align: center;
    }

    .learnMoreCon h3 {
        font-size: 20px;
    }

    .learnMoreCon p {
        margin-bottom: 30px;
    }

    .learnMoreR {
        line-height: 34px;
    }
}

/* 质量管控 适配 */
@media (max-width: 1680px) {
    .qualityManagement {
        padding-left: 8.5%;
    }
}

@media (max-width:1440px) {
    .qualityR {
        height: 700px;
    }

    .qualitySmall {
        padding: 90px 0px 50px 0px;
    }

    .qualityBig {
        padding-top: 90px;
    }
}

@media (max-width: 1280px) {
    .qualitySmall p {
        font-size: 28px;
    }

    .qualitySmall span {
        font-size: 36px;
    }

    .qualityR {
        height: 600px;
    }

    .qualityBig h3 {
        font-size: 28px;
        padding-bottom: 30px;
        margin-bottom: 46px;
    }

    .qualityBig p {
        font-size: 18px;
    }

    .qualityBig span {
        font-size: 240px;
        bottom: -110px;
    }
}

@media (max-width: 992px) {
    .qualityL {
        margin-right: 80px;
    }
}

@media (max-width: 767px) {
    .qualityManagement {
        padding: 30px 4%;
        align-items: unset;
        flex-direction: column;
    }

    .qualityL {
        margin: 0px 0px 30px 0px;
        text-align: center;
    }

    .qualityTitle {
        text-align: center;
        display: flex;
        flex-direction: column-reverse;
    }

    .qualityTitle h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .qualityTitle p {
        font-size: 24px;
        margin-bottom: 4px;
        text-transform: uppercase;
        color: #C4C4C4;
        letter-spacing: 2px;
        font-family: "ResourceHanRounded";
    }

    .qualityTitle {
        margin-bottom: 24px;
    }

    .qualityR {
        flex-direction: column;
        height: auto;
    }

    .qualitySmall,
    .qualityBig span {
        display: none;
    }

    .qualityBig {
        position: relative;
        top: unset;
        left: unset;
        display: block;
        opacity: 1;
    }

    .qualityR li,
    .qualityR li.active {
        width: 100%;
        border: none;
    }

    .qualityR li.active {
        background: none;
    }

    .qualityR li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .qualityBig {
        padding: 30px 16px;
        text-align: center;
    }

    .qualityBig h3 {
        font-size: 20px;
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .qualityBig h3::after {
        width: 30px;
        height: 2px;
    }

    .qualityBig p {
        font-size: 16px;
        max-width: unset;
    }
}



/* 英文版 */
.encasePresentation .caseTxt{
    margin-left: auto;
    margin-right: auto;
}
.enqualityManagement .qualitySmall p{
    width: 85%;
}
/*@media (max-width: 1550px){*/
/*    .en */
/*}*/