@media (max-width: 767px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 300px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 24px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 22px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 18px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .intro-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }

    .intro-box-row:nth-child(2n) {
        flex-direction: row-reverse;
        margin-left: 0;
    }

    .intro-box-img {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        margin-left: 50px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 20px auto;
        width: 100%;
        max-width: 1300px;
    }

    .team-title {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 0;
        text-align: center;
        color: #333333;
    }

    .team-desc {
        text-align: center;
        color: #666666;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .team-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .customer-item {
        width: 9%;
        display: flex;
        justify-content: center;
        align-content: center;
        margin-bottom: 20px;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }


    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
        flex-direction: column;
        padding: 0 15px;
    }

    .aboutus-box-img {
        width: 100%;
        background: #dcdcdc;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
        margin-top: 20px;
    }

    .aboutus-box-context-content {
        line-height: 30px;
    }

    .center-title {
        text-align: center;
        /*margin-top: 50px;*/
    }

    .center-title h2 {
        font-family: Ethereal-Regular;
    }

    .core-value-box {
        width: 100%;
        max-width: 1300px;
        margin: 30px auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .team-box {
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .production-item {
        width: 100%;
        margin-top: 20px;
        cursor: pointer;
    }

    .product-item-img {
        width: 100%;
        height: 235px;
        background: #dcdcdc;
        position: relative;
    }

    .product-item-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .core-value-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        /*添加一个过渡动画*/
        transition: all 0.5s;
        text-align: center;
        opacity: 0;
        background: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
    }

    .bg-f9f9f9 {
        background-color: #f9f9f9;
    }

    .full-row {
        width: 100%;
        position: relative;
    }

    .core-box {
        padding: 50px 0;
    }

    .row-title-blod h2 {
        font-family: Ethereal-Regular;
    }

    .margin-top-50 {
        margin-top: 50px;
    }

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

    .padding-50 {
        padding: 50px;
    }

    .history-box {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        position: relative;
        padding: 0 10px;
    }

    .history-item {
        position: relative;
        padding: 100px 0 0;
    }

    .history-line {
        position: absolute;
        top: 50px;
        left: 1%;
        width: 98%;
        height: 2px;
        background: #e5e5e5;
    }

    .history-round {
        position: absolute;
        top: 31px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        z-index: 1;
    }

    .history-round img {
        width: 100%;
    }

    .history-year {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .history-item-content {
        padding: 10px;
        background: #FFFFFF;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        /*margin: 0 10px;*/
    }

    .history-item-content img {
        width: 100%;
        border-radius: 12px;
    }

    .history-item-title {
        font-size: 20px;
        padding: 20px 0 0;
    }

    .history-item-desc {
        padding: 10px 0;
    }

    .history-item-desc p {
        padding: 0;
        margin: 0;
    }

    .history-arrow img {
        width: 9px;
        height: 15px;
    }

    .swiper-button-prev {
        position: absolute;
        left: 5px;
        top: 65px;
    }

    .swiper-button-next {
        position: absolute;
        right: 5px;
        top: 65px;
    }

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

    .team-item-img {
        /*border:35px solid #f9f9f9;*/
        overflow: hidden;
        /*圆形*/
        border-radius: 8px;
        background: #dcdcdc;
        width: 180px;
        height: 230px;
        margin: auto;
    }

    .certificate-tab {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }

    .certificate-tab-item {
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #bfbfbf;
        border-radius: 31px;
        cursor: pointer;
    }

    .certificate-tab-item-active {
        background: #f39b29;
        color: #FFFFFF;
        border: none;
    }

    .certificate-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .awards-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .certificate-item {
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #e5e5e5;
    }

    .certificate-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .commitment-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 25px;
        padding-bottom: 50px;
    }

    .commitment-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .commitment-item-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
    }

    .commitment-item img {
        width: 40px;
    }

    .commitment-desc {
        padding: 10px 0;
    }

    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .social-box {
        min-height: 400px;
    }

    .social-box h2 {
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .carousel-inner {
        height: 150px;
    }

    .carousel-item {
        height: 150px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px;
    }

    .suspension {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }

    .suspension img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .suspension span {
        font-size: 20px;
    }

    .m-team-box {
        padding-top: 0 !important;
    }
}

@media (min-width: 768px) and (max-width: 1365px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 300px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 30px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 30px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 20px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .intro-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }

    .intro-box-row:nth-child(2n) {
        flex-direction: row-reverse;
        margin-left: 0;
    }

    .intro-box-img {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        margin-left: 50px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 20px auto;
        width: 100%;
        max-width: 1300px;
    }

    .team-title {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 0;
        text-align: center;
        color: #333333;
    }

    .team-desc {
        text-align: center;
        color: #666666;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .team-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .customer-item {
        width: 9%;
        display: flex;
        justify-content: center;
        align-content: center;
        margin-bottom: 20px;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }


    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
        flex-direction: column;
        padding: 0 15px;
    }

    .aboutus-box-img {
        width: 100%;
        height: 300px;
        background: #dcdcdc;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
        margin-top: 20px;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
        padding: 0;
        margin: 0;
    }

    .aboutus-box-context-content {
        margin-top: 20px;
        line-height: 30px;
    }

    .center-title {
        text-align: center;
    }

    .center-title h2 {
        font-family: Ethereal-Regular;
    }

    .core-value-box {
        width: 100%;
        max-width: 1300px;
        margin: 30px auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .team-box {
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .production-item {
        width: 100%;
        margin-top: 20px;
        cursor: pointer;
    }

    .product-item-img {
        width: 100%;
        height: 235px;
        background: #dcdcdc;
        position: relative;
    }

    .product-item-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .core-value-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        /*添加一个过渡动画*/
        transition: all 0.5s;
        text-align: center;
        opacity: 0;
        background: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
        padding: 0 15px;
    }

    .margin-bottom-50{
        margin-bottom: 0 !important;
    }

    .bg-f9f9f9 {
        background-color: #f9f9f9;
    }

    .full-row {
        width: 100%;
        position: relative;
        padding: 50px 0;
    }

    .row-title-blod h2 {
        font-family: Ethereal-Regular;
    }

    .margin-top-50 {
        margin-top: 50px;
    }

    .core-box{
        padding: 50px 15px 20px !important;
    }

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

    .padding-50 {
        padding: 50px;
    }

    .history-box {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        position: relative;
    }

    .history-item {
        position: relative;
        padding: 100px 0 0;
    }

    .history-line {
        position: absolute;
        top: 50px;
        left: 1%;
        width: 98%;
        height: 2px;
        background: #e5e5e5;
    }

    .history-round {
        position: absolute;
        top: 31px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        z-index: 1;
    }

    .history-round img {
        width: 100%;
    }

    .history-year {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .history-item-content {
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        margin: 0 10px;
    }

    .history-item-content img {
        width: 100%;
        border-radius: 12px;
    }

    .history-item-title {
        font-size: 20px;
        padding: 20px 0 0;
    }

    .history-item-desc {
        padding: 10px 0;
    }

    .history-item-desc p {
        padding: 0;
        margin: 0;
    }

    .history-arrow img {
        width: 9px;
        height: 15px;
    }

    .swiper-button-prev {
        position: absolute;
        left: 0;
        top: 65px;
    }

    .swiper-button-next {
        position: absolute;
        right: 0;
        top: 65px;
    }

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

    .team-item-img {
        /* border: 35px solid #f9f9f9; */
        overflow: hidden;
        border-radius: 8px;
        background: #dcdcdc;
        width: 100%;
        height: 215px;
        margin: auto;
    }

    .certificate-tab {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }

    .certificate-tab-item {
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #bfbfbf;
        border-radius: 31px;
        cursor: pointer;
    }

    .certificate-tab-item-active {
        background: #f39b29;
        color: #FFFFFF;
        border: none;
    }

    .certificate-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .awards-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .certificate-item {
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #e5e5e5;
    }

    .certificate-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .commitment-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 25px;
        padding-bottom: 50px;
    }

    .commitment-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .commitment-item-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
    }

    .commitment-item img {
        width: 40px;
    }

    .commitment-desc {
        padding: 10px 0;
    }

    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .social-box {
        min-height: 400px;
    }

    .social-box h2 {
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .carousel-inner {
        height: 200px;
    }

    .carousel-item {
        height: 200px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px;
    }

    .suspension {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        width: 100%;
    }

    .suspension img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .suspension span {
        font-size: 20px;
    }
}

@media (min-width: 1366px) {
    .banner-desc-box {
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        /* transform: translateY(-50%); */
        width: 600px;
        left: 6%;
        bottom: 20%;
    }


    .banner-desc-box-title {
        font-size: 60px;
        color: #FFFFFF;
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .banner-desc-box-title h1 {
        font-size: 60px;
        font-weight: 300;
        color: #FFFFFF;
        text-align: center;
        width: 100%;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .banner-desc-box-content {
        font-size: 20px;
        color: #FFFFF5;
        width: 100%;
        text-align: left;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }

    .intro-box {
        margin: 80px auto;
        width: 100%;
        max-width: 1300px;
    }

    .intro-box-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 80px;
    }

    .intro-box-row:nth-child(2n) {
        flex-direction: row-reverse;
        margin-left: 0;
    }

    .intro-box-img {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .intro-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

    .intro-box-content {
        flex: 1;
    }

    .intro-box-content-title {
        font-size: 30px;
        font-weight: bold;
    }

    .intro-box-content-title-desc {
        font-size: 16px;
        margin-top: 20px;
    }

    .margin-left-50 {
        margin-left: 50px;
    }

    .margin-right-50 {
        margin-right: 50px;
    }

    .team-box {
        margin: 20px auto;
        width: 100%;
        max-width: 1300px;
    }

    .team-title {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 0;
        text-align: center;
        color: #333333;
    }

    .team-desc {
        text-align: center;
        color: #666666;
    }

    .bg-f6f6f6 {
        background-color: #f6f6f6;
    }

    .team-list {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .team-item {
        width: 100%;
        margin-bottom: 50px;
    }

    .team-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-item-name {
        font-size: 16px;
        color: #0033A1;
        padding: 20px 0 0 0;
    }

    .team-item-job {
        font-size: 14px;
        color: #525252;
        padding: 5px 0 0 0;
    }

    .customer-box {
        width: 100%;
        max-width: 1300px;
        margin: 80px auto;
    }

    .customer-box-title {
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
        text-align: center;
    }

    .customer-box-desc {
        font-size: 16px;
        text-align: center;
    }

    .customer-list {
        margin: 50px 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .customer-item {
        width: 9%;
        display: flex;
        justify-content: center;
        align-content: center;
        margin-bottom: 20px;
    }

    .customer-item img {
        width: 80%;
        height: 80%;
        object-fit: cover;
    }

    .swiper-pagination {
        bottom: 20px;
        width: 100%;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 3px;
        border-radius: 0;
        background: #ffffff;
        opacity: 1;
        margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
        /*background: #fb7306;*/
        background: white;
        background: linear-gradient(to right, #fb7306 50%, white 50%);
        background-size: 200% 100%;
        animation: changeColor 3s forwards;
    }

    @keyframes changeColor {
        0% {
            background-position: 100% 0;
        }
        100% {
            background-position: 0 0;
        }
    }


    .aboutus-box {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 50px auto 0;
        width: 100%;
        max-width: 1300px;
    }

    .aboutus-box-img {
        width: 600px;
        height: 400px;
        background: #dcdcdc;
        margin-right: 40px;
    }

    .aboutus-box-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .aboutus-box-content {
        flex: 1;
    }

    .aboutus-box-context-title {
        font-size: 2em;
        font-family: ProximaNova-Bold;
    }

    .aboutus-box-context-content {
        margin-top: 40px;
        line-height: 30px;
    }

    .center-title {
        text-align: center;
        margin-top: 50px;
    }

    .center-title h2 {
        font-family: Ethereal-Regular;
    }

    .core-value-box {
        width: 100%;
        max-width: 1300px;
        margin: 30px auto;
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .team-box {
        display: grid;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        grid-template-columns: repeat(4, 1fr);
        gap: 70px;
    }

    .production-item {
        width: 100%;
        margin-top: 20px;
        cursor: pointer;
    }

    .product-item-img {
        width: 100%;
        height: 235px;
        background: #dcdcdc;
        position: relative;
    }

    .product-item-img > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .core-value-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 22px;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 10px;
        /*添加一个过渡动画*/
        transition: all 0.5s;
        text-align: center;
        opacity: 0;
        background: rgba(0, 0, 0, 0.7);
        width: 100%;
        height: 100%;
    }

    .bg-f9f9f9 {
        background-color: #f9f9f9;
    }

    .full-row {
        width: 100%;
        position: relative;
        padding: 50px 0;
    }

    .row-title-blod h2 {
        font-family: Ethereal-Regular;
    }

    .margin-top-50 {
        margin-top: 50px;
    }

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

    .padding-50 {
        padding: 50px;
    }

    .history-box {
        overflow: hidden;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        position: relative;
    }

    .history-item {
        position: relative;
        padding: 100px 0 0;
    }

    .history-line {
        position: absolute;
        top: 50px;
        left: 1%;
        width: 98%;
        height: 2px;
        background: #e5e5e5;
    }

    .history-round {
        position: absolute;
        top: 31px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 40px;
        z-index: 1;
    }

    .history-round img {
        width: 100%;
    }

    .history-year {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .history-item-content {
        padding: 20px;
        background: #FFFFFF;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        margin: 0 10px;
    }

    .history-item-content img {
        width: 100%;
        border-radius: 12px;
    }

    .history-item-title {
        font-size: 20px;
        padding: 20px 0 0;
    }

    .history-item-desc {
        padding: 10px 0;
    }

    .history-item-desc p {
        padding: 0;
        margin: 0;
    }

    .history-arrow img {
        width: 9px;
        height: 15px;
    }

    .swiper-button-prev {
        position: absolute;
        left: 0;
        top: 65px;
    }

    .swiper-button-next {
        position: absolute;
        right: 0;
        top: 65px;
    }

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

    .team-item-img {
        /*border:35px solid #f9f9f9;*/
        overflow: hidden;
        /*圆形*/
        border-radius: 8px;
        background: #dcdcdc;
        width: 224px;
        height: 284px;
        margin: auto;
    }

    .certificate-tab {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        flex-direction: row;
    }

    .certificate-tab-item {
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #bfbfbf;
        border-radius: 31px;
        cursor: pointer;
    }

    .certificate-tab-item-active {
        background: #f39b29;
        color: #FFFFFF;
        border: none;
    }

    .certificate-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .awards-box {
        width: 100%;
        max-width: 1300px;
        margin: 50px auto;
        overflow: hidden;
    }

    .certificate-item {
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid #e5e5e5;
    }

    .certificate-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .commitment-box {
        width: 100%;
        max-width: 1300px;
        margin: auto;
        display: flex;
        justify-content: center;
        align-content: center;
        gap: 25px;
        padding-bottom: 50px;
    }

    .commitment-item {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .commitment-item-img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #ffffff;
    }

    .commitment-item img {
        width: 40px;
    }

    .commitment-desc {
        padding: 10px 0;
    }

    .team-group-list {
        width: 100%;
        max-width: 1300px;
        margin: 0 auto 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .team-group-item {
        color: #333333;
        cursor: pointer;
        border-bottom: 1px solid #ffffff;
    }

    .team-group-item-active {
        border-bottom: 1px solid #000;
    }

    .social-box {
        min-height: 400px;
    }

    .social-box h2 {
        text-align: center;
        font-family: Ethereal-Regular;
    }

    .carousel-inner {
        height: 450px;
    }

    .carousel-item {
        height: 450px;
    }

    .carousel-item img {
        height: 100%;
        object-fit: cover;
    }

    .main {
        margin-top: 115px;
    }

    .suspension {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
        color: #ffffff;
    }

    .suspension img {
        width: 70px;
        height: 70px;
        object-fit: contain;
    }

    .suspension span {
        font-size: 20px;
    }
}


