/* banner样式 */
.banner {
  width: 100vw;
  height: 438px;
  background: rgba(0, 0, 0, 0.45);
  background-image: url('./../../image/banner/news.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.about_font {
  font-size: 60px;
  color: white;
  position: absolute;
  left: 15%;
  bottom: 170px;
}

/* tabs标签样式 */
.tabs_menu {
  color: white;
  position: absolute;
  height: 68px;
  width: 100vw;
  background: #000;
  bottom: 0;
}

.tabs_menu ul {
  padding-left: 15%;
}

.tabs_menu li {
  background: #005aff;
  list-style: none;
  float: left;
  cursor: pointer;
  width: 200px;
  height: 68px;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  line-height: 68px;
}

.active {
  background: red !important;
}

/* 跳转箭头 */
.to_detail {
  display: inline-block;
  cursor: pointer;
  transform: translateX(-15px);
  transition: transform 0.4s;
}

.to_detail:hover {
  text-decoration: none;
  transform: translateX(10px);
  transition: transform 0.4s;
}

.text {
  display: none;
  color: rgba(0, 90, 255, 1);
}

.arr_line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #909090;
  position: relative;
  left: 13px;
  bottom: 4px;
}

.arr {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #909090;
  border-bottom: 1px solid #909090;
  transform: rotate(-45deg);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.container {
  background: #fdfdfd;
  padding: 1rem;
  margin: 3rem auto;
  border-radius: 0.2rem;
  text-align: center;
}
.container ul {
  width: 100%;
}

.middle {
  width: 32rem;
}

.container li:hover a {
  color: #fdfdfd;
  background-color: #1d1f20;
  border: solid 1px #1d1f20;
}
.container li.uk-active a {
  color: #fdfdfd;
  background-color: #1d1f20;
  border: solid 1px #1d1f20;
}
.container li a {
  border: solid 1px #d6d6d6;
  border-radius: 0.2rem;
  color: #7d7d7d;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  padding: 0.2rem 0.6rem;
  margin: 0.2rem;
}
