body {
  background-color: #f2f2f2 !important;
}

.main {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.content-wrap {
  min-height: 60vh;
}

.actives {
  background-color: #6db8db;
}

.title-msg {
  width: 100%;
  height: 56px;
  background: url(../images/title_bg.png) no-repeat;
  background-size: 100% 100%;
  position: sticky;
  top: 0;
}
.title-msg h2 {
  font-size: 24px;
  color: #fff;
  height: 56px;
  line-height: 56px;
  padding-left: 18px;
}

.nav-wrap {
  position: relative;
  width: 263px;
  height: 500px;
}

.left-nav {
  position: absolute;
  width: 263px;
  height: 500px;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-y: auto;
  scrollbar-width: none;
}
.left-nav::-webkit-scrollbar{
  display: none;
}
.left-nav a {
  display: block;
  margin-top: 10px;
  color: #333;
  font-size: 14px;
  padding: 10px 0 10px 20px;
  cursor: pointer;
}
.left-nav .active {
  border-left: 2px solid #1552e2;
  background-image: linear-gradient(to right, #bed4e9, white);
}

.center-wrap {
  background-color: #fff;
  padding: 20px;
  position: relative;
  width: calc(100% - 294px);
  border-radius: 10px;
}
.center-wrap .main-wrap {
  position: relative;
}
.center-wrap .main-wrap ul {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 20px;
}
.center-wrap .main-wrap li {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  padding: 0 8.5px;
  height: 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
  border-right: 1px solid #333;
}
.center-wrap .main-wrap li:nth-last-child(1) {
  border-right: none;
}
.center-wrap .main-wrap .item {
  border-top: 1px solid #e4e4e4;
  padding: 20px 0;
  display: block;
  cursor: pointer;
}
.center-wrap .main-wrap .noMain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0;
}
.center-wrap .main-wrap .noMain img {
  width: 260px;
  height: 160px;
}
.center-wrap .main-wrap .noMain p {
  font-size: 14px;
  color: #888;
}
.center-wrap .main-wrap .active {
  color: #1552e2;
}
.center-wrap .main-wrap .next {
  position: absolute;
  right: -23px;
  top: 0;
  cursor: pointer;
}
.center-wrap .main-wrap .news-item {
  width: 100%;
  display: flex;
  align-items: center;
}
.center-wrap .main-wrap .news-item .left-img {
  width: 150px;
  height: 100%;
}
.center-wrap .main-wrap .news-item .left-img img {
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
}
.center-wrap .main-wrap .news-item .left-img img:hover {
  transform: scale(1.05);
  transition: all 0.3s linear;
}
.center-wrap .main-wrap .news-item .content-right {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 30px;
}
.center-wrap .main-wrap .news-item .content-right h2 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  white-space: pre-wrap;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
}
.center-wrap .main-wrap .news-item .content-right h2:hover {
  color: blue;
}
.center-wrap .main-wrap .news-item .content-right span {
  font-size: 14px;
  color: #888;
  letter-spacing: 0.5px;
  margin: 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 42px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  white-space: pre-wrap;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 15px;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg .left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg .left img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg .left i {
  font-style: normal;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #2e92f0;
}
.center-wrap .main-wrap .news-item .content-right .bottom-msg-more:hover {
  color: #f00;
}
.center-wrap .right-list {
  width: 275px;
  background-color: #f2f2f2;
  margin-top: 42px;
  float: left;
  position: absolute;
  right: 30px;
}
.center-wrap .right-list .title {
  padding: 10px;
  display: flex;
  align-items: center;
}
.center-wrap .right-list .title img {
  width: 3px;
  height: 21px;
  margin-right: 10px;
}
.center-wrap .right-list .title span {
  font-size: 18px;
}
.center-wrap .right-list .list {
  padding: 10px;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  border-top: 1px solid #e7e5e5;
}
.center-wrap .right-list .list img {
  width: 80px;
  height: 80px;
}
.center-wrap .right-list .list .right-wrap {
  width: 160px;
}
.center-wrap .right-list .list .right-wrap p {
  margin-bottom: 14px;
  font-size: 14px;
  height: 42px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.center-wrap .right-list .list .right-wrap span {
  color: #888;
  font-size: 13px;
}
.center-wrap .right-list .mores {
  height: 40px;
  background-color: #ece9e9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

@media screen and (max-width: 950px) {
  body {
    background-color: #fff !important;
  }

  .nav-wrapss {
    position: relative;
  }
  .nav-wrapss ul {
    background-color: #0658b3;
    display: flex;
    align-items: center;
    padding: 0.68rem 0.26rem;
    overflow-y: auto;
    white-space: nowrap;
  }
  .nav-wrapss ul li {
    width: 3.96rem;
    font-size: 0.65rem;
    color: #c5bcbc;
    border-right: 1px solid #c5bcbc;
    height: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.6rem;
  }
  .nav-wrapss ul .actives {
    color: #fff;
  }
  .nav-wrapss ul li:first-child {
    padding-left: 0;
  }
  .nav-wrapss ul li:nth-last-child(1) {
    border: none;
  }
  .nav-wrapss .more {
    position: absolute;
    color: #fff;
    font-size: 0.6rem;
    right: 0;
    top: 0.75rem;
  }

  .noCenter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10rem 0;
  }
  .noCenter img {
    width: 10rem;
    height: 6rem;
    margin-bottom: 1rem;
  }
  .noCenter p {
    font-size: 0.6rem;
    color: #888;
  }
  .no-more{
    font-size: 0.6rem;
  }
  .phone-content{
    padding-bottom: 4rem;
  }
  .lists-wraps {
    padding: 0.6rem;
    padding-top: 0;
    padding-bottom: 0.5rem;
  }
  .lists-wraps .items {
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #f1f0f0;
    overflow: hidden;
    padding: 0.5rem 0;
  }
  .lists-wraps .items:first-child {
    display: block;
  }
  .lists-wraps .left-img {
    width: 4rem;
    height: 4rem;
    float: left;
  }
  .lists-wraps .left-img img {
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .lists-wraps .content-right {
    width: calc(100% - 5.5rem);
    margin-left: 0.8rem;
    display: flex;
    float: left;
    flex-direction: column;
    justify-content: space-between;
  }
  .lists-wraps .content-right h2 {
    font-size: 0.68rem;
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    -webkit-box-orient: vertical;
  }
  .lists-wraps .content-right span {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.01rem;
    margin: 0.3rem 0;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .lists-wraps .content-right .bottom-msg {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .lists-wraps .content-right .bottom-msg .left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.5rem;
  }
  .lists-wraps .content-right .bottom-msg .left img {
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.1rem;
    border-radius: 50%;
  }
  .lists-wraps .content-right .bottom-msg .left i {
    font-style: normal;
  }
  .lists-wraps .content-right .bottom-msg-more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.65rem;
    color: skyblue;
  }
}
.no-more{
  text-align: center;
  color: #ccc;
}
