/* -------------------------------- 

Primary style

-------------------------------- */
html,body,div,ul,li,a,p,span,input,img,h3,hr,textarea{ margin:0; padding:0; font-family:'微软雅黑';}
ul{ list-style:none;}
a{ text-decoration:none;}
img{ border:none;}
textarea{ resize:none;} 

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 100%;
  color: #7f8c97;
  background-color: #fff;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width:1280px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */

#cd-timeline {
  position: relative;
  padding: 0 0 8em;
  margin-top: 45px;
}
#cd-timeline::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 1.5px;
  background: #cccccc;
}
  #cd-timeline {
    width: 1280px;
  }
  #cd-timeline::before {
    left: 50%;
    margin-left: -2px;
  }


.cd-timeline-block {
  position: relative;
  margin: 2em 0;
}
.cd-timeline-block:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-block:first-child {
  margin-top: 0;
}
.cd-timeline-block:last-child {
  margin-bottom: 0;
}
  .cd-timeline-block {
    margin: 6em 0;
  }
  .cd-timeline-block:first-child {
    margin-top: 0;
  }
  .cd-timeline-block:last-child {
    margin-bottom: 0;
  }


.cd-timeline-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;


}
/* .cd-timeline-img img {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  margin-left: -20.5px;
  margin-top: -18.5 px;
} */

.cd-timeline-img.cd-movie {
  background: #c03b44;
}
.cd-timeline-img.cd-location {
  background: #f0ca45;
}
  .cd-timeline-img {
    /* width: 40px;
    height: 40px; */
    left: 50%;
    text-align: center;
    vertical-align: middle;
    margin-left: -20px;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
  }
  .cssanimations .cd-timeline-img.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-img.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
    -moz-animation: cd-bounce-1 0.6s;
    animation: cd-bounce-1 0.6s;
  }


.cd-timeline-content {
  position: relative;
  margin-left: 60px;
  background: white;
  border-radius: 0.25em;
  padding: 1em;
  box-shadow: 0 3px 0 #d7e4ed;
  border: #dadada 2px solid;
}
.cd-timeline-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-timeline-content h2 {
  color: #5c5c5c;

  font-weight: 600;
}
.cd-timeline-content p, .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  font-size: 13px;
  font-size: 0.8125rem;
}
.cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
  display: inline-block;
}
.cd-timeline-content p {
  margin: 1em 0;
  line-height: 1.6;
}
.cd-timeline-content .cd-read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  color: white;
  border-radius: 0.25em;
}
.no-touch .cd-timeline-content .cd-read-more:hover {
  background-color: #bac4cb;  
}
a.cd-read-more:hover{text-decoration:none; background-color: #424242;  }
.cd-timeline-content .cd-date {
  float: left;
  padding: .8em 0;
 /* opacity: .7; 图片透明性*/
}
.cd-timeline-content::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  /*border: 7px solid transparent;*/
  border-right: 7px solid white;
}

  .cd-timeline-content {
    margin-left: 0;
    padding: 1.6em;
    width: 45%;
  }
  .cd-timeline-content .time{
    line-height: 30px;
    font-size: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    color: #aaa;
  }
  .cd-timeline-content::before {
    top: 24px;
   /* left: 100%;*/
   /*方块去掉多出的圆角 CJL*/
    border-color: transparent;
    border-left-color: white;
  }
  .cd-timeline-content .cd-read-more {
    float: left;
  }
  .cd-timeline-content .cd-date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: -15px;
    font-size: 16px;
    font-size: 1rem;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: white;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
    float: right;
  }
  .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cssanimations .cd-timeline-content.is-hidden {
    visibility: hidden;
  }
  .cssanimations .cd-timeline-content.bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
    -moz-animation: cd-bounce-2 0.6s;
    animation: cd-bounce-2 0.6s;
  }


 /* inverse bounce effect on even content blocks */
  .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
    -moz-animation: cd-bounce-2-inverse 0.6s;
    animation: cd-bounce-2-inverse 0.6s;
  }

 .top2{width:1280px;/* height:50px; */margin:0 auto 0;}
 .top2 ul {
    width:1110px;
    height:40px;
    margin: 0 auto;
}
 .top2 ul li{
      float:left;
      width:360px;
      color: #fff;
      height:40px;
      line-height:40px;
      margin: 0 5px;
      background: rgba(36, 36, 36, 0.3);
      text-align:center;
  }
.top2 ul li img{vertical-align: middle;}
.top2 span{
  font-size: 14px;
}
/* 新闻分页样式 */
.pagination-wrapper {
clear:both;
padding:1em 0 2em 0;
text-align:center;
 margin: 60px 0 100px;
}
.pagination {
display: inline-block;
*display: inline;
*zoom: 1;
font-size:12px;
border-radius: 3px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination li{
list-style: none;
display: inline;
float: left;
line-height: 1em;
text-decoration: none;
border: 1px solid #ddd;
border-left-width: 0;
}
.pagination li:first-child {
border-left-width: 1px;
border-radius: 3px 0 0 3px;
    padding: 6px 9px;
}
.pagination li:last-child{
border-radius: 0 3px 3px 0;
}
.pagination li:first-child a{
padding:0;
}
.pagination li:last-child a{
padding:0;
}
.pagination li a {
display: inline-block;
padding: .5em .8em;
background-color: #f9f9f9;
color: #999;
}
/* .pagination li a:link{
background:#fff;
color: #4C78A5;
}
.pagination li a:hover{
text-decoration:none;
}
.pagination li a:link:hover {
color: #000;
} */
.pagination li.thisclass {
background-color: #f9f9f9;
color:#999;
display: block;
    padding: 6px 11px;
}
.pagination .pageinfo{
color: #444;
 display: block;
 padding: 6px 9px;
}
/* 新闻分页结束 */

/*查看更多CJL*/
.more{
    position: relative;
    width: 196px;
    height: 36px;
    line-height:36px;
    text-align:center;
    left:50%;
    margin-left:-98px;
    border-radius: 6px;
    background: #E81A2F;
    margin-bottom: 68px;
}
.clear{
  clear: both;
}
.more a span{color:#fff;}
/*开始新闻详情*/

.big{width:100%;min-width:1280px;margin-bottom: 120px;}
.big .second{width:1238px;margin: 0 auto;}
.big .second .leftdetail{float:left;width:860px;overflow:hidden;}
.big .second .leftdetail .left-top{border-bottom:#ccc 1px solid;padding-bottom:30px;}
.big .second .left-top-top{   
    height: 35px;
    line-height: 35px;
    border-bottom: 1px solid #ccc;
    margin-top: 50px;
    font-size: 13px;
    margin-bottom: 50px;
    color: #666;
}
.big .second .left-top-top img{width:21px;height:20px;vertical-align:middle;position:relative;top:-3px;}
.big .second .left-top-top a{color:#666;}
/*.big .leftdetail .left-top .left-top-bottom{}*/
.big .second .leftdetail .left-top .left-top-bottom h3{color:#818181;margin-bottom:26px;font-size: 18px;}
.big .second .leftdetail .left-top .left-top-bottom span{color:#b6b6b6;font-size:14px;}
.big .second .leftdetail .left-bottom{width:100%;overflow:hidden;margin-top:40px;color:#999;}
.big .second .leftdetail .left-bottom p{color:#999;font-size:14px;/*text-indent:2em;*/text-align: justify;}
.big .second .leftdetail .left-bottom div{text-align: justify;}
.big .second .leftdetail .left-bottom img{display:block;width:668px;margin:10px auto;}
.big .second .rightdetail{float:right;width:319px;/* background-color:#eff2f4; */}
.big .second .rightdetail .right-top{width:100%;margin-top: 10px;background-color:#eff2f4;text-align:center;padding:0 19.5px 0;}
.big .second .rightdetail .right-top h1{height:58px;line-height:58px;text-align:center;color: #666;font-size: 18px;}
.big .second .rightdetail .right-top p{
  text-align:left;
  line-height:25px;
  color:#8f9190;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box; /** 将对象作为伸缩盒子模型显示 **/
  -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
  -webkit-line-clamp: 2; /** 显示的行数 **/
  overflow: hidden
}
.big .second .rightdetail .right-top img{width:100%;}
time{display:block;width:100%;text-align:left;font-size: 12px;height: 30px;line-height: 30px;}
/*.big .rightdetail .right-top span{}*/
.big .second .rightdetail .right-bottom{width:100%;background-color:#eff2f4;padding:0 19.5px 0;overflow: hidden;}
.big .second .rightdetail .right-bottom .news-list{width:280px;overflow: hidden;border-top:2px solid #aaa;}
.big .second .rightdetail .right-bottom .right-title{width:100%;height:40px;border-bottom:2px red solid;}
.big .second .rightdetail .right-bottom h1{width:53px;height:30px;line-height:30px;position: relative;bottom:-2px;border-bottom:2px solid red;font-size: 18px;font-weight:400;margin-top:25px;}
.big .second .rightdetail .right-bottom .right-bottom-news{margin-top:20px;margin-bottom: 20px;}
/*.big .rightdetail .right-bottom .right-bottom-news .img{width:127px;height:71px;}*/
.big .second .rightdetail .right-bottom .right-bottom-news .con{float:right;width:139px;}
.big .second .rightdetail .right-bottom .right-bottom-news .con a{color:#909090;font-size:14px;padding-bottom:5px;}
.big .second .rightdetail .right-bottom .right-bottom-news .con h3{
    line-height:20px; 
    max-height: 40px;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box; /** 将对象作为伸缩盒子模型显示 **/
    -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
    -webkit-line-clamp: 2; /** 显示的行数 **/
    overflow: hidden;
}
.big .second .rightdetail .right-bottom .right-bottom-news .con time{
  height: 35px;
  line-height: 35px;
}
.big .second .rightdetail .right-bottom .right-bottom-news .con span{padding-bottom:20px;line-height:20px;}
ul.gongyi-img{
  font-size: 0;
}
ul.gongyi-img li{
  float: left;
  width:100%;
  height: 165px;
  font-size:14px;
  position: relative;
  margin-bottom: 20px;
}
ul.gongyi-img li img{
  width: 100%;
  height: 100%;
}
.clear{
  clear: both;
}
ul.gongyi-img li .gongyi-tit{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  /* background: rgba(36, 36, 36, 0.3); */
  background: url('../images/jianbiantiao.png') no-repeat;
  background-size: 100% 100%;
  color: #fff;
  font-size: 14px;
}
.big .second .zerenright{
  width: 463px;
}
.big .second .zerenleft{
    float: left;
    width: 741px;
    overflow: hidden;
}
.big .second .rightdetail .zeren-right-top{
   padding-bottom: 40px;
}