﻿.flex {
  display: flex;
}
.container {
  background-color: #f2f2f2;
}
.container-box {
  margin-bottom: 40px;
}
.banner-box {
  width: 100%;
  height: 288px;
  background-image: url(../img/banner-bg.png);
  background-size: 100% 100%;
  background-position: 0 0;
  display: flex;
  align-items: flex-end;
}
.crumbs-box {
  width: 100%;
  height: 40px;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.crumbs-nav {
  width: 292px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/nav-bg.png);
  background-size: 100% 100%;
  background-position: 0 0;
  font-size: 24px;
  font-weight: bold;
}
.crumbs-list {
  height: 40px;
  line-height: 40px;
  margin-left: 30px;
  font-size: 14px;
}
.menu-box {
  width: 292px;
  padding: 20px;
  background-color: #fff;
}
.menu-item {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #1F2A34;
  border-radius: 4px;
}
.menu-item.choosed {
  background-color: #F7EAEA;
}
.menu-item.choosed::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background-color: #B12424;
}
.menu-item:hover {
  background-color: #F7EAEA;
}
.info-list {
  flex: 1;
  width: 0;
  margin-left: 30px;
  margin-top: 20px;
  background-color: #fff;
  padding: 20px;
}
.info-item {
  display: flex;
  align-items: center;
  color: #1F2A34;
  font-size: 15px;
  line-height: normal;
  margin-bottom: 20px;
}
.info-item:last-child {
  margin-bottom: 0;
}
.info-item:hover .info-content span:nth-child(1) {
  color: #B12424;
  font-weight: bold;
}
.info-date {
  width: 80px;
  height: 60px;
  display: flex;
  flex-direction: column;
  border: 1px solid #EAEDF6;
}
.info-date span{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #9098A0;
}
.info-date span:nth-child(1) {
  flex: 1;
  height: 0;
}
.info-date span:nth-child(2) {
  height: 34px;
  font-size: 20px;
  color: #B12424;
  border-top: 1px solid #EAEDF6;
}
.info-content {
  display: flex;
  flex-direction: column;
  margin-left: 17px;
  flex: auto;
  width: 0;
  font-size: 15px;
}
.info-content span:nth-child(1) {
  color: #1F2A34;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
.info-content span:nth-child(2) {
  font-size: 14px;
  color: #6E757C;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.info-content span:nth-child(3) {
  color: #AEB4B8;
  font-size: 14px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
  margin-bottom: 40px;
  padding-left: 292px;
}

.pagination .page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #868a8e;
  border-radius: 2px;
  margin-right: 10px;
}

.pagination .tp {
  font-size: 0.18rem;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #333333;
}

.pagination .tp input {
  margin: 0 10px;
  width: 60px;
  height: 40px;
  border: 1px solid #868a8e;
  border-radius: 4px;
  padding: 0 10px;
}