@charset "utf-8";

/* 头部 */
.header {
  background: #a5272f;
}


.header_top {
  display: flex;
  align-items: center;
  padding: 22px 0;
  justify-content: space-between;
  box-sizing: border-box;
  border-bottom: 1px solid #b75259;

}

.header_more {
  display: flex;
  align-items: center;
}

.header_more a {
  color: #fff;
}

.header_more a::after {
  content: "|";
  margin: 0 17px;
  font-size: 16px;
  font-weight: 100;
}

.header_more div {
  display: flex !important;
  align-items: center;
}

.header_more div input {
  height: 30px;
  background: #b75259;
  border-radius: 15px;
  color: #fff;
}

.header_more div input:first-child {
  width: 200px;
  padding: 0 40px 0 20px;
}

.header_more div input:last-child {
  margin-left: -40px;
  cursor: pointer;
  width: 40px;
  background-image: url(../images/magnifyingGlass.png);
  background-repeat: no-repeat;
  background-position: center;
}

.header_btm {
  height: 60px;
}

.nav-ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-ul li {
  display: inline-block;
  position: relative;
}

.nav-ul li:hover {
  background: #a5272f;
  transition: background-color 0.3s ease;
}

.menu-toggle,
.menu-items li a {
  display: block;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-size: 17px;
  font-weight: normal;
  white-space: nowrap;
}

.menu-items li a {
  line-height: 17px;
  padding: 15px 20px;
}
.nav-ul li a.on,.nav-ul li a:hover {
    color: #FFC107;
}
.menu-items {
  width: auto;
  position: absolute;
  top: 100%;
  left: 50%;
  display: none;
  background: #c6323c;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%);
  z-index: 99;
}

.menu-items li {
  width: 100%;
  transition: background-color 0.3s;
}

.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;
}

.banner {
  width: 100%;
  height: auto;
}

/* 尾部 */
.footer {
  background-image: url(../images/footer_bg.png);
  background-size: auto;
  margin-top: -152px;
  padding-top: 253px;
}

.footer_top {
  display: flex;
  justify-content: space-between;
}

.footer_top div span {
  display: block;
  line-height: 22px;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 50px;
}

.footer_top_l ul {
  display: flex;
}

.footer_top_l ul li {
  position: relative;
}

.footer_top_l ul li a {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  margin-right: 140px;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.dropdown.show .dropdown-menu {
  display: block;
  opacity: 1;
  /* transform: translateY(0); */
}

.footer_top_l ul li .dropdown-menu {
  width: 100%;
  position: absolute;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.footer_top_l ul li .dropdown-menu.show {
  display: block;
  opacity: 1;
}

.footer_top_l ul li .dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 28px;
  background: #cb1f2b;
  white-space: nowrap;
}

.footer_top_l ul li .dropdown-menu a:hover {
  background: #a5272f;
  transition: background-color 0.3s ease;
}

.footer_top_l ul>li>a::before {
  display: block;
  content: "";
  width: 10px;
  height: 16px;
  background-image: url(../images/footer_right.png);
  margin-right: 18px;
  transition: transform 0.2s ease-in-out;
}

.footer_top_l ul>li:hover>a::before {
  transform: rotate(90deg);
}

.footer_top_l ul li:last-child a {
  margin-right: 0px;
}

.footer_top_r {
  width: 38.2%;
}

.footer_top_r div {
  display: flex;
  align-items: center;
}

.footer_top_r div:last-child img {
  margin-top: -35px;
}

.footer_top_r div p {
  margin-left: 12px;
  font-size: 18px;
  color: #ffffff;
  line-height: 36px;
  padding-right: 42px;
}

.footer_bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid #b35453;
  line-height: 68px;
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 1680px) {
  .header_top {
    width: 100%;
    padding: 25px 4%;
  }

  .nav-ul {
    width: 100%;
    padding: 0 4%;
  }
}

@media (max-width: 1500px) {

  .footer_top,
  .footer_bottom {
    width: 100%;
    padding: 0 3%;
  }

  .footer_top_l ul li a {
    margin-right: 120px;
  }
}

@media (max-width: 1200px) {
  .header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
  }

  .red {
    display: block;
    position: absolute;
    right: -120%;
    top: 134px;
    z-index: 99;
    overflow: auto;
  }

  .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 {
    padding: 25px 3%;
    height: 120px;
  }

  .red {
    top: 120px;
    height: calc(100vh - 120px);
  }
  .banner {
    margin-top: 120px;
  }

  /* 尾部 */
  .footer {
    background-size: cover;
  }

  .footer_top_l ul li a {
    margin-right: 80px;
  }

  .footer_top_r div:last-child img {
    margin-top: 0px;
  }
}

@media (max-width: 1024px) {
  .header_top {
    height: 110px;
  }

  .red {
    top: 110px;
    height: calc(100vh - 110px);
  }
  .banner {
    margin-top: 110px;
  }

  .header_top>a img {
    height: 70px;
    width: auto;
  }

  /* 尾部 */
  .footer_top {
    display: block;
  }

  .footer_top_r {
    width: 100%;
    margin-top: 50px;
  }



  .footer_top div span {
    margin-bottom: 30px;
  }

  .footer {
    margin-top: -152px;
    padding-top: 203px;
  }
}

@media (max-width: 768px) {
  .header_top {
    padding: 25px 2%;
    height: 100px;
  }

  .red {
    width: 100%;
    top: 100px;
    height: calc(100vh - 100px);
  }
  .banner {
    margin-top: 100px;
  }

  .header_top>a {
    display: block;
    width: 70%;
    height: auto;
  }

  .header_top>a img {
    width: 100%;
    height: 100%;
  }

  .footer_top_l ul {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .footer_top_l ul li a {
    margin-right: 0px;
  }

  .footer_top_l ul li .dropdown-menu {
    width: auto;
  }
}

@media (max-width: 608px) {
  .footer_bottom {
    padding: 5px 0;
    margin-top: 30px;
    line-height: 32px;
  }
}

@media (max-width: 540px) {
  .header_top {
    height: 70px;
  }

  .red {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .banner {
    margin-top: 70px;
  }
  .seach_menu .seach {
    margin-right: 15px;
  }

  .footer_top_r {
    margin-top: 30px;
  }

  .footer_top div span {
    font-size: 24px;
  }

  .footer {
    padding-top: 190px;
  }

  .footer_top div span {
    margin-bottom: 20px;
  }

  .footer_bottom {
    margin-top: 20px;
  }

  .footer_top_r div p {
    font-size: 17px;
    line-height: 40px;
    padding-right: 0px;
  }

  .footer_top_r div:last-child img {
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .header_top {
    height: 60px;
  }

  .red {
    top: 60px;
    height: calc(100vh - 60px);
  }
  .banner {
    margin-top: 60px;
  }

  .footer_top_r div:last-child img {
    margin-top: 0px;
  }

  .footer_top_l ul li {
    margin-bottom: 15px;
  }

  .footer_top_r {
    margin-top: 10px;
  }
  .footer_top div span {
    font-size: 20px;
}
}