* {
  /*box-sizing:content-box;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 100px;
}
ul,
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #000;
}
* {
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-family: "微软雅黑", arial, Helvetica, sans-serif;
}
li {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}
img {
  border: 0px;
  max-width: 100%;
  display: inline-block;
}

@font-face {
  font-family: "iconfont";
  src: url("../fonts/iconfont.woff2?t=1688373229607") format("woff2"),
    url("../fonts/iconfont.woff?t=1688373229607") format("woff"),
    url("../fonts/iconfont.ttf?t=1688373229607") format("truetype");
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clear:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

/*滚动条样式*/
body {
  height: 100%;
  overflow-y: auto;
}

body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

body::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: #aaa;
}

.w80 {
  width: 80%;
  margin: 0 auto;
}

.head {
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 90px;
  line-height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2.5%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .logo {
  /* line-height: 1.4rem; */
}
.head .logo a {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .logo img {
  display: block;
}
.head .logo img.logo1 {
  display: none;
}
.head .nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.head .nav li {
  position: relative;
  margin: 0 0.2rem;
}
.head .nav li a {
  position: relative;
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 0 0.025rem;
}
.head .nav li a:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  height: 3px;
  width: 0px;
  background-color: #00458e;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .nav li i {
  display: inline-block;
  margin-right: 5px;
}
.head .nav li dl {
  position: absolute;
  top: 100%;
  left: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.head .nav li:hover dl {
  opacity: 1;
  visibility: visible;
}
.head .nav li dl dd {
  margin: 0 0.1rem;
}
.head .nav li dl dd a {
  display: block;
  font-size: 16px;
  line-height: 48px;
  color: #fff !important;
}
.head .nav li dl dd a:after {
  background-color: #fff;
}
.nav_bg {
  position: fixed;
  z-index: 998;
  top: 110px;
  left: 0px;
  width: 100%;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  background-color: #00458e;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.nav_bg.on {
  top: 90px;
  opacity: 1;
  visibility: visible;
}
.head .head_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.head .head_btn a {
  display: block;
  margin-left: 0.3rem;
}
.head .head_btn p {
  display: inline-block;
  color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.head .head_btn i {
  display: inline-block;
  color: #fff;
  margin-left: 0.12rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.head.on {
  height: 90px;
  line-height: 90px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.head.on .logo img.logo1 {
  display: block;
}
.head.on .logo img.logo2 {
  display: none;
}
.head.on .nav li a,
.head.on .head_btn p,
.head.on .head_btn i {
  color: #333;
}

.head.on .nav li a:hover {
  color: #00458e;
}
.head.on .nav li a:hover:after {
  width: 100%;
}
.head.on .head_btn a:hover p,
.head.on .head_btn a:hover i {
  color: #00458e;
}

body.up .head.head_scroll {
  top: -90px;
}

/* serach */
.head_search {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 45px;
  width: 768px;
  height: 140px;
}
.head_search form {
  position: relative;
}
.head_search input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ddd;
  outline: 0;
  padding: 0 70px 0 20px;
  font-size: 14px;
  color: #666;
}
.head_search button {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50px;
  height: 50px;
  border: 0px;
  font-size: 22px;
  cursor: pointer;
  background-color: #ccc;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.head_search button:hover {
  color: #fff;
  background-color: #00458e;
}
.head_search .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.head_search .close:after,
.head_search .close:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  line-height: 20px;
  background-color: #999;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.head_search .close:before {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.search_bg {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

/* menu */
.menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: url(../images/menu_bg.png) no-repeat center top #00458e;
  -o-background-size: cover;
     background-size: cover;
}
.menu .w80 {
  height: 100%;
}
.menu .top {
  position: relative;
  height: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu .top .close {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 28px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.menu .top .close:hover {
  -webkit-transform: rotate(135deg);
     -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
       -o-transform: rotate(135deg);
          transform: rotate(135deg);
}
.menu .content {
  height: -webkit-calc(100% - 90px);
  height: -moz-calc(100% - 90px);
  height: calc(100% - 90px);
  overflow-y: auto;
}
.menu .content li {
  margin-bottom: 0.6rem;
}
.menu .content li h3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu .content li h3 a {
  display: block;
  font-size: 24px;
  line-height: 48px;
  color: #fff;
}
.menu .content li dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0.2rem;
}
.menu .content li dl dd {
  margin-right: 0.3rem;
}
.menu .content li dl a {
  display: block;
  font-size: 14px;
  color: #fff;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.menu .content li dl a:hover {
  opacity: 1;
}

.menu .content::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.menu .content::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 1px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.menu .content::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.2);
}

/* index */
.index_bg {
  background-color: #f5f5f5;
}
.intl {
  margin-bottom: 30px;
}
.intl h3 {
  font-size: 42px;
  line-height: 48px;
  color: #444;
  margin-bottom: 10px;
}
.intl p {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}

.inbanner img {
  display: block;
}

.inpro {
  position: relative;
  padding: 0.6rem 0 1rem;
  background-color: #f5f5f5;
}
.inpro .intl {
  max-width: 55%;
}
.inpro .sk {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45%;
  height: 50%;
  padding-right: 10%;
  padding-top: 0.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* background: url(../images/inpro_bg.png) no-repeat center left;
  background-size: auto 100%; */
  background-color: #00458e;
}
.inpro .sk div {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 100%;
  text-align: center;
  margin: 10px 0 0 20px;
  cursor: pointer;
  -webkit-transform: rotate(0);
     -moz-transform: rotate(0);
      -ms-transform: rotate(0);
       -o-transform: rotate(0);
          transform: rotate(0);
}
.inpro .sk div.inpro_prev {
  -webkit-transform: rotate(180deg);
     -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}
.inpro .sk div.inpro_prev:after,
.inpro .sk div.inpro_next:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .sk i {
  font-size: 24px;
  color: #fff;
  line-height: 56px;
}
.inpro .sk div:hover i {
  color: #00458e;
}
.inpro .sk div.inpro_prev:hover:after,
.inpro .sk div.inpro_next:hover:after {
  width: 60px;
  height: 60px;
}
.inpro .content {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.inpro .content li a {
  display: block;
}
.inpro .content li .img {
  overflow: hidden;
}
.inpro .content li img {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content li .text {
  background-color: #fff;
  padding: 10px 5px 15px;
  text-align: center;
}
.inpro .content li .text h3 {
  /* display: inline-block; */
  position: relative;
  font-size: 20px;
  line-height: 32px;
  color: #333;
  padding-bottom: 5px;
  margin-bottom: 5px;
  overflow: hidden;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content li .text h3:after {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  bottom: 0px;
  height: 2px;
  background-color: #00458e;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inpro .content li .text h5 {
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.inpro .content li a:hover img {
  -webkit-transform: scale(1.1);
     -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}
.inpro .content li a:hover .text h3 {
  color: #00458e;
}
.inpro .content li a:hover .text h3:after {
  width: 100%;
  left: 0;
  right: auto;
}

.inabout {
  position: relative;
  padding-top: 2.3rem;
  background: url(../images/inabout_bg.jpg) no-repeat center;
  background-attachment: fixed;
  margin-bottom: 1rem;
}
.inabout .ico ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
     -moz-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.inabout .ico li {
  color: #fff;
}
.inabout .ico li i {
  display: block;
  font-size: 72px;
  text-align: center;
  margin-bottom: 10px;
}
.inabout .ico li h3 {
  font-size: 20px;
  text-align: center;
}
.inabout .content {
  position: relative;
  bottom: -1rem;
  left: 0px;
  width: 90%;
  padding: 1rem 1rem 1rem 10%;
  background-color: #00458e;
}
.inabout .text {
  width: 80%;
  max-width: 885px;
}
.inabout .text h3 {
  font-size: 42px;
  color: #fff;
  margin-bottom: 0.5rem;
}
.inabout .text p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  text-indent: 2em;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.inabout .content a {
  display: block;
  position: absolute;
  right: 1rem;
  top: 50%;
  font-size: 24px;
  color: #fff;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 100%;
  padding: 15px;
  text-align: center;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .content a:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 0px;
  height: 0px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.inabout .content a:hover {
  color: #00458e;
}
.inabout .content a:hover:after {
  width: 60px;
  height: 60px;
}

.incase {
  padding: 1rem 0 1rem;
}
.incase .intl {
  text-align: center;
  margin-bottom: 50px;
}
.incase .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  overflow: hidden;
}
.incase .content li {
  float: left;
  width: 24%;
  border: 1px solid #fff;
  border-right: 0px;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.incase .content li:first-child {
  border-left: 0px;
}
.incase .content li a {
  display: block;
  position: relative;
}
.incase .content li .bg1 {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* background-color: rgba(0, 0, 0, 0.5); */
  background-image: -webkit-linear-gradient(bottom, rgba(0,69, 142, 1) 0%, rgba(0,69, 142, 0) 50%, transparent 100%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.incase .content li .text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6rem;
  padding: 0 0.5rem;
  text-align: left;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.incase .content li .text h3 {
  font-size: 25px;
  line-height:36px;
  color: #fff;
  margin-bottom: 0.4rem;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}
.incase .content li .text h5 {
  font-size: 14px;
  color: #eee;
  text-transform: uppercase;
}
.incase .content li .text p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all .6s;
  -o-transition: all .6s;
  -moz-transition: all .6s;
  transition: all .6s;
}

.incase .content li .img {
  height: 500px;
  background-color: #00458e;
}
.incase .content li .img img {
  display: block;
  height: 100%;
  opacity: 0.8;
  -o-object-fit: cover;
     object-fit: cover;
}

.incase .content li.cur {
  width: 40%;
}
.incase .content li.oth {
  width: 18%;
}
.incase .content li.cur .text {
  top: 30%;
}
.incase .content li.cur .bg1  h3{
  font-size: 36px;
  margin-bottom: 0.2rem;
}
.incase .content li.cur .bg1  p{
  opacity: 1;
  visibility: visible;
}

.inht{
	height: 360px;
	background: url(../images/inht_bg.jpg) no-repeat center;
    background-attachment: fixed;
    padding-top: 60px;
}
.inht .w80{
	/* padding: 0 40px; */
}
.inht .ico{
	margin-bottom: 5px;
}
.inht .ico img{
	display: block;
	height: 36px;
  margin-bottom: .2rem;
}
.inht .ico h1{
	display: block;
	font-size: 24px;
  font-weight: bold;
	line-height: 32px;
	color: #fff;
}
.inht .ico h2{
	display: block;
	font-size: 12px;
	line-height: 24px;
	color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.inht p{
	font-size: 24px;
	color: #eee;
	font-weight: bold;
	line-height: 42px;
}


.innews {
  padding: 0.8rem 0 1rem;
  background: url(../images/innews_bg.png) no-repeat center bottom;
  -o-background-size: 100% auto;
     background-size: 100% auto;
}
.innews .intl {
  text-align: center;
  margin-bottom: 50px;
}
.innews .content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.innews .content ul li {
  -webkit-flex-basis: 33.33%;
      -ms-flex-preferred-size: 33.33%;
          flex-basis: 33.33%;
}
.innews .content ul li.left {
  margin-right: 0.45rem;
}
.innews .content ul li.left a {
  position: relative;
  display: block;
  padding-bottom: 260px;
  background-color: #fff;
}
.innews .content ul li.left img {
  display: block;
  height: 280px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.innews .content ul li.left .text {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 0.4rem;
  height: 260px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  background: url(../images/innews_ico.png) no-repeat right bottom -100% #fff;
}
.innews .content ul li.left .text span {
  display: block;
  font-size: 16px;
  color: #666;
  margin-bottom: 0.3rem;
}
.innews .content ul li.left .text span font {
  float: right;
  display: inline-block;
}
.innews .content ul li.left .text h3 {
  font-size: 22px;
  line-height: 32px;
  height: 64px;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.4rem;
  text-align: justify;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content ul li.left .text p {
  font-size: 16px;
  line-height: 32px;
  color: #fff;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content ul li.left .text h4 {
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  font-size: 18px;
  color: #666;
}
.innews .content ul li.left a:hover .text {
  height: 100%;
  background: url(../images/innews_ico.png) no-repeat right 5px bottom 0.4rem
    #00458e;
  padding-top: 0.8rem;
}
.innews .content ul li.left a:hover .text span {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h3 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text h4 {
  color: #f5f5f5;
}
.innews .content ul li.left a:hover .text p {
  height: 96px;
  opacity: 1;
  visibility: visible;
}
.innews .content dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  height: 540px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.innews .content dd a {
  display: block;
}
.innews .content dd h3 {
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.innews .content dd h3:after {
  content: "";
  position: absolute;
  width: 0;
  left: auto;
  right: 0;
  bottom: 0px;
  height: 2px;
  background-color: #00458e;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.innews .content dd p {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.innews .content dd span {
  display: block;
  font-size: 16px;
  color: #999;
}
.innews .content dd a:hover h3 {
  color: #00458e;
}

.innews .content dd a:hover h3:after {
  width: 100%;
  left: 0;
  right: auto;
}

/* foot */
.foot_ht {
  background-color: #fff;
  border-top: 1px solid #eee;
  margin-top: 1rem;
}
.index_bg .foot_ht {
  margin-top: 0px;
}
.foot_ht .w80 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 0.35rem 0;
}
.foot_ht .foot_logo img {
  display: inline-block;
}
.foot_ht .foot_logo p {
  display: inline-block;
  font-size: 24px;
  color: #333;
}
.foot_ht .foot_code {
  position: relative;
  padding-left: 45px;
}
.foot_ht .foot_code i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 42px;
  line-height: 44px;
}
.foot_ht .foot_code h3 {
  /* text-align: center; */
  font-size: 18px;
  line-height: 24px;
  color: #333;
}
.foot_ht .foot_code p {
  font-size: 14px;
  color: #666;
}
.foot_ht .foot_code .img {
  position: absolute;
  z-index: 99;
  bottom: 140%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  width: 120px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateX(-50%) scale(0.5);
     -moz-transform: translateX(-50%) scale(0.5);
      -ms-transform: translateX(-50%) scale(0.5);
       -o-transform: translateX(-50%) scale(0.5);
          transform: translateX(-50%) scale(0.5);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.foot_ht .foot_code .img img {
  display: block;
}
.foot_ht .foot_code:hover .img {
  bottom: 110%;
  -webkit-transform: translateX(-50%) scale(1);
     -moz-transform: translateX(-50%) scale(1);
      -ms-transform: translateX(-50%) scale(1);
       -o-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  opacity: 1;
  visibility: visible;
}

.foot {
  padding: 0.6rem 0;
  background-color: #333;
}
.foot .foot_nav {
}
.foot .foot_nav a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.foot .foot_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.foot .foot_nav li {
  margin-right: 0.4rem;
}
.foot .foot_nav li:last-child {
  margin-right: 0px;
}
.foot .foot_nav dt {
  margin-bottom: 20px;
}
.foot .foot_nav dt a {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}
.foot .foot_nav dd a,
.foot .foot_nav li p {
  font-size: 14px;
  line-height: 24px;
  padding: 0.05rem 0;
  color: rgba(255, 255, 255, 0.4);
}
.foot .foot_nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.foot2 {
  background-color: #333;
}
.foot2 .w80 {
  padding: 0.4rem 0;
  border-top: 1px solid #666;
}
.foot2 p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.foot2 p span {
  float: right;
}
.foot2 p span a {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}
.foot2 p span a:first-child {
  margin-left: 0px;
}
.foot2 a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/*右侧悬浮*/
.floot_right {
  position: fixed;
  z-index: 998;
  bottom: 20%;
  right: 10px;
}
.floot_right ul {
  /* width: 50px; */
}
.floot_right ul li {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 3px;
  background-color: #00458e;
  margin-bottom: 5px;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.floot_right ul li:last-child {
  margin-bottom: 0px;
}
.floot_right ul li.gotop {
  background-color: #333;
  overflow: hidden;
  height: 0px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
/*.floot_right ul li:hover{
  background-color: #f34f24 !important;
}*/
.floot_right ul li .con i {
  display: block;
  font-size: 40px;
  line-height: 70px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.floot_right ul li .con h5 {
  display: none;
  font-size: 12px;
  color: #fff;
  line-height: 23px;
  text-align: center;
}
.floot_right ul li .fl_tc {
  position: absolute;
  top: 50%;
  right: 110px;
  background-color: #00458e;
  padding: 10px;
  border-radius: 3px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.floot_right ul li .fl_tc h4 {
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_right ul li .fl_tc img {
  display: block;
  width: 105px;
  height: 105px;
  max-width: none;
}
.floot_right ul li .fl_tc a {
  display: block;
  white-space: nowrap;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
}
.floot_right ul li:hover .fl_tc {
  opacity: 1;
  right: 80px;
  visibility: visible;
}
.floot_right ul li .fl_tc:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  border: 5px solid transparent;
  border-left: 5px solid #00458e;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.floot_right ul li .fl_tc:before {
  content: "";
  position: absolute;
  top: 0px;
  right: -10px;
  height: 100%;
  width: 10px;
}
