/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
  margin: 0;
  padding: 0;
}
/** 设置默认字体 **/

button, input, select, textarea /* for ie */ {
  font: 14px/1.5 tahoma;
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

small {
  font-size: 12px;
} /* 小于 12px 的中文很难阅读, 让 small 正常化 */
/** 重置列表元素 **/
ul,
ol {
  list-style: none;
}
/** 重置文本格式元素 **/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
sup {
  vertical-align: text-top;
} /* 重置, 减少对行高的影响 */
sub {
  vertical-align: text-bottom;
}
/** 重置表单元素 **/
legend {
  color: #000;
} /* for ie6 */
fieldset,
img {
  border: 0;
} /* img 搭车：让链接里的 img 无边框 */
button,
input,
select,
textarea {
  font-size: 100%;
} /* 使得表单元素在 ie 下能继承字体大小 */
/* 注：optgroup 无法扶正 */
/** 重置表格元素 **/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.p-center {
  display: none;
}

html {
  font-size: 10vw;
}

/* m */
.m-center {
  background: #f3f3f3;
  min-height: calc(100vh - 2.22rem);
  max-height: calc(100vh - 2.22rem);
  overflow-y: auto;
  padding-top: 2.22rem;
  max-width: 100vw;
  overflow-x: hidden;
}

.m-content {
  padding: 0 0.36rem;
}
.m-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.1);
}
.m-header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1.92rem;
  background-color: #ffffff;
}
.header-menu {
  width: 0.47rem;
  height: 0.37rem;
  background: url(../image/mobile/menu.png) no-repeat;
  background-size: 100% 100%;
  border: none;
  display: block;
}
.header-close {
  width: 0.47rem;
  height: 0.47rem;
  background: url(../image/mobile/close.png) no-repeat;
  background-size: 100% 100%;
}
.m-logo {
  width: 3.03rem;
  height: 0.9rem;
}
.m-nav {
  position: fixed;
  top: 1.92rem;
  left: 0;
  right: 0;
  min-height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 19;
}
.page-nav-list {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
}
.page-nav-list a {
  display: block;
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.45rem;
  color: #5e5063;
  text-decoration: none;
  text-align: center;
}
.page-nav-list a + a {
  border-top: 0.01rem solid #ecebf0;
}

.page-nav-list .active {
  text-decoration: none;
  color: #fc6497;
}
.page-nav-list a:hover {
  text-decoration: none;
  color: #fc6497;
}

.m-footer {
  text-align: center;
  color: #979797;
  font-size: 0.28rem;
  padding-bottom: 0.2rem;
}
.m-footer a {
  text-decoration: none;
  color: #979797;
}
.m-cell {
  background: #ffffff;
  margin-bottom: 0.3rem;
}
/* m=资讯 */

.m-consult {
  padding: 0.6rem 0.4rem;
}
.m-c-t {
  display: flex;
  justify-content: space-around;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #eeeeee;
}
.m-c-t-box {
  font-size: 0.42rem;
  display: flex;
  align-items: center;
}
.m-c-t-box img {
  width: 0.41rem;
  height: 0.41rem;
  margin-right: 0.2rem;
}

.m-info-li {
  font-size: 0.34rem;
  margin: 0.3rem;
  color: #696969;
}
.m-info-li li {
  margin-top: 0.2rem;
  line-height: 0.6rem;
  background-image: url("../image/mark.png");
  background-repeat: no-repeat;
  background-size: 0.2rem 0.2rem;
  background-position: 0% 50%;
  padding-left: 0.4rem;
  cursor: pointer;
}
/* .m-info-li li:hover {
  color: #ea4e82;
  text-decoration: underline;
} */
.active-m {
  color: #fe7390;
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 100px;
  }
  .m-center {
    display: none;
  }
  .p-center {
    display: block;
  }
}
