/* 消除页面自带边距 */
html,
body {
  margin: 0;
  background: #f5f5f5;;
}

body::-webkit-scrollbar {
  display: none; /* 隐藏滚动条（只针对Webkit浏览器） */
}

/* 消除图片自带边距 */
img {
  display: block;
}

/* 公共头部样式 */
header {
  width: 100%;  
  height: 10vh;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  background-color: #fff !important;
}

/* 头部导航样式 */
header .header-box {
  width: 1280px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
}

header .header-box .left {
  width: 75%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .header-box .left img {
  width: 35%;
  height: 80%;
}

header .header-box .left .menu_list {
  /* width: 30%; */
  flex: 1;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 20px;
  justify-content: flex-start;
}

header .header-box .left .menu_list a {
  margin-right: 30px;
  font-size: 20px;
  color: black;
  text-decoration: none;
  cursor: pointer;
}

header .header-box .left .menu_list .active {
  color: white !important;
  background: #deb97b !important;
  font-size: 600;
  /* width: 80px; */
  width: auto;
  box-sizing: border-box;
  padding: 0 16px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 20px;
  cursor: pointer;
}



/* 内容区域样式 */
main {
  width: 1280px;
  min-height: 20vh;
  margin: 0 auto;
}

