@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button {
  cursor: pointer;
  border: none;
}

/* 设置表单输入框 */
input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 14px;
  margin-bottom: 10px;
}

/* 统一设置容器样式 */
.container {
  width: 100%;
  margin: 0 auto;
}

/* 大于 768px 的屏幕（PC端） */
@media (min-width: 768px) {
  .mobile {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .desktop {
    display: flex !important;
  }
  .bottomNav {
    display: none !important;
  }
  .container {
    width: 100%;
  }
}
/* 小于 768px 的屏幕（移动端） */
@media (max-width: 768px) {
  .mobile {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .desktop {
    display: none !important;
  }
  .bottomNav {
    display: flex;
  }
  .container {
    width: 100%;
  }
  #headerPC {
    display: none !important;
  }
}
#headerPC {
  width: 100%;
  height: 54px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  cursor: pointer;
}
#headerPC .logoImg {
  width: 152px;
  height: 54px;
}
#headerPC .flexBox {
  width: 685px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#headerPC .flexBox .searchBox {
  width: 294px;
  height: 44px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.3019607843);
  box-shadow: 0px 0px 4px 0px rgba(255, 255, 255, 0.3019607843) inset;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  padding: 0 16px;
}
#headerPC .flexBox .searchBox img {
  width: 30px;
  height: 29px;
}
#headerPC .flexBox p {
  font-family: Inter;
  font-weight: 500;
  font-style: Italic;
  font-size: 16px;
  color: #ffffff;
  margin: 0 auto;
}
#headerPC .flexBox button {
  width: 102px;
  height: 44px;
  border-radius: 4px;
  background: #976cfe;
}
#headerPC .flexBox button p {
  font-family: Inter;
  font-weight: 500;
  font-style: Italic;
  font-size: 24px;
  color: #fff;
}

main {
  width: 100%;
}

/*# sourceMappingURL=base.css.map */
