/* CSS Document */

/* ---------- 关于我们 ---------- */
.about {
  padding: 100px 0;
  background: url("../images/about-bg.jpg") no-repeat center bottom;
  background-size: cover;
}

.about-tit {
  position: relative;
  height: 50px;
}
.about-tit:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: url("../images/tit-line.png");
  background-size: cover;
  content: "";
}
.about-tit h2 {
  display: inline-block;
  font-size: 28px;
  color: #0d2ea1;
  vertical-align: text-bottom;
}
.about-tit h3 {
  display: inline-block;
  padding-left: 8px;
  font-family: "AvantGarde-Medium";
  font-size: 18px;
  font-weight: normal;
  color: #aaa;
  vertical-align: text-bottom;
}

.about-con {
  padding-top: 50px;
}
.about-intro {
  float: left;
  width: 47%;
}
.about-intro .con {
  font-size: 15px;
  line-height: 38px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
.about-intro .btm {
  padding-top: 46px;
}
.about-intro a.more-btn {
  display: inline-block;
  padding-left: 32px;
  width: 200px;
  height: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/about-more-arrow.png") no-repeat right 28px center;
  color: #333;
  line-height: 48px;
}
.about-intro a.more-btn:hover {
  background: url("../images/about-more-arrow.png") no-repeat right 20px center #f0f0f0;
}

.about-count {
  float: right;
  position: relative;
  width: 47%;
}
.about-count .pic {
  height: 400px;
}
.about-count .pic img {
  width: 100%;
  height: 100%;
}
.about-count .con {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 240px;
  background: linear-gradient(to right bottom, rgba(13,46,161,0.80), rgba(20,158,107,0.80));
}
.about-count .con ul {
  padding: 20px 40px 0;
}
.about-count .con li {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.about-count .con li:last-child {
  border-bottom: 0;
}
.about-count .con li .num {
  font-family: "AvantGarde-Medium";
  font-size: 40px;
  color: #dab15c;
}
.about-count .con li .num sup {
  position: relative;
  left: 10px;
  font-size: 15px;
  color: #fff;
}
.about-count .con li h4 {
  font-size: 15px;
  font-weight: normal;
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about-tit {
    height: 40px;
  }
  .about-tit:after {
    bottom: -2px;
    width: 48px;
    height: 2px;
  }
  .about-tit h2 {
    font-size: 20px;
  }
  .about-tit h3 {
    padding-left: 4px;
    font-size: 14px;
  }

  .about-con {
    padding-top: 24px;
  }
  .about-intro {
    float: none;
    width: auto;
  }
  .about-intro .con {
    line-height: 30px;
    -webkit-line-clamp: 20;
  }
  .about-intro .btm {
    padding-top: 24px;
  }
  .about-intro a.more-btn {
    padding-left: 24px;
    width: 160px;
    height: 40px;
    background: url("../images/about-more-arrow.png") no-repeat right 20px center;
    line-height: 38px;
  }
  .about-intro a.more-btn:hover {
    background: url("../images/about-more-arrow.png") no-repeat right 12px center;
  }

  .about-count {
    float: none;
    width: auto;
    margin-top: 40px;
  }
  .about-count .pic {
    height: auto;
  }
  .about-count .con {
    top: auto;
    left: 0;
    width: auto;
  }
  .about-count .con ul {
    display: -webkit-flex;
  	display: flex;
    padding: 16px 0;
  }
  .about-count .con li {
    -webkit-flex: 1;
  	flex: 1;
    padding: 0 16px;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 0;
  }
  .about-count .con li:last-child {
    border-right: 0;
  }
  .about-count .con li .num {
    font-size: 28px;
  }
  .about-count .con li .num sup {
    left: 6px;
    font-size: 14px;
  }
  .about-count .con li h4 {
    font-size: 14px;
  }
}

/* ---------- 产品中心 ---------- */
.product {
  padding: 100px 0;
  background: url("../images/product-bg.jpg") no-repeat center top;
  background-size: cover;
}

.product-tit {
  position: relative;
  height: 50px;
}
.product-tit:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: url("../images/tit-line.png");
  background-size: cover;
  content: "";
}
.product-tit h2 {
  display: inline-block;
  font-size: 28px;
  color: #0d2ea1;
  vertical-align: text-bottom;
}
.product-tit h3 {
  display: inline-block;
  padding-left: 8px;
  font-family: "AvantGarde-Medium";
  font-size: 18px;
  font-weight: normal;
  color: #aaa;
  vertical-align: text-bottom;
}

.product-con {
  padding-top: 50px;
  overflow: hidden;
}
.product-con li {
  float: left;
  position: relative;
  width: 25%;
  height: 300px;
  background: linear-gradient(to right bottom, #fff, #f3f3f3);
}
.product-con li a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-con li .tit {
  padding: 36px 40px 4px;
}
.product-con li .tit h3 {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  font-weight: normal;
}
.product-con li .tit h3:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background: #0d2ea1;
  content: "";
}
.product-con li .pic img {
  width: 100%;
}
.product-con li a .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right bottom, rgba(60,117,56,0.95), rgba(20,158,107,0.9));
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
.product-con li a .mask .more {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding-top: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}
.product-con li a .mask .more h3 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
.product-con li a .mask .arrow {
  padding-top: 16px;
}
.product-con li a .mask .arrow i {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../images/product-arrow.png") no-repeat center;
  background-size: cover;
}
.product-con li a:hover .mask {
  opacity: 1;
}
.product-con li:first-child {
  width: 50%;
}
.product-con li:first-child .pic {
  float: left;
  width: 50%;
}
.product-con li:first-child .text {
  float: right;
  padding: 72px 40px 0;
  width: 50%;
  box-sizing: border-box;
  font-size: 15px;
  color: #666;
  line-height: 28px;
}

.product-more {
  padding: 80px 40px;
  text-align: center;
}
.product-more h4 {
  font-size: 15px;
  font-weight: normal;
  line-height: 30px;
}
.product-more .btm {
  padding-top: 24px;
}
.product-more .more-btn {
  display: inline-block;
  padding-left: 32px;
  width: 160px;
  height: 45px;
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/product-more-arrow.png") no-repeat right 28px center, linear-gradient(to right, #0d2ea1, #149e6b);
  color: #fff;
  line-height: 45px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.product-con li a:hover .more-btn {
  background: url("../images/product-more-arrow.png") no-repeat right 20px center, linear-gradient(to right, #0d2ea1, #149e6b);
}


/* ---------- 产品中心 ---------- */
.product-sort {
  padding: 100px 0 0;
  overflow: hidden;
}
.product-sort>ul {
  width: calc(100% + 40px);
}
.product-sort>ul>li {
  float: left;
  padding: 0 40px 40px 0;
  width: 50%;
  box-sizing: border-box;
}
.product-sort .sort-item {
  position: relative;
  height: 318px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  background: url("../images/product-sort-bg.jpg") no-repeat right center #fff;
  transition: all 0.3s ease-in-out;
}
.product-sort .sort-item:hover {
  background: url("../images/product-sort-bg-over.jpg") no-repeat right center;
}
.product-sort .sort-item .con {
  float: left;
  padding: 0 40px;
  width: 380px;
}
.product-sort .sort-item .tit {
  padding-top: 30px;
  height: 50px;
  border-bottom: 1px solid #efefef;
}
.product-sort .sort-item .tit h3 {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
}
.product-sort .sort-item .tit h3 a {
  color: #0d2ea1;
}
.product-sort .sort-item .tit h3:after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 18px;
  background: #0d2ea1;
  content: "";
}
.product-sort .sort-item .sub {
  padding-top: 24px;
  height: 156px;
  overflow: hidden;
}
.product-sort .sort-item .sub li {
  float: left;
  padding: 6px 0;
  width: 180px;
  font-size: 16px;
}
.product-sort .sort-item .btm a {
  color: #999;
}
.product-sort .sort-item .btm a i {
  display: inline-block;
  margin-left: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid #e6e6e6;
  border-radius: 100%;
}
.product-sort .sort-item .btm a:hover {
  color: #0d2ea1;
}
.product-sort .sort-item .btm a:hover i {
  border: 1px solid #fff;
  background: linear-gradient(to bottom, #0d2ea1, #149e6b);
}
.product-sort .sort-item .btm a:hover i img {
  -webkit-filter: brightness(2);
  filter: brightness(2);
  transition: all 0.3s ease-in-out;
}
.product-sort .sort-item .pic {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 320px;
}
.product-sort .sort-item .pic img {
  width: 100%;
}

/* responsive */
@media only screen and (max-width: 1280px) {
  .product-sort .sort-item {
    background: url("../images/product-sort-bg.jpg") no-repeat right -40px center #fff;
  }
  .product-sort .sort-item .pic {
    width: 240px;
  }
}

@media only screen and (max-width: 1024px) {
  .product-sort {
    padding: 60px 0;
  }
  .product-sort>ul>li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .product-sort>ul>li:nth-of-type(even) {
    margin: 0 0 20px 0;
  }
  .product-sort .sort-item {
    padding-bottom: 120px;
    height: auto;
    /*background: none;*/
  }
  .product-sort .sort-item:hover {
    background: none;
  }
  .product-sort .sort-item .con {
    float: none;
    padding: 0 20px;
    width: auto;
  }
  .product-sort .sort-item .tit {
    padding-top: 16px;
    height: 36px;
  }
  .product-sort .sort-item .tit h3 {
    font-size: 16px;
  }
  .product-sort .sort-item .sub {
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
  }
  .product-sort .sort-item .sub li {
    padding: 8px 0;
    width: 50%;
    font-size: 15px;
  }
  .product-sort .sort-item .pic {
    top: auto;
    right: 0;
    bottom: 0;
    transform: none;
    width: 240px;
  }
}


/* responsive */
@media only screen and (max-width: 768px) {
  .product {
    padding: 60px 0;
  }

  .product-tit {
    height: 40px;
  }
  .product-tit:after {
    bottom: -2px;
    width: 48px;
    height: 2px;
  }
  .product-tit h2 {
    font-size: 20px;
  }
  .product-tit h3 {
    padding-left: 4px;
    font-size: 14px;
  }

  .product-con {
    padding-top: 24px;
  }
  .product-con li {
    width: 50%;
    height: 168px;
  }
  .product-con li .tit {
    padding: 24px 20px 0;
  }
  .product-con li .tit h3 {
    padding-left: 12px;
    font-size: 16px;
  }
  .product-con li .tit h3:before {
    width: 4px;
    height: 16px;
  }
  .product-con li a .mask .more {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding-top: 48px;
  }
  .product-con li a .mask .more h3 {
    font-size: 16px;
  }
  .product-con li a .mask .arrow {
    padding-top: 12px;
  }
  .product-con li a .mask .arrow i {
    width: 24px;
    height: 24px;
  }
  .product-con li:first-child {
    width: 100%;
  }
  .product-con li:first-child .pic {
    width: 50%;
  }
  .product-con li:first-child .text {
    padding: 28px 20px 0;
    width: 50%;
    font-size: 14px;
    line-height: 20px;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .product-more {
    padding: 32px 20px;
  }
  .product-more h4 {
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .product-more .btm {
    padding-top: 16px;
  }
  .product-more .more-btn {
    padding-left: 16px;
    width: 120px;
    height: 36px;
    background: url("../images/product-more-arrow.png") no-repeat right 12px center, linear-gradient(to right, #0d2ea1, #149e6b);
    line-height: 36px;
  }
  .product-con li a:hover .more-btn {
    background: url("../images/product-more-arrow.png") no-repeat right 8px center, linear-gradient(to right, #0d2ea1, #149e6b);
  }
}

/* ---------- 解决方案 ---------- */
.solution {
  padding: 100px 0 68px;
  background: url("../images/solution-bg.jpg") no-repeat center top;
  background-size: cover;
}

.solution-tit {
  position: relative;
  height: 50px;
}
.solution-tit:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: url("../images/tit-line.png");
  background-size: cover;
  content: "";
}
.solution-tit h2 {
  display: inline-block;
  font-size: 28px;
  color: #0d2ea1;
  vertical-align: text-bottom;
}
.solution-tit h3 {
  display: inline-block;
  padding-left: 8px;
  font-family: "AvantGarde-Medium";
  font-size: 18px;
  font-weight: normal;
  color: #aaa;
  vertical-align: text-bottom;
}

.solution-slogan {
  padding-top: 40px;
}
.solution-slogan .tit {
  font-size: 40px;
  font-weight: bold;
}
.solution-slogan .sub {
  padding-left: 16px;
  font-size: 16px;
  color: #666;
}

.solution-con {
  padding-top: 32px;
  overflow: hidden;
}
.solution-con ul {
  width: calc(100% + 40px);
}
.solution-con li {
  float: left;
  width: 50%;
  padding: 0 40px 32px 0;
  box-sizing: border-box;
}
.solution-con li .item {
  padding: 60px;
  width: 100%;
  height: 440px;
  box-sizing: border-box;
}
.solution-con li:nth-child(1) .item {
  background: url("../images/solution-item-3.jpg");
  background-size: cover;
}
.solution-con li:nth-child(2) .item {
  background: url("../images/solution-item-4.jpg");
  background-size: cover;
}
.solution-con li:nth-child(3) .item {
  background: url("../images/solution-item-1.jpg");
  background-size: cover;
}
.solution-con li:nth-child(4) .item {
  background: url("../images/solution-item-2.jpg");
  background-size: cover;
}
.solution-con li .item .ico img {
  width: 48px;
}
.solution-con li .item .tit {
  height: 280px;
  color: #fff;
}
.solution-con li .item h4 {
  padding-top: 10px;
  font-size: 24px;
  font-weight: normal;
}
.solution-con li .item p {
  padding-top: 20px;
  font-size: 15px;
  line-height: 30px;
}
.solution-con li a.more-btn {
  display: inline-block;
  padding-left: 32px;
  width: 160px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/product-more-arrow.png") no-repeat right 28px center;
  color: #fff;
  line-height: 40px;
  transition: all 0.3s ease-in-out;
}
.solution-con li a:hover.more-btn {
  border: 1px solid rgba(255,255,255,0.6);
  background: url("../images/product-more-arrow.png") no-repeat right 20px center rgba(255,255,255,0.1);
}

/* responsive */
@media only screen and (max-width: 768px) {
  .solution {
    padding: 60px 0 40px;
  }

  .solution-tit {
    height: 40px;
  }
  .solution-tit:after {
    bottom: -2px;
    width: 48px;
    height: 2px;
  }
  .solution-tit h2 {
    font-size: 20px;
  }
  .solution-tit h3 {
    padding-left: 4px;
    font-size: 14px;
  }

  .solution-slogan {
    padding-top: 24px;
  }
  .solution-slogan .tit {
    display: block;
    font-size: 24px;
  }
  .solution-slogan .sub {
    display: block;
    padding-top: 8px;
    padding-left: 0;
    font-size: 15px;
  }

  .solution-con {
    padding-top: 20px;
  }
  .solution-con ul {
    width: auto;
  }
  .solution-con li {
    float: none;
    width: auto;
    padding: 0 0 20px 0;
  }
  .solution-con li:last-child {
    margin-bottom: 0;
  }
  .solution-con li .item {
    padding: 24px;
    width: auto;
    height: 292px;
  }
  .solution-con li .item .ico img {
    width: 40px;
  }
  .solution-con li .item .tit {
    height: 204px;
  }
  .solution-con li .item h4 {
    font-size: 20px;
  }
  .solution-con li .item p {
    padding-top: 12px;
    font-size: 14px;
    line-height: 24px;
  }
}

/* ---------- 新闻资讯 ---------- */
.news {
  padding: 100px 0;
  background: url("../images/news-bg.jpg") no-repeat center top;
  background-size: cover;
}

.news-tit {
  position: relative;
  height: 50px;
}
.news-tit:after {
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 60px;
  height: 3px;
  background: url("../images/tit-line.png");
  background-size: cover;
  content: "";
}
.news-tit h2 {
  display: inline-block;
  font-size: 28px;
  color: #0d2ea1;
  vertical-align: text-bottom;
}
.news-tit h3 {
  display: inline-block;
  padding-left: 8px;
  font-family: "AvantGarde-Medium";
  font-size: 18px;
  font-weight: normal;
  color: #aaa;
  vertical-align: text-bottom;
}
.news-tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding-left: 24px;
  width: 140px;
  height: 40px;
  border-radius: 4px;
  box-sizing: border-box;
  background: url("../images/product-more-arrow.png") no-repeat right 20px center, linear-gradient(to right, #0d2ea1, #149e6b);
  color: #fff;
  line-height: 40px;
  text-align: left;
  transition: all 0.3s ease-in-out;
}
.news-tit a.more-btn:hover {
  background: url("../images/product-more-arrow.png") no-repeat right 12px center, linear-gradient(to right, #0d2ea1, #149e6b);
}

.news-con {
  padding-top: 50px;
}

.pic-news {
  float: left;
  position: relative;
  width: 47%;
}
.pic-news .pic {
  height: 400px;
  overflow: hidden;
}
.pic-news .pic img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.pic-news a:hover .pic img {
  transform: scale(1.05);
}
.pic-news .tit {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px 40px 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
  color: #fff;
}
.pic-news .tit .date {
  float: left;
  padding-top: 2px;
}
.pic-news .tit .day {
  display: block;
  font-family: "AvantGarde-Medium";
  font-size: 24px;
}
.pic-news .tit .year {
  display: block;
  font-family: "AvantGarde-Medium";
  font-size: 15px;
}
.pic-news .con {
  float: right;
  width: 82%;
}
.pic-news .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list {
  float: right;
  width: 47%;
}
.news-list li {
  margin-bottom: 40px;
}
.news-list li:last-child {
  margin-bottom: 0;
}
.news-list li a {
  display: block;
  padding: 30px 40px 0;
  height: 150px;
  background: #fff;
}
.news-list li .date {
  float: left;
  position: relative;
  padding-top: 2px;
}
.news-list li .date:after {
  position: absolute;
  left: 0;
  bottom: -48px;
  width: 32px;
  height: 4px;
  background: #dedede;
  content: "";
}
.news-list li .day {
  display: block;
  font-family: "AvantGarde-Medium";
  font-size: 24px;
}
.news-list li .year {
  display: block;
  font-family: "AvantGarde-Medium";
  font-size: 15px;
}
.news-list li .con {
  float: right;
  width: 82%;
}
.news-list li .con h4 {
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list li .con p {
  padding-top: 16px;
  font-size: 14px;
  color: #999;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .news {
    padding: 60px 0;
  }

  .news-tit {
    height: 40px;
  }
  .news-tit:after {
    bottom: -2px;
    width: 48px;
    height: 2px;
  }
  .news-tit h2 {
    font-size: 20px;
  }
  .news-tit h3 {
    padding-left: 4px;
    font-size: 14px;
  }
  .news-tit a.more-btn {
    padding-left: 16px;
    width: 120px;
    height: 36px;
    background: url("../images/product-more-arrow.png") no-repeat right 12px center, linear-gradient(to right, #0d2ea1, #149e6b);
    line-height: 36px;
  }
  .news-tit a.more-btn:hover {
    background: url("../images/product-more-arrow.png") no-repeat right 8px center, linear-gradient(to right, #0d2ea1, #149e6b);
  }
  
  .news-con {
    padding-top: 24px;
  }

  .pic-news {
    float: none;
    width: auto;
  }
  .pic-news .pic {
    height: auto;
  }
  .pic-news .tit {
    display: -webkit-flex;
  	display: flex;
    padding: 20px 20px 0;
    height: 60px;
  }
  .pic-news .tit .date {
    padding-top: 1px;
  }
  .pic-news .tit .day {
    font-size: 20px;
  }
  .pic-news .tit .year {
    font-size: 14px;
  }
  .pic-news .con {
    -webkit-flex: 1;
  	flex: 1;
    float: none;
    width: auto;
    padding-left: 24px;
  }
  .pic-news .con h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .news-list {
    float: none;
    margin-top: 24px;
    width: auto;
  }
  .news-list li {
    margin-bottom: 20px;
  }
  .news-list li:last-child {
    margin-bottom: 0;
  }
  .news-list li a {
    display: -webkit-flex;
  	display: flex;
    padding: 16px 20px 0;
    height: 112px;
  }
  .news-list li .date {
    padding-top: 2px;
  }
  .news-list li .date:after {
    bottom: 36px;
    width: 24px;
    height: 2px;
  }
  .news-list li .day {
    font-size: 20px;
  }
  .news-list li .year {
    font-size: 14px;
  }
  .news-list li .con {
    -webkit-flex: 1;
  	flex: 1;
    float: none;
    width: auto;
    padding-left: 24px;
  }
  .news-list li .con h4 {
    font-size: 15px;
    line-height: 22px;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 22px;
  }
}