@import "common.less";

//banner
.banner{
  border-top: 5px solid @red;
}
#swiper-banner {
  margin: 0 auto;
  a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    .banner_img{
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      img {
        max-width: none;
        height: 210px;
      }
    }

  }
  .swiper-pagination{
    bottom: 3px;
  }

  .swiper-pagination .swiper-pagination-bullet {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    background: @white;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

  .swiper-pagination .swiper-pagination-bullet-active {
    background: @red !important;
    border-radius: 50%;
  }


  @media (min-width: @min_width) {
    position: relative;
    a{
      .banner_img{
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        img {
          max-width: none;
          height: 470px;
        }
      }
      .banner_txt {
        position: absolute;
        left: 0;
        right: 0;
        z-index: 1;
        bottom: 0;
        background-color: rgba(0,0,0,0.8);
        height: 68px;
        line-height: 68px;
        padding-left: 10%;
        span{
          color: @white;
          font-size: 26px;
        }
      }
    }

    .swiper-pagination{
      bottom: 22px;
      width: auto;
      left: auto;
      right: 10%;
    }

    .swiper-pagination .swiper-pagination-bullet{
      margin: 0 8px;
      width: 13px;
      height: 13px;
    }

  }
}

.wrap{
  .head{
    margin: 0px auto;
    padding: 25px 0 20px 0;
    text-align: center;
    .head-title {
      width: 100%;
      a{
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 20px;
        text-decoration: none;
        .ch {
          font-size: 20px;
          color: @020202;
          text-align: right;
          flex: 1;
          width: 50%;
          margin-right: 10px;
        }
        .en {
          font-family: Arial;
          font-size: 20px;
          color: @red;
          margin-left: 10px;
          flex: 1;
          width: 50%;
          text-align: left;
        }
      }
    }
    .head-bottom {
      width: 100%;
      height: 6px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
      img{
        height: 6px;
        display: flex;
        margin: 0;
        padding: 0;
      }
    }
  }
  @media (min-width: @min_width) {
    .head{
      margin: 0px auto;
      padding: 35px 0 30px 0;
    }
  }
}

.news-wrap{
  .con{
    padding: 0 15px;
    .l{
      #swiper-news {
        margin: 0 auto;
        a{
          width: 100%;
          height: 100%;
          text-decoration: none;
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
          .img{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            img {
              max-width: none;
              min-width: 100%;
              max-height: 215px;
              display: block;
            }
          }
          .txt{
            position: absolute;
            height: 50px;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 10px;
            z-index: 1;
            background-color: fade(@black,70%);
            h3{
              font-size: 15px;
              line-height: 15px;
              margin: 0;
              padding: 0;
              font-weight: normal;
              color: @white;
              text-align: center;
            }
          }

        }
        .swiper-pagination{
          bottom: 0px;
        }

        .swiper-pagination .swiper-pagination-bullet {
          -webkit-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
          background: @white;
          opacity: 1;
          width: 10px;
          height: 10px;
          margin: 0 4px;
        }

        .swiper-pagination .swiper-pagination-bullet-active {
          background: @red !important;
          width: 10px;
          border-radius: 50%;
        }


        @media (min-width: @min_width) {
          position: relative;
          a{
            .img{
              display: flex;
              justify-content: center;
              align-items: center;
              img {
                max-width: none;
                min-width: 100%;
                max-height: 275px;
                display: block;
              }
            }
          }

          .swiper-pagination{
            bottom: 2px;
          }

          .swiper-pagination .swiper-pagination-bullet{
            width: 10px;
            height: 10px;
            margin: 0 5px;
          }
        }
      }
    }
    .r{
      ul{
        padding: 5px 0;
        margin: 0;
        li{
          line-height: 35px;
          list-style: none;
          height: 35px;
          position: relative;
          padding-left: 16px;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          &:before{
            position: absolute;
            content: "";
            display: inline-block;
            width: 5px;
            height: 5px;
            left: 0;
            top: calc(~"50% - 3px");
            border-radius: 50%;
            background-color: @red;
          }
          a{
            color: @black;
            font-size: 15px;
            font-weight: @font_weight;
            text-overflow: ellipsis;
            -moz-text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            display: block;
            -webkit-box-orient: vertical;
          }
          span{
            color: @c7c7c7;
            font-size: 14px;
            margin-left: 25px;
            min-width: 140px;
          }
          img{
            margin-left: 23px;
            width: 15px;
          }
        }
      }
    }
  }
  @media (max-width: 767px) {
    .con{
      .r{
        ul{
          li{
            &:nth-last-child(1),&:nth-last-child(2){
              display: none;
            }
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    .con{
      padding: 0;
      &>div{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 36px 0 44px 0;
      }
      .l{
        width: 440px;
        height: 275px;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .r{
        width: calc(~"100% - 460px");
        margin-left: 20px;
        ul{
          padding: 0;
          li{
            padding-left: 22px;
          }
        }
      }
    }
  }
}

.video-wrap{
  .con{
    padding-bottom: 9px;
    #swiper-video{
      .swiper-slide{
        width: 64%;
        margin-right: 25px;
        a{
          text-decoration: none;
          .img{
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            .transparent {
              position: absolute;
              left: 0;
              top: 0;
              bottom: 0;
              right: 0;
              background-color: fade(@black,70%);
              z-index: 1;
              transition: all .6s ease 0s;
              opacity: 1;
            }
            .icon {
              position: absolute;
              left: calc(~"50% - 23px");
              top: calc(~"50% - 23px");
              width: 46px;
              height: 46px;
              background: url("@{images}common/videos02.png") 0px 0px no-repeat;
              z-index: 2;
              transition: all .6s ease 0s;
              opacity: 1;
            }
            img{
              height: 150px;
              min-width: 100%;
              max-width: none;
              transform: translateZ(0px);
              transition: transform 0.2s ease 0s;
              object-fit: cover;
            }
          }
          .text{
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 22px 0;
            img{
              height: 12px;
              width: 20px;
            }
            h1{
              margin: 0;
              margin-left: 10px;
              color: @0e0e0d;
              font-size: 16px;
              line-height: 16px;
              font-weight: normal;
              transition: all .3s;
              max-width: 75%;
            }
          }
          &:hover,&:active{
            .img{
              .transparent {
                opacity: 0;
              }
              .icon {
                opacity: 0;
              }
              img{
                transform: scale(1.1, 1.1);
                transition: transform 0.6s ease 0s;
              }
            }
            .text{
              h1{
                color: @red;
              }
            }
          }
        }
      }
    }
  }

  @media (min-width: @min_width) {
    .con{
      padding-bottom: 19px;
      #swiper-video{
        .swiper-slide{
          width: 274px;
          margin-right: 14px;
          &:last-child{
            margin-right: 0;
          }
          a{
            .img{
              img{
                height: 170px;
              }
            }
            .text{
              padding: 13px 0;
              img{
                height: 13px;
                width: 22px;
              }
              h1{
                margin: 0;
                margin-left: 12px;
                color: @0e0e0d;
                font-size: 16px;
                line-height: 16px;
              }
            }
          }
        }
      }
    }
  }
  @media screen and (min-width:@min_width) and (max-width:1024px) {
    .con{
      #swiper-video{
        .swiper-slide{
          width: calc(~"25% - 10.5px");
          a{
            .img{
              img{
                height: 150px;
              }
            }
          }
        }
      }
    }
  }
}

.about-wrap{
  background-image: none;
  .con{
    .content{
      padding: 24px 15px;
      font-size: 15px;
      color: @black;
      text-indent: 2em;
      line-height: 28px;
      background-image: url('@{images}companybg.jpg');
      background-size: auto 100%;
      background-position: top center;
      background-repeat: no-repeat;
      a{
        color: @black;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        -webkit-box-orient: vertical;
      }
    }
    .about-list{
      margin: 0;
      padding: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      .about-videos{
        width: 100%;
        height: 240px;
        video{
          height: 240px;
          object-fit: fill;
        }
      }
    }
  }
  @media (min-width: @min_width) {
    background-image: url('@{images}companybg.jpg');
    background-size: 100% 100%;
    background-position: top center;
    background-repeat: no-repeat;
    .con{
      .content{
        padding: 0 0 24px 0;
        font-size: 14px;
        color: @black;
        text-indent: 2em;
        line-height: 25px;
        background-image: none;
        a{
          -webkit-line-clamp: 3;
        }
      }
      .about-list{
        margin: 0 auto;
        padding: 0 0 26px 0;
        .about-videos{
          width: 273px;
          height: 206px;
          video{
            height: 206px;
            object-fit: fill;
          }
        }
        .about-img{
          width: 329px;
          height: 206px;
          .swiper-slide{
            img{
              height: 206px;
            }
          }


          .swiper-pagination .swiper-pagination-bullet {
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
            background: @white;
            opacity: 1;
            width: 10px;
            height: 10px;
            margin: 0 5px;
          }

          .swiper-pagination .swiper-pagination-bullet-active {
            background: @red !important;
            border-radius: 50%;
          }
          .swiper-pagination {
            bottom: 2px;
          }

          margin-left: 30px;
        }
        .about-qr{
          width: 218px;
          height: 206px;
          margin-left: 30px;
        }
      }
    }
  }
}

.b2-about-wrap{
  .con{
    .content{
      padding: 24px 15px;
      font-size: 15px;
      color: @black;
      //text-indent: 2em;
      line-height: 35px;
      a{
        color: @black;
      }
    }
  }
  @media (min-width: @min_width) {
    .con{
      .content{
        padding: 0 0 24px 0;
        font-size: 16px;
        color: @black;
      }
      .img-list{
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        li{
          margin: 0 5px;
          width: calc(~"50% - 10px");
          list-style: none;
          .img{
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            width: 100%;
            img{
              height: 340px;
              min-width: 100%;
              max-width: none;
            }
          }

          .txt{
            font-size: 14px;
            line-height: 60px;
            color: @black;
            text-align: center;
          }
        }
      }
    }
  }
}

.product-wrap{
  .con{
    padding-bottom: 7px;
    .swiper-slide{
      width: 64%;
      margin-right: 25px;
      a{
        text-decoration: none;
        .img{
          display: flex;
          justify-content: center;
          align-items: center;
          overflow: hidden;
          img{
            height: 150px;
            max-width: none;
          }
        }
        .text{
          display: flex;
          justify-content: center;
          align-items: flex-end;
          padding: 22px 0;
          img{
            height: 16px;
          }
          h1{
            margin: 0;
            margin-left: 10px;
            color: @0e0e0d;
            font-size: 16px;
            line-height: 16px;
            font-weight: normal;
            max-width: 75%;
          }
        }
        &:hover,&:active{
          .text{
            h1{
              color: @red;
            }
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    .con{
      padding-bottom: 19px;
      .swiper-slide{
        width: 274px;
        margin-right: 14px;
        &:last-child{
          margin-right: 0;
        }
        a{
          .img{
            img{
              height: 170px;
            }
          }
          .text{
            padding: 13px 0;
            img{
              height: 14px;
            }
            h1{
              margin: 0;
              margin-left: 12px;
              color: @0e0e0d;
              font-size: 16px;
              line-height: 16px;
            }
          }
        }
      }
    }
  }
  @media screen and (min-width:@min_width) and (max-width:1024px) {
    .con{
      .swiper-slide{
        width: calc(~"25% - 10.5px");
        a{
          .img{
            img{
              height: 150px;
            }
          }
        }
      }
    }
  }
}

.rainbow_flower{
  .top{
    padding: 0 15px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    &:after{
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      z-index: 1;
      width: 100%;
      height: 1px;
      background-color: #d4d4d4;
      transform: scaleY(0.5);
      @media (min-width: @min_width) {
        transform: scaleY(1);
      }
    }
    .img{
      width: 77px;
    }
    .txt{
      position: relative;
      overflow: hidden;
      font-size: 16px;
      line-height: 35px;
      color: #444;
      height: 105px;
      p{
        padding: 0;
        margin: 0;
        color: #444;
        display: inline;
        text-indent:2em;
      }
      .more{
        position: absolute;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, fade(@white,0%) 0%, fade(@white,100%) 20%);
        padding-left: 30px;
        z-index: 1;
        a{
          color: @red;
        }
      }
    }

    .all-download{
      background-color: @red;
      line-height: 40px;
      font-size: 16px;
      color: @white;
      padding: 0 35px;
      margin-top: 50px;
    }
  }

  ul{
    margin:0;
    padding: 0;
    padding-bottom: 25px;
    li{
      list-style: none;
      padding: 0 40px;
      margin-top: 25px;
      a{
        display: flex;
        justify-content: flex-start;
        align-items: center;
        text-decoration: none;
        .img{
          padding-right: 5px;
          padding-bottom: 5px;
          position: relative;
          &:after{
            position: absolute;
            content: "";
            right: 0;
            bottom:0;
            z-index: 1;
            background-color: #d4d4d4;
            width: calc(~"100vw * 0.36");
            height: calc(~"100vw * 0.52");
          }
          img{
            border: 1px solid #d4d4d4;
            z-index: 2;
            width: calc(~"100vw * 0.36");
            height: calc(~"100vw * 0.52");
            position: relative;
          }
        }
        .txt{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-flow: column;
          flex:1;
          h3{
            margin: 0;
            padding: 0;
            font-size: 34px;
            line-height: 34px;
            color: @red;
            text-align: center;
            width: 100%;
            display: block;
            position: relative;
            padding-bottom: 7px;
            &:after{
              position: absolute;
              bottom: 0;
              left: 0;
              content: "";
              z-index: 1;
              width: 100%;
              height: 1px;
              background-color: #d4d4d4;
              transform: scaleY(0.5);
              @media (min-width: @min_width) {
                transform: scaleY(1);
              }
            }
          }
          h4{
            font-size: 15px;
            color: @gray3a;
            text-align: center;
          }
          .download{
            background-color: @red;
            line-height: 28px;
            font-size: 15px;
            color: @white;
            width: 90px;
            margin-top: 22px;
            text-align: center;
          }
        }
      }
    }
  }

  @media (min-width: @min_width) {
    .top{
      padding: 0 54px;
      margin-top: 20px;
      .img{
        width: 153px;
      }
      .txt{
        overflow: visible;
        font-size: 16px;
        line-height: normal;
        height: auto;
        p{
          display: block;
          margin: -9px 0;
          line-height: 40px;
        }
      }

      .all-download{
        background-color: @red;
        line-height: 37px;
        font-size: 16px;
        color: @white;
        padding: 0 30px;
        margin-top: 40px;
      }
    }

    ul{
      margin:0;
      padding: 0 55px;
      padding-bottom: 55px;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      li{
        list-style: none;
        padding: 40px 0;
        margin: 0;
        width: calc(~"33.33333% - 50px");
        background: url("@{images}sub/dashed.png");
        background-position: bottom;
        background-repeat: repeat-x;

        &:nth-child(3n+2){
          width: calc(~"33.33333% + 100px");
          padding: 40px 75px;
        }
        a{
          display: flex;
          justify-content: flex-start;
          align-items: center;
          text-decoration: none;
          .img{
            padding-right: 0;
            padding-bottom: 0;
            position: relative;
            &:after{
              display: none;
            }
            img{
              border: 1px solid #d4d4d4;
              z-index: 2;
              width: 140px;
              height: 208px;
              position: relative;
            //   object-fit: cover;
            }
          }
          .txt{
            h3{
              font-size: 24px;
              line-height: 36px;
              padding-bottom: 7px;
            }
            h4{
              font-size: 16px;
              color: @gray3a;
            }
            .download{
              line-height: 30px;
              font-size: 15px;
              width: 90px;
              margin-top: 22px;
            }
          }
        }
      }
    }
  }
}

.box{
  background-color: @white;
  margin: 7px auto;
  @media (min-width: @min_width) {
    margin: 15px auto;
  }
}
.more{
  padding: 15px;
  padding-top: 0;
  text-align: center;
  a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: @red;
    font-size: 20px;
    line-height: 20px;
    color: white;
  }
}

//pc版栏目
.sub_pc_title{
  @media (min-width: @min_width) {
    border-top: 6px solid @red;
    border-bottom: 1px solid @e7e7e7;
    &>div{
      display: flex;
      justify-content: space-between;
      align-items: center;
      .l{
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        h1{
          padding: 0;
          margin: 0;
          font-size: 25px;
          font-weight: @font_weight;
          line-height: 25px;
          color: @black;
        }
        h3{
          padding: 0;
          margin: 0;
          margin-left: 10px;
          font-size: 20px;
          font-weight: @font_weight;
          line-height: 20px;
          color: @red;
        }
      }
      .r{
        ul{
          margin: 0;
          padding: 0;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          position: relative;
          &:after{
            position: absolute;
            content: "";
            left: 0;
            height: 2px;
            width: 60px;
            background-color: @red;
            bottom: -1px;
            z-index: 1;
          }
          li{
            height: 90px;
            line-height: 62px;
            list-style: none;
            padding: 0;
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            font-size: 14px;
            color: @black;
            a{
              color: @black;
              display: block;
              width: auto;
              position: relative;
              padding-right: 20px;
              &:after{
                position: absolute;
                content: ">";
                display: flex;
                justify-content: center;
                align-items: center;
                right: 6px;
                height: 14px;
                top: calc(~"50% - 8px");
                z-index: 1;
              }
            }
            &:last-child{
              a{
                padding-right: 0px;
                &:after{
                  display: none;
                }
              }
            }
          }
        }
      }
      .r2{
        ul{
          margin: 0;
          padding: 0;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          li{
            height: 90px;
            list-style: none;
            padding: 0 25px;
            position: relative;
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            &:last-child{
              padding-right: 0;
            }
            &:after{
              position: absolute;
              content: "";
              left: 10px;
              bottom: 39px;
              width: 5px;
              height: 5px;
              line-height: 100%;
              z-index: 1;
              display: flex;
              justify-content: center;
              align-items: center;
              background-color: @red;
              border-radius: 50%;
            }
            a{
              line-height: 85px;
              color: @black;
              font-size: 16px;
              display: block;
              width: auto;
              text-decoration: none;
            }
            &.active,&:hover{
              a{
                color: @red;
              }
            }
          }
        }
      }
    }
  }
}

//手机版栏目
.sub_m_title{
  margin-top: 23px;
  a{
    text-decoration: none;
    h3{
      margin: 0;
      padding: 0;
      color: @red;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
    }
    .border_bg{
      margin-top: 10px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      &:after{
        position: absolute;
        content: "";
        background-color: #ededed;
        height: 1px;
        left: 0;
        right: 0;
        top: 50%;
        z-index: 1;
      }
      h4{
        position: relative;
        z-index: 2;
        margin: 0;
        padding: 0 15px;
        font-size: 20px;
        line-height: 20px;
        background-color: white;
        color: fade(@red, 20%);
      }
    }

  }
}

//正文标题
.sub_show_title{
  overflow: hidden;
  h1{
    display: inline-block;
    line-height: 35px;
    font-size: 22px;
    margin: 0;
    margin-top: 10px;
    padding: 0 15px;
    color: @black;
    font-weight: bold;
  }
  .line-ee-1{
    margin-top: 20px;
  }
  ul{
    padding: 0 15px;
    margin: 0;
    margin-top: 18px;
    padding-bottom: 14px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    &:after{
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      z-index: 1;
      width: 100%;
      height: 1px;
      background-color: #d4d4d4;
      transform: scaleY(0.5);
      @media (min-width: @min_width) {
        transform: scaleY(1);
      }
    }
    &:before{
      position: absolute;
      top: 0;
      left: 0;
      content: "";
      z-index: 1;
      width: 100%;
      height: 1px;
      background-color: #d4d4d4;
      transform: scaleY(0.5);
      @media (min-width: @min_width) {
        transform: scaleY(1);
      }
    }

    li{
      list-style: none;
      line-height: 12px;
      font-size: 12px;
      margin-top: 12px;
      padding-right: 32px;
      position: relative;
      color: @gray3a;
      &:after{
        position: absolute;
        content: "";
        right: 16px;
        top: 0;
        bottom: 0;
        background-color: #d4d4d4;
        width: 1px;
        transform: rotateX(0.5);
      }
      &:last-child{
        &:after{
          display: none;
        }
      }
      a{
        color: @blue;
      }
      &:hover,
      &.active{
        a{
          font-weight: bold;
        }
      }
    }
  }


  @media (min-width: @min_width) {
    padding: 0;
    text-align: center;
    h1{
      margin: 0;
      margin-top: 24px;
      padding: 0;
    }
    .line-ee-1{
      margin-top: 30px;
    }
    ul{
      margin-top: 28px;
      padding: 0;
      padding-bottom: 16px;
      justify-content: center;
      li{
        margin-top: 16px;
        line-height: 14px;
        font-size: 14px;
        color: @gray3a;
        a{
          color: @gray3a;
        }
      }
    }
  }
}

//正文
.sub_show{
  overflow: hidden;
  padding: 20px 15px;
  *{
    color: @gray3a;
    font-size: 18px;
    line-height: 35px;
    text-align: justify;
  }
  @media (min-width: @min_width) {
    padding: 55px 55px 30px 55px;
    *{
      font-size: 16px;
      line-height: 35px;
    }
    video{
      width: 800px;
      height: 450px;
      text-align: center;
      margin: 0 calc(~"50% - 400px");
    }
  }
}
.sub_show2{
  padding-top: 20px;
  @media (min-width: @min_width) {
    padding-top: 41px;
  }
}

//列表
.sub_list{
  .list{
    padding: 0;
    overflow: hidden;
    padding: 0 15px;
    padding-bottom: 15px;
    ul{
      padding: 0;
      margin: 0;
      li{
        list-style: none;
        padding: 15px 0;
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-flow: column;
        a{
          font-size: 18px;
          line-height: 30px;
          color: @gray3a;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
        }
        .date{
          align-self: flex-end;
          span{
            font-size: 15px;
            color: @grayc1;
            margin-right: 15px;
            img{
              height: 15px;
              margin-right: 4px;
            }
          }
        }

        &:after{
          position: absolute;
          bottom: 0;
          left: 0;
          content: "";
          z-index: 1;
          width: 100%;
          height: 1px;
          background-color: #eeeeee;
          transform: scaleY(0.5);
          @media (min-width: @min_width) {
            transform: scaleY(1);
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    @media (min-width: @min_width) and (max-width: 1250px) {
      padding: 0 15px;
    }
    .list{
      padding: 0px;
      padding-top: 14px;
      ul{
        li{
          padding: 0;
          justify-content: flex-start;
          align-items: center;
          flex-flow: nowrap;
          line-height: 40px;
          position: relative;
          padding-left: 16px;
          &:before{
            position: absolute;
            content: "";
            display: inline-block;
            width: 5px;
            height: 5px;
            left: 0;
            top: calc(~"50% - 3px");
            border-radius: 50%;
            background-color: @red;
          }
          a{
            margin-left: 0px;
            font-size: 15px;
            color: @black;
            text-overflow: ellipsis;
            -moz-text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            display: block;
            max-width: calc(~"100% - 95px");
          }
          .date{
            align-self: flex-start;
            margin-left: 25px;
            span{
              font-size: 13px;
              color: @grayc1;
              margin-right: 0px;
              img{
                height: 15px;
                margin-right: 4px;
              }
            }
          }
          &:after{
            display: none;
          }
          &:nth-child(5n){
            padding-bottom: 10px;
            margin-bottom: 36px;
            &:before{
              top: calc(~"50% - 8px");
            }
            &:after{
              display: block;
              position: absolute;
              bottom: 0;
              left: 0;
              content: "";
              z-index: 1;
              width: 100%;
              height: 1px;
              background-color: #eeeeee;
              transform: scaleY(0.5);
              @media (min-width: @min_width) {
                transform: scaleY(1);
              }
            }
          }
        }
      }
    }
  }

}

//图列表
.sub_pic_list{
  .list{
    ul{
      margin: 0 15px;
      margin-top: 25px;
      padding: 0;
      padding-bottom: 5px;
      li{
        list-style: none;
        margin-top: 20px;
        margin-bottom: 0;
        a{
          display: flex;
          justify-content: center;
          align-items: center;
          flex-flow: column;
          .img{
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            img{
              max-width: none;
              min-width: 100%;
              max-height: 215px;
              display: block;
            }
          }
          .txt{
            width: 100%;
            font-size: 16px;
            color: @gray3a;
            line-height: 50px;
            height: 50px;
            text-align: center;
            border: 1px solid @grayee;
          }
          .text{
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px 0;
            padding-bottom: 15px;
            width: 100%;
            img{
              height: 12px;
              width: 20px;
            }
            h1{
              margin: 0;
              margin-left: 10px;
              color: @0e0e0d;
              font-size: 16px;
              line-height: 16px;
              font-weight: normal;
              transition: all .3s;
              max-width: calc(~"100% - 33px");
            }
          }
          &:hover,&:active{
            .text{
              h1{
                color: @red;
              }
            }
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    .list{
      ul{
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin: 0 0 0 0;
        li{
          width: calc(~"33.333% - 33.3333px");
          margin-top: 50px;
          margin-bottom: 0;
          a{
            text-decoration: none;
            .txt{
              margin-top: 1px;
              line-height: 40px;
              height: 40px;
              font-size: 16px;
              background-color: @f0f0f0;
              transition: all .3s;
              padding: 0 15px;
              border: 0;
            }
            .text{
              padding: 20px 0;
              padding-bottom: 15px;
              img{
                height: 13px;
                width: 22px;
              }
              h1{
                margin: 0;
                margin-left: 12px;
                color: @0e0e0d;
                font-size: 16px;
                line-height: 16px;
              }
            }
            &:hover{
              .txt{
                background-color: @red;
                color: @white;
              }
            }
          }

          &:nth-child(3n-1){
            margin: 0 50px;
            margin-top: 50px;
          }

        }
      }
    }
  }
}

//联系我们
.contact-us{
  color: @gray3a;
  margin-bottom: 25px;
  #container{
    height: 200px;
    margin-top: 25px;
    .amap-logo{
      z-index: 1;
    }
    .amap-copyright{
      z-index: 1;
    }
  }
  .amap-marker-label{
    background-color: @red;
    color: @white;
    font-size: 12px;
    line-height: 20px;
    padding: 0 5px;
    border: 0;
    left: -46px!important;
    top: 40px!important;
  }
  h2{
    margin: 0;
    margin-top: 23px;
    padding: 0 15px;
    font-size: 18px;
    line-height: 35px;
    font-weight: bold;
  }
  .txt{
    padding: 0 15px;
    p{
      margin: 0;
      padding: 0;
      font-size: 18px;
      line-height: 35px;
    }
    a{
      text-decoration: none;
      color: #002244;
    }
  }
  ul{
    margin: 0;
    padding: 0;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    li{
      margin-top: 40px;
      list-style: none;
      text-align: center;
      h5{
        margin: 0;
        padding: 0;
        margin-top: 22px;
        color: #10196e;
      }
    }
  }

  @media (min-width: @min_width){
    padding: 0;
    margin-bottom: 50px;
    color: @gray3a;
    #container{
      height: 375px;
      margin-top: 40px;
    }
    .amap-marker-label{
      font-size: 16px;
      line-height: 40px;
      left: -70px!important;
      top: 40px!important;
    }
    h1{
      margin: 0;
      padding: 0;
      text-align: center;
      color: @gray3a;
      font-size: 25px;
    }
    h2{
      margin: 0;
      margin-top: 50px;
      padding: 0;
      font-size: 16px;
      line-height: 40px;
    }
    .art{
      display: flex;
      justify-content: space-between;
    }
    .txt{
      margin-top: 0px;
      padding: 0;
      p{
        margin: 0;
        padding: 0;
        font-size: 16px;
        line-height: 40px;
      }
    }

    ul{
      flex: 1;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      flex-flow: nowrap;
      li{
        margin:0;
        list-style: none;
        text-align: center;
        margin-left: 8%;
        h5{
          margin: 0;
          padding: 0;
          margin-top: 22px;
          color: #10196e;
        }
      }
    }
  }
}

/*sub-unit*/
.sub-unit{
  margin:0 auto;
  padding-top:35px;
  padding-bottom:25px;
  height:100%;
  .sub-unit-h3{
    width:100%;
    height:23px;
    line-height:23px;
    font-size:20px;
    font-weight:bold;
  }
  .sub-unit-h3-list{
    width:100%;
    .sub-unit-h4{
      height:16px;
      line-height:16px;
      font-size:16px;
      font-weight:bold;
      margin-top:18px;
      margin-bottom:7px;
      border-left:3px solid #E32E01;
      padding-left:12px;
      a{
        display: block;
        line-height: 16px;
        text-decoration: none;
      }
    }
    .sub-unit-h4-list{
      width:100%;
      display:table;
      padding-top:8px;
      ul{
        margin: 0;
        padding: 0;
        li{
          width: auto;
          height:53px;
          line-height:53px;
          background-color:#EBEBEB;
          float:left;
          margin-right:2px;
          margin-bottom:2px;
          text-align:center;
          font-size:15px;
          font-weight:bold;
          list-style: none;
          padding: 0 15px;
          &:hover{
            background-color:#E6E6E6;
          }
          a{
            font-size:15px;
            font-weight:bold;
            text-decoration: none;
            display: block;
            line-height: 53px;
            text-align: center;
            &:hover,&:active{
              color: rgb(0, 34, 68);

            }
          }
        }
      }
    }
  }
  @media (min-width: @min_width){
    padding-top:50px;
    padding-bottom:35px;
    .sub-unit-h3{
      height:25px;
      line-height:25px;
      font-size:23px;
    }
    .sub-unit-h3-list{
      .sub-unit-h4{
        margin-top:25px;
      }
      .sub-unit-h4-list{
        ul{
          li{
            min-width:166px;
            height:56px;
            line-height:56px;
            font-size:16px;
            a{
              line-height: 56px;
              font-size:16px;
            }
          }
        }
      }
    }
  }
}