  * {
    margin: 0;
    padding: 0;
  }


  a {
    text-decoration: none;
  }

  ul,
  ol {
    list-style: none;
  }

  input,
  textarea,
  button {
    border: 0;
    resize: none;
    outline: 0;
    background: transparent;
  }

  button {
    cursor: pointer;
  }

  img {
    width: 100%;
    height: auto;

  }

  header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
  }

  .swiper-slide {
    height: 100%;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /*多行溢出*/
  .line1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .line2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }

  .line3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
  }

  /* hover-图片放大1.1 */
  .scale-box {
    overflow: hidden;
  }

  .scale-box .scale-img {
    width: 100%;
    height: 100%;
    transition: all .3s linear;
    cursor: pointer;
    object-fit: cover;
  }

  .scale-box:hover .scale-img {
    transform: scale(1.1);
  }


  /* 常用盒子阴影 */
  .shadow_box {
    box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
  }

  /* 水波纹效果 */
  .btn-ripple {
    vertical-align: bottom;
  }

  .btn-ripple:not(:disabled):hover {
    opacity: 1;
    position: relative;
    overflow: hidden;
  }

  .btn-ripple:not(:disabled):hover::before {
    animation: ani_ripple 0.75s;
    z-index: 1;
    content: "";
    position: absolute;
    display: block;
    transition: all 0.6s;
    width: 100%;
    height: 0;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    padding-top: 100%;
    transform: translateX(-50%) translateY(-50%);
  }

  @keyframes ani_ripple {
    0% {
      background: rgba(0, 0, 0, 0.25);
      transform: translateX(-50%) translateY(-50%) scale(0);
    }

    to {
      background: transparent;
      transform: translateX(-50%) translateY(-50%) scale(1);
    }
  }

  #fp-nav {
    display: none;
  }

  .banner {
    height: 5rem;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  .banner_text {
    position: absolute;
    top: 1.78rem;
    left: 1.64rem;
  }

  .banner_tit {
    font-size: 0.36rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
  }

  .banner_txt {
    font-size: 0.39rem;
    font-family: MicrosoftYaHei-Bold, MicrosoftYaHei-Bold;
    font-weight: normal;
    color: #FFFFFF;
  }

  .nav {
    background: #FFFFFF;
  }

  .nav_box {
    width: 15rem;
    height: .73rem;
    display: flex;
    align-items: center;
    margin: 0 auto;
  }

  .nav_box a {
    background: #F6F9FB;
    border-radius: 0.03rem 0.03rem 0.03rem 0.03rem;
    padding: .12rem .36rem;
    font-size: 0.16rem;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: normal;
    color: #333333;
    margin-right: .37rem;
  }

  .acitve_nav {
    background: #05529F !important;
    color: #FFFFFF !important;
  }

  .content {
    overflow: hidden;
  }

  .page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .67rem;
  }

  .page a {
    font-size: 0.16rem;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: normal;
    color: #666666;
    background: #FFFFFF;
    margin: 0 .04rem;
    height: .4rem;
  }

  .page p {
    width: .4rem;
    font-size: 0.16rem;
    font-family: MicrosoftYaHei, MicrosoftYaHei;
    font-weight: normal;
    color: #666666;
    text-align: center;
  }

  .page_num {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page_num a {
    width: .4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page a:hover,
  .page_num_active {
    background: #CF000C !important;
    color: #FEFEFE !important;
  }

  .page_prev,
  .page_next {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 .3rem;
  }

  .hr{
    width: 100%;
    height: .01rem;
    background: #E5E5E5;
  }
  
  @media only screen and (max-width:1024px){
      .banner{
          height: 3rem;
          margin-top: 50px;
      }
      .banner_text{
          top: 50%;
          left: 50%;
          transform: translate(-50%,-50%);
      }
      .nav{
            display: none;
      }
      .page a{
          font-size: 12px;
      }
  }