/**
 * changing Jason song  2021-04-14

 */

 html,
 body,
 div,
 span,
 applet,
 object,
 iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 hgroup,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   font: inherit;
   font-weight: normal;
   vertical-align: baseline;
   box-sizing: border-box;
 }
 
 /* HTML5 display-role reset for older browsers */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 header,
 hgroup,
 menu,
 nav,
 section {
   display: block;
 }
 
 ol,
 ul,
 li {
   list-style: none;
 }
 
 blockquote,
 q {
   quotes: none;
 }
 
 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
   content: '';
   content: none;
 }
 
 table {
   border-collapse: collapse;
   border-spacing: 0;
 }
 
 /* custom */
 a {
   color: #7e8c8d;
   text-decoration: none;
   -webkit-backface-visibility: hidden;
 }
 
 ::-webkit-scrollbar {
   width: 5px;
   height: 5px;
 }
 
 ::-webkit-scrollbar-track-piece {
   background-color: rgba(0, 0, 0, 0.2);
   -webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:vertical {
   height: 5px;
   background-color: rgba(125, 125, 125, 0.7);
   -webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:horizontal {
   width: 5px;
   background-color: rgba(125, 125, 125, 0.7);
   -webkit-border-radius: 6px;
 }
 
 html,
 body {
   width: 100%;
   font-family: PingFang SC, Microsoft Yahei, sans-serif;
 }
 
 body {
   line-height: 1.5715;
   color: rgba(0, 0, 0, .85);
   -webkit-text-size-adjust: none;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }
 
 html {
   overflow-y: scroll;
 }
 
 a,
 a:hover {
   color: inherit;
 }
 
 a:hover {
   text-decoration: none;
 }
 
 /*清除浮动*/
 .clearfix:before,
 .clearfix:after {
   content: " ";
   display: inline-block;
   height: 0;
   clear: both;
   visibility: hidden;
 }
 
 .clearfix {
   *zoom: 1;
 }
 
 /*隐藏*/
 .hidden {
   display: none;
 }
 
 /*浮动*/
 .fl {
   float: left;
 }
 
 .fr {
   float: right;
 
 }
 
 /* 定位 */
 .pr {
   position: relative;
 }
 
 .pb {
   position: absolute;
 }
 
 /*全屏*/
 .main-full {
   width: 100%;
   height: auto;
   overflow: hidden;
 }
 
 .wrap {
   width: 1440px;
   margin: auto;
 }
 
 
 /* flex */
 .d-flex {
   display: flex;
 }
 
 .flex-stack {
   justify-content: space-between;
   align-items: center;
 }
 
 .flex-center {
   justify-content: center;
   align-items: center;
 }
 
 .d-center {
   justify-content: center;
 }
 
 .h-center {
   align-items: center;
 }
 
 
 
 
 
 
 /* 头部 */
 
 .header {
   width: 100%;
   position: fixed;
   height: 100px;
   top: 0;
   color: #fff;
   z-index: 100;
   background: linear-gradient(90deg, #2fa962, #036423);
   background: #2fa962;
   z-index: 9999;
 }
 
 .header .wrap {
   height: 100%;
   justify-content: space-between;
   align-items: stretch;
 }
 
 .header .logo img {
   max-height: 64px;
 }
 
 .header .navbar-toggler {
   display: none;
   width: 36px;
   height: 36px;
   background: url(../images/menu.svg) center center no-repeat;
   background-size: 100% 100%;
   margin-left: 18px;
 }
 
 
 
 .header .navbar {
   flex-wrap: nowrap;
   padding: 0 15px;
   height: 100%;
 }
 
 .header .navbar .nav-item {
   position: relative;
   height: 100%;
 }
 
 .header .navbar .nav-link {
   display: block;
   font-size: 18px;
   padding: 54px 18px 0;
   white-space: nowrap;
   position: relative;
 }
 
 .header .navbar .nav-item:after {
   content: "";
   position: absolute;
   width: 90%;
   height: 3px;
   background: #fff;
   border-radius: 1px;
   left: 50%;
   transform: translateX(-50%);
   bottom: 0;
   opacity: 0;
 }
 
 .header .navbar .nav-item.active::after,
 .header .navbar .nav-item:hover::after {
   opacity: 1;
 }
 
 
 
 
 .header .navbar .nav-link .icon-down {
   font-size: 14px;
 }
 
 /* .header .navbar .nav-link:hover {
   color: #40a9ff;
 } */
 
 .header .search-box {
   height: 40px;
   max-width: 208px;
   background: hsla(0, 0%, 100%, .2);
   box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
   border-radius: 20px;
   transition: all .3s;
   width: auto;
   margin: 0 30px;
 }
 
 
 .header .search-box input {
   height: 36px;
   min-width: 128px;
   margin: 2px 0;
   background-color: transparent;
   border: none;
   color: #fff;
   outline: none;
   border-radius: 18px 0 0 18px;
   padding: 0 0 0 20px;
 }
 
 .header .search-box.coll input {
   width: 0;
   padding: 0;
   min-width: 0;
 }
 
 
 .header .search-box .form-control::-webkit-input-placeholder {
   color: #fff;
   opacity: .5;
   font-size: 14px;
 }
 
 .header .search-box .form-control::-moz-placeholder {
   opacity: .5;
   font-size: 14px;
 }
 
 .header .search-box .form-control:-ms-input-placeholder {
   opacity: .5;
   font-size: 14px;
 }
 
 .header .search-box .form-control::-ms-input-placeholder {
   opacity: .5;
   font-size: 14px;
 }
 
 .header .search-box .form-control::placeholder {
   opacity: .5;
   font-size: 14px;
 }
 
 
 .header .search-box .btn {
   color: #fff;
   font-size: 18px;
   text-align: center;
   border: 0;
 }
 
 .header .search-box .btn.sch-btn-mobile {
   display: none;
 }
 
 .header .search-box input:focus,
 .header .search-box .btn:focus {
   box-shadow: none;
 }


.header .user-box {
    padding-top: 28px;
}

.header .not-logged {
    min-width: 121px;
    width: 121px;
    height: 40px;
    background: hsla(0, 0%, 100%, .2);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
    border-radius: 20px;
    line-height: 40px;
    text-align: center;
}

.header .not-logged.mr {
    margin: 0 92px 0 128px
}
 



 
 
 .header .not-logged a {
   color: #fff;
 }
 
 .header .not-logged .divider {
   height: .9em;
   margin: 0 8px;
   border-left: 1px solid hsla(0, 0%, 100%, .5568627450980392);
 }
 
 
 .header .user {
   align-items: center;
   color: #fff;
   background: hsla(0, 0%, 100%, .2);
   box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
   height: 40px;
   width: 40px;
   min-width: 40px;
   padding: 2px;
   border-radius: 20px;
   white-space: nowrap;
   transition: all .3s;
   cursor: pointer;
   line-height: 20px;
   position: relative;
   padding-right: 12px;
   overflow: hidden;
 }
 
 .header .user .user-pic {
   width: 36px;
   min-width: 36px;
   height: 36px;
   object-fit: cover;
   border-radius: 50%;
   display: block;
   box-shadow: 0 0 4px 0 rgba(0, 0, 0, .1);
 }
 
 
 .header .user .user-center {
   margin-left: 10px;
   max-width: 5em;
   overflow: hidden;
   white-space: nowrap;
   text-overflow: ellipsis;
   flex: 1 1 0%;
   min-width: 0px;
 }
 
 .header .user .user-out .divider {
   position: relative;
   top: -.06em;
   display: inline-block;
   height: .9em;
   margin: 0 8px;
   vertical-align: middle;
   border-left: 1px solid hsla(0, 0%, 100%, .5568627450980392);
 
 }
 
 .header .user .user-out a {
   color: #fff;
 }
 
 /* .header .user a:hover {
   color: #40a9ff;
 } */
 
 .header .user:active,
 .header .user:focus,
 .header .user:hover {
   width: 208px;
 }
 
 .header .user-icon {
   display: none;
 }
 
 .header .menu-icon,
 .header .user-icon,
 .header .icon-close {
   font-size: 24px;
 }
 
 .header .menu-icon,
 .header .user-icon {
   margin-left: 15px;
   display: none;
 }
 
 
 .header .nav-mobile {
   background: #fff;
   -webkit-flex-direction: column;
   flex-direction: column;
   width: 100%;
   height: 0;
   opacity: 0;
   position: fixed;
   top: 0;
   left: 0;
   z-index: -999;
 
 
 }
 
 .header .nav-mobile.toggle {
   height: 100vh;
   opacity: 1;
   z-index: 1003;
 }
 
 .header .nav-mobile .nav-mobile-nav {
   background: #f5f7fa;
   height: 56px;
 }
 
 
 .header .nav-mobile .nav-mobile-nav .icon-sch {
   height: 20px;
   width: 20px;
   margin: 0px 14px 0px 20px;
   color: rgb(29, 33, 41);
   flex-shrink: 1;
 }
 
 .header .nav-mobile .nav-mobile-nav .nav-mobile-input {
   -moz-box-flex: 1;
   background: transparent;
   border: none;
   color: #181818;
   -webkit-flex: 1 0 auto;
   flex: 1 0 auto;
   font-size: 14px;
   margin-right: 20px;
   outline: none;
 }
 
 .header .nav-mobile .nav-mobile-nav .nav-mobile-close {
   background: #2fa962;
   color: #fff;
   height: 100%;
   width: 64px;
 }
 
 .header .nav-mobile .nav-mobile-list {
   -moz-box-flex: 1;
   background: #fff;
   -webkit-flex: 1 1;
   flex: 1 1;
   overflow-y: auto;
   padding-bottom: 15vh;
 
 }
 
 .header .nav-mobile .nav-mobile-list .nav-mobile-item {
   display: block;
   font-size: 16px;
   height: 56px;
   padding: 0 32px;
   display: flex;
   align-items: center;
   color: #333;
 }






/*2023-03-22*/
.head_nav{
    position: relative;
}
.head_deng{
    top: 10px;
    width: 450px;
    position: absolute;
    right:0;
    z-index: 2;
}
.head_deng .user-box{
    float: right;
    margin-left: 10px;
}
.header-search{
    float: right;
}
.header-search .row{
    margin: 0px;
}
#searchForm{
    background: #fff;
    height: 36px;
    border-radius: 20px;
    float: left;
    font-size: 13px;
    float: right;
    width: 0px;
    overflow: hidden;
}
.header-search .spk-select1{
    border-radius: 0.25rem 0 0 0.25rem;
    border: none;
    background: none;
    float: left;
    padding: 0px 10px;
    font-size: 13px;
    height: 36px;
}
.header-search .form-search{
    border-radius: 0rem 0.25rem 0.25rem 0rem;
    padding: 4px 6px;
    border: none;
    border-left: 1px solid #ced4da;
    font-size: 13px;
}
.header-search .search-btn {
    width: 26px;
    height: 26px;
    font-size: 13px;
    color: #2fa962;
    background: url(../images/icon-search.png) top center no-repeat;
    background-size: cover;
    margin: 5px;
}
.header-search.act #searchForm{
    width: 308px;
    transition: 0.5s;
}
.header-search .sou-act{
    width: 36px;
    height: 36px;
    background: #fff url(../images/icon-search.png) center no-repeat;
    background-size: 21px 21px;
    padding: 5px;
    border-radius: 50%;
}
.header-search.act .sou-act{
    display: none;
}





 
 
 
 .footer {
   font-size: 14px;
   padding-top: 10px;
   padding-bottom: 10px;
   width: 100%;
   flex-shrink: 1;
 }
 
 .footer .f-logo {
   /* height: 65px; */
   height: 82px;
   vertical-align: top;
   margin-right: 15px;
 }
 
 .footer .text-row a {
   color: #fff;
   margin-right: 30px;
 
 }
 
 .footer .text-row {
   margin-top: 3px;
   color: #fff;
   word-break: keep-all;
 }
 
 .footer .btn {
   position: relative;
   width: 32px;
   height: 32px;
   display: block;
   padding: 0;
   border: 0;
   margin: 0 16px;
 }
 
 .footer .btn .btn-wx {
   background: url(../images/wxicon.png) no-repeat;
   background-size: cover;
   width: 32px;
   height: 32px;
 }
 
 .footer .btn .btn-wx:hover {
   background: url(../images/wxiconb.png) no-repeat;
   background-size: cover;
   width: 32px;
   height: 32px;
 }
 
 .footer .btn .btn-wx:hover+.btn-code {
   position: absolute;
   top: -190px;
   left: 50%;
   transform: translateX(-50%);
   background: url(../images/qrcode.jpg) no-repeat;
   background-size: cover;
   width: 160px;
   height: 160px;
   z-index: 10;
 }
 
 
 .footer .btn .btn-wb {
   background: url(../images/wb.png) no-repeat;
   background-size: cover;
   width: 32px;
   height: 32px;
 }
 
 .footer .btn .btn-wb:hover {
   background: url(../images/wbb.png) no-repeat;
   background-size: cover;
   width: 32px;
   height: 32px;
 }
 
 .footer .btn .btn-wb:hover+.btn-code {
   position: absolute;
   top: -190px;
   left: 50%;
   transform: translateX(-50%);
   background: url(../images/qrcode.jpg) no-repeat;
   background-size: cover;
   width: 160px;
   height: 160px;
   z-index: 10;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 .banner {
   width: 100%;
   height: 360px;
   background-image: url(../images/b8.png);
   background-position: center bottom;
   background-size: cover;
   margin-top: 100px;
 }
 
 .banner .banner-title {
   display: flex;
   padding-top: 110px;
   color: #120e27;
 }
 
 .banner .banner-title .line {
   width: 4px;
   background: #2fa962;
 }
 
 .banner .banner-title .titles {
   margin-left: 16px;
 
 }
 
 .banner .banner-title .titles .ctitle {
   font-size: 46px;
   line-height: 1;
 }
 
 .banner .banner-title .titles .etitle {
   margin-top: 16px;
   font-size: 30px;
   line-height: 1;
 }
 
 
 
 
 .main {
   padding-top: 50px;
 }
 
 
 
 .pagination {
   justify-content: flex-end;
   margin: 24px auto;
 }
 
 .pagination .pagination-total-text {
   font-size: 14px;
   height: 32px;
   margin-right: 8px;
   line-height: 30px;
 }
 
 .pagination .pagination-disabled {
   cursor: not-allowed;
 }
 
 .pagination-next,
 .pagination-prev {
   display: inline-block;
   min-width: 32px;
   height: 32px;
   color: rgba(0, 0, 0, .85);
   line-height: 32px;
   text-align: center;
   vertical-align: middle;
   list-style: none;
   border-radius: 2px;
   cursor: pointer;
   transition: all .3s;
 }
 
 .pagination-prev {
   margin-right: 8px;
 }
 
 .icon-left,
 .icon-right {
   display: inline-block;
   color: inherit;
   font-style: normal;
   line-height: 0;
   text-align: center;
   text-transform: none;
   vertical-align: -.125em;
   text-rendering: optimizeLegibility;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
 }
 
 .pagination-next .pagination-item-link,
 .pagination-prev .pagination-item-link {
   display: block;
   width: 100%;
   height: 100%;
   padding: 0;
   font-size: 12px;
   text-align: center;
   background-color: #fff;
   border: 1px solid #d9d9d9;
   border-radius: 2px;
   outline: none;
   transition: all .3s;
 }
 
 .pagination-item {
   display: inline-block;
   min-width: 32px;
   height: 32px;
   margin-right: 8px;
   line-height: 30px;
   text-align: center;
   vertical-align: middle;
   list-style: none;
   background-color: #fff;
   border: 1px solid #d9d9d9;
   border-radius: 2px;
   outline: 0;
   cursor: pointer;
 }
 
 .pagination-item-active {
   font-weight: 500;
   background: #fff;
   border-color: #2fa962;
 }
 
 .pagination-item-active a {
   color: #2fa962 !important;
 }


.nav-bar-extra{
    display: none;
}
 
 
 
 
 /*1200-1440 xl*/
 @media (max-width:1440px) {
   .wrap {
     width: 100%;
   }
 
   .header {
     height: 80px;
   }
 
   .header,
   .footer .wrap {
     padding-left: 40px;
     padding-right: 40px;
   }
 
   .header .wrap {
     height: 100%;
   }
 
   .header .logo img {
     max-height: 54px;
   }
 
 
   .header .navbar .nav-link {
     font-size: 16px;
     padding: 42px 10px 0;
   }
 
   .header .user-box {
     /*padding-top: 18px;*/
   }
 
   .header .search-box {
     margin-left: 0;
   }
 
   .banner {
     margin-top: 80px;
     padding: 0 40px;
     height: 320px;
   }
 
   .banner .banner-title .titles .ctitle {
     font-size: 40px;
   }
 
   .banner .banner-title .titles .etitle {
     margin-top: 16px;
     font-size: 28px;
   }
 
   .main {
     padding: 60px 40px 0;
   }
 
 }
 
 /* 992-1200 lg*/
 @media (max-width:1200px) {
   .header {
     height: 70px;
   }
 
   .header .logo img {
     max-height: 44px;
   }
 
   /*.header .navbar {*/
   /*  display: none !important;*/
   /*}*/
 
   .header .user-box {
     padding-top: 0;
   }
 
   .header .menu-icon {
     margin-left: 15px;
     display: block;
   }
 
   .header .not-logged {
     height: 32px;
   }
 
   .banner {
     margin-top: 70px;
     height: 268px;
   }
 
   .banner .banner-title {
     padding-top: 96px;
   }
 
   .banner .banner-title .titles .ctitle {
     font-size: 32px;
   }
 
   .banner .banner-title .titles .etitle {
     margin-top: 10px;
     font-size: 20px;
   }
 
   .footer .f-logo {
     height: 65px;
     vertical-align: top;
   }
 
   .footer .text-row {
     margin-top: 5px;
     line-height: 1;
   }
 
 
 
 }
 
 
 
 /* 768-992 md */
 /*@media (max-width:1024px) {*/
 /*  .main {*/
 /*    padding: 40px 40px 0;*/
 /*  }*/
 /*    .nav-bar-extra {*/
 /*        display: flex;*/
 /*        align-items: center;*/
 /*        float: right;*/
 /*    }*/
 /*}*/
 
 /*!* 576px-768 sm *!*/
 /*@media (max-width:768px) {*/
 /*  .main {*/
 /*      padding: 20px 40px 0;*/
 /*  }*/
 /*}*/
 
 /* 375-576 */
 @media (max-width:1024px) {
     .main {
         padding: 20px 40px 0;
     }
     .nav-bar-extra {
         display: flex;
         align-items: center;
         float: right;
     }
   .header,
   .footer .wrap {
     padding-left: 15px;
     padding-right: 15px;
   }
   .header .logo img {
     max-height: 38px;
   }
 
   .header .user-box,
   .header-search{
     display: none !important;
   }
     .head_nav{
         display: none !important;
     }
 
   .nav-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     height: 26px;
     margin-left: 16px;
     padding-top: 0px;
   }
 
   .nav-btn-icon {
     display: block;
     width: .48rem;
     height: .48rem;
   }
 
   .nav-btn-icon.user {
     background: url(../images/denglu.png) no-repeat;
     background-size: 100% 100%;
     width: 26px;
     height: 26px;
     min-width: 26px;
   }
 
   .nav-btn-icon.menu {
     box-sizing: border-box;
     padding-top: 4px;
     width: 26px;
     height: 26px;
   }
 
   .nav-btn-icon.menu span {
     display: block;
     width: 21px;
     height: 3px;
     margin: 0 auto 5px;
     position: relative;
     background: #fff;
     border-radius: .06rem;
     z-index: 1;
     -ms-transform-origin: .4rem;
     transform-origin: .4rem;
     transition: opacity .45s ease, transform .4s cubic-bezier(0.77, 0.2, 0.05, 1), width .4s;
   }
 
   .nav-btn-icon.menu span:last-child {
     margin-bottom: 0;
   }
 
 
 
 
   .header .user-menu-wrap {
    position: fixed;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    transition: opacity .3s ease;
    z-index: -999;
  }
  
  .header .user-menu-wrap.toggle {
    height: auto;
    opacity: 1;
    z-index: 1001;
  }
  
  .header .user-menu-wrap .user-nav {
    /* background: linear-gradient(315deg, #1197e2, #024697); */
    background-color: #2fa962;
    color: #fff;
    height: 80px;
    padding: 0 20px;
  }
  
  .header .user-menu-wrap .user-nav img {
    max-height: 54px;
  }
  
  .header .user-menu-wrap .user-menu {
    background: linear-gradient(90deg, #289d57, #036423);
    color: #fff;
    left: 0;
    position: static;
    top: 80px;
    width: 100%;
    padding: 24px 12px;
  }
  
  .header .user-menu-wrap .user-menu .user-menu-btn {
    -moz-box-flex: 1;
    display: block;
    -webkit-flex: 1 0;
    flex: 1 0;
    height: 36px;
    line-height: 36px;
    margin: 0 8px;
    text-align: center;
    -webkit-transition: all .1s linear;
    -o-transition: all .1s linear;
    -moz-transition: all .1s linear;
    transition: all .1s linear;
  }
  
  .user-menu-btn.center {
    background: #2fa962;
  }
  
  .user-menu-btn.back {
    border: 1px solid hsla(0, 0%, 100%, .3);
  }
  
 
 
 
 
 
 
 .nav-btn-icon.menu.toggle-animate span {
   opacity: 1;
   -ms-transform: rotate(-45deg);
   transform: rotate(-45deg);
 }
 
 .nav-btn-icon.menu.toggle-animate span:nth-child(2) {
   width: 0;
   opacity: 0;
   -ms-transform: rotate(0deg);
   transform: rotate(0deg);
   transition: width .5s ease;
 }
 
 .nav-btn-icon.menu.toggle-animate span:nth-child(3) {
   opacity: 1;
   -ms-transform: rotate(45deg);
   transform: rotate(45deg);
 }
 .nav-btn-icon.menu.toggle-animate span{
   margin: 11px auto -17px;
 }
 .header.is-fixed .nav-dropdown {
   display: block;
 }
 
 .header.is-fixed .user{
   background: none;
 }
 
 .header.is-fixed .head_nav{
   position: fixed;
   right: 0;
   left: 0;
   top: 70px;
   bottom: 0;
   border-top: 0.02rem solid #e1e4e9;
   z-index: 1000;
   background-color: #fff;
   color: #495770;
   overflow: hidden;
   display: block !important;
 }
 .header.is-fixed .navbar{
   display: block !important;
   width: 100%;
 }
 .header.is-fixed .navbar .nav-item {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 48px;
   line-height: 48px;
   box-sizing: border-box;
   padding: 18px;
   background: url(../images/nav-arr.png) center right no-repeat;
    width: 92%;
    background-size: 8px auto;
 }
 
 .header.is-fixed .navbar .nav-item .nav-link{
   font-size: 14px;
   padding: 0px;
 }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
   .banner {
     padding: 0 20px;
     height: 190px;
   }
 
   .banner .banner-title {
     padding-top: 65px;
   }
 
   .banner .banner-title .titles .ctitle {
     font-size: 28px;
   }
 
   .banner .banner-title .titles .etitle {
     font-size: 14px;
   }
 
   .main {
     padding: 20px 20px 0;
   }
 
   .footer .wrap>.d-flex {
     flex-direction: column;
 
   }
 
   .footer .f-logo {
     height: 40px;
     margin-bottom: 10px;
   }
 
   .footer .text-row {
     font-size: 12px;
   }
 
 
 }
 
 
 
 
 
 
 
 
 .pagination {
   display: block;
   text-align: center;
   display: flex;
   justify-content: center;
 }
 
 .pagination a:nth-child(2),
 .pagination a:nth-last-child(2),
 .pagination li:nth-child(2),
 .pagination li:nth-last-child(2) {
   margin: 0 10px;
 }
.pagination li{
    display: flex;
    align-items: center;
}
 .pagination a {
   display: inline-block;
   vertical-align: top;
   border: 0;
   font-size: 14px;
   min-width: 36px;
   height: 36px;
   line-height: 36px;
   font-weight: 400;
   cursor: pointer;
   padding: 0 4px;
   color: #2fa962;
   background: #fff !important;
   box-sizing: border-box;
   text-align: center;
 }
 
 .pagination a.actiive,
 .pagination li.active a {
   background: #2fa962 !important;
   color: #fff !important;
 }