.box_2_wrapper {
  background-image: url("../images/p8.png");
  width: 100%;
  height: 113px;
}
.box_2 {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  width: 388px;
  height: 69px;
  margin-right: 0;
}

.text_1 {
  width: 256px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 32px;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
  margin-left: 30px;
  margin-right: 124px;
}

.image_3 {
  width: 36px;
  height: 36px;
}

.text_2_1 {
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-align: right;
  font-style: normal;
  margin-left: 14px;
  margin-right: 30px;
  cursor: pointer;
}
.text_2_1:hover {
  color: rgb(149, 201, 234);
}
.menu-wrapper {
  background-color: rgba(245, 245, 245, 1);
  height: 60px;
  width: 100%;
}
.menu {
  width: 1200px;
  margin: 0 auto;
  height: 60px;
}
.text_3 {
  color: rgba(51, 51, 51, 1);
  font-size: 16px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  height: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
.text_3:hover {
  background-color: #ffffff;
  color: #137ec0;
}
.text_3.active {
  background-color: #ffffff;
  color: #137ec0;
}
.text_3.active::after{
  content: "";
  height:3px;
  position: absolute;
  bottom: 0;
  left: 35%;
  right: 0;
  width: 50px;
  border-radius: 4px;
  background-color: #137ec0;
}
/* 下拉菜单样式 */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  color: #137ec0;
  min-width: 160px;
  z-index: 1;
}

.dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

/* 鼠标悬停时显示下拉菜单 */
.text_3:hover .dropdown-menu {
  display: block;
}