.pg2 {
    width: 100%;
    position: relative;
    background: #F7F7F7;
    padding-bottom: 5%;
}

.pg2>.Pro_Nav {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.pg2>.Pro_Nav>a {
    font-family: '思源黑体 CN Regular';
    color: #03172E;
    font-size: var(--20px--);
    width: calc(100%/5);
    height: 100%;
    text-align: center;
    transition: all .3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.navActive::before {
    width: 30% !important;
}

.pg2>.Pro_Nav>a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background-color: #D7141C;
    transition: width 1s ease;
}

.pg2>.Pro_Nav>a:hover::before {
    width: 30%;
}

.pro_list {
    padding: 5%;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    gap: 3%;
}

.proImg {
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 20px; */
}

.proImg>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.proListBox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.proListBox>img {
    width: calc(100% / 5);
    margin-right: 5px;
}

.proImgBox {
    position: relative;
    /* margin-bottom: 25px; */
    padding: 10%;
    overflow: hidden;
}

.proItem {
    position: relative;
    background-color: #fff;
    padding-bottom: 20px;
}

.proItem>a {
    display: flex;
    height: 60px;
    justify-content: center;
}

.proItem>a>p {
    text-align: center;
    font-family: '苹方-简 中粗体';
    font-size: var(--18px--);
    line-height: 24px;
}

.pro_Mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0;
    transition: all .6s ease;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.87) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    padding: 5%;
}

.proItem:hover .pro_Mask {
    opacity: 1;
}

.proItem:hover .pro_Mask>p {
    animation-delay: 1s;
    animation: fadeInUp .6s ease forwards;
}

.proItem:hover .pro_Mask>a {
    animation-delay: 1.3s;
    animation: fadeInUp 1s ease forwards;
}

/* .pro_Mask>div {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #D7141C;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.pro_Mask>div>div {
    border-left: 25px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
} */

.pro_Mask>p {
    color: #fff;
    font-size: var(--21px--);
    margin-bottom: 10%;
    font-weight: bold;
}

.pro_Mask>a {
    font-family: 思源黑体 CN Medium;
    font-size: var(--16px--);
    width: 166px;
    height: 44px;
    /* padding: 1% 0; */
    background-color: #D7141C;
    border-radius: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pro_Mask>a>svg {
    margin-left: 10px;
    transition: all .6s ease;
}

.pro_Mask>a:hover>svg {
    margin-left: 20px;
}

/* 详情 */
.pD1 {
    display: flex;
    justify-content: space-between;
    padding: 5%;
    overflow: hidden;
}

.proD_ImgBox {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.pDSwiper {
    margin-bottom: 40px;
}

.proD_Title {
    width: 55%;
    padding: 5% 0;
}

.pDSwiper .swiper-slide {
    height: auto !important;
    min-height: 100%;
}

.pDSwiper {
    width: 100%;
}

.pDTSwiper {
    width: 70%;
}

.pDSwiper .swiper-slide,
.pDTSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.pDTSwiper .swiper-slide {
    height: auto;
    min-height: 100%;

}

.pDSwiper .swiper-slide>img,
.pDTSwiper .swiper-slide>img {
    width: 80%;
    /* height: 100%; */
    object-fit: contain;
}

.pD1>.proD_ImgBox>.thum {
    width: 80%;
    display: flex;
    align-items: center;
}

.pDPrev,
.pDNext {
    padding: 0 3%;
    background: #F5F5F5;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    transition: all .6s ease;
    cursor: pointer;
    border-radius: 5px;
}

.pDPrev:hover,
.pDNext:hover {
    background-color: #D7141C;
}

.pDPrev path,
.pDNext path {
    transition: all .6s ease;
}

.pDPrev:hover path,
.pDNext:hover path {
    fill: #fff;
}

.pDAppli {
    display: flex;
    justify-content: center;
}

.pDAppli>img {
    width: calc(100% / 5);
}

.pDTSwiper .swiper-slide {
    aspect-ratio: 1;
    justify-content: center;
    position: relative;
    border-radius: 4px;
}

.pDTSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.2;
    border-radius: 4px;
    transition: all .6s ease;
}


.pDTSlide.swiper-slide-thumb-active {
    border: 2px solid #D7141C;
}

.pDTSwiper .swiper-slide.swiper-slide.swiper-slide-thumb-active::before {
    opacity: 0;
}

.proD_Title>h4 {
    font-size: var(--16px--);
    color: #D7141C;
}

.proD_Title>h3 {
    font-size: var(--42px--);
    color: #03172E;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.proD_Title>p {
    font-family: '思源黑体 CN Regular';
    font-size: var(--18px--);
    color: #5F6F82;
    line-height: 36px;
}

.proD_Title>.BtnBox {
    display: flex;
    flex-wrap: wrap;
}

.proD_Title>.BtnBox>a {
    /* font-family: 苹方-简 中粗体; */
    font-family: '思源黑体 CN Regular';
    font-size: var(--21px--);
    width: 248px;
    padding: 1.5% 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .6s ease;
    border: 1px solid transparent;
}

.proD_Title>.BtnBox>a:nth-child(1) {
    color: #fff;
    margin-right: 30px;
    background-color: #D7141C;
}

.proD_Title>.BtnBox>a:nth-child(1):hover {
    border-color: #D7141C;
    background-color: transparent;
    color: #D7141C;
}

.proD_Title>.BtnBox>a:nth-child(2) {
    color: #03172E;
    background: #F7F7F7;
}

.proD_Title>.BtnBox>a:nth-child(2):hover {
    border-color: #D7141C;
    background-color: transparent;
}

.pD2 {
    width: 100%;
    position: relative;
    background: #F7F7F7;
}

.pD2Tab {
    width: 100%;
    padding: 0 10%;
    background-color: #fff;
}

.pd2tabN {
    display: flex;
    position: relative;
    z-index: 1;
}

.pd2tabN>div {
    width: calc(100% / 3);
    height: 100%;
    padding: 2% 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;

    font-family: 苹方-简 中粗体;
    color: #03172E;
    font-size: var(--21px--);
    transition: color .6s ease;
}

.pd2tabN>div:last-child {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #F7F7F7;
    z-index: -1;
    transition: left .6s ease;
}

.pd2TabNActive {
    color: #D7141C !important;
}

.PdCBox {
    position: relative;
    padding: 5% 5% 0 5%;
    background: #F7F7F7;
}

.PdCBox>div {
    display: none;
}

.mainsActive {
    display: inline !important;
}

/* .mainsActive iframe{
    width: 100%;
    aspect-ratio: 2 / 1;
} */

.mainsActive>ul {
    margin: 1% 0 2% 0;
}

.mainsActive h3 {
    font-size: var(--18px--);
}

.mainsActive ul>li {
    font-family: 思源黑体 CN Regular;
    list-style: inside;
    font-size: var(--16px--);
    color: #03172E;
}

.mainsActive table {
    width: 80% !important;
    border-spacing: 0;
}

.mainsActive table td {
    border: 1px solid #CDCCCC;
    border-top: 0px;
}

.mainsActive table th {
    width: auto !important;
    color: #fff;
    background-color: #03172E;
}

.mainsActive img {
    display: inline;
}

.mainsActive table th,
.mainsActive table td {
    min-width: 100px;
    padding: 1% 3vw;
    /* height: 60px; */
}

.mainsActive table th {
    font-family: 苹方-简 中粗体;
    font-size: var(--21px--);
    font-weight: lighter;
}

.mainsActive table td {
    font-family: 苹方-简 常规体;
    color: #333333;
    font-size: var(--16px--);
}

.mainsActive div {
    width: 60%;
}

.mainsActive div[data-w-e-type="video"] {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
}

.mainsActive div[data-w-e-type="video"] iframe{
    width: 60%;
    aspect-ratio: 2 / 1;
}

.mainsActive div video {
    width: 100%;
    object-fit: contain;
}

/*  */
.pD2 .title>h3 {
    margin-bottom: 3%;
}

.pD2 .ip2Swiper {
    width: calc(100% - (60px * 5));
}

.pD2 .proItem {
    background-color: transparent;
}

.crumb>a:nth-last-of-type(-n+2) {
    font-family: 思源黑体 CN Bold;
}

@media (max-width: 1200px) {
    .pro_list {
        grid-template-columns: repeat(3, 1fr);
    }

    /* xq */
    .proD_ImgBox {
        width: 45%;
    }

    .pD2 .ip2Swiper {
        width: calc(100% - (60px * 4));
    }
}

@media (max-width: 768px) {
    .pro_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pD1 {
        flex-direction: column-reverse;
        align-items: center
    }

    .proD_Title {
        width: 100%;
    }

    .proD_ImgBox {
        width: 60%;
    }

    .pD1>.proD_ImgBox>.thum {
        width: 100%;
        align-items: stretch !important;
    }

    .pDPrev,
    .pDNext {
        height: auto;
        min-height: 100%;
    }

    .mainsActive table {
        width: 100% !important;
    }

    .mainsActive div {
        width: 100%;
    }

    .pD2 .ip2Swiper {
        width: calc(100% - (60px * 2));
    }
}

@media (max-width: 480px) {
    .pro_list {
        grid-template-columns: repeat(1, 1fr);
    }

    .proD_ImgBox {
        width: 100%
    }

    .pD1>.proD_ImgBox>.thum {
        width: 100%;
        min-height: 50px;
    }

    .proD_Title>.BtnBox>a {
        width: 100%;
        padding: 2% 0;
        margin: 0 0 3% 0 !important;
    }
    .mainsActive div[data-w-e-type="video"] iframe{
        width: 100%;
    }
}