.nav-safe {
  max-width: 1540px;
  padding: 0 30px;
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  animation: navSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-pc {
  display: block;
  width: 100%;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;

   
  background: linear-gradient(to bottom, 
    rgba(255, 255, 255, 1) 0%, 

    rgba(255, 255, 255, 0) 100%
  );


}

/* .nav .logo {
  display: block;
}

.nav .logo-other {
  display: none;
} */

.nav-phone {
  width: 100%;
  display: none;
  /* background: #fff; */
}

.menu_main {
  height: 138px;
  display: flex;
  justify-content: space-between;
  margin-left: 30px;
}

.menu_main .main_li {
  margin: 0 0px;
  position: relative;
  margin-left: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: menuItemFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.menu_main .main_li:nth-child(1) { animation-delay: 0.1s; }
.menu_main .main_li:nth-child(2) { animation-delay: 0.15s; }
.menu_main .main_li:nth-child(3) { animation-delay: 0.2s; }
.menu_main .main_li:nth-child(4) { animation-delay: 0.25s; }
.menu_main .main_li:nth-child(5) { animation-delay: 0.3s; }
.menu_main .main_li:nth-child(6) { animation-delay: 0.35s; }
.menu_main .main_li:nth-child(7) { animation-delay: 0.4s; }

@keyframes menuItemFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu_main .main_li .main_a {
  font-size: 24px;
  color: #176E22;
  position: relative;
  font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
  transition: all 0.5s ease-in-out;
  letter-spacing: 2px;
}

/* .line {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 4px;
  transform: translate(-50%, -50%);
  border-radius: 100px 100px 100px 100px;
  background: #176E22;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
} */

/* .menu_main li.main_li:hover .line {
  width: 32px;
}

.menu_main li.main_li.active .line {
  width: 32px;
} */

/* .white_nav .menu_main li.main_li.active .main_a {
  color: #176E22;
}

.white_nav .menu_main li.main_li:hover .main_a {
  color: #176E22;
} */

/* .yu_white {
  display: block;
}
.yu_grey {
  display: none;
}
.down_white {
  display: block;
  transition: transform 0.3s ease;
}
.down_grey {
  display: none;
  transition: transform 0.3s ease;
} */
/* .trigger-btn.active .down_white,
.trigger-btn.active .down_grey {
  transform: rotate(180deg);
} */


/* .main_li span {
  font-weight: bold;
  font-size: 22px;
  color: #176E22;
} */
.nav-pc.white_nav {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .white_nav .logo {
  display: none;
}

.white_nav .logo-other {
  display: block;
} */

.shadow_nav {
  box-shadow: 1px 1px 1px #dedede;
}

.white_nav .menu_main {
  height: 138px;
  /* width: 100%; */
}

/* .white_nav .yu_grey {
  display: block;
} */
/* .white_nav .yu_white {
  display: none;
} */
/* .white_nav .down_grey {
  display: block;
}
.white_nav .down_white {
  display: none;
} */
/* .white_nav span {
  color: #333;
}

.white_nav .line {
  display: none;
}
.white_nav li.main_li.active .main_a {
  color: #176E22;
} */
/* 下拉菜单 */

.dropdown-btn {
  position: relative;
}

.dropdown-menu {
  visibility: hidden;
  padding: 16px 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 120px;
  background: #fff;
  /* border-radius: 8px; */
  box-shadow: 1px 2px 1px #dedede;
  overflow: hidden;
  max-height: 0;
  /* border: 1px solid transparent; */
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
}

.main_li:hover .dropdown-menu {
  visibility: visible;
  max-height: 500px;
  margin-top: 10px;
  /* border: 1px solid #dedede; */
}

.dropdown {
  position: relative;
}

.dropdown-item {
  text-align: center;
  padding: 16px 10px;
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  font-size: 20px;
}

.dropdown-item:hover {
  color: #176E22;
}

.dropdown-item.active {
  color: #176E22;
}

.trigger-btn {
  cursor: pointer;
}
.trigger-btn img{
  vertical-align: middle;
}

/* 下拉菜单容器 */
.dropdown-menu-yu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 82px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  padding: 12px 0;
}

/* 下拉菜单顶部三角 */
.dropdown-menu-yu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 6px solid #fff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}

.dropdown-menu-yu a {
  width: 100%;
  display: block;
  text-align: center;
}

/* 显示状态 */
.dropdown-menu-yu.show {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}

/* 菜单项样式 */
.menu-item {
  padding:12px 16px;
  color: #333;
  font-family: Arial, sans-serif;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.menu-item:first-child {
  border-radius: 6px 6px 0 0;
}

.menu-item:last-child {
  border-radius: 0 0 6px 6px;
}

.dropdown-menu-yu .item-active {
  color: #176E22;
}

.place-box {
  height: 138px;
}