@charset "utf-8";
/*关于*/
.aboutBox {
  padding: 3.2em 0 3.2em;
  background: url(../images/index-about.jpg) center center no-repeat;
  background-size: cover ;
}
.aboutBox .tit {
  border-left: 4px solid #004a49;
  color: #004A49;
  line-height: 1.4;
  padding-left: 0.5em;
}
.aboutBox .tits {
  color: #999;
  margin-top: 10px;
  padding-bottom: 10px;
}
.aboutBox .conA {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .aboutBox .conA {
    display: block;
  }
}
.aboutBox .conA .txtb {
  width: 45%;
}
@media (max-width: 767px) {
  .aboutBox .conA .txtb {
    width: auto;
  }
}
.aboutBox .conA .txtb .name {
  color: #000;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 15px;
}
.aboutBox .conA .txtb .intro {
  line-height: 2em;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  margin-bottom: 20px;
}
.aboutBox .conA .txtb .list {
  margin-top: 70px;
}
.aboutBox .conA .txtb .list ul {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.aboutBox .conA .txtb .list ul li {
  flex: 1;
  text-align: center;
  border-right: 1px dotted #004a49;
}
.aboutBox .conA .txtb .list ul li .txts {
  color: #999;
  line-height: 1.3;
}
.aboutBox .conA .txtb .list ul li .num {
  color: #333;
  line-height: 1.4;
}
.aboutBox .conA .txtb .list ul li .num b {
  color: #004A49;
  margin-right: 5px;
  font-weight: 600;
}
.aboutBox .conA .txtb .list ul li:last-child {
  border-right: 0;
}
.aboutBox .conA .txtb .btnW {
  margin-top: 40px;
}
.aboutBox .conA .txtb .btn {
  color: #fff;
  padding: 15px 35px;
  background-color: #004A49;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 46px;
}
.aboutBox .conA .txtb .btn:hover {
  background-color: #000;
}
.aboutBox .conA .picb {
  width: 49.1%;
}
@media (max-width: 767px) {
  .aboutBox .conA .picb {
    width: auto;
  }
}
.aboutBox .conA .picb .pic {
  position: relative;
  z-index: 0;
  padding-top: 54%;
}
.aboutBox .conA .picb .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*新闻*/
.newBox {
  padding: 3.2em 0 3.2em;
}
.newBox .tit {
  border-left: 4px solid #004a49;
  color: #004A49;
  line-height: 1.4;
  padding-left: 0.5em;
}
.newBox .tits {
  color: #999;
  margin-top: 10px;
  padding-bottom: 10px;
}
.newBox .list {
  margin-top: 1.5em;
}
.newBox .list ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.newBox .list li {
  margin-top: 2.3%;
  width: 31.8%;
  margin-right: 2.3%;
}
.newBox .list li:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .newBox .list li {
    width: 100%;
    margin-right: auto;
    margin-top: 1em;
  }
}
.newBox .list li .pic {
  display: block;
  cursor: pointer;
  padding-top: 54.2%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: all 0.5s;
}
.newBox .list li .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.newBox .list li .name {
  font-weight: bold;
  margin-top: 1em;
}
.newBox .list li .btns {
  margin-top: 0.3em;
}
.newBox .list li:hover .pic img {
  -ms-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
