 	/* sub-banner */
     .subbanner {
        height: 700px;
    }

    .subbanner .main {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .subbanner .bannerCenter {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }



    .bannerCenter {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .bannerCenter h2 {
        font-size: 48px;
        color: #fff;
        margin-bottom: 5px;
        font-weight: bold;
        position: relative;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    }

    .bannerCenter h2::before {
        content: '';
        height: 4px;
        width: 42px;
        border-radius: 2px;
        background-color: #fff;
        position: absolute;
        bottom: -20px;
        left: 50%;
        margin-left: -21px;
        box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    }
    /* 二级导航 */
    .sub-columns-wrap {
        overflow: hidden;
        padding-left: 5%;
        display: flex;
        font-size: 20px;
        font-weight: 400;
        line-height: 26.4px;
        color: rgba(44, 44, 44, 1);
        border-bottom: 1px solid rgb(229, 229, 229);
        cursor: pointer;
    }

    .sub-columns-wrap li {
        height: 68px;
        display: flex;
        align-items: center;
        margin-right: 30px;
    }

    .sub-columns-wrap .active {
        /* 文字渐变从rgb(69,176,53)到rgb(0,150,215) */
        background: linear-gradient(to right, rgb(69, 176, 53), rgb(0, 150, 215));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 600;
        position: relative;
    }

    .sub-columns-wrap .active::after {
        position: absolute;
        content: '';
        width: 100%;
        height: 4px;
        bottom: 0;
        left: 0;
        border-radius: 3px;
        background: linear-gradient(to right, rgb(69, 176, 53), rgb(0, 150, 215));
    }
    @media screen and (max-width: 960px){
        .subbanner {
            height: 320px;
        }
        .bannerCenter h2 {
            font-size: 32px;
        }
      .sub-columns-wrap {
            font-size: 2.6vw;
								padding:0px 1% 0px 0px;
  							/* justify-content: space-between; */
        }

        .sub-columns-wrap li {
            height: 7vw;
            margin-right: 1%;
								min-width:4vw;
        }
    }

    @media (max-width:767px) {
        .subbanner {
            height: 180px;
        }
        .bannerCenter h2 {
            font-size: 24px;
        }
 		
    }
    .paginator-wrap{
    	display:flex;
     justify-content: flex-end;
     margin:20px 0;
    }
     .pagination {
          display: flex;
      }

      .pagination a {
          text-decoration: none;
      }

      .pagination .page_link {
          display: flex;
          justify-content: center;
          align-items: center;
          width: 50px;
          height: 50px;
          margin: 0 5px;
          color: #000;
          border-radius: 50%;
          background: rgba(255, 255, 255, 1);
          border: 1px solid rgba(229, 229, 229, 1);
      }

      .pagination .page_link.page_active {
          color: #fff;
          border: 0;
          background: linear-gradient(90deg, rgba(69, 176, 53, 1) 0%, rgba(0, 150, 215, 1) 100%);
      }
     .pagination .page_white{
							display: none;
          justify-content: center;
          align-items: center;
          width: 50px;
          height: 50px;
          margin: 0 5px;
          color: #000;
          border-radius: 50%;
          background: rgba(255, 255, 255, 1);
          border: 1px solid rgba(229, 229, 229, 1);
				}


