/* 导航 */

/* 主题色 */
.header .nav > .list > li.active {
  background: rgb(229, 246, 239, 0.5);
}
.header .nav > .list > li.active a.item {
  color: rgb(1, 87, 62);
  font-weight: bold;
}
.header .nav > .list > li.active::after {
  width: 50%;
}
.header .nav > .list > li:hover {
  background: rgb(229, 246, 239, 0.5);
}
.header .nav > .list > li:hover > a {
  color: rgb(1, 87, 62);
  font-weight: bold;
}
.header .nav > .list > li:hover::after {
  width: 50%;
}

.header .nav > .list > li.phone {
  cursor: pointer;
}

.header .nav > .list > li.phone:hover {
  background: none;
}

.header .nav > .list > li.phone:hover::after {
  width: 0;
}

/* 小箭头 */
.header .nav > .list > li.active.has > a span:after {
  border-color: rgb(1, 87, 62) transparent transparent transparent;
}
.header .nav > .list > li.has:hover > a span:after {
  border-color: rgb(1, 87, 62) transparent transparent transparent;
}

.header .subnav ul li a:hover {
  background: rgba(1, 87, 62, 0.9);
  color: #fff;
}

/* ! */
.temp {
  height: 100px;
}
.header {
  font-family: arial, "微软雅黑";
  width: 100%;
  z-index: 99;

  position: fixed;
  top: 0;
  background-color: #fff;

  transition: all 0.5s;
  border-bottom: 1px #ececec solid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header > .container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.header .logo {
  height: 100%;
  position: relative;
  z-index: 999;
  float: none;
  margin-left: 50px;
  transition: all 0.54s;

  display: flex;
  align-items: center;
}

.header .logo a {
  height: 100%;
  display: inline-block;
  vertical-align: bottom;
}

.header .logo img {
  height: 100%;
  width: auto;
  transition: all 0.54s;
}

.m_header .logo {
  display: flex;
  align-items: center;
}

.header .text-box .cn,
.m_header .text-box .cn {
  font-size: 20px;
  color: rgb(1, 87, 62);
  font-weight: 700;
}

.header .text-box .en,
.m_header .text-box .en {
  color: rgb(1, 87, 62);
  font-size: 14px;
}

.header .nav {
  height: 100%;
  text-align: left;
  float: none;
  margin-right: 20px;
}

.header .nav > .list {
  height: 100%;
  font-size: 0;
  display: inline-block;
  margin-right: 0;
  vertical-align: middle;
}

.header .nav > .list > li {
  height: 100%;
  line-height: 100px;
  text-align: center;
  float: left;
  /* padding: 0 5px; */
  position: relative;
}

.header .nav > .list > li > a {
  height: 100%;
  box-sizing: border-box;
  padding: 0 10px 0 10px;
  font-size: 16px;
  color: #333;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.5s;
}

.header .nav > .list > li:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  background-color: rgb(1, 87, 62);
}

.header .nav > .list > li.has > a span {
  position: relative;
}

.header .nav > .list > li.has > a span:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #666 transparent transparent transparent;
  vertical-align: middle;
  margin-left: 10px;
}

/* .header .nav > .list > li:hover > a:after,
.header .nav > .list > li.cur > a:after {
  width: 100%;
} */
/* 
.header .nav > .list > li:last-child {
  position: relative;
}

.header .nav > .list > li:last-child > a {
  padding: 0 9px 0 13px;
}

.header .nav > .list > li:last-child > a:before {
  display: none;
} */

/* ------------------- 子菜单------------------ */
.header .subnav {
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: 999;
  width: 150%;

  top: 100px;
  left: -25%;
  overflow: hidden;
  box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
  font-size: 14px;
  text-align: left;

  transition: all 0.6s;
}

.header .subNav-02 {
  height: 0;
  opacity: 0;

  position: absolute;
  z-index: 999;
  width: 670px;
  left: -100px;
  top: 100px;
  overflow: hidden;
  font-size: 14px;
  text-align: left;
  transition: all 0.6s;
}

.header .nav > .list > li:hover .subNav-02 {
  height: 442px;
  opacity: 1;
}

.header .nav > .list > li:nth-child(2):hover .subnav {
  height: 120px;
  opacity: 1;
}
.header .nav > .list > li:nth-child(4):hover .subnav {
  height: 200px;
  opacity: 1;
}

.header .subnav ul {
  overflow: hidden;
  background: rgba(255, 255, 255);
}

.header .subnav ul li {
  float: none;
  margin: 0;
  padding: 0;
}

.header .subnav ul li a {
  color: #333;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  display: block;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  font-weight: normal;

  transition: all 0.4s;
}

.header .subnav ul li a:after {
  display: none;
}

.header .subNav-02 .container {
  width: 100%;
}

.header .subNav-02 .navChild {
  padding: 0 30px;
  background: #fff;
  border-top: 1px #d2d2d2 solid;
  border-bottom: 1px #d2d2d2 solid;
  transition: all 0.5s;
  overflow: hidden;
}

.header .subNav-02 .navChild .item {
  padding: 0;
  padding-bottom: 20px;
  width: 50%;
  float: left;
}

.header .subNav-02 .item .thumb {
  width: 40%;
  position: absolute;
  right: 5%;
  top: 34%;
  transform: translate(0, -50%);

  z-index: 10;
  /* width: 0; */
  transform: translate(300px, -50%);
  opacity: 0;
  transition: all 0.6s;
}

.header .subNav-02 .item .thumb.active {
  z-index: 20;
  /* width: 40%; */
  transform: translate(0, -50%);
  opacity: 1;
}

.header .subNav-02 .navChild .titleBig {
  line-height: 70px;
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: bolder;
}

.header .subNav-02 .navChild .childList {
  padding: 0;

  margin-bottom: 20px;
  border-right: 1px #eaeaea solid;
}

.header .subNav-02 .navChild .childList li {
  width: 80%;
  float: left;
  padding: 0 10px;

  transition: all 0.4s;
}

.header .subNav-02 .navChild .childList a {
  font-size: 14px;
  display: block;
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.4s;
}

.header .subNav-02 .navChild .childList li:hover {
  background-color: rgb(1, 87, 62, 0.8);
}
.header .subNav-02 .navChild .childList li:hover a {
  color: #fff;
}

.header .subNav-02 .navChild .more-btn a {
  display: block;
  width: 200px;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
  border: 1px solid #d2d2d2;
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.header .subNav-02 .navChild .more-btn a span:after {
  display: inline-block;
  content: "";
  width: 14px;
  height: 9px;
  background: url(../img/arrow-right-01.png) no-repeat center;
  margin-left: 15px;
}

.header .subNav-02 .navChild .more-btn a span {
  display: block;
  position: relative;
  z-index: 2;
}

.header .subNav-02 .navChild .more-btn a:before {
  content: "";
  width: 350px;
  height: 350px;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 90%;
  left: -130%;
  background: rgb(1, 87, 62);
  transition: all 0.5s;
  z-index: 1;
  transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.header .subNav-02 .navChild .more-btn a:hover {
  color: #fff;
  border: 1px solid rgb(1, 87, 62);
}
.header .subNav-02 .navChild .more-btn a:hover:before {
  top: -100px;
  left: -100px;
}

/* 手机导航 */
.m_header {
  background: #fff;
  top: 0;
  box-shadow: rgb(0 0 0 / 8%) 0px 2px 8px;
  display: none;
  height: 55px;
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

.m_header .sp_header .sp_logo {
  float: left;
  height: 55px;
  display: flex;
  align-items: center;
}

.m_header .sp_header .sp_logo a {
  height: 100%;
}

.m_header .sp_header .sp_logo a p {
  font-size: 21px;
  line-height: 55px;
  margin-left: 10px;
  font-weight: bold;
  color: #1f1f1d;
}

.m_header .sp_header .sp_logo a img {
  margin-left: 30px;
  margin-top: 0 !important;
  height: 100% !important;
  width: auto !important;
}

.m_header .sp_header .sp_nav {
  width: 50px;
  margin-right: 25px;
  float: right;
  height: 30px;
  position: relative;
  margin-top: 18px;
  cursor: pointer;
  z-index: 10;
}

.m_header .sp_header .sp_nav span {
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  left: 10px;
  background: rgb(1, 87, 62);
  transition: all ease 0.35s;
}

.m_header .sp_header .sp_nav span:nth-of-type(2) {
  top: 10px;
}

.m_header .sp_header .sp_nav span:nth-of-type(3) {
  top: 20px;
}

.m_header .sp_header .sp_nav:hover .sjj_nav {
  top: 347px;
}

.m_header .sjj_nav {
  position: fixed;
  width: 100%;
  z-index: 9;

  background: rgba(255, 255, 255, 0.85);
  top: -430px;
  left: 0;

  font-size: 17px;
  text-align: center;
  overflow: auto;
  overflow-x: hidden;
  transition: top ease 0.5s;
}

/* X */
.bt1,
.bt2 {
  width: 50px;
  height: 30px;
}

.bt2 {
  display: none;
  animation: change2 0.5s 0.5s forwards;
}

.m_header .sp_header .sp_nav .bt2 span {
  display: block;
  background: rgb(1, 87, 62);
  width: 30px;
  height: 2px;
  position: absolute;
  left: 10px;
  transition: all ease 0.35s;
}

.m_header .sp_header .sp_nav .bt2 span {
  top: 10px;
}

.m_header .sp_header .sp_nav .bt2 span:first-child {
  transform: rotate(45deg);
}

.m_header .sp_header .sp_nav .bt2 span:last-child {
  transform: rotate(-45deg);
}

/* X */
.m_header .sjj_nav ul {
  list-style: none;
}

.m_header .sjj_nav ul li {
  border-bottom: 1px solid #ddd;
  margin: 0 20px;
  position: relative;
  line-height: 40px;
}

.m_header .sjj_nav ul li a {
  font-size: 18px;
  color: #333;
  font-family: arial, "微软雅黑";
  text-decoration: none;
  width: 100%;
  display: block;
  padding: 5px 0;
}

@media (max-width: 1500px) {
  .header .logo a {
    display: flex;
    align-items: center;
    height: 80%;
  }

  .header .text-box .cn {
    font-size: 18px;
  }
}

@media (max-width: 1400px) {
  .header .nav > .list > li {
    padding: 0;
  }
  .header .nav > .list > li > a {
    padding: 0 6px 0 6px;
  }
}
@media (max-width: 1300px) {
  .header .logo {
    margin-left: 0;
  }

  .header .nav > .list > li.phone img {
    width: 80%;
  }
}

@media (max-width: 1200px) {
  .header .nav {
    margin-right: 0;
  }
  .header .nav > .list > li > a {
    padding: 0 6px 0 6px;
  }
  .header .logo .text-box {
    display: none;
  }
}

@media (max-width: 992px) {
  .m_header {
    display: block;
  }

  .header {
    display: none;
  }

  .temp {
    height: 55px;
  }
}

@media (max-width: 768px) {
  .m_header .sp_header .sp_logo a img {
    margin-left: 0;
  }

  .m_header .sp_header .sp_logo a {
    height: 80%;
  }

  .m_header .text-box .cn {
    font-size: 14px;
  }

  .m_header .text-box .en {
    font-size: 12px;
    display: none;
  }
}
