body {
  padding: 0;
  margin: 0;
}
/* 测试用css */
.rb {
  border: 1px solid red;
}
::-webkit-scrollbar-track {
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #0003;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar {
  width: 8px;
}
.phone-container {
  margin: auto;
  border-radius: 10px;
  width: 400px;
  height: 800px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  overflow: scroll;
  position: relative;
}
/* 顶部区域 */
.header {
  padding: 0px 15px;
  height: 60px;
  background-color: #054f9a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-img {
  height: 40px;
  object-fit: contain;
  cursor: pointer;
}
.menu-btn,
.search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 100%;
  transition: all 0.3s ease;
}

/* 轮播图 */
.swiper {
  width: 100%;
  height: 150px;
}

/* 搜索 */
.search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  background-color: #f4f4f5;
  height: 60px;
  z-index: 99999;
  display:none;
}
.search-form {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 15px;
}
.search input {
  height: 40px;
  border: none;
  padding: 0 20px;
  font-size: 16px;
  outline: none;
  flex: 1;
}
.search  .search-btn {
  height: 40px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: white;
  border-left: 1px solid #e9e9eb;
}
.search-btn:active > img {
  transition: all 0.3s ease-out;
  transform: scale(0.7);
}

/* 折叠菜单 */
/* 菜单容器 */
.menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  color: #606266;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 0px;
  background-color: #f4f4f5;
  transition: all 0.3s ease;
  z-index: 9999;
}
.menu a {
  text-decoration: none;
  color: #000;
}
/* 菜单项基础样式 */
.menu > div {
  flex-wrap: wrap;
  padding: 6px 15px;

  /* border: 1px solid; */
}

/* 二级菜单样式 */
.secondary-menu {
  margin-top: 6px;
  font-size: 16px;
  color: #909399;
  overflow: hidden;
  max-height: 0px;
  transition: all 0.3s ease;
}
/* 二级菜单项样式 */
.secondary-menu > a {
  color: #909399;
  display: block;
  padding: 8px;
  padding-left: 16px;
}
.secondary-menu-btn {
  transition: all 0.3s ease;
}

/* 中部内容区 */
.content {
  margin-top: 15px;
  width: 100%;
}
.content-header {
  padding: 6px 0;
  margin: 0px 15px;
  font-weight: bolder;
  color: #0e5198;
  display: flex;
  justify-content: space-between;
}
small {
  display: inline-block;
  font-size: 10px;
  height: 14px;
  line-height: 14px;
  margin: 0 10px;
  padding: 0 10px;
  color: #992028;
  font-weight: 700;
  border-left: 2px solid #0e5198;
}
.more > a {
  color: #658da3;
  font-size: 14px;
  text-decoration: none;
}

.content-center {
  padding: 10px 15px;
  font-size: 15px;
}
.content-center a {
  display: inline-block;
  padding: 4px 0px;
  text-decoration: none;
  color: #000;
  width: 80%;
}

/* 单行新闻 */
.content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-item > span {
  color: #909399;
}

/* 快速链接区  */
.quick-link {
  padding: 0 15px;
  margin-top: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.quick-link-item {
  height: 60px;
  flex: 1;
  background-color: white;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 8px 16px;
}

.quick-link-item a {
  text-decoration: none;
  color: #000;
}
.quick-link-item > img {
  height: 45px;
  object-fit: contain;
}
.quick-link-item:not(:last-child) {
  margin-right: 15px;
}
.quick-link-item-title {
  margin-left: 8px;
}
.quick-link-item-title > div {
  font-size: 11px;
  margin-top: 4px;
}

/* 视频区 */
.video {
  overflow: hidden;
}

/* 底部区域 */
.footer {
  margin-top: 8px;
  padding: 20px 20px;
  background-color: #658da3;
  font-size: 14px;
  color: #f5f7fa;
}
.footer ul {
  padding: 0;
  margin: 0;
}

.footer li {
  list-style: none;
}

.footer li:not(:last-child) {
  margin-bottom: 4px;
}