.mobile {
  box-sizing: border-box;
}
/* --------------- banner大图 ----------------- */
.bannerMob {
  position: relative;
  overflow: hidden;
  height: 150px;
}
.bannerMob .bannerImg {
  width: 150%;
  height: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.bannerMob .toplogoImg {
  width: 46%;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 100;
}
.bannerMob .maskMob {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 60%);
}
.bannerMob .openMenuMob {
  width: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
}
.bannerMob .positon {
  padding: 10px 10px;
  background: #c71d07;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 100;
  color: #fff;
  font-size: 12px;
}
/* --------------- banner大图 ----------------- */

/* --------------- 导航栏 ----------------- */
.navMob {
  width: 100%;
  min-height: 60%;
  position: absolute;
  z-index: 111;
  top: 0;
  background: #c71d07;
  padding-bottom: 20px;
  display: none;
}
.navMob .header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  box-shadow: 2px 2px 2px #0000001a;
}
.navMob .header .toplogoHeader {
  width: 46%;
  padding: 10px;
}
.navMob .header .closeMenuMob {
  height: 50px;
}


.navMob .menu-list {
  list-style: none;
  color: #fff;
  font-size: 15px;
}
.navMob .menu-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navMob .menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.navMob .menu-title:hover {
  background-color: #b00f20;
}
.navMob .arrow {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #c51122;
  transition: transform 0.2s;
}
/* 展开时箭头旋转 */
.navMob .arrow.expanded {
  transform: rotate(90deg);
}
/* 子菜单容器 */
.navMob .submenu {
  list-style: none;
  background-color: #d92938;
  display: none;
}
/* 子菜单展开时显示 */
.navMob .submenu.show {
  display: block;
}
/* 子菜单项（层级缩进） */
.navMob .submenu .menu-item .menu-title {
  padding-left: 30px;
}
/* 多级子菜单缩进递增 */
.navMob .submenu .submenu .menu-item .menu-title {
  padding-left: 45px;
}
.navMob .submenu .submenu .submenu .menu-item .menu-title {
  padding-left: 60px;
}
/* --------------- 导航栏 ----------------- */


/* --------------- 内容区域 ----------------- */
.contentMob {
  width: 100%;
  min-height: 60vh;
  padding: 20px;
  box-sizing: border-box;
}
.contentMob .title {
  min-height: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.contentMob .readInfo {
  padding: 4px 2px;
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  background: #fafafa;
  color: #666;
  font-size: 12px;
  vertical-align: middle;
  margin: 10px 0;
}
.contentMob .readInfo span {
  margin: 0 4px;
}
.contentMob .article {
  max-width: 100%;
  margin: 0 auto;
  overflow: auto;
}
.contentMob .article img {
  max-width: 100% !important;
  margin-bottom: 10px;
}
.contentMob .article table th {
  border: 1px solid #DDD;
}
.contentMob .article table td {
  border: 1px solid #DDD;
}
/* --------------- 内容区域 ----------------- */


/* --------------- 网页底部 ----------------- */
.footerMob {
  width: 100%;
  height: 170px;
  background-color: #c71d07;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerMob .footerMob-content-left {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 20px;
}
.footerMob .footerMob-content-left p {
  margin-bottom: 6px;
}
.footerMob .footerMob-content-right {
  width: 28%;
  text-align: center;
}
/* --------------- 网页底部 ----------------- */