
/* 默认隐藏 */
.mobile-link-bar {
  display: none;
  width: 100%;
  height: 25px;
  line-height: 30px;
  background-color:#3e4a70; /* 背景色可改 */
  font-size: 14px;
  text-align: center;
}

/* 宽度≤960px 显示 */
@media (max-width: 960px) {
  .mobile-link-bar {
    display: block;
  }
}

/* 两个链接样式 */
.mobile-link-bar a {
  color: #ffffff; /* 文字白色 */
  text-decoration: none;
  margin: 0 15px; /* 两个句子中间间距 */
}

.mobile-link-bar a:hover {
  text-decoration: underline;
}
