@charset "utf-8";

/* 头部 */
.header {
  width: 100%;
  background: url(../images/header_bg.png);
}

.header_top {
  display: flex;
  align-items: center;
  height: 120px;
  justify-content: space-between;
}

.header_more {
  display: flex;
  align-items: center;
}

.header_more a {
  color: #fff;
  margin-right: 20px;
}

.header_more div {
  display: flex;
  width: 297px;
  height: 44px;
  background: #ffffff;
  /* border: 1px solid #258455; */
  border-radius: 6px;
}

.header_more div input:first-child {
  width: 100%;
  padding: 0 70px 0 20px;
  border-radius: 6px;
}

.header_more div input:last-child {
  margin-left: -65px;
  cursor: pointer;
  width: 65px;
  background-image: url(../images/magnifyingGlass.png);
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  border-radius: 6px;
  color: transparent;
}

.header_btm {
  height: 50px;
  background: rgba(31, 87, 224);
}

.nav-ul {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-ul li {
  flex: 1;
  display: inline-block;
  position: relative;
}

.nav-ul li>a {
  position: relative;
}

.nav-ul li:hover>a {
  background: rgba(37, 75, 167,0.7);
  transition: all 0.3s ease;
}



.menu-toggle,
.menu-items li a {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 17px;
  font-weight: normal;
  white-space: nowrap;
  padding: 0 15px;
}

.menu-items {
  width: auto;
  min-width: 100%;
  position: absolute;
  z-index: 19;
  top: 100%;
  left: 50%;
  display: none;
  /* background: #193b7d; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
}

.menu-items li {
  width: 100%;
  line-height: 60px;
  transition: background 0.3s;
  background: rgba(31, 87, 224,0.8);
}
.menu-items li:hover {
  background: rgba(37, 75, 167,0.7);
}

.seach_menu {
  display: none;
  align-items: center;
}

.seach_menu a {
  display: block;
}

.seach_menu .seach {
  width: 24px;
  height: 24px;
  background-image: url(../images/fdj.png);
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
}

.seach_menu .menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin-bottom: 7px;
}

.seach_menu .menu span:last-child {
  margin-bottom: 0px;
}

/* 尾部 */
.footer {
  background: rgba(31, 74, 178, 0.76);
 
}

.footer_top {
  background: #254ba7;
}

.footer_top_main {
  display: flex;
}

.footer_top_main ul {
  display: flex;
  margin-left: 15px;
}

.footer_top_main p,
.footer_top_main ul li {
  padding: 29px 0 22px;
  line-height: 16px;
}

.footer_top_main p {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
white-space: nowrap;
}

.footer_top_main ul li {
  margin-right: 60px;
}

.footer_top_main ul li:last-child {
  margin-right: 0px;
}

.footer_top_main ul li a {
  font-size: 15px;
  color: #fff;
}

.footer_btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.footer_btm_l p {
  font-size: 15px;
  line-height: 35px;
  color: #fff;
}
.footer_btm_r{
  margin-left: 20px;
}
.footer_btm_r p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  text-align: center;
}

@media (max-width: 1400px) {

  /* 头部 */
  .header_top {
    width: 100%;
    padding: 25px 3%;
  }

  .nav-ul,
  .footer_top_main {
    width: 100%;
    padding: 0 3%;
  }

  /* 尾部 */
   .footer_top_main ul{
   flex-wrap: wrap;
  }
.footer_btm {
  width: 100%;
  padding: 15px 3% 40px;
}
}

@media (max-width: 1200px) {
  /* 头部 */

  .header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
  }

  .red {
    display: block;
    position: absolute;
    right: -120%;
    top: 120px;
    height: calc(100vh - 120px);
    overflow: auto;
    z-index: 99;
  }

  .seach_menu {
    display: flex;
  }

  .header_btm {
    display: none;
  }

  .header_more {
    display: none;
  }

  .menu span {
    transition: transform 0.3s ease;
  }

  .menu span:first-child {
    margin-top: 0;
  }

  .menu.open span:nth-child(1) {
    width: 24px;
    transform: rotate(45deg);
    margin-top: 9px;
  }

  .menu.open span:nth-child(2) {
    width: 24px;
    transform: rotate(-45deg);
    margin-top: -9px;
  }

  .menu.open span:nth-child(3) {
    opacity: 0;
  }

  .header_top {
    height: 120px;
    background: rgba(32, 86, 208,0.8);
  }

  

  /* 尾部 */
 
  .footer_top_main{
    padding: 15px 3%;

  }
  .footer_top_main p, .footer_top_main ul li {
    padding: 10px 0;
}

}

@media (max-width: 1024px) {
  /* 头部 */

  .header_top {
    height: 110px;
  }

  .red {
    top: 110px;
    height: calc(100vh - 110px);
  }

  .header_top>a img {
    height: 70px;
    width: auto;
  }
    /* 尾部 */

 
}

@media (max-width: 768px) {
  /* 头部 */

  .header_top {
    padding: 25px 2%;
    height: 100px;
  }

  .red {
    width: 100%;
    top: 100px;
    height: calc(100vh - 100px);
  }

  .header_top>a {
    display: block;
    width: 300px;
    height: auto;
  }

  .header_top>a img {
    width: 100%;
    height: 100%;
  }
  

}

@media (max-width: 540px) {
  /* 头部 */
.header_top>a {
   
    width: auto;
    height: 60px;
}
  .header_top {
    height: 70px;
  }

  .red {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .seach_menu .seach {
    margin-right: 15px;
  }
}

@media (max-width: 480px) {
  /* 头部 */
.header_top>a {
   
    width: auto;
    height: 50px;
}
  .header_top {
    height: 60px;
  }

  .red {
    top: 60px;
    height: calc(100vh - 60px);
  }

  .search-box .text {
    height: 45px;
  }

  .search-box .btn {
    height: 45px;
  }

  /* 尾部 */
  .footer_btm {
   display: block;
    padding: 15px 2%;
  }
  .footer_btm_r img{
    display:block;
  margin:0 auto;
}
}