* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 16px;
}
html,
body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
a {
  text-decoration: none;
  color: #000;
}
main {
  max-width: 1200px;
}
.header__container {
  position: relative;
  margin-bottom: 30px;
  width: 1200px;
}
.zj__main {
  display: flex;
  align-items: center;
  height: 96px;
}
.zj__logo {
  width: 132px;
  height: 46px;
}

.search__wrapper {
  position: absolute;
  right: 200px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 340px;
  height: 36px;
  border-radius: 4px;
  border: 1px solid #116dc3;
  box-sizing: border-box;
  vertical-align: middle;
}

#search__type {
  padding: 0 4px;
  width: 64px;
  height: 34px;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  border: none;
}
#search__input:focus {
  outline: none;
}

.search__input {
  padding: 0 8px;
  width: 206px;
  height: 34px;
  border-radius: 0;
  border: none;
}

.search__input::placeholder {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 1.5;
}

.search__input:focus {
  outline: none;
}

.search__button {
  padding: 0;
  width: 72px;
  height: 34px;
  border: 0;
  font-size: 16px;
  color: #ffffff;
  text-align: center;
  border-radius: 0 4px 4px 0;
  background-color: #116dc3;
  box-shadow: 0 0 0 0.5px #116dc3;
}
.city {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: end;
  width: 200px;
}
.location__icon {
  width: 14px;
  height: 16px;
  margin-right: 4px;
  vertical-align: sub;
}
.current__city {
  font-size: 16px;
  color: #116dc3;
}
.switch__city {
  margin-left: 5px;
  color: #999;
  font-size: 12px;
}
.nav__container {
  width: 1200px;
  height: 48px;
}

.nav__items {
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav__item {
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}

.nav__item a {
  position: relative;
  color: #0a0a0a;
}

.nav__item.active a {
  color: #116dc3;
}

.nav__item.active a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  content: "";
  width: 100%;
  height: 2px;
  background: #116dc3;
}
footer {
  width: 1200px;
}
footer .topic__link {
  margin: 20px 0;
  background-color: rgba(107, 184, 255, 0.1);
  padding: 35px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
footer .topic__link a {
  cursor: pointer;
  color: #000;
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}
footer .topic__link a:hover {
  color: #116dc3;
}
footer .friend__link {
  margin: 20px 0;
  background: #fafafa;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  padding: 20px;
  font-size: 14px;
}
.friend__link .link__wrapper {
  display: flex;
}

.friend__link .link__wrapper .link__list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 5rem);
}
.link__wrapper-label {
  width: 5rem;
}
.friend__link .link__wrapper .link__list a {
  margin: 0 10px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}
.friend__link .link__wrapper .link__list a:hover {
  color: #116dc3;
}
.system__instruction {
  position: relative;
  width: 1200px;
  background-color: #fafafa;
  padding: 20px;
  color: #000;
  margin: 20px auto;
}
.system__instruction span {
  font-size: 20px;
}
.system__instruction p {
  font-size: 14px;
  line-height: 30px;
}
.system__instruction p:first-child {
  margin-top: 20px;
}
.system__instruction .official__account {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.system__instruction .official__account img {
  width: 105px;
  height: 105px;
}
.system__instruction .official__account span {
  margin-top: 10px;
  font-size: 16px;
}
.record__area {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.record__area img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
}
.record__area a {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #000;
}
.record__area a:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
}
.breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 1200px;
  padding-bottom: 20px;
}
.breadcrumb a,
.breadcrumb li a,
.breadcrumb span {
  font-size: 12px;
  color: #000;
  cursor: pointer;
}
.breadcrumb a:not(:last-child)::after,
.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 4px;
}
.pagination {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0 50px;
}
.pagination .pagination__item {
    display: inline-block;
    margin-right: 8px;
    min-width: 32px;
    height: 32px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.65);
    border: 1px solid #d9d9d9;
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}
.pagination__ellipsis {
    display: inline-block;
    margin-right: 8px;
    min-width: 32px;
    height: 32px;
    background-color: #fff;
    color: rgba(0, 0, 0, 0.65);
    line-height: 32px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}
.pagination .pagination__item a {
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
}
.pagination__prev a, .pagination__next a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    height: 32px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
}
.pagination__prev a {
    margin-right: 8px;
}
.filter__group {
  padding: 0 20px;
  width: 800px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.filter__group .filter__item {
  display: flex;
  margin: 20px 0;
}
.filter__item .filter__title {
  padding: 2px 0;
  white-space: nowrap;
  font-size: 12px;
  color: #000;
  cursor: default;
}
.filter__item .filter__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
.filter__list .filter__option {
  padding: 2px 0;
  font-size: 12px;
  color: #000;
  cursor: pointer;
  display: inline-block;
  padding: 2px 18px;
  min-width: 60px;
  text-align: center;
}
.filter__list .filter__option .option__link {
  padding: 2px 0;
  white-space: nowrap;
  font-size: 12px;
  color: #000;
  cursor: default;
}
.filter__list .filter__option.active {
  color: #fff;
  background: #116dc3;
  border-radius: 10px;
}
.filter__list .filter__option.active .option__link {
  color: #fff;
}
.picks__latest {
  display: inline-block;
  position: sticky;
  top: 8px;
  width: 360px;
  max-height: 100vh;
}
/* 右侧推荐、热门及最新 */
.picks__item {
  display: flex;
  flex-direction: column;
}
.picks__label {
  margin-bottom: 6px;
}
.picks__list {
  padding: 10px 16px;
  border: 1px solid #eee;
  border-radius: 10px;
  margin-bottom: 20px;
}
.picks__list .pick__item {
  width: calc(360px - 32px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  margin-bottom: 10px;
}
.picks__list .pick__item:last-child {
  margin-bottom: 0;
}
.picks__list .pick__item .item__link {
  font-size: 14px;
  color: #000;
}
/* 资讯列表 */
.news__item {
  width: 100%;
  height: 140px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.news__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.news__more {
  margin-bottom: 50px;
  text-align: center;
}
.news__more a {
  border: 1px solid #eee;
  background: #fff;
  padding: 10px 40px;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 14px;
  color: #116dc3;
  cursor: pointer;
}
.news__more a:hover {
  color: #fff;
  background: #116dc3;
  transition: 0.3s;
}
.news__item a {
  display: flex;
  padding: 24px 20px;
}
.news__text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 70px);
}
.news__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  color: #000;
}
.news__desc {
  color: #333;
  font-size: 14px;
  line-height: 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news__source {
  font-size: 12px;
  line-height: 40px;
  color: #bababa;
}
.news__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  background: #116dc3;
  border-radius: 8px;
  color: #fff;
  margin-right: 15px;
}
.news__time span:first-child {
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  color: #fff;
}
.news__time span:last-child {
  font-size: 12px;
  line-height: 20px;
  font-weight: 700;
  display: inline-block;
  color: #fff;
}
