/* banner */
.list_ban{
  height: 250px;
  width: 100%;
  background-image: url(../images/list/list_ban.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/* 列表 */
.list_box{
  width: 1200px;
  overflow: hidden;
  margin: 20px auto 50px;
}

.list_left{
  width: 280px;
  float: left;
  margin-right: 40px;
}

.list_left li{
  width: 280px;
  line-height: 60px;
  font-size: 20px;
  border-top: 1px solid #C10913;
  border-left: 1px solid #C10913;

}
.list_left li:last-child{
  border-bottom:  1px solid #C10913;
}


.list_left li a{
  color: #C10913;
  display: block;
  text-align: center;
}

.list_left li.current a{
  background-color: #C10913;
  color: #fff;
}


.list_right{
  float: right;
  width: calc(100% - 320px);
}

.list_nav{
  height: 48px;
  line-height: 48px;
  width: 100%;
  color: #888888;
  font-size: 16px;
  margin-bottom: 20px;
}

.list_nav p a{
  color: #888888;
}
.list_nav a.current{
  color: #666;
}

/* 详情区域 */
.detail_cont{
  width: 100%;
  color: #222;
  line-height: 32px;
}

.detail_cont p {
  color: #555;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 28px;
}

.detail_cont p.tit {
  text-align: center;
  font-size: 24px;
  color: #222222;
  margin-bottom: 15px;
}
.detail_cont p.des {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}
/*.detail_cont img {
  width: 600px;
  height: 400px;
  margin-bottom: 15px;
  transform: translateX(-50%);
  margin-left: 50%;
}*/
/* 移动端样式 */
@media screen and (max-width: 768px) {

  .list_ban{
    height: 2.5rem;
  }
  .list_box{
    width: calc(100% - 0.72rem);
    margin: 0.5rem 0.36rem 0;
  }

  .list_left, .list_nav{
    display: none;
  }
  .list_right{
    float: none;
    width: 100%;
  }
  .detail_cont p.tit{
    font-size: 0.42rem;
    line-height: 0.6rem;
    text-align:left;
  }
  .detail_cont p.des{
    font-size: 0.24rem;
    color: #888;
    margin-bottom: 0.3rem;
    clear: botn;
    overflow: hidden;
  }
  .detail_cont p.des span.fbsj{
    float: left;
  }
  .detail_cont p.des span:nth-child(2){
    float: right;
  }

  .detail_cont p{
    font-size: 0.3rem;
    line-height: 0.6rem;
  }
  .detail_cont img{
    width: 100%;
    height: auto;
    margin: 0 0 15px 0;
    transform: translateX(0);
    
  }

}

