/* banner */
.banner {
    clear: both;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* 手机端横幅默认隐藏（首页用独立手机横幅，后台幻灯片分组2） */
.mobile-banner { display: none; }

.banner .bd {
    width: 100%;
}

.banner .bd ul li a {
    display: block;
    height: 700px;
    font-size: 0;
}

.banner .hd {
    position: absolute;
    left: 0;
    bottom: 20px;
    display: block;
    width: 100%;
    text-align: center;
}

.banner .hd ul {
    display: inline-block;
}

.banner .hd ul li {
    float: left;
    text-align: center;
    overflow: hidden;
    margin: 0 10px;
    width: 9px;
    height: 9px;
    font-size: 0;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 50%;
}

.banner .hd ul li.cur {
    background: #fff;
}

.banner .prev, .banner .next {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -36px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 0;
    transition: all 1s;
}

.banner .prev {
    left: 5%;
    background: url("../images/Index/banner-prev.png")no-repeat center;
    background-size: 100%;
}

.banner .next {
    right: 5%;
    background: url("../images/Index/banner-next.png")no-repeat center;
    background-size: 100%;
}

.banner:hover .prev, .banner:hover .next {
    opacity: 0.5;
    background-color: #fff;
}

.banner .prev:hover , .banner .next:hover {
    opacity: 1;
    background-color: #fff;
}

/* banner end */
/* indexData */
.indexData {
    position: relative;
    overflow: hidden;
    background: url("../images/Index/indexData-bg.jpg") no-repeat center;
    width: 100%;
    height: auto;
    padding: 35px 0 35px;
    box-sizing: border-box;
}

.indexData .item {
    float: left;
    width: 25%;
    text-align: center;
}

.indexData .item h2 {
    position: relative;
    display: inline-block;
    font-family: "Century";
    font-size: 60px;
    color: #333;
    font-weight: normal;
}

.indexData .item h2 span {
    position: absolute;
    right: -20px;
    bottom: 10px;
    color: #fff;
    font-size: 14px;
    width: 27px;
    height: 27px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    background: #00aebb;
}

.indexData .item h2 em {
    position: relative;
    z-index: 2;
}

.indexData .item p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.indexData .item i {
    display: block;
    margin: 24px auto 0;
    width: 30px;
    height: 1px;
    background: #00AEBB;
}

/* indexData end */


    /* ===== Ã¥â€¦Â³Ã¤ÂºÅ½Ã¦Ë†â€˜Ã¤Â»Â¬ ===== */
    .about {
      padding: 100px 0;
      background: url("../images/Index/aboutbg.jpg") no-repeat center;
      background-size: cover;
    }
    .about-grid {
      overflow: hidden;
      margin-top: 40px;
    }
    .about-content {
      float: left;
      width: 53%;
    }
    .about-img {
      float: right;
      width: 42%;
    }
    @supports (display: grid) {
      .about-grid {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: center;
      }
      .about-content {
        float: none;
        width: auto;
      }
      .about-img {
        float: none;
        width: auto;
      }
    }
    .about-content .en-title {
      font-size: 38px;
      color: #a7dae0;
      letter-spacing: 3px;
      text-transform: uppercase;
      font-weight: bold;
      margin-bottom: 10px;
      font-style: italic;
      display: block;
    }
    .about-content h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 25px;
      color: #00aebb;
    }
    .about-content p {
      color: #666;
      line-height: 1.9;
      margin-bottom: 15px;
      font-size: 15px;
    }
    .about-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 30px;
      background: #4ecdc4;
      color: white;
      border-radius: 3px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s ease;
    }
    .about-btn:hover {
      background: #008c9e;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(61,189,180,0.3);
    }
    .about-img {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    }
    .about-img img {
      width: 100%;
      height: 380px;
      object-fit: cover;
    }
    .about-img::before {
      content: '';
      position: absolute;
      top: -15px;
      right: -15px;
      width: 100%;
      height: 100%;
      border: 2px solid #4ecdc4;
      border-radius: 4px;
      z-index: -1;
    }
    .about-tabs {
      overflow: hidden;
      width: 70%;
      margin-top: 30px;
    }
    .about-tabs > a {
      float: left;
      width: calc(50% - 7.5px);
      margin-right: 15px;
      margin-bottom: 15px;
      display: block;
    }
    .about-tabs > a:nth-child(2n) {
      margin-right: 0;
    }
    @supports (display: grid) {
      .about-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
      }
      .about-tabs > a {
        float: none;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
      }
    }
    .about-tab {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 13px 13px;
      background: white;
      border-radius: 4px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 15px;
      font-weight: 500;
      color: #333;
      border: 1px solid #e4e4e4;
    }
    .about-tab:hover {
      border-color: #4ecdc4;
      color: #4ecdc4;
    }
    .about-tab:hover {
      background: #4ecdc4;
      color: white;
      border-color: #4ecdc4;
    }
    .about-tab.active .tab-arrow {
      background: rgba(255,255,255,0.2);
    }
    .about-tab.active .tab-arrow svg {
      stroke: white;
    }
    .tab-arrow {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #f5f7fa;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      -ms-flex-pack: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    .tab-arrow svg {
      width: 14px;
      height: 14px;
      stroke: #999;
      stroke-width: 2;
      fill: none;
    }




/* product */
.product {
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
    background: #fff;
}

.product .product-grid {
  
    margin-top: 55px;
}
.product .product-grid .item {
    float: left;
    width: calc(25% - 15px);
    margin-right: 20px;
    margin-bottom: 24px;
}
.product .product-grid .item:nth-child(4n) {
    margin-right: 0;
}
@supports (display: grid) {
    .product .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px 20px;
    }
    .product .product-grid .item {
        float: none;
        width: auto;
        margin-right: 0;
        margin-bottom: 0;
    }
}

.product .product-grid .item {
    position: relative;
    text-align: center;
}

.product .product-grid .item .pic {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #dedede;
    /* border-radius: 8px; */
    background: #f5f5f5;
}

.product .product-grid .item .pic img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s;
}

@supports (aspect-ratio: 1 / 1) {
    .product .product-grid .item .pic {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 1 / 1;
    }
    .product .product-grid .item .pic img {
        position: static;
    }
}

.product .product-grid .item a > p {
    margin-top: 14px;
    font-size: 16px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product .product-grid .item:hover .pic img {
    transform: scale(1.08);
}


/* product end */
/* series */
.series {
    position: relative;
    overflow: hidden;
    padding: 40px 0 0;
    background: #ffff;
}

.series .series-con {
    overflow: hidden;
    margin-top: 35px;
    background: url("../images/Index/series-bg.jpg") no-repeat center;
    width: 100%;
    height: 465px;
    background-size: cover;
}

.series .series-list {
    margin-top: 96px;
    /* float: right; */
    display: flex;
    margin: 56px auto 0;
    /* width: 1090px; */
    justify-content: space-between;
}

.series .series-list .item {
    position: relative;
    text-align: center;
    float: left;
    /* margin-right: 22px; */
    width: 155px;
    height: 340px;
    background: url("../images/Index/y1.png") no-repeat center 200px #f4f4f4;
    border-radius: 20px;
}

.series .series-list .item:nth-of-type(1) {
    animation: fadeinR .8s ease-out backwards;
}

.series .series-list .item:nth-of-type(2) {
    animation: fadeinR 1s ease-out backwards;
}

.series .series-list .item:nth-of-type(3) {
    animation: fadeinR 1.2s ease-out backwards;
}

.series .series-list .item:nth-of-type(4) {
    animation: fadeinR 1.4s ease-out backwards;
}



.series .series-list .item:nth-of-type(5) {
    animation: fadeinR 1.6s ease-out backwards;
}

.series .series-list .item:nth-of-type(6) {
    animation: fadeinR 1.8s ease-out backwards;
}

.series .series-list .item:nth-of-type(7) {
    animation: fadeinR 2s ease-out backwards;
}

.series .series-list .item:nth-of-type(8) {
    animation: fadeinR 2.2s ease-out backwards;
}



.series .series-list .item:nth-of-type(9) {
    animation: fadeinR 2.4s ease-out backwards;
}
















.series .series-list .item:after {
    /* content: ''; */
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: #00aebb;
}

.series .series-list .item:last-of-type {
    margin-right: 0;
}

.series .series-list .item em {
    margin-top: 25px;
    display: none;
    font-size: 30px;
    color: #333;
    font-family: "Century";
}

.series .series-list .item i {
    display: block;
    margin: 5px auto 45px;
    width: 24px;
    height: 2px;
    display: none;
    background: #d6d6d6;
}

.series .series-list .item span {
    display: block;
    margin: 60px auto 20px;
    /* width: 85px; */
    /* height: 85px; */
    /* border-radius: 50%; */
    /* border: 1px solid #e8e8e8; */
    box-sizing: border-box;
}

.series .series-list .item span img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.series .series-list .item h2 {
    font-size: 18px;
    color: #333;
    font-weight: normal;
    margin-top: 40px;
}

.series .series-list .item p {
    /* margin: 90px auto 0; */
    /* background: url("../images/Index/next-icon01.png") no-repeat center; */
    /* width: 12px; */
    line-height: 2;
    /* height: 12px; */
    /* background-size: 100%; */
}

.series .series-list .item:hover {
      background: url("../images/Index/y2.png") no-repeat center 200px #73d4db;
}

.series .series-list .item:hover em,.series .series-list .item:hover h2 {
    color: #fff;
}

.series .series-list .item:hover span img {
    filter: contrast(0%) brightness(200%);
    -webkit-filter: contrast(0%) brightness(200%);
    -moz-filter: contrast(0%) brightness(200%);
    -ms-filter: contrast(0%) brightness(200%);
    -o-filter: contrast(0%) brightness(200%);
}

.series .series-list .item:hover p { color:#fff;
}

.series .series-list .item:hover:after {
    background: #fff;
}

/* series end */
/* indexMap */
.indexMap {
    padding-top: 80px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background: url("../images/Index/indexMap-bg.jpg?1") no-repeat center;
    width: 100%;
    height: 890px;
    background-size: cover;
}

.indexMap img {
    display: block;
    width: 100%;
}


.indexMap-con {
    margin-top: 20px;
    overflow: hidden;
    animation: fadeinT 1.5s ease-out backwards;
}

@media (max-width: 1500px) {
    .indexMap {
        padding-top: 34px;
        height: 705px;
    }
}

/* indexMap end */
/* adv */
.adv {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 85px 0 45px;
}

.adv .wrap-tit h2 span {
    margin-left: 0;
}

.adv .adv-con {
    margin-top: 50px;
    overflow: hidden;
}

.adv .adv-con .item {
    position: relative;
    float: left;
    width: 330px;
    height: 570px;
    padding-left: 22px;
    box-sizing: border-box;
    margin-right: 26px;
    border: 1px solid #e4e4e4;
}

.adv .adv-con .item .pic {
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
}

.adv .adv-con .item .pic img {
    display: block;
    width: 100%;
}

.adv .adv-con .item:nth-of-type(4n) {
    margin-right: 0;
}

.adv .adv-con .item i {
    display: block;
    margin: 30px 0 42px;
    width: 45px;
    height: 30px;
}

.adv .adv-con .item:nth-of-type(even) .pic {
    top: 0;
    left: 0;
}

.adv .adv-con .item:nth-of-type(even) .tit {
    position: absolute;
    top: 282px;
}

.adv .adv-con .item h2 {
    font-size: 22px;
    color: #333;
    font-weight: normal;
}

.adv .adv-con .item p {
    margin: 26px 0 42px;
    width: 95%;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1500px) {
    .adv .adv-con .item {
        width: 286px;
        height: 557px;
        padding-left: 16px;
        margin-right: 18px;
    }

    .adv .adv-con .item p {
        height: 85px;
    }

    .adv .adv-con .item .pic {
        width: 268px;
    }

    .adv .adv-con .item:nth-of-type(even) .tit {
        top: 247px;
    }
}

/* adv end */
/* attestation */
.attestation {
    position: relative;
    overflow: hidden;
    padding-top: 45px;
    background: #fff;
    min-width: 1200px;
}

.attestation-con {
    /* overflow: hidden; */
    margin-top: 40px;
}

.attestation-con .attestation-list {
    overflow: hidden;
    width: 100%;
}

.attestation-con .attestation-list .item {
    float: left;
    width: 50%;
    height: 435px;
}

.attestation-con .attestation-list .item .pic {
    float: left;
    width: 50%;
    height: 435px;
}

.attestation-con .attestation-list .item .pic img {
    width: 100%;
    display: block;
}

.attestation-con .attestation-list:nth-of-type(1) .item .tit {
    padding: 50px 35px;
    box-sizing: border-box;
    float: left;
    background: url("../images/Index/attestation-col01.jpg")no-repeat center;
    width: 100%;
    height: 435px;
}

.attestation-con .attestation-list:nth-of-type(2) .item .tit {
    padding: 50px 35px;
    box-sizing: border-box;
    float: left;
    background: url("../images/Index/attestation-col02.jpg")no-repeat center;
    width: 100%;
    height: 435px;
}

.attestation-con .attestation-list .item .tit h2 {
    font-size: 26px;
    font-weight: normal;
    color: #333;
    font-family: "PingFang-Bold";
}

.attestation-con .attestation-list .item .tit em {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

.attestation-con .attestation-list .item .tit p {
    line-height: 1.75;
    font-size: 16px;
    color: #666;
    font-family: "PingFang-Bold";
}

.attestation-con .attestation-list .item .tit a {
    margin-top: 50px;
    display: block;
    width: 118px;
    height: 40px;
    line-height: 38px;
    font-size: 16px;
    color: #fefefe;
    background: #5a606f;
    border-radius: 20px;
    text-align: center;
}

.attestation-con .attestation-list .item .tit a:hover {
    background: #00aebb;
}

.attestation-con .attestation-list .item .tit span {
    display: block;
    line-height: 1.75;
    font-size: 16px;
    color: #666;
    font-family: "PingFang-Bold";
    margin-bottom: 15px;
}

@media (max-width: 1500px) {
    .attestation-con .attestation-list .item .tit {
        padding: 40px 25px;
    }
}

/* attestation end */
/* partner */
.partner {
    padding-top: 70px;
    box-sizing: border-box;
    position: relative;
    background: url("../images/Index/partner-bg.jpg") no-repeat center 180px #fff;
    width: 100%;
    height: 454px;
    background-size: cover;
}

.partner-con {
    margin-top: 65px;
    overflow: hidden;
}

.partner-con .item {
    position: relative;
    float: left;
    width: 205px;
    margin-right: 173px;
}

.partner-con .item:last-of-type {
    margin-right: 0;
}

.partner-con .item .pic {
    width: 205px;
    height: 205px;
    border-radius: 50%;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    background: #fff;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-con .item .pic img {
    display: block;
    margin: 45px auto;
    width: 100%;
}

.partner-con .item .tit {
    opacity: 0;
    transition: all .8s;
    padding: 35px 0;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 178px;
    height: 178px;
    display: -ms-flexbox;
    display: flex;
    border-radius: 50%;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #00aebb;
    overflow: hidden;
    text-align: center;
}

.partner-con .item .tit p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.partner-con .item:hover .tit {
    opacity: 1;
}

@media (max-width: 1500px) {
    .partner-con .item {
        margin-right: 43px;
    }
}

/* partner end */
/* server */
.server {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: url(../images/Index/ibg.jpg) no-repeat 50% 180px #fff;
    box-sizing: border-box;
}



@media (max-width:1500px) {
    .server .item { width: 110px; margin-right: 60px;}
}

.server .server-con {
    margin-top: 85px;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.server .item {
    float: left;
    width: 120px;
    /* margin-right: 61px; */
}
.server .item img{border: 6px solid #2c2c2c;border-radius:50%;padding: 11px;    filter: contrast(0%) brightness(70%);
}
.server .item:hover img{border: 6px solid #00aebb;border-radius:50%;padding: 11px;    filter:none;
}

.server .item:last-of-type {
    margin-right: 0;
}

.server .item em {
    position: relative;
    font-size: 60px;
    color: #333;
    font-family: "Century";
}

.server .item em:after {
    content: '';
    display: block;
    position: absolute;
    right: -16px;
    bottom: 13px;
    width: 7px;
    height: 7px;
    background: linear-gradient(0deg, #6637b4 0%, #b652e0 100%), linear-gradient(#00aebb, #00aebb);
    border-radius: 50%;
}

.server .item i {
    display: block;
    margin: 25px 0 18px;
    width: 100%;
    height: 1px;
    background: #00AEBB;
}

.server .item p {
    font-size: 16px;
    color: #333;
    display: block;
    line-height: 2;
    text-align: center;
}

.server .item:hover em,.server .item:hover p {
    color: #00aebb;
}

.server .item:hover i {
    background: #00aebb;
}

@media (max-width: 1500px) {
    .server .item {
        width: 120px;
        /* margin-right: 31px; */
    }
}

/* server end */
/* indexForm */
.indexForm {
    position: relative;
    overflow: hidden;
    background: url("../images/Index/indexForm-bg.jpg") no-repeat center;
    width: 100%;
    height: 605px;
    background-size: cover;
}

.indexForm .content > p {
    margin-top: 105px;
    overflow: hidden;
    font-size: 24px;
    color: #333;
}

.indexForm .content > h2 {
    padding-top: 5px;
    font-size: 36px;
    color: #333;
    font-weight: normal;
}

.indexForm .indexForm-input {
    margin-top: 20px;
    overflow: hidden;
}

.indexForm .indexForm-input .indexForm-le {
    float: left;
    width: 500px;
}

.indexForm .indexForm-input .indexForm-le .item {
    background: #fff;
    position: relative;
    outline: none;
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    margin-bottom: 12px;
}

.indexForm .indexForm-input .indexForm-le .item input {
    display: block;
    width: 90%;
    font-size: 14px;
    height: 100%;
    line-height: 100%;
    padding-left: 15px;
    box-sizing: border-box;
    border: none;
}

.indexForm .indexForm-input .indexForm-le .item:nth-of-type(1):after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 14px;
    background: url("../images/Index/indexForm-icon01.png") no-repeat center;
    width: 30px;
    height: 30px;
}

.indexForm .indexForm-input .indexForm-le .item:nth-of-type(2):after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 14px;
    background: url("../images/Index/indexForm-icon02.png") no-repeat center;
    width: 30px;
    height: 30px;
}

.indexForm .indexForm-input .indexForm-le .item:nth-of-type(3):after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 14px;
    background: url("../images/Index/indexForm-icon03.png") no-repeat center;
    width: 30px;
    height: 30px;
}

.indexForm .indexForm-input .indexForm-le a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background: #00aebb;
}

.indexForm .indexForm-input .indexForm-ri {
    margin-top: 70px;
    float: left;
    margin-left: 50px;
}

.indexForm .indexForm-input .indexForm-ri p {
    font-size: 14px;
    color: #666;
}

.indexForm .indexForm-input .indexForm-ri em {
    font-size: 24px;
    color: #333;
    font-family: "DIN Medium";
}

.indexForm .indexForm-input .indexForm-ri span {
    display: block;
    margin: 20px 0 10px;
    width: 117px;
}

/* indexForm end */
/* news */
.news {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding-bottom: 80px;
}

.news .news-con {
    overflow: hidden;
}

.news-con .news-menu {
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 50px;
}

.news-con .news-menu .wrap-tit {
    float: left;
}

.news-con .news-menu h2 {
    font-size: 36px;
}

.news-con .news-menu ul {
    float: right;
    margin-top: 17px;
}

.news-con .news-menu ul li {
    float: left;
    font-family: "PingFang-Bold";
    font-size: 18px;
    margin-left: 30px;
}

.news-con .news-menu li a {
    position: relative;
    display: block;
    font-size: 20px;
    color: #333;
}

.news-con .news-menu li.cur a,.news-con .news-menu li:hover a {
    color: #00aebb;
}

.news-con .news-main {
    overflow: hidden;
}

.news-con .news-list {
    overflow: hidden;
    width: 100%;
}

.news-con .news-list .item {
    float: left;
    width: 32.3333%;
    margin-right: 1.5%;
}

.news-con .news-list .item:last-of-type {
    margin-right: 0;
}

.news-con .news-list .item .pic {
    width: 100%;
    overflow: hidden;
}

.news-con .news-list .item .pic img {
    width: 100%;
    display: block;
    transition: all 1s;
}

.news-con .news-list .item:hover img {
    transform: scale(1.1);
}

.news-con .news-list .item .pic-tit {
    overflow: hidden;
    padding: 0 15px;
    box-sizing: border-box;
    background: #fff;
    margin: -70px auto 0;
    width: 90%;
    position: relative;
    z-index: 3;
}

.news-con .news-list .item .pic-tit em {
    margin-top: 25px;
    display: block;
    font-size: 16px;
    color: #999;
}

.news-con .news-list .item .pic-tit h2 {
    margin: 10px 0 25px;
    font-size: 18px;
    color: #333;
    font-family: "PingFang-Bold";
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.news-con .news-list .item .pic-tit h2 a {
    color: #333;
}

.news-con .news-list .item .pic-tit p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-con .news-list .item .pic-tit h2:hover a {
    color: #00aebb;
}

.news-con .news-list .item .news-btn {
    margin: 45px auto 0;
    text-align: center;
    font-family: "PingFang-Bold";
    border: 1px solid #e6e6e6;
    box-sizing: border-box;
    display: block;
    width: 225px;
    height: 47px;
    line-height: 47px;
    font-size: 14px;
    color: #333;
}

.news-con .news-list .item .news-btn i {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    margin-top: -4px;
    background: url("../images/Index/next-icon01.png") no-repeat center;
    width: 12px;
    height: 12px;
    background-size: 100%;
}

.news-con .news-list .item .news-btn:hover a {
    background: #00aebb;
    display: block;
    border: 1px solid #00aebb;
    color: #fff;
}

.news-con .news-list .item .news-btn:hover i {
    background: url("../images/Index/next-icon02.png") no-repeat center;
}

/* news end */