.main-page {
  min-height: 100vh;
  /* padding-top: 80px; */
  /* background-color: pink; */
}
.header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 200px;
  width: 100%;
  height: 80px;
  z-index: 222;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}
.header .logo-box {
  width: 400px;
  height: 46px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  /* background-color: pink; */
}
.header .logo-box .logo {
  width: 129px;
  height: 46px;
  background-image: url(../images/logo.png);
}
.header .logo-box .name {
  font-weight: bold;
  font-size: 18px;
  /* color: #000; */
}
.header .nav-bar {
  position: relative;
  /* height: 37px; */
}
.header .nav-bar .nav-active-tag {
  position: absolute;
  bottom: 0;
  width: 30px;
  height: 4px;
  background: #000;
  /* display: none; */
  border-radius: 4px 4px 4px 4px;
}
.header .nav-bar ul.tab {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 70px;
}
.header .nav-bar ul.tab li {
  height: 28px;
  line-height: 21px;
  font-size: 16px;
  white-space: nowrap;
}
.header .nav-bar ul.tab li a {
  color: #000;
  font-weight: 600;
}
.bgimg{
  width: 100%;
}
.footer {
  position: relative;
  display: flex;
  align-items: center;
  padding: 34px 200px;
  background-color: #000000;
  color: #B9B9B9;
  z-index: 10;
}
.footer a {
  color: #B9B9B9;
  margin-right: 20px;
}
.footer .footer-left {
  flex: 1;
  font-size: 14px;
}
.footer .footer-left > p:not(:last-child) {
  margin-bottom: 15px;
  line-height: 1.25;
}
.footer .footer-left img {
  display: inline-block;
  width: 20px;
  height: 22px;
  vertical-align: middle;
}
.footer .footer-right {
  flex-shrink: 0;
}
.footer .footer-right .phone-icon {
  float: left;
  margin-top: 4px;
  width: 37px;
  height: 37px;
}
.footer .footer-right > p {
  margin-left: 47px;
  white-space: nowrap;
}
.footer .footer-right .phone-number {
  margin-top: 4px;
  line-height: 26px;
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}
@keyframes mouse-animate {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
