/* 公共样式 */
/* 把我们所有标签的内外边距清零 */
* {
  margin: 0;
  padding: 0;
  /* 使用css3盒子（省去计算盒子大小的麻烦） */
  box-sizing: border-box;
}

ol,
ul,
dl {
  margin: 0;
}

/* 去掉li 的小圆点 */
li {
  list-style: none;
}

/* em 和 i 斜体的文字不倾斜 */
em,
i {
  font-style: normal;
}

img {
  /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
  border: 0;
  /* 取消图片底侧有空白缝隙的问题 */
  vertical-align: middle;
}

button {
  /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
  cursor: pointer;
}

button,
input {
  /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
  font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB,
    "\5B8B\4F53", sans-serif;
  /* 清除默认边框 */
  border: none;
  /* 清除默认点击高亮效果 */
  outline: none;
}

html,
body {
  min-width: 1300px;
  overflow: auto;
}

body {
  /* CSS3 抗锯齿形 让文字显示的更加清晰 */
  -webkit-font-smoothing: antialiased;
}

/* 版心尺寸 */
.main-width {
  width: 1200px;
  margin: 0 auto;
}

/* 模块title */
.module_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.module_title .title_chinese {
  display: flex;
  align-items: center;
}
.module_title .title_chinese > img {
  width: 28px;
  height: 18px;
  margin-right: 8px;
}
.module_title .title_chinese > h1 {
  margin: 0;
  font-weight: 500;
  font-size: 26px;
  color: #33373e;
  line-height: 32px;
}
.module_title .title_english {
  font-weight: 400;
  font-size: 16px;
  color: #bbbfc4;
  line-height: 32px;
}

/* 页面banner样式（非首页） */
.page_banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 536px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page_banner > p {
  font-weight: 500;
  font-size: 32px;
  color: #ffffff;
  line-height: 54px;
  letter-spacing: 2px;
}

/* 下拉菜单 */
.dropdown_list {
  position: absolute;
  top: 61px;
  z-index: 9;
  border-radius: 2px;
  overflow: hidden;
  /* 默认不展开 */
  max-height: 0;
  transition: all linear 0.3s;
}
.dropdown_list .dropdown_item {
  width: 210px;
  height: 38px;
  padding: 0 16px;
  line-height: 38px;
  font-weight: 400;
  font-size: 16px;
  color: #33373e;
  background-color: #fff;
}
.dropdown_list .dropdown_item:hover {
  color: #3377e8;
  background-color: #e1f0ff;
}
