body {
  background: #F8F9FD;
}

.banner {
  width: 100%;
  height: 340px;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner .w {
  position: relative;
  height: 340px;
}

.banner img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 290px;
}

.news {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.news .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}

.news .list .item {
  width: 32%;
  padding: 20px;
  margin-right: 2%;
  margin-bottom: 40px;
  box-sizing: border-box;
  background-color: #fff;
  transition: all .3s;
}

.news .list .item img {
  width: 100%;
  margin-bottom: 16px;
}

.news .list .item h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 16px;
  transition: all .3s;
  margin-bottom: 6px;
}

.news .list .item p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.news .list .item:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 0px 20px 0px rgba(0, 133, 255, 0.2);
}

.news .list .item:hover h3 {
  color: #1763FF;
}

.news .list .item:nth-child(3n) {
  margin-right: 0;
}

.details {
  width: 100%;
  padding-bottom: 80px;
}

.details .crumbs {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 24px 0;
}

.details .crumbs .back {
  color: #3D4961;
  font-size: 16px;
}

.details .crumbs .link {
  color: #3D4961;
  font-size: 16px;
  margin-left: 40px;
}

.details .crumbs .link a:first-child {
  color: #1763FF;
  font-size: 16px;
}

.details .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.details .content .left {
  width: 75%;
  padding: 30px;
  box-sizing: border-box;
  background-color: #fff;
}

.details .content .left .title h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 28px;
  margin-bottom: 16px;
}

.details .content .left .title p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.details .content .left .line {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: #E5E5E5;
}

.details .content .left .message p {
  color: #3D4961;
  font-size: 16px;
  margin-bottom: 20px;
}

.details .content .left .message img {
  width: 100%;
  margin-bottom: 20px;
}

.details .content .left .page {
  display: flex;
  justify-content: end;
  width: 100%;
  margin-top: 100px;
}

.details .content .left .page a {
  display: inline-block;
  font-size: 16px;
  margin-left: 50px;
}

.details .content .left .page a:hover {
  color: #1763FF;
}

.details .content .right {
  width: 23%;
}

.details .content .right .hot {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
}

.details .content .right .hot .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.details .content .right .hot .title h3 {
  color: rgba(0, 0, 0, 0.86);
  font-size: 20px;
}

.details .content .right .hot .title a {
  color: #3D4961;
  font-size: 14px;
}

.details .content .right .hot .title a:hover {
  color: #1763FF;
}

.details .content .right .hot .list a {
  display: block;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #3D4961;
  font-size: 16px;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.details .content .right .hot .list a:hover {
  color: #1763FF;
}

.details .content .right .hot .list a:last-child {
  border-bottom: none;
}

.details .content .right .ewm {
  width: 100%;
  padding: 20px;
  margin-top: 24px;
  box-sizing: border-box;
  background-color: #fff;
}

.details .content .right .ewm .title {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 78px;
  border-bottom: 1px solid #E5E5E5;
}

.details .content .right .ewm .title span {
  color: #3D4961;
  font-size: 14px;
}

.details .content .right .ewm .title i {
  color: rgba(0, 0, 0, 0.86);
  font-size: 24px;
  font-weight: bold;
}

.details .content .right .ewm .in {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.details .content .right .ewm .in img {
  width: 176px;
  height: 176px;
  margin-bottom: 8px;
}

.details .content .right .ewm .in p {
  color: #3D4961;
  font-size: 16px;
}