* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.scrollbar-hide {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 4px;
}
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}
body {
  font-family: '思源黑体';
}
a {
  text-decoration: none;
  color: #323232;
  display: block;
}
li {
  list-style: none;
}
textarea {
  resize: none;
}
.pc_style {
  display: block;
}
.mb_style {
  display: none !important;
}
.ed-container {
  width: 80rem;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
#body {
  min-width: 768px;
  min-height: 100vh;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #181818;
  height: 5rem;
  z-index: 99;
}
#header.pc_header .ed-container {
  height: 100%;
}
#header.pc_header .header-bar {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header.pc_header .company-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
#header.pc_header .nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#header.pc_header .nav-menu a {
  color: #fff;
  font-size: 16px;
}
#header.mb_header {
  display: none;
  justify-content: center;
}
#header.mb_header .menu {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid #ffffff;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
#header.mb_header .menu .menu-line {
  width: 80%;
  height: 2px;
  background-color: #ffffff;
}
#header.mb_header .company-name {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
.mb-navs-masker {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(8, 8, 8, 0.5);
  z-index: 99;
}
.mb-navs {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background-color: #151515;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
  transform: translate(-100%, 0);
  transition: transform 0.3s ease-in-out;
}
.mb-navs.show {
  transform: translate(0);
}
.mb-navs a {
  color: #ffffff;
  font-size: 16px;
}
#main {
  padding-top: 5rem;
}
#footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
#footer .footer-title {
  font-size: 1.875rem;
  color: #ffffff;
  line-height: 2.25rem;
  font-weight: bold;
  text-align: center;
}
#footer .footer-content {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
  gap: 4rem;
}
#footer .footer-left,
#footer .footer-right {
  flex: 1;
}
#footer .footer-left {
  display: flex;
  flex-direction: column;
}
#footer .footer-left h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}
#footer .footer-left ul li {
  margin: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
}
#footer .footer-left ul li a {
  display: inline-block;
  color: #ffffff;
}
#footer .footer-left ul li .icon-wrap {
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer .footer-left ul li .icon-wrap .icon {
  display: block;
  width: auto;
  height: 16px;
}
#footer .footer-left .message {
  flex: 1;
}
#footer .contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .contact-form input,
#footer .contact-form textarea {
  padding: 10px;
  border: none;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 14px;
}
#footer .contact-form textarea {
  height: 80px;
}
#footer .btn-submit {
  background: #9b855c;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}
#footer .btn-submit:hover {
  background: #8a734e;
}
#footer .footer-bottom {
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 12px;
}
#footer .footer-bottom a {
  color: #999;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 16px;
  }
  #body {
    min-width: auto;
  }
  .ed-container {
    width: auto;
    margin: 0;
  }
  #header.pc_header {
    display: none;
  }
  #header.mb_header {
    display: flex;
  }
  #footer .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  html {
    font-size: 12px;
  }
}
