@import "common.less";

body{
  background-color: #f3f3f8;
}
.page-turning{
  margin-top: 20px;
  ul{
    position: relative;
    margin: 0;
    padding: 10px 15px;
    &::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        z-index: 1;
        width: 100%;
        height: 1px;
        background-color: #d4d4d4;
        transform: scaleY(0.5);
    }
    &::after {
        position: absolute;
        bottom: 0;
        left: 0;
        content: "";
        z-index: 1;
        width: 100%;
        height: 1px;
        background-color: #d4d4d4;
        transform: scaleY(0.5);
    }
    li{
      margin: 0;
      padding: 0;
      list-style: none;
      line-height: 35px;
      span{
        font-size: 14px;
        color: @red;
      }
      a{
        font-size: 14px;
        color: #3a3a3a;
        transition: all .3s ease-in-out;
        text-decoration: none;
      }
      &:hover{
        a{
          color: @red;
        }
      }
    }
  }
  @media (min-width: @min_width) {
    ul{
      padding: 10px 30px;
      &::before, &::after {transform: scaleY(1);}
      li{
        line-height: 40px;
        span{
          font-size: 16px;
        }
        a{
          font-size: 16px;
        }
      }
    }
  }
}
.box{
  background-color: @white;
  margin: 7px auto;
  @media (min-width: @min_width) {
    margin: 15px auto;
  }
}

.pages{
  text-align: center;
  .pagination{
    margin: 20px auto;
    border-radius: 0;
    li{
      a,
      span{
        border:0;
        border-right: 1px solid @grayc1;
        margin:0;
        font-size: 16px;
        line-height: 16px;
        padding: 0 12px;
        color: @black;
      }

      &>a:focus,
      &>a:hover,
      &>span:focus,
      &>span:hover {
        color: @red;
        background: none;
        border-color: @grayc1;
      }
      &.active{
        a,
        span{
          color: @red;
          background: none;
        }

        &>a:focus,
        &>a:hover,
        &>span:focus,
        &>span:hover {
          color: @red;
          background: none;
          border-color: @grayc1;
        }
      }

      &:last-child>a,
      &:last-child>span{
        border-radius: 0;
        border: 0;
      }
    }
  }
}

.sub_title{
  overflow: hidden;
  h1{
    display: inline-block;
    line-height: 35px;
    font-size: 22px;
    margin: 0;
    margin-top: 30px;
    padding: 0 15px;
    color: @gray3a;
    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 55px;
    h1{
      margin: 0;
      margin-top: 47px;
      padding: 0;
    }
    .line-ee-1{
      margin-top: 23px;
    }
    ul{
      margin-top: 28px;
      padding: 0;
      padding-bottom: 16px;
      li{
        margin-top: 16px;
        line-height: 14px;
        font-size: 14px;
        color: @gray3a;
        a{
          color: @gray3a;
        }
      }
    }
  }
}

.sub_show{
  overflow: hidden;
  padding: 20px 15px;
  img{
    height:auto !important;
  }
  *{
    color: @gray3a;
    font-size: 16px;
    line-height: 200%;
  }
  @media (min-width: @min_width) {
    padding: 30px 55px 55px 55px;
  }
}
.pro-con{
  .pro-head{
    font-size: 20px;
    line-height: 20px;
    font-weight: bold;
    margin-top: 25px;
  }
  .pro-list{
    margin-top: 25px;
    ul{
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: wrap;
      li{
        list-style: none;
        background-color: @white;
        border: 1px solid @grayee;
        transition: all 0.3s ease 0s;
        width: 150px;
        height: 50px;
        margin-right: 4px;
        margin-bottom: 4px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        a{
          font-size: 16px;
          color: @gray3a;
          text-decoration: none;
        }
        &:hover,
        &:active{
          background-color: @red;
          border: 1px solid @red;
          a{
            color: @white;
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    .pro-head{
      font-size: 25px;
      line-height: 25px;
      margin-top: 50px;
    }
    .pro-list{
      margin-top: 30px;
      ul{
        li{
          width: 177px;
          height: 60px;
          a{
            font-size: 18px;
          }
        }
      }
    }
  }
}

.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: 16px;
          color: @black;
          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) {
    .list{
      padding: 0 55px;
      padding-top: 50px;
      ul{
        li{
          padding: 0;
          justify-content: flex-start;
          align-items: center;
          flex-flow: nowrap;
          line-height: 40px;
          a{
            margin-left: 18px;
            font-size: 16px;
            color: @black;
            text-overflow: ellipsis;
            -moz-text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
            display: block;
            max-width: 75%;
          }
          .date{
            align-self: flex-start;
            margin-left: 25px;
            span{
              font-size: 15px;
              color: @grayc1;
              margin-right: 15px;
              img{
                height: 15px;
                margin-right: 4px;
              }
            }
          }
          &:after{
            display: none;
          }
          &:nth-child(5n){
            padding-bottom: 20px;
            margin-bottom: 55px;
            &: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);
              }
            }
          }

        }
      }
    }
  }

}


.special_banner{
  margin-top: 7px;
  .maxW1200{
    h2{
      display: none;
    }
  }
  .no_img{
    position: relative;
    background-color: @red;
    height: 50px;
    overflow: hidden;
    img{
      display: none;
    }
    h2{
      position: relative;
      text-align: center;
      line-height: 50px;
      font-size: 18px;
      z-index: 2;
      margin: 0;
      color: @white;
      display: block;
    }


  }

  @media (min-width: @min_width) {
    margin-top: 15px;
    .no_img{
      &:after{
        position: absolute;
        content: url("../images/common/special_bg.png");
        right: 85px;
        top: 0;
        bottom: 0;
        z-index: 1;
        transform: rotate(180deg);
      }
      &:before{
        position: absolute;
        content: url("../images/common/special_bg.png");
        left: 85px;
        top: 0;
        bottom: 0;
        z-index: 1;
      }
    }
  }
}

.special_list{
  .list{
    ul{
      li{
        a{
          margin-left: 0;
        }
        @media (min-width: @min_width) {
          &:nth-child(5n) {
            padding-bottom: 20px;
            margin-bottom: 30px;
          }
          &:last-child{
            margin-bottom: 26px;
          }
        }

      }
    }
  }

  & + .pages{
    @media (min-width: @min_width) {
      padding-bottom: 20px;
    }
  }
}

.sub_pic_list{
  .list{
    padding: 0;
    overflow: hidden;
    padding-bottom: 15px;
    ul{
      padding: 0;
      margin: 0;
      li{
        list-style: none;
        padding: 15px;
        position: relative;
        a{
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          &>img{
            margin-right: 14px;
            margin-top: 6px;
            max-width: 120px;
          }
          .txt{
            flex: 1;
            h5{
              margin: 0;
              font-size: 16px;
              line-height: 26px;
              color: @gray3a;
            }
            p{

            }
            .date{
              span{
                font-size: 12px;
                color: @grayc1;
                margin-right: 15px;
                img{
                  height: 12px;
                  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);
          }
        }
      }
    }
  }
  .more{
    padding: 25px 0;
    text-align: center;
    a{
      background-color: @red;
      padding: 10px 33px;
      font-size: 16px;
      line-height: 16px;
      color: @white;
    }
  }

  @media (min-width: @min_width) {
    .list{
      margin-top: 20px;
      padding: 0 55px;
      ul{
        li{
          padding: 30px 0;
          a{
            align-items: center;
            text-decoration: none;
            &:hover{
              color: #e2e2e2;
            }
            &>img{
              margin-right: 25px;
              margin-top: 0;
              max-width: 250px;
            }
            .txt{
              flex: 1;
              h5{
                margin: 0;
                font-size: 20px;
                line-height: 40px;
                color: @gray3a;
              }
              p{
                font-size: 16px;
                line-height: 30px;
                color: #707070;
              }
              .date{
                span{
                  font-size: 14px;
                  margin-right: 18px;
                  img{
                    height: 12px;
                  }
                }
              }
            }

          }
        }
      }
    }
  }

}

.sub_leader_list{
  .list{
    margin-top: 10px;
    padding: 0 15px;
    padding-bottom: 25px;
    overflow: hidden;
    ul{
      padding: 0;
      margin: 0;
      li{
        list-style: none;
        padding: 15px 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-flow: column;
        color: @gray3a;
        .c-l{
          display: flex;
          justify-content: center;
          align-items: flex-start;
          h2{
            font-size: 22px;
          }
          h3{
            font-size: 15px;
            color: @grayc1;
            margin-left: 12px;
          }
        }
        .c-r{
          p{
            font-size: 16px;
            line-height: 26px;
          }
        }

        &:after{
          position: absolute;
          bottom: 0;
          left: 0;
          content: "";
          z-index: 1;
          width: 100%;
          height: 1px;
          background-color: @grayee;
          transform: scaleY(0.5);
          @media (min-width: @min_width) {
            transform: scaleY(1);
          }
        }
        &:before{
          position: absolute;
          bottom: 0;
          left: 0;
          content: "";
          z-index: 5;
          width: 17px;
          height: 2px;
          background-color: @red;
        }
      }
    }
  }
  @media (min-width: @min_width){
    .list{
      margin: 0;
      padding: 25px 54px;
      ul{
        li{
          padding: 24px 30px;
          padding-left: 150px;
          position: relative;
          display: flex;
          justify-content: flex-start;
          align-items: flex-start;
          flex-flow: nowrap;
          color: @gray3a;
          .c-l{
            display: flex;
            justify-content: center;
            align-items: flex-start;
            flex-flow: column;
            width: 150px;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            z-index: 1;
            margin-right: 0px;
            h2{
              font-size: 22px;
              margin: 0;
            }
            h3{
              margin: 0;
              font-size: 12px;
              color: @grayc1;
              margin-top: 20px;
            }
          }
          .c-r{
            padding-left: 0px;
            margin-left: 0px;
            flex: 1;
            position: relative;
            p{
              font-size: 16px;
              line-height: 150%;
              margin-top: 5px;
              margin-bottom: 25px;
            }
            &:after{
              position: absolute;
              bottom: 0;
              left: 0;
              content: "";
              z-index: 1;
              width: 100%;
              height: 1px;
              background-color: @grayee;
              transform: scaleY(0.5);
              @media (min-width: @min_width) {
                transform: scaleY(1);
              }
            }
            &:before{
              position: absolute;
              bottom: 0;
              left: 0;
              content: "";
              z-index: 5;
              width: 17px;
              height: 2px;
              background-color: @red;
            }
          }

          &:after{
            display: none;
          }
          &:before{
            display: none;
          }
        }
      }
    }
  }
}


.about{
  background: url("@{images}sub/img_02_bg.png") @white top center no-repeat;
  background-size: 210% auto;
  padding-top: 170px;
  @media (min-width: @min_width) {
    padding-top: 326px;
    background-size: 100% auto;
  }
}
.video{
  margin-bottom: 10px;
  @media (min-width: @min_width) {
    video{
      width: 480px;
      height: 360px;
    }
  }
}

.event{
  background: url("@{images}sub/img_03_m.png") @white top center no-repeat;
  background-size: 100% auto;
  padding: 20px 0;
  .time-line{
    margin: 0 15px;
    position: relative;

    .icon01{
      position: absolute;
      z-index: 3;
      top:20px;
      left: calc(~"100vw * 0.14");
      width: calc(~"100vw * 0.34");
    }
    .icon02{
      position: absolute;
      z-index: 3;
      top:59px;
      left: calc(~"100vw * 0.165");
      width: calc(~"100vw * 0.04");
    }
    ul{
      padding: 0;
      margin: 0;
      padding-top: 88px;
      position: relative;
      z-index: 5;
      display: flex;
      justify-content: flex-start;
      flex-flow: wrap;
      li{
        list-style: none;
        font-size: 14px;
        line-height: 22px;
        display: flex;
        justify-content: flex-start;
        padding-bottom: 12px;
        width: calc(~"25% - 9px");
        &:nth-child(4n+2){
          margin: 0 12px;
        }
        &:nth-child(4n+3){
          margin: 0 12px 0 0;
        }
        .c-l{
          position: relative;
          width: 100%;
          h3{
            margin: 0;
            padding: 0;
            font-size: 14px;
            //width: calc(~"100vw * 0.25");
            width: 100%;
            text-align: center;
            background-color: #eef0f3;
            border-radius: 4px;
            line-height: 34px;
            a{
              text-decoration: none;
              color: @gray3a;
            }
            img{
              margin-left: 3px;
              width: 10px;
            }
          }
          .icon4{
            background-color: @white;
            width: 15px;
            position: absolute;
            z-index: 1;
            left: calc(~"100vw * 0.18");
            top: 27px;
            display: flex;
            justify-content: center;
            align-items: center;
          }
        }
        .c-r{
          flex: 1;
          a{
            color: @gray3a;
            span{
              color: @red;
              margin-left: 3px;
            }
          }
        }
      }
    }
  }
  @media (min-width: @min_width) {
    background: url("@{images}sub/img_03.png") @white top center no-repeat;
    padding: 20px 0;
    padding-top: 58px;
    .time-line{
      margin: 0;
      margin-left: 128px;
      margin-right: 55px;
      &:after{
        position: absolute;
        z-index: 1;
        content: "";
        background-color: @blue;
        bottom:0;
        width: 1px;
        top:176px;
        left: 97px;
      }
      .icon01{
        top:0;
        left: 54px;
        width: 256px;
      }
      .icon02{
        top:170px;
        left: 71px;
        width: 28px;
      }
      ul{
        padding: 0;
        margin: 0;
        padding-top: 215px;
        position: relative;
        z-index: 5;
        display: block;
        li{
          list-style: none;
          display: flex;
          justify-content: flex-start;
          font-size: 16px;
          line-height: 30px;
          padding-bottom: 34px;
          width: 100%;
          &:nth-child(4n+2){
            margin: 0;
          }
          &:nth-child(4n+3){
            margin: 0;
          }
          .c-l{
            width: auto;
            h3{
              font-size: 16px;
              margin: 0;
              padding: 0;
              color: @red;
              width: 140px;
              text-align: left;
              background: none;
              border-radius: 0;
              a{
                text-decoration: none;
                color: @red;
              }
              img{
                margin-left: 10px;
                width: 10px;
              }
            }
            .icon4{
              width: 15px;
              left: 90px;
              top: 22px;
            }
          }
          .c-r{
            a{
              span{
                margin-left: 3px;
              }
            }
          }
        }
      }
    }
  }
}

.sub_honor_list{
  padding: 0 15px;
  padding-top: 35px;
  table{
    font-size: 12px;
    color: @gray3a;
    th{
      background-color: @red;
      color: @white;
      font-weight: bold;
    }
    tr{
      th,td{
        vertical-align: middle;
        height: 30px;
        &:first-child{
          width: 100px;
          text-align: center;
        }
      }
      th{
        text-align: center;
      }
    }
  }
  @media (min-width: @min_width) {
    padding: 0 55px;
    padding-top: 56px;
    table{
      font-size: 16px;
      th{
        font-size: 20px;
      }
      tr{
        th,td{
          height: 60px;
          &:first-child{
            width: 150px;
          }
        }
      }

    }
  }
}

.contact-us{
  color: @black;
  #container{
    height: 200px;
    .amap-logo{
      z-index: 19;
    }
  }
  .amap-marker-label{
    background-color: @red;
    color: @white;
    font-size: 12px;
    line-height: 20px;
    padding: 0 5px;
    border: 0;
    left: -100px!important;
    top: 40px!important;
  }
  h2{
    margin: 15px 0;
    padding: 0 15px;
    font-size: 18px;
    line-height: 28px;
  }
  .txt{
    margin-top: 15px;
    padding: 0 15px;
    p{
      margin: 0;
      padding: 0;
      font-size: 16px;
      line-height: 30px;
    }
  }
  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: 55px;
    color: @gray3a;
    #container{
      height: 375px;
      margin-top: 40px;
    }
    .amap-marker-label{
      font-size: 20px;
      line-height: 40px;
      left: -171px!important;
      top: 40px!important;
    }
    h1{
      margin: 0;
      padding: 0;
      text-align: center;
      color: @gray3a;
      font-size: 25px;
    }
    h2{
      margin: 26px 0;
      margin-top: 50px;
      padding: 0;
      font-size: 20px;
      line-height: 20px;
    }
    .art{
      display: flex;
      justify-content: space-between;
    }
    .txt{
      margin-top: 40px;
      padding: 0;
      p{
        margin: 0;
        padding: 0;
        font-size: 18px;
        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;
        }
      }
    }
  }
}

.web-maps{
  color: @black;
  padding: 35px 15px;
  h1{
    margin: 0;
    padding: 0;
    text-align: center;
    color: @gray3a;
    font-size: 25px;
    font-weight: bold;
  }
  .maps-list{
    margin-top: 35px;
    position: relative;
    &:after{
      position: absolute;
      bottom: 0;
      left: 0;
      content: "";
      z-index: 1;
      width: 100%;
      height: 1px;
      background-color: #ddd;
      transform: scaleY(0.5);
      @media (min-width: @min_width) {
        transform: scaleY(1);
      }
    }
    h3{
      margin: 0;
      padding: 0;
      position: relative;
      padding-right: 24px;
      font-size: 16px;
      line-height: 16px;
      color: @black;
      font-weight: bold;
      display: inline-block;
      overflow: hidden;
      &:after{
        position: absolute;
        content: "";
        overflow: hidden;
        display: block;
        z-index: 1;
        right: -6px;
        bottom: -6px;
        width: 0;
        height: 0;
        border: 6px solid @red;
        transform: rotate(45deg);
      }
    }

    ul{
      margin: 0;
      padding: 0;
      margin-top: 5px;
      display: flex;
      justify-content: flex-start;
      flex-wrap: wrap;
      padding-bottom: 14px;
      li{
        list-style: none;
        line-height: 15px;
        padding-top: 20px;
        a{
          text-decoration: none;
          margin-right: 22px;
          font-size: 15px;
          color: @gray3a;
          &:hover{
            color: @red;
          }
        }
      }
    }
  }


  @media (min-width: @min_width) {
    padding: 55px;
    .maps-list{
      margin-top: 52px;
      ul{
        li{
          line-height: 16px;
          padding-top: 20px;
          a{
            margin-right: 16px;
            font-size: 14px;
          }
        }
      }
    }
  }
}

.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;
      .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;
            }
          }
          .txt{
            h3{
              font-size: 36px;
              line-height: 36px;
              padding-bottom: 7px;
            }
            h4{
              font-size: 16px;
              color: @gray3a;
            }
            .download{
              line-height: 30px;
              font-size: 15px;
              width: 90px;
              margin-top: 22px;
            }
          }
        }
      }
    }
  }
}


.web-history{
  padding: 35px 0;
  h1{
    margin: 0;
    padding: 0;
    text-align: center;
    color: @gray3a;
    font-size: 25px;
    font-weight: bold;
  }
  .top{
    margin-top: 30px;
    position: relative;
    &:after{
      position: absolute;
      content: "";
      background-color: @red;
      left:0;
      right:0;
      top: 50%;
      height: 1px;
      z-index: 1;
    }

    .prev,.next{
      position: absolute;
      z-index: 20;
      top: calc(~"50% - 13px");
      cursor: pointer;
      img{
        display: block;
      }
    }
    .prev{
      left: 10px;
    }
    .next{
      right: 10px;
      transform: rotate(180deg);
    }
    @media (min-width: @min_width) {
      .prev{
        left: 120px;
      }
      .next{
        right: 120px;
      }
    }
  }
  #web_history_nav_swiper{
    margin: 0 25px;
    display: flex;
    justify-content: flex-start;
    .swiper-wrapper{
      position: relative;
      z-index: 2;
      display: inline-flex;
      width: auto;
      justify-content: flex-start;
      .swiper-slide{
        height: 70px;
        width: auto;
        min-width: 50px;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
        align-items: center;
        position: relative;
        &:after{
          position: absolute;
          content: "";
          background-color: @red;
          width: 5px;
          border-radius: 50%;
          top: calc(~"50% + -2px");
          height: 5px;
          z-index: 1;
          transition: all .3s;
        }
        span{
          color: @blue;
          font-size: 16px;
          position: relative;
          z-index: 2;
          margin-top: 10px;
        }
        img{
          width: 20px;
          margin-bottom: 10px;
          position: relative;
          z-index: 2;
          transition: all .3s;
          opacity: 0;
        }
        &.active{
          &:after{
            width: 47px;
            border-radius: 0;
            top: calc(~"50% + 1px");
            height: 1px;
          }
          img{
            opacity: 1;
            width: 30px;
            margin-bottom: 0;
          }
        }
      }
    }


  }
  #web_history_swiper{
    margin: 0 15px;
    margin-top: 30px;
    .swiper-wrapper{
      .swiper-slide{
        text-align: center;
        img{

        }
      }
    }
  }



  @media (min-width: @min_width) {
    padding: 55px 0;
    .top{
      margin-top: 47px;
    }
    #web_history_nav_swiper{
      margin: 0 144px;
      .swiper-wrapper{
        .swiper-slide{
          &.active{
            &:after{
              width: 71px;
            }
          }
        }
      }

    }
    #web_history_swiper{
      margin: 0 25px;
      margin-top: 25px;
    }
  }
}


.live{
  ul{
    margin: 0;
    padding: 0;
    li{
      list-style: none;
      display: flex;
      justify-content: space-between;
      flex-flow: column;
      .img{
        width: 100%;
      }
      .txt{
        padding: 30px 15px;
        background-color: @red;
        color: @white;
        i,u{
          display: inline-block;
          width: 10px;
        }
        u{
          width: 20px;
        }
        h3{
          font-size: 16px;
          font-weight: bold;
          margin: 0;
          padding: 0;
          padding-bottom: 12px;
          position: relative;
          margin-bottom: 25px;
          &:after{
            position: absolute;
            content: "";
            left: 0;
            bottom: 0;
            height: 1px;
            width: 14px;
            background-color: @white;
          }
        }
        p{
          font-size: 15px;
          margin-bottom: 0px;
          line-height: 30px;
          span{
            font-weight: bold;
          }
        }
        a{
          font-size: 15px;
          color: @white;
          cursor: pointer;
        }
        .sub-a{
          margin-top: 12px;
          margin-right: 12px;
          background-color: @white;
          font-size: 15px;
          color: @gray3a;
          text-decoration: none;
          line-height: 38px;
          padding: 0 22px;
          display: inline-block;
        }
      }
      &:nth-child(2n){
        .txt{
          background-color: @gray3a;
        }
      }
    }
  }
  @media (min-width: @min_width) {
    ul{
      li{
        flex-flow: initial;
        .img{
          width: auto;
          order: 1;
          img{
            height: 100%;
          }
        }
        .txt{
          order: 2;
          flex:1;
          padding: 40px 56px;
          h3{
            font-size: 20px;
            padding-bottom: 11px;
            margin-bottom: 30px;
            &:after{
              width: 18px;
            }
          }
          p{
            font-size: 16px;
            line-height: 30px;
          }
          a{
            font-size: 16px;
          }

          .sub-a{
            margin-top: 12px;
            margin-right: 12px;
            background-color: @white;
            font-size: 16px;
            color: @gray3a;
            text-decoration: none;
            line-height: 40px;
            padding: 0 22px;
            display: inline-block;
          }

        }
        &:nth-child(2n){
          .img{
            order: 2;
          }
          .txt{
            order: 1;
          }
        }
      }
    }
  }
}


.special{
  .list{
    ul{
      li{
        display: block;
        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);
          }
        }
        h2{
          padding: 0;
          margin: 0;
          line-height: 33px;
          font-size: 20px;
          font-weight: bold;
          a{
            overflow: visible;
            text-overflow: initial;
            display: inline-block;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            white-space: normal;
            color: @gray3a;
            img{
              max-height: 20px;
            }
          }
          .arrow01{
            display: none;
          }
          .arrow02{
            display: inline-block;
          }
        }
        .c-list{
          margin-top: 5px;
          a{
            color: @gray3a;
            margin-top: 10px;
            line-height: 30px;
            font-size: 16px;
            overflow: visible;
            text-overflow: initial;
            display: block;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            white-space: normal;
            .date{
              display: none;
            }
          }
        }
      }
    }
  }

  @media (min-width: @min_width) {
    .list{
      padding-top: 35px;
      ul{
        li{
          padding: 20px 0;
          display: block;
          position: relative;
          &:after{
            display: block;
          }
          &:nth-child(5n){
            padding: 20px 0;
            margin: 0;
          }
          h2{
            line-height: 33px;
            font-size: 18px;
            a{
              max-width: 100%;
              margin-left: 0;
              img{
                max-height: 25px;
              }
            }
            .arrow01{
              display: inline-block;
            }
            .arrow02{
              display: none;
            }
          }
          .c-list{
            margin-top: 5px;
            a{
              color: @gray3a;
              margin-top: 10px;
              line-height: 30px;
              font-size: 16px;
              margin-left: 35px;
              .date{
                display: inline-block;
              }
            }
          }
        }
      }
    }
  }
}