/*! HTML5 Boilerplate v9.0.0-RC1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
   html,body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
  }
  
  /*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */
  
  ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  
  ::selection {
    background: #b3d4fc;
    text-shadow: none;
  }
  
  /*
   * A better looking default horizontal rule
   */
  
  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
  }
  
  /*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
  
  audio,
  canvas,
  iframe,
  img,
  svg,
  video {
    vertical-align: middle;
  }
  
  /*
   * Remove default fieldset styles.
   */
  
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  /*
   * Allow only vertical resizing of textareas.
   */
  
  textarea {
    resize: vertical;
  }
  
  /* ==========================================================================
     Author's custom styles
     ========================================================================== */
  
  /* ==========================================================================
     Helper classes
     ========================================================================== */
  
  /*
   * Hide visually and from screen readers
   */
  
  .hidden,
  [hidden] {
    display: none !important;
  }
  
  /*
   * Hide only visually, but have it available for screen readers:
   * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
   *
   * 1. For long content, line feeds are not interpreted as spaces and small width
   *    causes content to wrap 1 word per line:
   *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
   */
  
  .visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
  }
  
  /*
   * Extends the .visually-hidden class to allow the element
   * to be focusable when navigated to via the keyboard:
   * https://www.drupal.org/node/897638
   */
  
  .visually-hidden.focusable:active,
  .visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
  }
  
  /*
   * Hide visually and from screen readers, but maintain layout
   */
  
  .invisible {
    visibility: hidden;
  }
  
  /*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */
  
  .clearfix::before,
  .clearfix::after {
    content: "";
    display: table;
  }
  
  .clearfix::after {
    clear: both;
  }
  
  /* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */
  
  @media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
  }
  
  @media print,
    (-webkit-min-device-pixel-ratio: 1.25),
    (min-resolution: 1.25dppx),
    (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
  }
  
  /* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */
  
  @media print {
    *,
    *::before,
    *::after {
      background: #fff !important;
      color: #000 !important;
      /* Black prints faster */
      box-shadow: none !important;
      text-shadow: none !important;
    }
  
    a,
    a:visited {
      text-decoration: underline;
    }
  
    a[href]::after {
      content: " (" attr(href) ")";
    }
  
    abbr[title]::after {
      content: " (" attr(title) ")";
    }
  
    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
      content: "";
    }
  
    pre {
      white-space: pre-wrap !important;
    }
  
    pre,
    blockquote {
      border: 1px solid #999;
      page-break-inside: avoid;
    }
  
    tr,
    img {
      page-break-inside: avoid;
    }
  
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3;
    }
  
    h2,
    h3 {
      page-break-after: avoid;
    }
  }
  body{
    margin: 0;
  }
  #showText{
    position: fixed;
    min-width: 200px;
    max-width: 250px;
    padding: 40px 10px;
    text-align: center;
    border-radius: 5px;
    color: white;
    top: 25vh;
    left: calc(50vw - 100px);
    background-color: rgba(100, 100, 100, 0.68);
  }

/* 滚动条优化 start */
::-webkit-scrollbar{
  width:8px;
  height:8px;
}
::-webkit-scrollbar-track{
  background: #f6f6f6;
  border-radius:2px;
}
::-webkit-scrollbar-thumb{
  background: #cdcdcd;
  border-radius:2px;
}
::-webkit-scrollbar-thumb:hover{
  background: #747474;
}
::-webkit-scrollbar-corner {
  background: #f6f6f6;
}
/* 滚动条优化 end */
  
  .header{
    width: 100%;
    height: 65px;
    line-height: 65px;
    position: fixed;
    top: 0;
    background: #3067ac;
    z-index: 999;
  }
  .header .menu_icon{
    display: none;
    position: absolute;
    left: 8px;
  }
  .logo{
    width: 100%;
    max-width: 400px;
  }
  
  .right_tool{
    position: absolute;
    right: 10px;
    top: 0;
  }
  .right_tool .tool {
    cursor: pointer;
    height: auto;
    line-height: initial;
    display: inline-block;
    color: #cad3d4;
    background: #00000020;
    padding: 4px 8px;
    border-radius: 15px;
  }
  .right_tool .tool a {
    color: #cad3d4;
  }
  .right_tool .tool a:hover{
    color: #ffffff;
  }

  .home_page{
    background-color: #f1f1f1;
  }
  /* .home_page .search_input{
    line-height: 30px;
    width: 200px;
    position: fixed;
    right: -200px;
    top: 17px;
  
  }
  .home_page .search_input input{
    padding-left: 15px;
    border-radius: 30px;
    box-shadow: none;
    border: none;
    outline:none;
    background-color: rgba(255, 255, 255, 0.91);
  }
  .home_page .search_input input:focus{
    border: none;
  }
  .home_page .search_input.show{
    right: 8px;
    animation: showSearch 0.5s linear;
  }
  .home_page .search_input.hide{
    right: -200px;
    animation: hideSearch 0.5s linear;
  }
 */

  .site-link {
    float: right;
    margin-right: 37px;
  }

/**搜索**/
.search-panel {
  position: absolute;
  clear: right;
  right:0;
  top: 17px;
}

.search-window {
  background-color: #ffffffb3;
  overflow: hidden;
  width: 0px;
  border-radius:50px;
  height: 28px;
}

.wp-search {
  position: relative;
}
.wp-search form {
  display: block;
}
.wp-search .search-input {
  height: 28px;
}
.wp-search .search-input input.search-title {
  width: 100%;
  height: 28px;
  line-height: 28px;
  border: 0;
  outline: 0;
  background: none;
  color:#000000;
  font-size: 14px;
  padding-left: 15px;
  float: left;
}
.wp-search .search-input input.search-title::placeholder{
   color:#666666;
}
.wp-search .search-btn {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 0;
  top: 0;
}

.wp-search .search-btn input.search-submit, .searchbtn {
  width: 28px;
  height: 28px;
  border: 0;
  outline: 0;
  background: url(../img/sous.png) center no-repeat;
  cursor: pointer;
}

.searchbtn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 120;
  cursor: pointer;
}

  @keyframes showSearch {
    0%{
      right: -200px;
    }
  
    100% {
      right: 8px;
    }
  }
  @keyframes hideSearch {
    0%{
      right: 8px;
    }
  
    100% {
      right: -200px;
    }
  }
  .g-head {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
  }
  .fixednav:before {
    content: "";
    height: 118px;
  }
  .fixednav:after {
    content: "";
    /* background: rgba(0,69,155,1); */
  }
  .g-head:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    /* height: 118px;
    background: rgba(0,69,155,0.8); */
  }
  .g-head:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    /* height: 118px; */
  }
  .g-nav {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 119px;
    margin: 0 auto;
    border-top: #fff 1px solid;
  }
  .nav_menu3 > div > ul > li:hover {
    background: #02448f;
  }
  .nav_menu3{
    position: fixed!important;
    width: 100%;
    top: 65px;
    background: #3067ac;
    margin: 0 auto;
    z-index: 99999;
  }
  .nav_menu3,
  .nav_menu3 ul{
    cursor: pointer;
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    box-sizing: border-box;
  }
  .nav_menu3 ul li
  {
    margin: 0;
    padding: 0;
    border: 0;
    color: white;
    list-style: none;
    position: relative;
    box-sizing: border-box;
    height: 50px;
    line-height: 50px;
  }
  .nav_menu3 ul{
    position: relative;
  }
  .nav_menu3 #menu-button {
    margin-top: 100px;
    background: #F00;
    position: absolute;
    z-index: 99999;
  }
  .nav_menu3:after,
  .nav_menu3 > div > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
  }
  .nav_menu3 #menu-button {
    display: none;
  }
  #menu-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: #990B2C;
    transition: all 0.25s ease-out;
  }
  .nav_menu3 ul.nav_ul {
    display: flex;
    justify-content: space-around;
  }
  .nav_menu3 ul.nav_ul > li {
    display: inline-block;
    text-align: center;
    /* width:12.5%; */
    flex: 1;
    height: 50px;
    line-height: 50px;
  }
  .nav_menu3.align-center > ul {
    font-size: 0;
    text-align: center;
  }
  .nav_menu3.align-center > ul > li {
    display: inline-block;
    float: none;
  }
  .nav_menu3.align-center ul ul {
    text-align: left;
  }
  .nav_menu3.align-right > ul > li {
    float: right;
  }
  .nav_menu3.align-right ul ul {
    text-align: right;
  }
  .nav_menu3 ul.nav_ul > li > a {
  
    text-decoration: none;
  
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
    color: #fff !important;
    font-size: 18px;
    height: 50px;
    line-height:50px;
    font-weight: 500;
    display: block;
  
  }
  .nav_menu3 ul.nav_ul > li:hover  {
    background: #02448f;
  }
  
  
  .nav_menu3 ul.nav_ul > li.active  {
    background: #02448f;
  }
  
  
  .nav_menu3 > div > ul > li#nav-has-sub:hover > a::after {
    border-color: #990B2C;
  }
  .nav_menu3 ul ul {
    position: absolute;
    left: -9999px;
    width: 100%;
  }
  
  .nav_menu3 li:hover > ul {
    left: 0;
  }
  .nav_menu3.align-right li:hover > ul {
    left: 0;
  }
  .nav_menu3 ul ul ul {
    margin-left: 100%;
    top: 0;
  
  }
  .nav_menu3 ul ul ul li a{background: #007ad0;}
  .nav_menu3 ul ul ul li:hover{background:#007ad0;}
  .nav_menu3 ul ul ul li:hover a{background:none;color:#30f3ff}
  .nav_menu3.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
  }
  .nav_menu3 ul ul li {
    height: 0;
    -webkit-transition: height .2s ease;
    -moz-transition: height .2s ease;
    -ms-transition: height .2s ease;
    -o-transition: height .2s ease;
    transition: height .2s ease;
    width: 100%;
  
  }
  .nav_menu3 ul li:hover > ul > li {
    height: 50px;
  
  }
  .nav_menu3 ul ul li a {
    display: block;
    padding: 0;
    height: 50px;
    line-height:50px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    background: #004478;
    text-decoration: none;
    color: #eeeeee;
  
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
    font-size: 16px;
  }
  .nav_menu3 ul ul li:hover > a,
  .nav_menu3 ul ul li a:hover {
    color: #fff;
    background: #003e6d;
  }
  ul.nav_ul {
    width: 1400px;
    margin: 0 auto;
    /*background: #007ad0;*/
  }
  .nav_menu3 ul li:nth-child(8) ul li:nth-child(1):hover ul {
    right: 0 !important;
    left: auto;
  }
  .nav_menu3 ul ul ul li:hover a {
    color: #30f3ff!important;
  }
  
  .nav_menu3 ul li:nth-child(8) ul ul {
    margin-right: 100% !important;
    margin-left: 0;
  }
  .g-nav2 {
    transition: All 0.5s ease;
    -webkit-transition: All 0.5s ease;
    -moz-transition: All 0.5s ease;
    -o-transition: All 0.5s ease; 
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
  }
  .g-nav2 {
    position: fixed;
    z-index: 49;
    left: 0;
    top: 116px;
    right: 0;
    bottom: 0;
    background: rgba(0,69,155,1);
    background-size: cover;
    opacity: 0;
    width: 100%;
    height: 100vh;
    visibility:hidden
  }
  .navShow .g-nav li{display: none}
  .navShow .g-nav2{opacity: 1;visibility:visible}
  .navShow .g-head:before{content: ""; background:none;height: 120px;}
  .navShow .g-head:after{content: ""; background:none;height: 120px;}
  .navShow .g-head .wal{min-height:120px;}
  .g-nav2 .scroll {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
  }
  .g-nav2 .scroll ul {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    display: -ms-flex;
  }
  .g-nav2 .scroll li {
    width: 12.5%;
    text-align: center;
    /* padding-top: 138px; */
    padding-top: 38px;
    list-style: none;
  }
  .g-nav2 .scroll li a {
    color: #fff;
  }
  .g-nav2 .scroll li h2 {
    font-size: 20px;
  
  }
  .g-nav2 .scroll li .list {
    padding:10px 0
  }
  .g-nav2 .scroll li .list h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
  }
  
  .g-nav2 .scroll li .list dl {
    padding-bottom: 0.2rem;
  }
  .g-nav2 .scroll li .list dl h3 {
    font-size: 16px;
    line-height: 30px;
    opacity: 0.65;
  }
  .g-nav2 .scroll li .list dl h3:hover {
    opacity: 1;
  }
  body.navShow{
    overflow: hidden;
  }
  body.navShow .g-head .btn-list {
    top: 0
  }
  body.navShow .g-head a.navA:after {
    background-image: url("../img/menu.png");
  }
  body.navShow .g-nav2{z-index: 51;}
  body.navShow .g-head{z-index: 52;}
  .g-head a.navA {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 8px;
    bottom: auto;
    background-size: 100% 100%;
    width: 50px;
    height: 50px;
    display: none;
  }
  .g-head a.navA:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url("../img/menu.png") center no-repeat;
  }

  @media screen and (max-width: 1400px) {
    ul.nav_ul {
      width: 100%;
    }
  }
  
  .swiper_container{
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  .swiper_container .pre{
    cursor: pointer;
    color: white;
    font-size: 40px;
    position: absolute;
    top: 40%;
    left: 10px;
    transform:scaleY(2.2);
    z-index: 5;
  }
  .swiper_container .next{
    cursor: pointer;
    color: white;
    font-size: 40px;
    position: absolute;
    top: 40%;
    right: 10px;
    transform:scaleY(2.2);
    z-index: 5;
  }
  .swiper_container .swiper_wrapper{
    width: 40000px;
    position: relative;
  }
  .swiper_container .swiper_wrapper.active{
    transition-duration: 1s;
  }
  
  .swiper_container .swiper_wrapper .swiper_slide{
    float: left;
  }
  .swiper_container .swiper_wrapper .swiper_slide img{
    width: 1000px;
  }
  .swiper_container .swiper_wrapper .swiper_slide.active{
  
  }
  .swiper_container .swiper_wrapper .swiper_slide.next{
    position: absolute;
  }
  .content{
    max-width: 1200px;
    margin: auto;
    background-color: white;
    padding: 20px;
    position: relative;
  }
  /* .content .news{
    overflow: hidden;
    height: 310px;  
  } */
  .content .news .title{
    padding-bottom: 5px;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
  }
  .content .news .title .news_tool{
    position: absolute;
    top: 5px;
    left: 150px;
  }
  .content .news .title .news_tool .left,.content .news .title .news_tool .right{
    float: left;
    cursor: pointer;
  }
  .content .news .title .news_tool .left img,.content .news .title .news_tool .right img{
    display: none;
  }
  .content .news .title .news_tool .left img.active,.content .news .title .news_tool .right img.active{
    display: block;
  }
  .content .news .title .news_tool .left{
    transform: scaleX(-1);
    position: relative;
    left: -3px;
  }
  .content .news .title b{
    padding-left: 3px;
    position: relative;
  }
  .content .news .title b:after{
    content: '';
    display: inline-block;
    width: 105%;
    height: 3px;
    background-color: #1b75ca;
    position: absolute;
    left: 0;
    bottom: -5px;
  }
  .content .more{
    cursor: pointer;
    float: right;
    color: #1b75ca;
    font-weight: 600;
    font-size: 16px;
  }
  .content .list_group{
    height: 250px;
    width: 3000px;
    position: relative;
  }
  .content .list_group.active{
    transition-duration: 1s;
  }
  .content .list_group .list_group_item{
    float: left;
    width: 250px;
    margin-right: 35px;
    overflow: hidden;
  }
  .content .list_group .list_group_item img{
    display: block;
    width: 250px;
    height: 166px;
    object-fit: cover;
  }
  .content .list_group .list_group_item .info{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-height: 1.5;
    margin: 10px 0 5px 0;
    font-size: 16px;
    height: 46px;
  }
  .content .list_group .list_group_item .info a {
    color: #666;
  }
  .content .list_group .list_group_item .info a:hover {
    color: #1b75ca;
  }
  .content .list_group .list_group_item .creat_time{
    font-size: 13px;
    color: #999;
  }
  .content .notice,.content .science{
    padding-bottom: 5px;
    position: relative;
  }
  .content .notice .title,.content .science .title{
    padding-bottom: 5px;
    position: relative;
    border-bottom: 1px solid #f1f1f1;
  }
  .content .notice .title b,.content .science .title b{
    padding-left: 3px;
    position: relative;
  }
  .content .notice .title b:after,.content .science .title b:after{
    content: '';
    display: inline-block;
    width: 105%;
    height: 3px;
    background-color: #1b75ca;
    position: absolute;
    left: 0;
    bottom: -5px;
  }
 .mt15 {
     margin-top: 15px;
 }
/**********news-container****************/
.news ul li {float:left;line-height:30px;margin-top:30px;}
.news ul li.slick-slide {
  margin-top:0px;
}
.news ul li .news_in{width:250px;margin:0 auto;}
.news .hd {position:absolute;left:120px;top:27px;}
.news .pageState {font-size:12px;margin-right:10px;color:#999;}
.news .hd .prev,.news .hd .next {display:block;width:5px;height:9px;float:right;margin-right:5px;margin-top:10px;overflow:hidden;cursor:pointer;background:url(../img/arrow.png) 0 0 no-repeat;}
.news .hd .next {background-position:0 -50px;}
.news .hd .prevStop {background-position:-60px 0;}
.news .hd .nextStop {background-position:-60px -50px;}
.news .hd ul {float:right;overflow:hidden;zoom:1;margin-top:10px;zoom:1;}
.news .hd ul li {float:left;width:9px;height:9px;overflow:hidden;margin-right:5px;text-indent:-999px;cursor:pointer;line-height:inherit;margin-top:0;}
.news .hd ul li.on {background-position:0 0;}
.news .bd {width:1184px;margin:0 -22px;}
.news ul li img {width:250px;height:166px;object-fit: cover;}
.news ul li a {display:block;}
.news ul li:hover h3 {color:#085DAB;}
.news ul li p {font-size:14px;color:#666;}
.news ul li h3 {line-height:1.5;margin:10px 0 5px 0;font-size:16px;height:46px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow:hidden;
 }
 .news ul.news_list {
   padding: 0
 }
 @media screen and (max-width: 1199px) {
  .news .bd{max-width:100%;margin:0;}
 }
  /**********swiper-container****************/
  .swiper-container { width: 100%;height: 100%;margin-top: 116px;}
  .pagination {
        display: block;
      position: absolute;
      right: 10px !important;
    left: auto !important;
      text-align: right;
      bottom: 15px !important;
      width: 100%;
    z-index: 999;
    display: none;
  }
  .swiper-pagination-bullet{
      display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 6px !important;
    cursor: pointer;
  opacity:1;
    
  }
  .swiper-slide img{width:100%;height:100%;object-fit: cover;}
  .swiper-pagination-bullet-active{  background: #ff8c93;}
  .swiper-button-next{background-image:url(../img/b_arrow_l.png);width:46px;height:87px;left:30px;top:60%;background-size: 100% 100%;opacity: 0;transition-duration:.3s; -webkit-transition-duration:.3s; -o-transition-duration:.3s; -ms-transition-duration:.3s; -moz-transition-duration:.3s;}
  .swiper-button-prev{background-image: url(../img/b_arrow_r.png);width:46px;height:87px;left: auto;right:30px;top:60%;background-size: 100% 100%;opacity: 0;transition-duration:.3s; -webkit-transition-duration:.3s; -o-transition-duration:.3s; -ms-transition-duration:.3s; -moz-transition-duration:.3s;}
  .swiper-container:hover .swiper-button-next, .swiper-container:hover .swiper-button-prev{opacity: 1}
  .swiper-pagination{text-align: right;right: 0 !important;bottom:25px !important;margin: 0 auto;width: 1200px !important;}
  .swiper-pagination-bullet{width: 25px;height: 25px;background: #fff;border-radius: 0;color: #085087;line-height: 25px;text-align: center}
  .swiper-pagination-bullet-active{background:#085087;color: #fff;}
  
  .swiper-container2 .pagination {
        display: block;
      position: absolute;
      right: 20px !important;
      text-align: center;
      bottom:10px !important;
      width: 100%;
    z-index: 999;
    text-align: right;
  
  }
  .swiper-container2 .swiper-pagination-bullet{
      display: inline-block;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #ededed !important;
    margin: 0 5px;
    cursor: pointer;
  opacity:1 !important;
    
  }
  .swiper-container2 .swiper-pagination-bullet-active{  background: #4da3e4 !important;}
  /**********notification****************/
  .notification {
    width: 100%;
    float: left;
  }
  
  .notification h4 {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .notification li {
    width: 100%;
    float: left;
    margin: 12px 12px 12px 0px;
  }
  
  .notification li {
    display: block;
    text-decoration: none;
    color: #666;
    width: 100%;
    height: 80px;
    padding: 15px 10px 10px 100px;
    background-color: #fff;
    position: relative;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }
  .notification li a {
    color: #666;
  }
  .notification li a .bt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 50px;
    height: auto !important;
    line-height: 25px;
    white-space: inherit;
  }
  
  .notification li a .sTime {
    font-size: 16px;
    width: 75px;
    position: absolute;
    left: 10px;
    top: 10px;
    color: rgba(0,69,155,0.8);
    text-align: center;
  }
  
  .notification li a .sTime b {
    display: block;
    font-size: 36px;
    line-height: 36px;
    color: rgba(0,69,155,0.8);
    font-weight: bold;
  }
  .notification li:hover {
    background-color: rgba(0,69,155,1);
  }
  .notification li:hover a {
    color: #fff;
  }
  
  .notification li:hover .sTime {
    color: #fff;
  }
  
  .notification li:hover .sTime b {
    color: #fff;
  }
  
  .events {
    width: 100%;
    float: left;
  }
  
  .events h4 {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .events li {
    width: 100%;
    float: left;
    margin: 12px 12px 8px 0px;
    height: 190px;
  }
  
  .events li .bt {
    display: block;
    text-decoration: none;
    color: #ebe5e5;
    width: 100%;
    min-height: 60px;
    padding: 15px 10px 5px 20px;
    background-color: rgba(0,69,155,0.8);
    position: relative;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  }
  
  .events li a {
    color: #ebe5e5;
    transition: all 0.4s ease-in-out;
  }
  
  .events li .bt:hover {
    background-color: rgba(0,69,155,1);
  }
  
  .events li .bt a:hover {
    color: #10bcee;
    padding-left: 22px;
  }
  
  /***********footer************/
  .footer {
    background-color:rgba(0,69,155,0.8) !important;
    background-size: cover;
    resize: both;
  }
  
  .footer h5 {
    padding-left: 30px;
    font-weight: 600;
  }
  
  .footer .address {
    margin-left: 30px;
  }
  
  .footer .footer-left,
  .footer .footer-mid, .footer .footer-contact {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer .footer-gzh {
    text-align: center;
  }
  @media (min-width: 767px) { 
    .footer .footer-gzh {
      width: 100%;
    }
  }
  @media (max-width: 768px) { 
    .footer .footer-gzh {
      text-align: left !important;
      padding-left: 30px;
      padding-top: 30px
    }
  }
  .footer p {
    margin: 0;
  }
  
  .footer .quick-link {
    padding-bottom: 10px;
  }
  
  .footer .quick-link a {
    margin-left: 30px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
  }
  
  .footer .quick-link a:hover {
    color: #10bcee;
    margin-left: 32px;
  }
  
  .footer .copyright {
    opacity: 0.8;
  }
  .footer .copyright>div { padding: 0 0.8rem}
  
  @media screen and (max-width: 700px){
    .g-nav2 .scroll ul{display: block;width:94%;}
    .g-nav2 .scroll li{width: 100%;padding-top: 0!important;border-bottom:#0739b2 1px solid;height: auto;line-height: 60px}
    .g-nav2 .scroll li h2 a{font-size: 18px;}
    .g-nav2 .scroll li:nth-of-type(1){margin-top: 30px;}
    .g-nav2 .scroll li .list{display: none}
    .g-nav2 .scroll li .list dl{font-size: 0;height: auto;overflow: hidden;margin:0 auto}
    .g-nav2 .scroll li .list dl h3{width: 25%;float: left;display:inline-block; text-align: center;}
    .g-nav2 .scroll li h2 {text-align: left;position: relative; line-height: 50px;}
    .g-nav2 .scroll li h3 {text-align: left}
    .g-nav2 .scroll li h2.h2:after {
      content: "";
      background:url("../img/arrow_down.png")center center no-repeat;
      display: block;
      position: absolute;
      top: 0;
      right: 0.5rem;
      color: #fff;
      width: 40px;
      height: 40px;
      background-size: 100% 100%
    }
    .g-nav2 .scroll li.on h2.h2:after {
      transform: rotate(180deg);
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
    }
    .navA {
      display: block!important;
    }
    .g-nav2 {
      top: 64px;
    }
    .header {
      background: #3067ac;
    }
    .swiper-container { margin-top: 65px !important;}

  }
  @media screen and (max-width: 700px){
    .logo{
      width: 86%;
      margin-left: 7%;
    }
    .right_tool{
      display: none;
    }
    .menu_icon{
      display: block!important;
    }
    .nav_menu3{
      display: none;
    }
  }

  @media screen and (max-width: 560px){ 
    .news ul li .news_in {
      width: 325px;
    }
    .news ul li img {
      width: 100%;
    }
  }
