/* 公共样式 */
@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
}
body {
  padding: 0;
  margin: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Microsoft YaHei;
  font-size: 16px;
}
body.overflow-hidden {
  overflow: hidden;
}
a {
  text-decoration: none;
}
button {
  cursor: pointer;
}
input {
  outline: none;
}

/* 菜单栏 */
.menu-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgb(233, 233, 233);
  background-color: #fff;
  z-index: 999;
}
.menu-background .menu {
  width: 1260px;
}
.menu-background .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
}
.menu-background .menu .menu-left {
  display: flex;
  align-items: center;
}
.menu-background .menu .menu-left > img {
  height: 50px;
}
.menu-background .menu .menu-right {
  display: flex;
}
.menu-background .menu .menu-right .menus {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 42px;
  font-size: 16px;
  color: #666;
  margin-right: 36px;
  background-color: transparent;
}
.menu-background .menu .menu-right .menus .active {
  position: relative;
  color: #14a9a9;
}
.menu-background .menu .menu-right .menus .active > a {
  color: #14a9a9;
}
.menu-background .menu .menu-right .menus .active::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 15px;
  border: 1px solid #14a9a9;
  width: 20px;
}
.menu-background .menu .menu-right .menus a {
  color: #666;
}
.menu-background .menu .menu-right .menus a:hover {
  color: #000;
}
.menu-background .menu .menu-right .menus li {
  cursor: pointer;
  height: 70px;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.menu-background .menu .menu-right .menus li:hover {
  color: black;
}
.menu-background .menu .menu-right .menus li > a {
  font-size: 16px;
  padding: 0;
}
.menu-background .menu-right .layui-nav-item.relative {
  position: relative;
}
.menu-background .menu-right .layui-nav-item.relative:hover .absolute {
  display: block;
}
.menu-background .menu-right .layui-nav-item .absolute {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background-color: #fcfbfb;
  width: 140px;
  border-radius: 10px;
  text-align: center;
  display: none;
  overflow: hidden;
}
.menu-background .menu-right .layui-nav-item .absolute div {
  padding: 10px;
}
.menu-background .menu-right .layui-nav-item .absolute div:hover {
  background: #14a9a9;
}

/* 底部的地址栏 */
.address-box {
  box-sizing: border-box;
  height: 150px;
  background-color: #242933;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
  text-align: center;
  font-size: 14px;
  color: #999;
  width: 100%;
}
.address-box .top > div,
.address-box .bottom > div {
  margin-left: 10px;
}
.address-box .top > div > a,
.address-box .bottom > div > a {
  font-size: 14px;
  color: #999;
}
.address-box .top {
  display: flex;
  justify-content: center;
}
.address-box .bottom {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}
