/* ---------------通用样式 ----------------- */
.titleMobBox {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 30px;
  box-sizing: border-box;
}
.titleMobBox .titleMob {
  font-size: 18px;
  color: #333;
}
.titleMobBox .rightMob {
  font-size: 13px;
  color: #333;
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.titleMobBox .rightMob .dotLine {
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-right: 10px;
}
.titleMobBox .rightMob .redDot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c71d07;
}
.titleMobBox .rightMob .dotLine:after {
  content: "";
  display: inline-flex;
  width: 40px;
  height: 1px;
  background: #e8e8e8;
}
/* ---------------通用样式 ----------------- */


/* --------------- banner大图 ----------------- */
.bannerMob {
  position: relative;
  overflow: hidden;
}
.bannerMob .bannerImg {
  width: 100%;
}
.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;
}
/* --------------- 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;
}
/* --------------- 导航栏 ----------------- */

/* --------------- 二中要闻 ----------------- */
.ezywMob {
  padding: 20px;
}

.ezywMob .ezywSwiperMob {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 10px;
}

.ezywMob .ezywSwiperMob .swiper-wrapper .swiper-slide a {
  position: relative;
  z-index: 0;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.ezywMob .ezywSwiperMob .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  border: 2px solid white;
  background-color: transparent;
}

.ezywMob .ezywSwiperMob .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

.ezywMob .ezywSwiperMob .info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  color: white;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* --------------- 二中要闻 ----------------- */

/* --------------- 校园新闻 ----------------- */
.xyxwMob {
  padding: 20px 20px 0 20px;
  margin-top: 10px;
  background: #f2f3f7;
}
.xyxwMob .listBox {
  border-top: 2px solid #c71d07;
  background: white;
  font-size: 14px;
  color: #333;
  padding-bottom: 4px;
  margin-top: 10px;
}
.xyxwMob .listBox .articleLi {
  display: flex;
  display: -webkit-flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 8px;
  box-sizing: border-box;
  width: 100%;
}
.xyxwMob .listBox .articleLi .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.xyxwMob .listBox .articleLi .time {
  width: 100%;
  font-size: 12px;
  color: #999;
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 4px;
  margin-top: 10px;
}
.xyxwMob .listBox .articleLi .time:before {
  content: "";
  display: inline-flex;
  width: 74%;
  height: 1px;
  background: #e8e8e8;
}
/* --------------- 校园新闻 ----------------- */

/* --------------- 通知公告 ----------------- */
.tzggMob {
  padding: 20px;
  /* margin-top: 10px; */
  background: #f2f3f7;
}
.tzggMob .listBox {
  border-top: 2px solid #c71d07;
  background: white;
  font-size: 14px;
  color: #333;
  padding-bottom: 4px;
  margin-top: 10px;
}
.tzggMob .listBox .articleLi {
  display: flex;
  display: -webkit-flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 8px;
  box-sizing: border-box;
  width: 100%;
}
.tzggMob .listBox .articleLi .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.tzggMob .listBox .articleLi .time {
  width: 100%;
  font-size: 12px;
  color: #999;
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 4px;
  margin-top: 10px;
}
.tzggMob .listBox .articleLi .time:before {
  content: "";
  display: inline-flex;
  width: 74%;
  height: 1px;
  background: #e8e8e8;
}
/* --------------- 通知公告 ----------------- */

/* #region 最新文章/学校大事记 标签页 */
.newArticleMob {
  padding: 20px;
  background: #f2f3f7;
}

/* 标签页容器 */
.tabs1Mob {
  width: 100%;
  background-color: #fff;
  position: relative;
}

/* 隐藏单选按钮 */
.tabs1Mob input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* 标签页导航容器 */
.tabs1Mob .tab-nav-container {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}

/* 标签页导航 */
.tabs1Mob .tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex: 1;
}

.tabs1Mob .tab-label {
  padding: 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  margin-right: 20px;
}

.tabs1Mob .tab-label:hover {
  color: #c71d07;
}

/* 更多按钮容器 - 固定在右侧 */
.tabs1Mob .more-buttons-container {
  padding: 20px 0 30px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 更多按钮样式 */
.tabs1Mob .more-btn {
  border: 1px solid #cecece;
  position: absolute;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  color: #999999;
}

/* 显示当前选中标签页对应的更多按钮 */
#zxwzMob:checked~.more-buttons-container .more-btn[data-tab1="zxwzMob"],
#xxdsjMob:checked~.more-buttons-container .more-btn[data-tab1="xxdsjMob"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* 选中标签样式 */
#zxwzMob:checked~.tab-nav-container .tab-label[for="zxwzMob"],
#xxdsjMob:checked~.tab-nav-container .tab-label[for="xxdsjMob"] {
  color: #c71d07;
  border-bottom-color: #c71d07;
  padding-bottom: 8px;
  /* background-color: rgba(74, 110, 224, 0.05); */
}

/* 标签页内容区域 */
.tabs1Mob .tab-content-wrapper {
  position: relative;
  overflow: hidden;
}

.tabs1Mob .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.tabs1Mob .tab-content .item {
  padding: 10px 10px;
  cursor: pointer;
}

.tabs1Mob .tab-content .item .item-left {
  background-image: url(../images/dianzhui.png);
  background-repeat: no-repeat;
  background-position: 0 center;
  font-size: 14px;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 16px;
  box-sizing: border-box;
}

.tabs1Mob .tab-content .item .item-right {
  width: 100%;
  font-size: 12px;
  color: #999;
  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  height: 4px;
  margin-top: 10px;
}
.tabs1Mob .tab-content .item .item-right:before {
  content: "";
  display: inline-flex;
  width: 74%;
  height: 1px;
  background: #e8e8e8;
}

/* 内容显示动画 */
#zxwzMob:checked~.tab-content-wrapper .tab-content.zxwzMob,
#xxdsjMob:checked~.tab-content-wrapper .tab-content.xxdsjMob {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

/* #endregion */

/* --------------- 精彩视频 ----------------- */
.jcspMob {
  padding: 20px;
}

.jcspMob .jcspSwiperMob {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 10px;
}

.jcspMob .jcspSwiperMob .swiper-wrapper .swiper-slide a {
  position: relative;
  z-index: 0;
  height: 100%;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.jcspMob .jcspSwiperMob .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  border: 2px solid white;
  background-color: transparent;
}

.jcspMob .jcspSwiperMob .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}

.jcspMob .jcspSwiperMob .info {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  color: white;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* --------------- 精彩视频 ----------------- */

/* --------------- 快捷导航 ----------------- */
.quickToMob {
  background: #efefef;
  padding: 20px;
  position: relative;
}
.quickToMob .bigTitle {
  font-size: 18px;
  font-weight: bold;
  color: rgb(199, 29, 7);
  text-align: center;
  margin-bottom: 10px;
}
.quickToMob .line {
  width: 50px;
  height: 4px;
  background-color: rgb(199, 29, 7);
  margin: 0 auto;
}
.quickToMob .listBox {
  display: -webkit-flex;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.quickToMob .listBox .halfBox {
  width: 48%;
  height: 80px;
  background-color: #fff;
  margin-bottom: 10px;

  display: flex;
  display: -webkit-flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  font-size: 14px;
}
.quickToMob .listBox .halfBox .avart {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px dashed #aca7a7;
}
.quickToMob .listBox .halfBox .title {
  font-size: 14px;
  text-align: center;
  margin-left: 10px;
}
.quickToMob .listBox .halfBox:nth-of-type(1) {
  background: url(../images/q1.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}
.quickToMob .listBox .halfBox:nth-of-type(2) {
  background: url(../images/q2.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}
.quickToMob .listBox .halfBox:nth-of-type(3) {
  background: url(../images/q3.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}
.quickToMob .listBox .halfBox:nth-of-type(4) {
  background: url(../images/q4.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}
.quickToMob .listBox .halfBox:nth-of-type(5) {
  background: url(../images/q5.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}
.quickToMob .listBox .halfBox:nth-of-type(6) {
  background: url(../images/q6.png), linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0)) center center;
  background-size: 100% 100%;
}

.quickToMob .listBox .halfBox:nth-of-type(1) .avart {
  background: url(../images/dangjian.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.quickToMob .listBox .halfBox:nth-of-type(2) .avart {
  background: url(../images/erzhongxiaoyou.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.quickToMob .listBox .halfBox:nth-of-type(3) .avart {
  background: url(../images/xiaobaoxiaokan.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.quickToMob .listBox .halfBox:nth-of-type(4) .avart {
  background: url(../images/xinxigongkai.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.quickToMob .listBox .halfBox:nth-of-type(5) .avart {
  background: url(../images/xiaozhangrexian.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.quickToMob .listBox .halfBox:nth-of-type(6) .avart {
  background: url(../images/xiaoneibangong.png) center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
/* --------------- 快捷导航 ----------------- */

/* --------------- 网页底部 ----------------- */
.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;
}
/* --------------- 网页底部 ----------------- */
