.byBox {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding: 15px 0;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
    background-color: rgba(242, 242, 242, 1);
    margin-top: 120px;
}

.byBox .inner {
    max-width: 1600px;
    width: 92%;
    margin-left: auto;
    margin-right: auto;
}

.byNav {
    display: flex;
    align-items: center;
}

.byNavIcon {
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    margin-right: 5px;

}

.byNavIcon svg {
    width: 100%;
    height: 100%;
}

.byNavIcon svg path {
    fill: #333;
}

.byNavIcon:hover svg path {
    fill: #2569af;
}

.byNavHome {
    font-size: 14px;
    color: #666;
}

.byNavIcon span {
    font-size: 16px;
    margin: 0 5px;
}

.byNavA {
    font-size: 14px;
}

.byNavA:hover,
.byNavHome:hover {
    color: #2569af;
}


@media (max-width: 900px) {
    .byBox {
        margin-top: 80px;
    }
}




.PageBox {
    display: flex;
    align-items: center;
    justify-content: center;
}



.PageLi {
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    background-color: rgba(244, 244, 245, 1);
    font-size: 14px;
    color: rgba(192, 196, 204, 1);
    border-style: solid;
    border-width: 1px;
    border-color: rgba(244, 244, 245, 1);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

.PageLi.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.PageLi.act {
    background: #0071a4;
    color: #fff;
}

.PageLi.act:hover {
    background-color: rgba(71, 75, 82, 1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(64, 158, 255, 1);
}


















/* 新闻 */
.NewNav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);

}

.NewNav .inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 94%;
    max-width: 1600px;
}

.NewNavList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.NewNavItem {
    width: 14.5%;
    display: block;
    padding: 20px 30px;
    background: #fff;
    border-radius: 0px;
    transition: all .5s ease;
    position: relative;
    z-index: 1;
    text-align: center
}

.NewNavItem p {
    color: #0d5eb4;
    font-size: 18px;
    transition: all .5s ease;
}

.NewNavItem::after {
    position: absolute;
    content: '';
    left: 0%;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #0d5eb4;
    transition: all .3s;
    z-index: -1;

}

.NewNavItem::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    display: block;
    background: #ccc;
    top: 0%;
    margin-top: 0;
    left: 0px;
}

.NewNavItem:hover::after {
    height: 100%;
}

.NewNavItem:hover p {
    color: #fff;
}



@media (max-width: 1368px) {
    .NewNavItem p {
        font-size: 16px;
    }

    .NewNavItem {
        width: auto;
    }
}




/* 关于 */


.aboGyBox {
    padding-top: 80px;
    position: relative;
}

.aboGyBox .inner {
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    max-width: 1600px;
}

.aboGyBox .inner {
    display: flex;
    justify-content: center;
}

.aboGyImg {
    width: 47.49%;
    position: relative;
}

.aboGyImg img {
    width: 100%;
}

.aboGyTbox {
    width: 47.49%;
    margin-left: 5%;
    position: relative;
}

.aboGyBt {
    padding: 16px 25px;
    border-radius: 40px;
    background-color: rgba(234, 234, 234, 1);
    display: inline-flex;
    margin-bottom: 20px;
}

.aboGyBt p {
    color: #0d5eb4;
    font-size: 18px;
    font-weight: 600;
}

.aboGyTit {
    font-size: 40px;
    font-family: "gantari-bold";
    line-height: 1.5;
    color: #0d5eb4;
    margin-bottom: 10px;
}

.aboGyText {
    position: relative;
}

.aboGyText p {
    font-family: "gantari-regular";
    font-size: 20px;
    color: #0d5eb4;
    line-height: 1.8;
}

.aboGyList {
    margin-top: 50px;
}

.aboGCImg {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.aboGCImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.aboGCImg::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background: rgba(0, 0, 0, .1);
    opacity: 0;
    transition: all 0.48s;
}

.aboGySwiper {
    width: 100%;
    overflow: hidden;
}

.aboGyItem P {
    font-size: 16px;
    color: #fff;
    position: absolute;
    left: 0;
    top: 60%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.48s;
}

.aboGyItem:hover P {
    opacity: 1;
    top: 50%;
}

.aboGCImg:hover::after {
    opacity: 1;
}

.aboGyTbox .aboGySwiper_pagination {
    width: 100%;
    text-align: center;
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 30px;
}

.aboGyTbox .aboGySwiper_pagination .swiper-pagination-bullet {
    width: 10px;
    height: 8px;
    opacity: .2;
    border-radius: 6px;
    transition: all ease .3s;
    transform: translateY(0px);
    margin: 0 2px;
    background: #000;
}

.aboGyTbox .aboGySwiper_pagination .swiper-pagination-bullet-active {
    background: #0d5eb4;
    opacity: 1;
    width: 25px;
}


.aboWBox {
    padding-top: 80px;
    position: relative;
}

.aboWBox .inner {
    max-width: 1630px;
    width: 92%;
}

.aboWTit {
    font-size: 50px;
    color: #0d5eb4;
    line-height: 1.5;
    text-align: center;
    font-weight: bold;
    font-family: "gantari-bold";
}

.aboWList {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.aboWItem {
    width: 32.3%;
    position: relative;
    background-color: rgba(37, 105, 175, 0.07);
    padding: 10px;
  
}

.aboWImg {
    width: 100%;
      overflow: hidden;
}

.aboWImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    transition: all 0.5s;
}

.aboWTbox {
    padding: 20px;
    position: relative;
}

.aboWBt {
    color: #0d5eb4;
    font-size: 22px;
    font-weight: 600;

}

.aboWText {
    margin-top: 10px;
    font-size: 18px;
    font-family: "gantari-regular";
    color: #0d5eb4;
    text-align: left;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 110px;
}
.aboWItem:hover .aboWImg img{
     transform: scale(1.1);
     -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
     -ms-transform: scale(1.1);
     -o-transform: scale(1.1);
}


.aboGyZy{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.aboGyDiv{
 width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
}
.aboGyZCon{
    position: relative;
}
.aboGyZSwiper{
    width: 1000px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.aboGyZItem{
    width: 100%;
    position: relative;
}
.aboGyZImg{
    width: 100%;
    padding-top: 65%;
    position: relative;
}
.aboGyZItem p{
    font-size: 20px;
    margin-top: 10px;
}
.aboGyZImg img{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}
.aboGyZItem p{
    text-align: center;
    color: #fff;
}
.aboGyZBtn{
    position: absolute;
    top: 50%;
    z-index: 2;
    cursor: pointer;
}
.aboGyZBtn svg{
    width: 30px;
    height: 30px;
}
.aboGyZBtn svg path{
    fill: #fff;
}
.aboGyZSwiper_next{
    right: 0;
}
.aboGyZSwiper_prev{
    left: 0;
}
.aboGyZSuo{
     width: 30px;
    height: 30px;
    position: absolute;
    right: 20px;
    top: -50px;
}
.aboGyZSuo svg{
      width: 100%;
    height: 100%;
}
.aboGyZSuo svg path{
    fill: #fff;
}
@media (max-width: 1680px) {
    .aboGyText p {
        font-size: 18px;
    }

}

@media (max-width: 1480px) {

    .aboWTit {
        font-size: 44px;
    }

    .aboGyText p {
        font-size: 16px;
    }

    .aboGyTit {
        font-size: 36px;
    }

    .aboGyBt p {
        font-size: 16px;
    }

    .aboGyTit {
        font-size: 32px;
    }

    .aboWText {
        font-size: 16px;
    }

    .aboWBt {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .aboWTit {
        font-size: 36px;
    }

    .aboGyBox .inner {
        flex-wrap: wrap;
    }

    .aboGyImg {
        width: 100%;
        height: 600px;
        overflow: hidden;

    }

    .aboGyTbox {
        width: 100%;
        margin-left: 0;
        position: relative;
        margin-top: 50px;

    }

    .aboGyImg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 900px) {
    .aboWTit {
        font-size: 32px;
    }

    .aboWList {
        flex-wrap: wrap;
    }

    .aboWItem {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0 !important;
    }

    .aboWText {
        height: auto;
    }
}

@media (max-width: 680px) {
     .aboGyImg {
        height: 500px;}
    .aboGyBox {
        padding-top: 50px;
        position: relative;
    }

    .aboGyTit {
        font-size: 28px;
    }

    .aboGyBt p {
        font-size: 14px;
    }

    .aboGyText p {
        font-size: 14px;
    }

    .aboGyTit {
        font-size: 24px;
    }

    .aboWTit {
        font-size: 24px;
    }
}

@media (max-width: 500px){
     .aboGyImg {
        height: 450px;}
        .aboGyList {
    margin-top: 30px;
}
}



/* 联系 */
.conBox {
    padding-top: 80px;
    position: relative;
}

.conBox .inner {
    width: 94%;
    max-width: 1600px;
}

.conCon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.conList {
    width: 47.49%;
    position: relative;
}

.conItem {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 20px;
    background-color: rgba(37, 105, 175, 0.07);
}

.conTit {
    font-size: 26px;
    font-family: "gantari-bold";
    color: #0d5eb4;
}

.conText {
    position: relative;
}

.conText p,
.conText a {
    font-family: "gantari-regular";
    font-size: 18px;
    color: #0d5eb4;
}

.conRig {
    width: 47.49%;
    padding: 48px 0;
    background-color: rgba(37, 105, 175, 0.07);
}

.conRigCon {
    margin: 0 auto;
    max-width: 960px;
    width: 94%;
}

.conRigTit {
    font-size: 26px;
    font-family: "gantari-bold";
    color: #0d5eb4;
    margin-bottom: 10px;
}

.conRigMs {
    font-size: 18px;
    font-family: "gantari-regular";
    color: #0d5eb4;
}

.conFrom {
    margin-top: 40px;
    position: relative;
}

.conFItem {
    margin-bottom: 16px;
}

.conFItem input {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 56px;
    padding: 0 20px;
    background: #fff;
    border: 1px solid #Fff;
    box-sizing: border-box;
    transition: .5s;
    color: #0d5eb4;
    font-family: "gantari-regular";
    font-size: 14px;
}

.conFItem span {
    width: 100%;
    margin-top: 4px;
    font-size: 80%;
    color: #dc3545;
}

.conFItem textarea {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
    height: 120px;
    padding: 20px;
    background: #fff;
    border: 1px solid #Fff;
    box-sizing: border-box;
    transition: .5s;
    margin-bottom: 13px;
    color: #0d5eb4;
    font-family: "gantari-regular";
    font-size: 14px;
}

.conFItem input::placeholder,
.conFItem textarea::placeholder {
    color: #0d5eb4;
    font-family: "gantari-regular";
    font-size: 14px;
}

.conFBtn {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: auto;
    padding: 8px;
    margin-top: 40px;
    font-size: 18px;
    font-weight: normal;
    background-color: #0d5eb4;
    border-radius: 0px;
    font-family: "gantari-regular";
    color: #fff;
    max-width: 200px;
    padding: 12px 0;
}

.conFBtn::before {
    content: "";
    position: absolute;
    display: block;
    transition: all .6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
}

.conFBtn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: 0;
    opacity: 0;
    top: 0;
    left: 0px;
}

.conFBtn:hover::before {
    animation: style1 .75s;
    z-index: 1;
}

@keyframes style1 {
    0% {
        background: rgba(0, 0, 0, .25);
        transform: translateX(-50%) translateY(-50%) scale(0);
    }

    100% {
        background: transparent;
        transform: translateX(-50%) translateY(-50%) scale(1);
    }
}




@media (max-width: 1680px) {
    .conTit {
        font-size: 24px;
    }
}

@media (max-width: 1480px) {
    .conTit {
        font-size: 22px;
    }

    .conText p,
    .conText a {
        font-size: 16px;
    }

    .conRigMs {
        font-size: 16px;
    }

    .conRigTit {
        font-size: 24px;
    }

    .conItem {
        padding: 20px;
    }

}

@media (max-width: 1368px) {
    .conTit {
        font-size: 20px;
    }

    .conFBtn {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .conCon {
        flex-wrap: wrap;

    }

    .conList,
    .conRig {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .conTit {
        font-size: 18px;
    }

    .conRigTit {
        font-size: 22px;
    }

    .conRigMs {
        font-size: 14px;
    }

    .conRig {
        padding: 30px 0;
    }

    .conBox {
        padding-top: 50px;
    }
    .conFrom {
    margin-top: 30px;}
}








/* 新闻 */
.NewBox {
    position: relative;
    padding-top: 80px;
}

.NewBox .inner {
    max-width: 1600px;
    width: 94%;
}

.NewList {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.NewItem {
    width: 100%;

    padding: 18px;
    margin-bottom: 16px;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.NewImg {
    width: 25%;
    position: relative;
}

.NewImg a {
    width: 100%;
    padding-top: 65%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
}

.NewImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    transition: all 0.48S;
}

.NewRig {
    width: 75%;
    position: relative;
    padding-left: 5%;
    margin-bottom: 16px;
    padding-bottom: 0px;
}

.NewTit {
    padding-bottom: 5px;
    padding-top: 5px;
    margin-top: 0px;
    margin-left: 0px;
    color: #0d5eb4;
    font-size: 24px;
    font-family: "gantari-bold";
    line-height: 1.5;
    font-weight: bold;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.48S;
}

.NewTime {
    min-height: 20px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    color: #0d5eb4;
}

.NewText {
    height: auto;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0d5eb4;
    font-size: 16px;
    font-weight: normal;
    line-height: 2;
    font-family: "gantari-regular";
}

.NewBtn {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    width: 30%;
    max-width: 140px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0);
    font-size: 16px;
    border-style: solid;
    border-width: 1px;
    border-color: #0d5eb4;
    color: #0d5eb4;
    transition-property: all;
    border-radius: 20px;
    transition-duration: 0.6s;
    transition-timing-function:
        cubic-bezier(0.25, 0.1, 0.25, 1);
}

.NewItem:hover .NewTit {
    padding-left: 10px;
}

.NewItem:hover .NewBtn {
    background: #0d5eb4;
    color: #FFF;
}

.NewItem:hover .NewImg img {
    transform: scale(1.2);
}

.NewDBox {
    position: relative;
    padding-top: 80px;
}

.NewDBox .inner {
    width: 94%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
}

.NewDLeft {
    width: 65%;
    position: relative;
}

.NewDXian {
    position: relative;
    border-top: 1px solid rgba(221, 221, 221, 1);
    height: 1px;
    margin: 16px 0;
}

.NewDTit {
    font-size: 28px;
    font-family: "gantari-bold";
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    color: #0d5eb4;
}

.NewDTime {
    font-size: 14px;
    color: #0d5eb4;
    line-height: 1.5;
    font-family: "gantari-regular";
    min-height: 20px;
    text-align: center;
}

.NewDMs {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
    background-color: rgba(242, 242, 242, 1);
    margin-top: 20px;
}

.NewDMs p {
    font-size: 14px;
    color: #0d5eb4;
    line-height: 1.5;
    font-family: "gantari-regular";
    min-height: 20px;
    text-align: center;
}

.NewDRig {
    width: 25%;
    position: relative;
}

.NewDList {
    width: 100%;
    border: 1px solid rgba(229, 229, 229, 1);
    padding: 30px;
}

.NewDBt {
    line-height: normal;
    font-size: 24px;
    font-weight: bold;
    color: #0d5eb4;
    font-family: "gantari-bold";
}

.NewDItem {
    width: 100%;
    margin-bottom: 10px;
    margin-top: 10px;
    position: relative;
}

.NewDFTit {
    line-height: 1.5;
    font-size: 16px;
    font-family: "gantari-regular";
    color: #0d5eb4;
    font-weight: bold;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.NewDFText {
    line-height: 1.5;
    font-size: 14px;
    font-family: "gantari-regular";
    color: #0d5eb4;
    font-weight: normal;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-top: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
    word-break: keep-all;
}

.NewDFTime {
    min-height: 20px;
    font-family: "gantari-regular";
    font-size: 12px;
    color: #0d5eb4;
    line-height: 1.8;
}

.NewDCon {
    position: relative;
    margin-top: 30px;
    text-align: center;
}

.NewDCon p {
    padding-bottom: 15px;
    font-size: 16px;
    color: #0d5eb4;
    line-height: 2;
    text-align: center;
}

.NewDCon img {
    max-width: 100%;
}

@media (max-width: 1368px) {
    .NewTit {
        font-size: 22px;
    }

    .NewTime {
        min-height: 20px;
        font-size: 18px;
    }

    .NewDBt {
        line-height: normal;
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .NewBox {
        padding-top: 50px;
    }

    .NewDRig {
        display: none;
    }

    .NewDLeft {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .NewTit {
        font-size: 20px;
    }

    .NewTime {
        min-height: 20px;
        font-size: 16px;
    }

}

@media (max-width: 900px) {
    .NewItem {
        flex-wrap: wrap;
    }

    .NewRig {
        width: 100%;
        padding-left: 0;
        margin-top: 20px;
    }

    .NewImg {
        width: 60%;
        position: relative;
    }

    .NewDTit {
        font-size: 24px;
    }
}

@media (max-width: 680px) {
    .NewDTit {
        font-size: 20px;
    }

    .NewImg {
        width: 100%;
        position: relative;
    }

    .NewNavItem p {
        font-size: 14px;
    }
}









/* 产品 */
.proLBox {
    position: relative;
    padding-top: 100px;
}

.proLBox .inner {
    width: 92%;
    max-width: 1640px;
}

.proLList {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.proLItem {
    width: calc(50% - 30px);
    margin-bottom: 40px;
    padding: 30px;
    background: #f2f2f2;
    transition-property: all;
    transition-duration: 0.6s;
    transition-timing-function:
        cubic-bezier(0.25, 0.1, 0.25, 1);
    border-radius: 20px;
    background-color: #f2f2f2;
    display: flex;
    margin-right: 30px;
    margin-left: 10px;
}

.proLItem:nth-child(2n) {
    margin-right: 10px;
}

.proLImg {
    width: 30%;
    position: relative;
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.proLImg a {
    display: block;
    width: 85%;
    padding-top: 85%;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #ccc;
    overflow: hidden;
}

.proLImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.proLRig {
    width: 70%;
    padding-top: 20px;
    padding-left: 4%;
}

.proLTit {
    font-size: 24px;
    font-family: "gantari-bold";
    color: #0d5eb4;
}

.proLText {
    line-height: 1.5;
    font-size: 16px;
    margin-top: 10px;
    text-align: left;
    color: #0d5eb4;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

@media (max-width: 1680px) {
    .proLImg {
        padding: 0;
    }

    .proLRig {
        padding-top: 0;
        padding-left: 0;
    }
}

@media (max-width: 1480px) {

    .proLRig {
        padding-top: 0;
        padding-left: 0;
    }
}

@media (max-width: 1368px) {
    .proLTit {
        font-size: 20px;
    }

    .proLText {
        line-height: 1.5;
        font-size: 14px;
    }
}

@media (max-width: 1280px) {
    .proLItem {
        width: calc(50% - 20px);
        margin-bottom: 30px;
        margin-right: 20px;
        margin-left: 0;
    }

    .proLBox {
        padding-top: 70px;
    }
}

@media (max-width: 1024px) {
    .proLItem {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0 !important;
        margin-left: 0;
        align-items: center;
    }
}

@media (max-width: 680px) {
    .proLItem {
        padding: 20px;
        width: 100%;
        margin-bottom: 20px;
    }

    .proLTit {
        font-size: 18px;
    }
      .proLBox {
        padding-top: 50px;
    }
}

@media (max-width: 500px) {
    .proLTit {
        font-size: 16px;
    }
}


















.proDBox {
    position: relative;
    padding-top: 50px;
}

.proDBox .inner {
    max-width: 1600px;
    width: 94%;
}

.proDTop {
    width: 100%;
    background-color: rgba(245, 245, 245, 1);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}

.proDTLeft {
    width: 616px;
    position: relative;
}

.proDSwiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.proDItem {
    position: relative;
}

.proDImg {
    width: 100%;
    padding-top: 100%;
    position: relative;
}

.proDImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.proDBon {
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    padding: 0 30px;
}

.proDBSwiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.proDBImg {
    width: 100%;
    padding-top: 100%;
    position: relative;

}

.proDBImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.proDJt {
    line-height: 60px;
    height: 60px;
    width: 20px;
    display: block;
    z-index: 8;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
    position: absolute;
    z-index: 2;
    top: 0;
}

.proDJt svg {
    font-size: 16px;
    width: 20px;
    height: 20px;
    margin-right: 3px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
    margin-top: -3px;
    fill: currentColor;
}

.proDSwiper_prev {
    left: 0;
}

.proDSwiper_next {
    right: 0;
}

.proDBItem {
    border: 1px solid rgba(245, 245, 245, 1);
}

.proDBItem.swiper-slide-thumb-active {
    border-color: red;
}

.proDTRig {
    position: relative;
    width: calc(100% - 616px);
    padding: 50px;
}

.proDTit {
    color: #0d5eb4;
    font-family: "gantari-bold";
    background: #fff0;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.proDText {
    position: relative;
}

.proDText p {
    font-family: "gantari-regular";
    font-size: 16px;
    line-height: 1.7;
    -webkit-line-clamp: 7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    color: #0d5eb4;

}

.proDCon {
    position: relative;
    width: 100%;
    margin: 10px 0 20px;
    padding: 20px;
    background-color: rgba(245, 245, 245, 1);
    border-radius: 20px;
}

.proQMs {
    background-color: #0d5eb4;
    font-weight: bold;
    color: #fff;
    padding: 0 30px;
    padding-right: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    width: auto;
    min-width: 98px;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    margin-bottom: 20px;
    margin-left: 30px;
}

.proQItem {
    position: relative;
    margin-bottom: 30px;
}

.proQTit {
    font-size: 26px;
    color: #0d5eb4;
    margin: 10px 0px 10px 0px;
    font-weight: bold;
    background: none;
    width: 100%;
    padding: 15px 0 10px 10px;
    background-image: linear-gradient(343deg, #0d5eb424 70%, #0d5eb424 71%);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px
}

.proQText {
    padding: 20px 0;
}

.proQText p {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 10px;
    color: #0d5eb4;
}

.proQGj {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.proQGj p {
    font-size: 14px;
    color: #0d5eb4;
    line-height: 1.8;
    padding-right: 10px;
    font-weight: bold;
    font-family: "gantari-regular";
}

.proQGj a {
    line-height: 1.6;
    font-size: 14px;
    color: rgba(96, 98, 102, 1);
}

.proFBox {
    position: relative;
    margin-bottom: 30px;
}

.proFTit {
    font-size: 18px;
    font-weight: 600;
    color: #0d5eb4;
    text-align: center;
    margin-bottom: 20px;
}

.proFList {
    position: relative;
    display: flex;
}

.proFItem {
    width: 33.3%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.proFImg {
    width: 100%;
    padding-top: 68%;
    position: relative;
}

.proFImg img {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.proFText {
    font-size: 16px;
    line-height: 1.8;
    padding-bottom: 10px;
    color: #0d5eb4
}

.proXBox {
    padding-top: 50px;
    position: relative;
}

.proXTit {
    margin-top: 40px;
    font-size: 34px;
    color: #0d5eb4;
    line-height: 1;
    font-family: "gantari-bold";
    text-align: center;
}

.proXXian {
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    height: 1px;
    margin: 16px 0;
}

.proXList {
    display: flex;
    flex-wrap: wrap;
}

.proXItem {
    width: calc(25% - 15px);
    margin-right: 20px;
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(238, 238, 238, 1);
}

.proXItem:nth-child(4n) {
    margin-right: 0;
}

.proXImg {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-bottom: 1px solid rgba(238, 238, 238, 1);
}

.proXImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: contain;
}

.proXText {
    margin: 20px 0 10px;
    font-size: 16px;
    font-weight: normal;
    color: #0d5eb4;
    text-align: center;
    line-height: 1;
    font-family: "gantari-bold";
    transition: all ease .5s;
}






@media (max-width: 1680px) {
    .proDTLeft {
        width: 550px;
    }

    .proDTRig {
        position: relative;
        width: calc(100% - 550px);
    }

    .proDTit {
        font-size: 36px;
    }
}

@media (max-width: 1368px) {
    .proDTLeft {
        width: 500px;
    }

    .proDTRig {
        position: relative;
        width: calc(100% - 500px);
    }

    .proDTit {
        font-size: 32px;
    }

    .proQTit {
        font-size: 24px;
    }

    .proQMs {
        font-size: 16px;
        margin-bottom: 0;
        margin-left: 0;
    }

    .proXTit {
        font-size: 32px;
    }
}

@media (max-width: 1200px) {
    .proDTLeft {
        width: 450px;
    }

    .proDTRig {
        position: relative;
        width: calc(100% - 450px);
    }
}

@media (max-width: 1024px) {
    .proDTop {
        flex-wrap: wrap;
    }

    .proDTLeft {
        width: 100%;
    }

    .proDTRig {
        padding: 0;
        width: 100%;
        padding: 30px 0;
    }

    .proXItem {
        width: calc(50% - 10px);
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .proXItem:nth-child(4n) {
        margin-right: 20px;
    }

    .proXItem:nth-child(2n) {
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .proDTit {
        font-size: 28px;
    }

    .proQTit {
        font-size: 20px;
    }

    .proFList {
        flex-wrap: wrap;
    }

    .proFItem {
        width: 100%;
    }

    .proXTit {
        font-size: 28px;
    }
}

@media (max-width: 680px) {
    .proDTop {
        padding: 20px;
    }

    .proDTit {
        font-size: 24px;
    }

    .proQTit {
        font-size: 18px;
    }

    .proFText {
        font-size: 14px;
    }

    .proQText p {
        font-size: 14px;
    }

    .proFTit {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .proXTit {
        font-size: 24px;
    }
    .proDText p{
        font-size: 14px;
    }
    .proDTit {
        font-size: 22px;
    }
        .proQTit {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .proXItem {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}















.seaBox {
    padding-top: 50px;
}

.seaBox .inner {
    width: 100%;
    max-width: 1270px;
}

.seaCon {
    padding-top: 35px;
    padding-bottom: 70px;
    padding-left: 15px;
    padding-right: 15px;
}

.seaInpBox {
    padding: 20px 15px;
}

.seaInpCon {
    width: 100%;
    height: 60px;
    max-width: 820px;
    line-height: 2;
    border: 1px solid #ddd;
    border-right: 0;
    border-radius: 40px 40px;
    transition: all ease .3s;
    display: flex;
    overflow: hidden;
    margin: 0 auto;
}

.seaInpCon input {
    width: calc(100% - 120px);
    height: 100%;
    line-height: 2;
    font-size: 16px;
    padding: 0 15px;
    transition: all ease .3s;
}

.seaInpBtn {
    width: 120px;
    height: 100%;
    font-size: 16px;
    line-height: 3;
    overflow: hidden;
    box-shadow: none;
    background: #0d5eb4;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seaConSj {
    font-size: 14px;
}

.seaConPList {
    position: relative;
}

.seaConPItem {
    position: relative;
    margin-bottom: 30px;
}

.seaConPTit {
    font-size: 20px;
    color: red;
    font-weight: normal;
}

.seaConPTime {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
}

.seaConList {
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.seaConImg {
    width: 100%;
    padding-top: 65%;
    position: relative;
}

.seaConImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.seaConFList {
    position: relative;
}

.seaConFItem {

    position: relative;
    margin-bottom: 40px;
}

.seaConFItem a {
    display: flex;
    justify-content: space-between;
}

.seaConFTbox {
    width: 70%;
}


.seaConFTit {
    font-size: 20px;
    font-weight: normal;
}

.seaConFTit b {
    color: red;
    font-size: 20px;
    font-weight: normal;
}

.seaConFText {
    position: relative;
    margin-top: 10px;
}

.seaConFText p,
.seaConFText b {
    font-size: 15px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.6);
    text-align: left;

    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seaConFText b {
    color: red;
}

.seaConFTime {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    padding-left: 10px;
    margin-top: 30px;
}

.seaConFImgBox {
    width: calc(25% - 20px);
    position: relative;
}

.seaConFImg {
    width: 100%;
    padding-top: 70%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.seaConFImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
}

.seaConNList {
    position: relative;
}

.seaConNItem {
    position: relative;
    margin-bottom: 30px;
}

.seaConNTit {
    line-height: 1.5;
    font-size: 20px;
    font-weight: normal;
    font-family: "gantari-regular";
    color: rgba(0, 0, 0, 1);
    text-align: left;
}

.seaConNTime {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    padding-left: 10px;
}

.seaConFTit:hover {
    color: #0071a4;
}

@media (max-width: 768px) {
    .seaConFItem a {
        flex-wrap: wrap;

    }

    .seaConFItem {
        margin-bottom: 50px;
    }

    .seaConFTbox {
        width: 100%;
    }

    .seaConFImgBox {
        width: 100%;
        margin-top: 20px;
    }

    .seaConFTime {
        margin-top: 10px;
    }
}

@media (max-width: 680px) {
    .seaConNTit {
        font-size: 18px;
    }

    .seaConPTit,
    .seaConPTit b {
        font-size: 18px;
    }

    .seaConFTit b,
    .seaConFTit {
        font-size: 18px;
    }
    .seaInpCon input{
        font-size: 14px;
    }
    .seaInpBtn {
    width: 100px;
    font-size: 14px;
}
.seaInpCon input {
    width: calc(100% - 100px);
}
.seaInpBox{
    padding: 0 20px;
}
}
@media (max-width: 500px) {
.seaInpCon {
    height: 55px;}
        .seaConNTit {
        font-size: 16px;
    }
}