* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.head{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 67px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    z-index: 9999;
}
  
.heads{
    width: 18.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head_bot{
    width: 85%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo{
    width: 1.925rem;
    height: auto;
}
.logo img{
    width: 100%;
}
.nav ul{
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.nav ul li {
    height: 0.3125rem;
    text-align: center;
}
.nav ul li:last-child{
    border: none;
}
.nav ul a{
    font-size: 0.225rem;
    color: #000;
    padding: 0 0.3125rem;
}
.head_top{
    width: 15%;
    display: flex;
    align-items: center;
    font-size: 0.225rem;
    color: #000;
    justify-content: space-between;
}

.language{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.language img{
    margin-right: 10px;
}
.head_top .search{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head_top .search input[type=text]{
    width: 1.575rem;
    height: 0.3125rem;
    font-size: 0.175rem;
    border: 1px solid #ebebeb;
    border-radius: 0.25rem;
    padding: 0.0625rem;
    background-color: rgba(255, 255, 255, 0);
}
  
.head_top .search input[type=submit]{
    position: absolute;
    top: 0;
    right: 0.0625rem;
    width: 0.3125rem;
    height: auto;
    background: url(../images/search.png)center no-repeat;
    border: none;
}
.banner{
    width: 100vw;
}
.banner img{
    width: 100%;
}
.banner .swiper-slide{
    width: 100%;
}
.bannernum {
    position: absolute;
    bottom: 20px;
    z-index: 9;
    right: 10%;
    transform: translate(-50%);
    display: flex;
    align-items: center;
    cursor: pointer;
}

.bannernums {
    position: relative;
    float: left;
    font-size: 14px;
    transition: all 3s;
    width: 60px;
    height: 22px;
    border-radius: 100%;
    color: #fff;
}

.bannerLine{
    display: none;
}

.bannerLines {
    position: relative;
    width: 30px;
    height: 2px;
    bottom: 10px;
    left: 20px;
    background-color: #fff;
}

@keyframes backgroundColorChange {
    0% {
        background-color: #fff;
        width: 0px;
        height: 2px;
    }
    100% {
        background-color: #fff;
        width: 30px;
        height: 2px;
    }
}

.animated-background {
    position: absolute;
    bottom: 10px;
    left: 20px;
    animation-name: backgroundColorChange;
    animation-duration: 3.5s;
    animation-iteration-count: infinite;
    z-index: 999;
}

.animated-background span {
    position: absolute;
    top: 50%;
    right: -2px;
    display: block;
    width: 5px;
    height: 5px;
    transform: translateY(-50%);
    border-radius: 100%;
    background-color: #fff;
    border: 3px solid rgb(255, 255, 255,.8);
}

.bannernums.active {
    color: #fff;
}

.keydown {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: 999;
}
.keydown img {
    -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

.keydown p {
    font-size: 0.225rem;
    color: #fff;
    margin-top: 0.125rem;
}
@-webkit-keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-5px);
    }
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.mobile-inner-header {
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    z-index: 99999;
    top: 0;
    background-color: #fff;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgb(0, 0, 0);
}

.mobile-inner-header img {
    height: 65%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background: #fff;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999999999999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    font-size: 16px;
    color: #000;
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(255, 255, 255, 0.4);
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.section2{
    background: url(../images/section2.png) 50%;
}

.section3{
    background: url(../images/section3.png) 50%;
}

.section4{
    background: url(../images/aboutbg.png) 50%;
}

.section5{
    background: #f5f5f5;
}

.section6{
    background: url(../images/newbg.png) 50%;
}

.section7{
    background: url(../images/footbg.png) 50%;
}

.title {
    font-size: 0.375rem;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.titles {
    font-size: 16px;
    color: rgb(0, 0, 0);
    text-align: center;
    margin-top: 8px;
}
  
.product{
    width: 100%;
    padding: 20px 0;
}

.productop{
    width: 18.25rem;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}

.productop a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productop a img:nth-child(2){
    display: none;
}

.productop p {
    font-size: 0.3625rem;
    color: rgb(0, 0, 0);
    margin-top: 0.1rem;
}

.productop a.active img:nth-child(1){
    display: none;
}

.productop a.active img:nth-child(2){
    display: block;
}

.productop a.active p{
    color: #4457a6;
}

.proSwiper{
    margin-top: 30px;
}

.inpro{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.inpro a{
    width: 100%;
}

.inpro p {
    width: 100%;
    height: 68px;
    font-size: 15px;
    color: #000;
    line-height: 68px;
    text-align: center;
    background-color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    margin-top: 2px;
}

.inpro img{
    width: 100%;
    height: auto;
}

.inpro p:hover{
    color: #fff;
    background-color: rgb(206, 0, 34);
}
  
.application{
    width: 100%;
    padding: 20px 0;
}

.applications{
    width: 20.5rem;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}

.applications div{
    position: relative;
    width: 5rem;
}

.applications div img:not(.LGallerySlider-Slide) {
    width: 100%;
    height: auto;
    opacity: .8;
    transition: all .5s
}

.applications p {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    background-color: rgb(58, 81, 173,.8);
    transition: all .5s
}

.applications p a{
    color: #fff;
}

@media screen and (min-width:1024px) {
    .applications div:hover img:not(.LGallerySlider-Slide) {
        opacity: 1;
        transform: scale(.9) rotate3d(-1, 1, 0, 1deg);
        box-shadow: -10px -10px 2px .3px rgba(0, 0, 0, .6), -2px -2px 3px .3px rgba(0, 0, 0, .3), -3px -3px 4px .3px rgba(0, 0, 0, .1)
    }

    .applications div:hover p {
        height: 75px;
        line-height: 75px;
        opacity: 0;
        z-index: -1
    }
}

/*  */
.abmore {
    text-align: right;
    margin-top: 15px;
}

.abmore a {
    display: inline-block;
    width: 132px;
    height: 36px;
    line-height: 36px;
    border-radius: 30px;
    border: 1px solid #e5e4e2;
    background: url(../images/moreright.png) right 15px top 8px no-repeat;
    font-size: 14px;
    color: #666666;
    text-align: left;
    padding-left: 15px;
}


.about {
    width: 100%;
    overflow: hidden;
    background: url(../images/aboutbg.png) center no-repeat;
    background-size: cover;
    padding: 20px 0;
} 
.abouts{
    width: 18.25rem;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}
.abcont{
    width: 60%;
    padding: 30px 0 20px;
}

.abcont p {
    text-indent: 2em;
    font-size: 15px;
    color: rgb(51, 51, 51);
    line-height: 2.8;
}

.abcont div {
    font-size: 15px;
    color: rgb(51, 51, 51);
    line-height: 2.8;
}

.shuju {
    width: 39%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.sj {
    width: 40%;
    text-align: center;
}

.sj_top {
    font-size: 0.325rem;
    color: #6fc7da;
}
.sj_top b {
    font-size: 0.75rem;
    font-weight: 300;
}

.sj_bot {
    font-size: 0.325rem;
    color: #000;
}

.abtm{
    width: 18.25rem;
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
}

.abtm div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.5625rem;
    height: 2.5625rem;
    border: 1px solid #6fc7da;
    background-color: #fff;
    border-radius: 50%;
}

.abtm div p {
    font-size: 0.225rem;
    color: rgb(105, 105, 105);
    text-transform: uppercase;
    line-height: 2.328;
    -moz-transform: matrix( 1.55215270960788,0,0,1.55215270960788,0,0);
    -webkit-transform: matrix( 1.55215270960788,0,0,1.55215270960788,0,0);
    -ms-transform: matrix( 1.55215270960788,0,0,1.55215270960788,0,0);
}
  
.abtm img{
    width: 45px;
    height: auto;
}

.abtm div:hover{
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    50% { transform: translateY(5px); }
    75% { transform: translateY(-5px); }
}

.advantage{
    width: 100%;
    padding: 20px 0;
}

.advantages{
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
}

.adv_right{
    position: relative;
    overflow: hidden;
    display: block;
    width: 11.625rem;
    height: auto;
}

.adv_right img {
    position: relative;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.adv_right .overlay1 {
    background-color: #F8F8F8;
    position: absolute;
    width: 100%;
    height: 33.3333%;
    left: 0;
    top: 0;
}

.adv_right .overlay2 {
    background-color: #F8F8F8;
    position: absolute;
    width: 100%;
    height: 33.3333%;
    left: 0;
    top: 33.3333%;
}

.adv_right .overlay3 {
    background-color: #F8F8F8;
    position: absolute;
    width: 100%;
    height: 33.3333%;
    left: 0;
    top: 66.6666%;
}

.advs{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.adv_left{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-image: linear-gradient(to right, #f5f5f5, #ffff);
    padding: 0.5rem 0.5rem 0.5rem 0;
}

.adva{
    width: 9rem;
    padding-left: 0.125rem;
    border-left: 1px solid #000;
    margin-bottom: 0.375rem;
}

.adva p {
    font-size: 0.2625rem;
    color: #333;
}

.adva p:nth-child(2){
    font-size: 0.2rem;
    color: #999;
    margin-top: 0.1875rem;
}

.advb{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 8.75rem;
    height: 1.45rem;
    border: 1px solid #dedcdc;
    cursor: pointer;
    margin-bottom: 0.1875rem;
}

.advb p {
    font-size: 14px;
    color: rgb(51, 51, 51);
    line-height: 2.123;
    padding-left: 0.5rem;
}

.advb p:nth-child(1) {
    font-size: 16px;
}
  
.advb img{
    position: absolute;
    left: -0.3rem;
    top: 0.425rem;
    width: 0.6rem;
    height: auto;
}

.new{
    width: 100%;
    padding: 20px 0;
}

.news{
    position: relative;
    width: 100%;
}

.newSwiper img{
    width: 100%;
    height: auto;
}

.newTxt{
    position: absolute;
    width: 15rem;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
}

.newTxbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 3.475rem;
    background-color: rgb(255, 255, 255);
    padding: 0.375rem 0.25rem;
}
  
.newTxbox p:nth-child(1) {
    font-size: 0.2rem;
    color: rgb(0, 0, 0);
    line-height: 1.938;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newTxbox p:nth-child(2) {
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 2.571;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.newTxbox p:nth-child(3) {
    font-size: 0.2rem;
    color: rgb(102, 102, 102);
    line-height: 1.938;
}

.newbtm{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.newbtm img{
    margin: 0 0.1875rem;
    cursor: pointer;
}

.foot{
    width: 100%;
    padding: 0.25rem 0;
}

.foots{
    width: 18.25rem;
    margin: auto;
}

.footmap{
    width: 100%;
}

.fmap{
    height: 6.9375rem;
}

.footbtm{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fonc p:nth-child(1) {
    font-size: 0.25rem;
    color: rgb(52, 52, 52);
}

.fonc p:nth-child(2) {
    font-size: 0.45rem;
    color: rgb(0, 0, 0);
}

.fonp p:nth-child(1) {
    font-size: 0.25rem;
    color: rgb(0, 0, 0);
    line-height: 3.2;
}

.fonp p {
    font-size: 0.2rem;
    color: rgb(0, 0, 0);
    line-height: 2.688;
}

.fonp img{
    width: 2.625rem;
    height: auto;
}

.fonp div img:nth-child(2){
    margin-left: 0.1875rem;
}

.copy {
    width: 100%;
    line-height: 0.9375rem;
    text-align: center;
    font-size: 0.225rem;
    color: #000;
    border-top: 0.0125rem solid #828282;
    z-index: 999;
}

.copy a {
    font-size: 0.225rem;
    color: #000;
    margin: 0 0.125rem;
}

.footb{
    width: 100%;
    background-color: #e1dfdf;
}

.footb .foot{
    padding: 0;
}

.footb .foots{
    padding: 20px 0;
}

.fitbanner{
    width: 100%;
}

.fitbanner img{
    width: 100%;
    height: auto;
}

.concatop{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.canleft{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 2.775rem;
    background-color: rgb(234, 234, 234);
}

.canleft p {
    font-size: 0.3375rem;
    color: rgb(31, 54, 148);
    font-weight: bold;
    line-height: 2.444;
    text-align: right;
    padding-right: 2.125rem;
}

.canright{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 2.775rem;
    background-color: #1f3694;
}

.canright p{
    font-size: 0.225rem;
    color: #fff;
    line-height: 2.444;
    text-align: left;
    padding-left: 1.25rem;
}

.canright p:nth-child(2) {
    font-size: 0.3rem;
    font-weight: bold;
}

/*  */
.gywm{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gmap{
    width: 8.625rem;
}

.map1{
    height: 9rem;
} 
.red_us{
    width: 100%;
    padding-bottom: 0.125rem;
}
.concact_us{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.concact_us div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 4.125rem;
    height: 3.5375rem;
    border-radius: 17px;
    background-color: #f3f3f3;
    margin: 0 0.3125rem;
    padding: 0.25rem 0;
}
  
.concact_us div img{
    width: 0.5625rem;
    height: auto;
    margin-top: 1rem;
}
.concact_us div p:nth-child(2) {
    font-size: 0.3rem;
    color: #000;
    text-align: center;
    margin-top: 20px;
}

.contactbtm{
    width: 18.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
}

.form_book {
    width: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.form_book form{
    width: 100%;
}

.form_bookTitle {
    overflow: hidden;
    margin-top: 0.125rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.form_bookTitle input {
    height: 0.7125rem;
    display: block;
    float: left;
    padding-left: 0.3125rem;
    box-sizing: border-box;
    width: 48%;
    font-size: 0.2rem;
    color: #656565;
    margin-bottom: 0.25rem;
    border: none;
    background-color: #fafafa;
}

.form_bookTextarea {
    width: 100%;
    height: 4.7375rem;
    font-size: 0.2rem;
    color: #656565;
    border: none;
    background-color: #fafafa;
    padding-left: 0.3125rem;
    padding-top: 0.225rem;
}

.form_bookubmit {
    text-align: center;
    margin-top: 0.25rem;
}

.form_bookubmit input {
    float: left;
    width: 408px;
    height: 36px;
    font-size: 0.2rem;
    color: #fff;
    background-color: #e62129;
    border: none;
}

.subtitle {
    font-size: 23px;
    color: rgb(101, 101, 101);
    font-weight: bold;
    line-height: 1.658;
}

.supplier{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.suppleft{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: #1f3694;
}

.suppleft div{
    width: 8.75rem;
}

.suppleft div p:nth-child(1) {
    font-size: 0.375rem;
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 3;
}

.suppleft div p {
    font-size: 0.25rem;
    color: rgb(255, 255, 255);
    line-height: 3.45;
}
  
.suppright{
    width: 50%;
}

.suppright img{
    width: 100%;
    height: auto;
}

.culture{
    width: 100%;
    padding: 20px 0;
}

.cultures{
    width: 18.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto 0;
}

.culbox {
    position: relative;
    width: 347px;
}

.culbox img{
    width: 100%;
    height: auto;
}

.culbox div{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.culbox div p {
    font-size: 0.2rem;
    color: rgb(255, 255, 255);
    line-height: 3;
    text-align: center;
}

.culbox div p:nth-child(1){
    font-weight: bold;
}

.cooperate{
    width: 100%;
    padding: 20px 0;
}

.cooperates{
    width: 18.25rem;
    margin: 20px auto 0;
}

.coopSwiper img{
    width: 100%;
    height: auto;
}

.fourflex{
    width: 100%;
    background-color: #f4f4f4;
    padding: 20px 0;
}

.fourflexs{
    width: 18.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px auto 0;
}

.fourflexs a{
    position: relative;
    width: 24.5%;
    margin-right: calc(2% / 3);
    margin-bottom: 15px;
}

.fourflexs a:nth-child(4n){
    margin-right: 0;
}

.fourflexs a img{
    width: 100%;
    height: auto;
}

.fourflexs a p{
    width: 100%;
    height: 49px;
    font-size: 16px;
    color: rgb(0, 0, 0);
    line-height: 49px;
    text-align: center;
    background-color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fourflexs a div{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 53px;
    font-size: 16px;
    color: #fff;
    line-height: 53px;
    text-align: center;
    background-color: rgb(58, 81, 173,.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*  */

.inproduct{
    width: 100%;
    background-color: #f4f4f4;
    padding: 20px 0;
}

.inproductop{
    width: 13.25rem;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
}

.inproductop a{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inproductop a img:nth-child(2){
    display: none;
}

.inproductop p {
    font-size: 0.25rem;
    color: rgb(0, 0, 0);
    margin-top: 0.1rem;
}
  
.inproductop a.active img:nth-child(1){
    display: none;
}

.inproductop a.active img:nth-child(2){
    display: block;
}

.inproductop a.active p{
    color: #4457a6;
    font-weight: bold;
}

.incase{
    width: 18.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px auto 0;
}

.incase a{
    width: 24.5%;
    margin-right: calc(2% / 3);
    margin-bottom: 15px;
}

.incase a:nth-child(4n){
    margin-right: 0;
}

.incase p {
    width: 100%;
    height: 68px;
    font-size: 15px;
    color: #000;
    line-height: 68px;
    text-align: center;
    background-color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 10px;
    margin-top: 2px;
}

.incase a div{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: #fff;
}

.incase img{
    width: 100%;
    height: auto;
}

.incase p:hover{
    color: #fff;
    background-color: rgb(206, 0, 34);
}

.proshow{
    width: 100%;
    padding: 20px 0;
}


.proshows{
    width: 17.5rem;
    display: flex;
    justify-content: space-between;
    background-color: #f4f4f4;
    padding: 10px 20px;
    margin: 20px auto 0;
}

.proshwleft{
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.proshwleft img{
    width: 100%;
    height: auto;
}

.prshwright{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.prshwright p {
    font-size: 24px;
    color: rgb(0, 0, 0);
    font-weight: bold;
    line-height: 1.292;
}

.prshwright span {
    font-size: 16px;
    color: rgb(51, 51, 51);
    line-height: 2.3;
    /* display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; */
}

.prshwright a {
    width: 160px;
    height: 50px;
    font-size: 16px;
    text-align: center;
    color: rgb(244, 244, 244);
    line-height: 50px;
    border-radius: 7px;
    background-color: rgb(76, 185, 209);
}

.clastip{
    width: 17.5rem;
    height: 45px;
    background-color: #f4f4f4;
    margin: 10px auto;
}
  
.clastips {
    width: 113px;
    height: 45px;
    font-size: 16px;
    color: rgb(244, 244, 244);
    text-align: center;
    line-height: 45px;
    background-color: rgb(31, 54, 148);
}

.prshwdet{
    width: 17.5rem;
    margin: auto;
}
  
.prshwdet img{
    width: 100%;
    height: auto;
}

.prshwdet table{
    width: 100% !important;
}

.prshwdet table td{
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.innew{
    width: 100%;
    padding: 20px 0;
}

.innews{
    width: 17.5rem;
    margin: auto;
}

.innewtop{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.newtbox {
    width: 8.5rem;
    display: flex;
    flex-direction: column;
    background-color: rgb(244, 244, 244);
}

.newtbox img{
    width: 100%;
    height: auto;
}

.inewcon{
    padding: 0 15px;
}

.nwtitle {
    font-size: 18px;
    color: rgb(0, 0, 0);
    line-height: 1.944;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nwspan {
    min-height: 70px;
    font-size: 14px;
    color: rgb(102, 102, 102);
    line-height: 2.5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.nwbtm{
    width: 100%;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d3d3d3;
    padding: 10px 0;
    margin-top: 10px;
}

.nwbtm p {
    font-size: 27px;
    color: rgb(102, 102, 102);
    line-height: 1.296;
}  

.nwbtm p span {
    font-size: 16px;
} 

.nwbtm a,
.nbocbtm a {
    display: block;
    width: 98px;
    height: 34px;
    font-size: 16px;
    text-align: center;
    line-height: 34px;
    color: rgb(0, 0, 0);
    background-color: rgb(235, 235, 235);
    box-shadow: 0px 2px 0.98px 0.02px rgba(0, 0, 0, 0.07);
    border-radius: 30px;
}

.newboc{
    width: 100%;
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: rgb(238, 236, 236);
    padding: 30px 15px 20px 15px;
    margin-top: 20px;
}

.newboc:hover{
    box-shadow: 0px 6px 15.04px 0.96px rgba(0, 0, 0, 0.17);
}

.nbocleft{
    width: 1.5rem;
    margin-right: 20px;
}

.nbocright{
    width: 15.5rem;
}

.nbocleft p {
    font-size: 27px;
    color: rgb(102, 102, 102);
    line-height: 1.296;
}  

.nbocleft p span {
    font-size: 16px;
}

.nbocbtm{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.newshow{
    width: 100%;
    padding: 20px 0;
}

.new_tip {
    font-size: 16px;
    color: rgb(102, 102, 102);
    text-align: center;
    margin: 30px 0;
}
.newshows{
    width: 17.5rem;
    font-size: 16px;
    color: rgb(0, 0, 0);
    line-height: 3;
    text-align: left;
    margin: auto;
}













