.banner {
  width: 100%;
}
#body {
  overflow: hidden;
}
.searcher_wrapper {
  padding: 12px;
}
.searcher_wrapper .searcher {
  width: 100%;
  height: 32px;
  border: 1px solid #2962ae;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.searcher_wrapper .searcher .txb-kw {
  flex: 1;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searcher_wrapper .searcher .txb-kw input {
  border: none;
  width: 100%;
  font-size: 14px;
}
.searcher_wrapper .searcher .btn-search {
  width: 96px;
  height: 32px;
  font-size: 0.75rem;
  background: #2962ae;
  border-radius: 0px 2px 2px 0px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.searcher_wrapper .searcher .btn-search .icon {
  margin-right: 0.5rem;
}
#news .tabs {
  padding: 12px 0.75rem 12px;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  overflow-x: scroll;
}
#news .tabs::-webkit-scrollbar {
  display: none;
}
#news .tabs .tab {
  margin: 0 0.75rem;
  flex-shrink: 0;
  font-size: 0.9375rem;
  color: #373737;
}
#news .tabs .tab:nth-child(1) {
  margin: 0 0.75rem 0 0;
}
#news .tabs .tab:nth-last-child(1) {
  margin: 0 0 0 0.75rem;
}
#news .tabs .tab.active span {
  color: #0062B1;
  position: relative;
}
#news .tabs .tab.active span::after {
  content: '';
  width: 1.4375rem;
  height: 1px;
  display: block;
  position: relative;
  margin-top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0062B1;
}
#news .content {
  margin-top: 1rem;
  padding: 0 1.25rem;
}
#news .content .news-list .news-item {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #C1C1C1;
}
#news .content .news-list .news-item .item-left {
  width: 40%;
  flex-shrink: 0;
  margin-right: 0.75rem;
}
#news .content .news-list .news-item .item-left .type {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.3125rem 0.5rem;
  color: #ffffff;
  font-size: 0.6875rem;
  background-color: rgba(0, 98, 177, 0.5);
}
#news .content .news-list .news-item .item-left .cover-ksr {
  width: 100%;
  position: relative;
}
#news .content .news-list .news-item .item-left .cover {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
}
#news .content .news-list .news-item .item-left .cover .ratio-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#news .content .news-list .news-item .item-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#news .content .news-list .news-item .item-right .title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #4b4b4b;
  text-align: justify;
}
#news .content .news-list .news-item .item-right .detail .tags {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
#news .content .news-list .news-item .item-right .detail .tags .tag {
  max-width: 6.25rem;
  text-align: center;
  border: 1px solid #C1C1C1;
  border-radius: 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  padding: 0 0.5rem;
  color: #848484;
  font-size: 0.6875rem;
  color: #4b4b4b;
}
#news .content .news-list .news-item .item-right .detail .createTime {
  color: #cccccc;
  font-size: 0.6875rem;
}
#news .content .more {
  margin: 2rem 0;
  font-size: 0.9375rem;
  color: #373737;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news .content .more.loading .icon {
  animation: rotate 2s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
#news .content .more .icon {
  margin-left: 0.5rem;
  width: 1rem;
}
