/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}

/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}

/* 去除input默认样式 */
input {
  border: none;
  outline: none;
  color: #333;
}

header{
  background-color: #fff !important;
}

header .header-nav li a{
  color: #535D70 !important;
}

header .header-nav li a::before{
  background-color: red !important;
}

.active::after{
  background-color: red !important;
}

header .header-nav li .fangan .anlist::before{
  display: none !important;
}

header .header-nav li .fangan .anlist:hover{
  color: red !important;
}