.main {
  padding: 40px 0;
}
.tabbar {
  position: relative;
  padding: 20px 0 80px;
  margin: 0;
  list-style: none;
  z-index: 1;
  border-top: 50px solid #1a57af;
  border-bottom: 4px solid #1a57af;
  box-sizing: border-box;
  background: #ede5da;
}
.tabbar:before {
  position: absolute;
  top: -50px;
  left: 0;
  content: "";
  width: 50px;
  height: 0;
  border-top: 25px solid #f4c278;
  border-left: 25px solid #f4c278;
  border-right: 25px solid transparent;
  border-bottom: 25px solid transparent;
  z-index: 3;
}
.tabbar:after {
  position: absolute;
  top: -50px;
  left: 0;
  content: "";
  width: 54px;
  height: 0;
  border-top: 27px solid #ccc;
  border-left: 27px solid #ccc;
  border-right: 27px solid transparent;
  border-bottom: 27px solid transparent;
  z-index: 2;
}
.tabbar .tabbar-item {
  height: 24px;
  line-height: 24px;
  /*text-align: center;*/
  margin-left:25px;
}
.tabbar .tabbar-item + .tabbar-item {
  margin-top: 40px;
}
.tabbar .tabbar-item + .tabbar-item a:after {
  position: absolute;
  content: "";
  top: -36px;
  left: -26px;
  width: 2px;
  height: 36px;
  background: #990223;
  opacity: 0.2;
}
.tabbar .tabbar-item .icon {
  display: inline-block;
  margin-right: 16px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #990223;
  opacity: 0.2;
}
.tabbar .tabbar-item .icon-2 {
  display: none;
}
.tabbar .tabbar-item a {
  position: relative;
  display: inline-block;
  color: #060000;
  font-size: 20px;
  vertical-align: top;
}
.tabbar .tabbar-item-active .icon {
  display: none;
}
.tabbar .tabbar-item-active .icon-2 {
  display: inline-block;
  width: 0;
  height: 0;
  border-radius: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid #990223;
  border-right: 14px solid transparent;
}
.breadcrumb-nav {
  padding: 10px 0;
  font-size: 14px;
  color: #4a4848;
  border-bottom: 1px solid #4a4848;
}
.breadcrumb-nav .breadcrumb-item {
  font-size: 14px;
  color: #4a4848;
}
.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  content: ">";
  margin: 0 10px;
}
@media screen and (max-width: 900px) {
  .breadcrumb-nav {
    font-size: 12px;
  }
  .breadcrumb-nav .breadcrumb-item {
    font-size: 12px;
  }
  .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    margin: 0 4px;
  }
}
.list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 20px;
}
.list .item {
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid #d8acac;
}
.list .item::before {
  position: absolute;
  top: 30px;
  left: -16px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #deb1ae;
}
.list .item .item-left {
  width: calc(100% - 120px);
}
.list .item .item-right {
  margin-left: 40px;
  width: 80px;
}
.list .item .item-title {
  font-size: 20px;
  color: #020000;
}
.list .item .item-detail {
  margin-top: 10px;
  font-size: 16px;
  color: #7f7b7b;
}
@media screen and (max-width: 900px) {
  .list {
    padding-left: 0;
  }
  .list .item {
    padding: 10px 0;
  }
  .list .item::before {
    display: none;
  }
  .list .item .item-left {
    width: calc(100% - 90px);
  }
  .list .item .item-right {
    margin-left: 10px;
    font-size: 12px;
  }
  .list .item .item-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .list .item .item-detail {
    margin-top: 6px;
    font-size: 12px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.page {
  margin-top: 20px;
  text-align: center;
}
.page .page-item {
  margin: 0 6px;
  color: #020000;
}
