.main {
  margin-top: 5px;
}
.main__left {
  width: 820px;
  float: left;
}
.main__right {
  margin-left: 835px;
  margin-top: 10px;
}
.breadcrumb {
  height: 35px;
  line-height: 35px;
  border-bottom: 1px solid #ddd;
  color: #7c7c7c;
}
.info {
  margin-top: 10px;
}
.info__top__title {
  line-height: 25px;
  font-size: 20px;
  font-weight: normal;
  display: inline-block;
}
.info__date {
  margin-top: 5px;
  height: 30px;
  line-height: 30px;
  color: #7c7c7c;
}.search-field__input {  display: inline-block;  width: 220px;  height: 25px;  line-height: 25px;  border: 1px solid #ccc;}.search-field__button {  font-size: 14px;  border: none;  height: 27px;  line-height: 27px;  width: 60px;  background-color: #1294f6;  color: #fff;}
.info__date .right > a {
  display: inline-block;
  padding: 3px 15px;
  font-size: 14px;
  line-height: 14px;
  border: 1px solid #ddd;
  margin-left: 3px;
}
.info__date .right > a:hover {
  text-decoration: none;
  background: #f3f3f3;
}
.info__content {
  font-size: 16px;
}
.info__warning {
  background-color: #fcf8e3;
  color: #666;
  padding: 10px;
  border: 1px solid #eee;
  /*margin-top: 15px;*/
  font-size: 14px;
}

.info__detail__row {
  overflow: hidden;
}
.info__detail__cell {
  width: 45%;
  float: left;
  height: 35px;
  line-height: 35px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  /*border-bottom: 0px solid #eee;*/
  margin-right: 5%;
}
.info__detail__cell .key {
  color: #7c7c7c;
  margin-left: 5px;
}

.comment .comments {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.comment .comments .comment_hd {
  height: 20px;
  line-height: 20px;
  color: #7c7c7c;
}
.comment .comments .comment_hd .jubao .name {
  color: #1294f6;
}
.comment .comments .comment_bd {
  padding: 5px;
}
.comment .comment_page {
  padding: 10px;
  text-align: right;
}
.images {
  margin-top: 10px;
}
.images .image {
  width: 120px;
  height: 120px;
  display: inline-block;
  padding: 3px;
  border-radius: 3px;
  box-shadow: 0 0 10px #eee;
  border: 1px solid #ddd;
  cursor: pointer;
  margin-right: 5px;
}
.images .image > img {
  display: block;
  border: none;
  width: 100%;
  height: 100%;
}

.show-pic {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background-color: #fff;
  padding: 50px;
  display: none;
  transition: all .3s ease;
}
.show-pic.show {
  background-color: rgba(0, 0, 0, .8);
  display: block;
}
.show-pic__container {
  width: 100%;
  height: 100%;
  position: relative;
}
.show-pic__closer {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 50px;
  color: #aaa;
  background: #eee;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}
.show-pic__closer:hover {
  text-decoration: none;
}
.show-pic__container > img {
  
  position: absolute;
  top: 50%;
  left: 50%;
  height: 115%;
  max-width: 100%;
  transform: translate3d(-50%, -50%, 0);
  border: none;
}