@charset "utf-8";

/* CSS Document */

* {
  /* 清除浏览器自带的内外边 */
  margin: 0;
  padding: 0;
  /* 清除文字装饰线,例如a标签的下划线 */
  text-decoration: none;
  /* 清除列表样式 */
  list-style: none;
  /* 设置盒子宽高的计算方式为:内容＋内边距＋边框 */
  box-sizing: border-box;
  /* 不允许用户选中 */
  /* -webkit-user-select: text !important;
    -moz-user-select: text !important;
    user-select: text !important; */
  /* 不允许用户拖动图片 */
  -webkit-user-drag: none;
}

*:not(input, textarea) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* a标签默认颜色(自行更改) */

a {
  color: #000;
}

img {
  /* 火狐 */
  -moz-user-select: none;
  /* Safari 和 欧朋 */
  -webkit-user-select: none;
  /* IE10+ and Edge */
  -ms-user-select: none;
  /* Standard syntax 标准语法(谷歌) */
  user-select: none;
}

/*单行文本溢出：*/
.overflow {
  /*溢出内容不显示*/
  overflow: hidden;
  /*文本溢出显示...*/
  text-overflow: ellipsis;
  /*不换行*/
  white-space: nowrap;
}

/* 定宽居中时,可对元素直接添加类名:container */
.container {
  margin: 0 auto;
}

table {
  border: 1px solid black;
  /*设置单元格之间的间距*/
  border-spacing: 0;
  /*设置单元格边框是否合并：separate分开; collapse合并*/
  border-collapse: collapse;
}

button,
button:focus,
button:active {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

input {
  border: none;
  background: transparent;
  outline: none;
}
input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.hide {
  display: none;
}
.show {
  display: block;
}

.menu-content .menu-btn ul {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-content .menu-btn ul li {
  width: 50%;
  margin-bottom: 20px;
}
.menu-content .menu-btn ul li a {
  display: block;
  width: 206px;
  height: 63px;
  margin: 0 auto;
}
