.mobile-container,
.phoneheader {
  display: none;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  box-sizing: border-box;
  left: 0;
  z-index: 100;
  background: #fff;
}

.header h1 {
  color: #fff;
  font-weight: bold;
  font-size: 0;
}

.header .w {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  height: 80px;
}

.header .w .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.header .w .logo img {
  width: 140px;
  height: 100%;
  object-fit: contain;
}

.header .w nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.header .w nav .navList {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

.header .w nav .navList li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header .w nav .navList li .title a {
  color: #000;
  display: flex;
  height: 100%;
  font-size: 23px;
  font-weight: bold;
}

.header .w nav .navList li .title a:hover {
  color: #3a0ca3;
}

.header .w nav .navList li.actvie .title a {
  color: #3a0ca3;
}

.header .w .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header .w .right .title a {
  color: #000;
  display: flex;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
}

.header .w .right .title a:hover {
  color: #3a0ca3;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding: 40px 0 20px;
}

.footer .head {
  width: 100%;
  margin-bottom: 30px;
}

.footer .head .ewmBox {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.footer .head .ewmBox .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.footer .head .ewmBox .item .icon {
  width: 36px;
  height: 36px;
  color: #333;
  transition: all 0.3s;
}

.footer .head .ewmBox .item .icon:hover {
  color: #3a0ca3;
}

.footer .head .ewmBox .item .ewm {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #ededee;
  border-radius: 20px;
  width: 140px;
  height: 140px;
  opacity: 0;
  transition: all 0.3s;
}

.footer .head .ewmBox .item .ewm img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

.footer .head .ewmBox .item:hover .ewm {
  opacity: 1;
}

.footer .top {
  display: flex;
  justify-content: space-around;
}

.footer .top .item {
  margin: 0 30px;
}

.footer .top .item a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.footer .top .item i {
  font-style: normal;
}

.footer .top .item .icon {
  margin-right: 10px;
  width: 16px;
  height: 16px;
}

.footer .top .item .icon img {
  object-fit: contain;
}

.footer .top .shrink {
  flex-shrink: 0;
}

.footer .copyright {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  text-align: center;
}