@charset "UTF-8";
@import "../css/global.css";
.w1400 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

/*作废*/
/*!*footer*!

.footer-container {
    width: 100%;
    height: auto;
    background-color: #31363E;
    box-sizing: border-box;
    padding: 62px 0 43px;
}

.footer-wrapper {
    height: 100%;
}

.footer-layout {
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    display: inline-block;
    width: auto;

    img {
        max-width: 100%;
    }
}

.foot-menu {
    display: flex;
    margin-top: 7px;

    a {
        color: #ffffff;
    }

    > li {
        margin-right: 62px;

        &:last-child {
            margin-right: 0;
        }

        > a {
            font-size: 18px;
            position: relative;
            box-sizing: border-box;
            padding-bottom: 13px;
            display: inline-block;

            &:after {
                content: "";
                width: 24px;
                height: 2px;
                border-radius: 60px;
                background-color: #399D33;
                display: inline-block;
                position: absolute;
                left: 0;
                bottom: 0;
            }
        }
    }
}

.foot-submenu {
    a {
        font-size: 16px;
    }

    li {
        margin-top: 25px;
    }
}

.footer-info {
    text-align: center;
    margin-top: 52px;

    * {
        font-size: 16px;
        color: rgba(255, 255, 255, .6);
        line-height: 43px;
    }

    > * {
        margin: 0 5px;
    }
}

!*footer end*!*/
/*新footer*/
/*footer*/
.footer-container {
  box-sizing: border-box;
  background-color: #31363E;
  padding: 63px 0 46px;
}

.footer-wrapper {
  text-align: center;
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-contact .c_phone {
  display: flex;
  align-items: center;
}
.footer-contact .c_phone span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  display: inline-block;
  margin-left: 18px;
}
.footer-contact > * {
  margin-right: 28px;
}
.footer-contact > *:last-child {
  margin-right: 0;
}
.footer-contact .c_wechat {
  position: relative;
}
.footer-contact .c_wechat .w_img {
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  display: none;
}
.footer-contact .c_wechat .w_img img {
  width: 100%;
  height: 100%;
}
.footer-contact .c_wechat:hover .w_img {
  display: block;
}

.footer-info * {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 43px;
}
.footer-info > * {
  display: inline-block;
  margin: 0 5px;
}

/*footer end*/
/*header*/
.header-container {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  background: #FFFFFF;
}

.header-layout {
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a {
  display: inline-block;
  margin-right: 24px;
}
.header-logo a:last-child {
  margin-right: 0;
}
.header-logo img {
  max-width: 100%;
}

.header-search {
  max-width: 224px;
  width: 100%;
  height: 30px;
  border: 1px solid rgba(27, 74, 144, 0.33);
  box-sizing: border-box;
  border-radius: 60px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
}
.header-search input {
  border: none;
  outline: none;
  text-align: center;
  width: calc(100% - 20px);
}
.header-search input:focus {
  border: none;
  outline: none;
}
.header-search button {
  border: none;
  outline: none;
  background: transparent;
  margin-top: 4px;
}

.header-menu {
  width: 100%;
  height: 64px;
  background: #0A48A5;
}

.menu-wrapper {
  height: 100%;
}

.menu-list {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.menu-list > li {
  max-width: 178px;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
}
.menu-list > li.active, .menu-list > li:hover {
  background: #399D33;
}
.menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 18px;
}

.subMenu {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.6);
  top: 66px;
  border-radius: 2px;
  display: none;
  box-sizing: border-box;
  padding: 7px;
  border-top: 2px solid #399D33;
}
.subMenu li {
  position: relative;
  height: 33px;
  line-height: 33px;
  text-align: center;
  margin-top: 5px;
  border-radius: 4px;
}
.subMenu li:hover {
  background: #FFFFFF;
}
.subMenu li:hover a:before {
  height: 12px;
}
.subMenu a {
  display: inline-block;
  height: 100%;
  position: relative;
  font-size: 14px;
  color: #0A48A5;
  box-sizing: border-box;
  padding: 0 12px;
}
.subMenu a:before {
  content: "";
  width: 2px;
  height: 0;
  display: inline-block;
  background: #399D33;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out 0s;
}

.mobileBtn {
  font-size: 28px;
  display: none;
  align-items: center;
  color: #FFFFFF;
  cursor: pointer;
}
.mobileBtn img {
  width: 40px;
}

/*header end*/
/*移动端导航*/
.canvi-navbar {
  background-color: #0A48A5 !important;
  box-sizing: border-box;
  padding: 20px;
}

.closeBtn {
  font-size: 24px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  justify-content: flex-end;
  cursor: pointer;
}
.closeBtn img {
  width: 32px;
}

.mobile-list {
  margin-top: 20px;
}
.mobile-list li {
  line-height: 40px;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}
.mobile-list a {
  font-size: 20px;
  color: #FFFFFF;
}

/*移动端导航 end*/
@media screen and (max-width: 1400px) {
  .w1400 {
    max-width: 1280px;
  }
}
@media screen and (max-width: 1280px) {
  .w1400 {
    max-width: 1152px;
  }
  .foot-menu > li {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1152px) {
  .w1400 {
    max-width: 1024px;
  }
  .footer-layout {
    flex-direction: column;
  }
  .foot-menu {
    align-self: center;
    margin-top: 30px;
    justify-content: space-between;
    width: 100%;
  }
  .foot-menu > li {
    margin-right: 0;
  }
  .footer-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1024px) {
  .w1400 {
    max-width: 800px;
  }
  .header-layout {
    flex-direction: column;
    box-sizing: border-box;
    padding: 10px 0;
    height: auto;
  }
  .header-search {
    align-self: flex-end;
    max-width: 400px;
    margin-top: 10px;
  }
  .menu-list {
    display: none;
  }
  .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .mobileBtn {
    display: flex;
  }
}
@media screen and (max-width: 800px) {
  .w1400 {
    width: 94%;
  }
  .header-logo a:last-child {
    margin-top: 10px;
  }
}
@media screen and (max-width: 616px) {
  .foot-menu {
    display: none;
  }
  .footer-info {
    margin-top: 40px;
  }
}
@media screen and (max-width: 414px) {
  .footer-contact {
    flex-wrap: wrap;
  }
  .footer-contact .c_phone {
    width: 100%;
    justify-content: center;
  }
}
