body {
  background-color: #EFEFEF;
}

.page-img {
  width: 100%;
  height: 600px;
}

.page-img img {
  width: 100%;
  height: 100%;

}

.about-top {
  font-size: 0;
  float: left;
  width: 100%;
  height: 50px;
  /* padding: 0rem 5rem; */
  padding: 0rem 7rem;
}

.about-top .left {
  float: left;
  height: 100%;
  color: #666666;
  font-weight: 300;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.about-top .left a {
  color: #666666;
}

.about-top .left a:hover {
  color: #2054A7;
}

.about-top ul {
  float: right;
}

.about-top ul li {
  float: left;
  width: 130px;
  height: 50px;
  transition: all 0.5s linear;
  cursor: pointer;
}

.about-top ul li a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222222;
  font-size: 16px;
}

.about-top ul .action {
  background: #2054A7;
}

.about-top ul .action a {
  color: #fff;
}

.about-top ul li:hover,
.about-top ul li:hover a {
  background: #2054A7;
  color: #fff;
}

.news {
  float: left;
  width: 100%;
  /* padding: 40px 5rem; */
  padding: 40px 7rem;
}

.news ul {
  width: 100%;
}

.news ul li {
  float: left;
  width: 100%;
  /* height: 300px; */
  background: #fff;
  padding: 3rem;
  cursor: pointer;
  margin-bottom: 20px;
}

.news ul li .left {
  float: left;
  width: 65%;
}

.news ul li .left .text {
  color: #888888;
  font-size: 16px;
  font-weight: 300;
  padding: 20px 0;
}

.news ul li .left .des {
  color: #222;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

.news ul li:hover h1 {
  color: #2054A7;
}

.news ul li .right {
  float: right;
  width: 30%;
  overflow: hidden;
}

.news ul li .right img {
  width: 100%;
  height: 256px;
  transition: all 0.5s linear;
}

.news ul li .right img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}

.news ul li .btn {
  /* width: 126px;
  height: 46px; */
  width: auto;
  background: #2054A7;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-top: 45px;
  float: left;
}

.news ul li .btn a {
  float: left;
  color: #FFFFFF;
  overflow: hidden;
  position: relative;
  padding: 10px;
  display: flex;
}

.news ul li .btn span {
  padding-right: 5px;
}

.news ul li .btn:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.news ul li .btn a:after {
  float: left;
  width: 226px;
  height: 146px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  opacity: 0.2;
  content: '';
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.news ul li .btn a:hover:after {
  transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
}

.details {
  float: left;
  width: 100%;
  /* padding: 40px 5rem; */
  padding: 40px 7rem;
  color: #222;
}

.details .box-left {
  float: left;
  width: 70%;
}

.details .box-left .text {
  color: #888;
  font-size: 16px;
  font-weight: 300;
  line-height: 70px;
}

.details .box-left .line {
  width: 100%;
  height: 1px;
  background: #C0C9D4;
}

.details .box-left .img {
  width: 100%;
  height: 550px;
  margin-top: 40px;
}

.details .box-left .img img {
  width: 100%;
  height: 100%;
}

.details .box-left .des {
  font-size: 18px;
  line-height: 38px;
  margin: 40px 0;
}

.details .box-left .btn {
  padding-top: 60px;
}

.details .box-left .btn div {
  padding-bottom: 35px;
}

.details .box-left .btn a {
  font-size: 16px;
  color: #222222;
  cursor: pointer;
}

.details .box-left .btn a span {
  color: #666;
}

.details .box-left .btn a:hover,
.details .box-left .btn a:hover span {
  color: #2054A7;
}

.details .box-right {
  float: right;
  width: 30%;
  padding-left: 4rem;
}

.details .box-right .top {
  color: #222222;
  font-size: 22px;
  font-weight: 600;
}

.details .box-right .top p {
  float: left;
}

.details .box-right .top p:nth-of-type(1) {
  width: 4px;
  height: 28px;
  background: #2054A7;
  margin-right: 10px;
}

.details .box-right ul {
  float: left;
  width: 100%;
}

.details .box-right ul li {
  margin-top: 28px;
  cursor: pointer;
}

.details .box-right ul li a {
  color: #222222;
}

.details .box-right ul .img {
  width: 100%;
  height: 256px;
  overflow: hidden;
}
.details .box-right ul .img img{
  width: 100%;
  height: 256px;
  transition: all 0.5s linear;
}
.details .box-right ul li .img:hover img{
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.details .box-right ul li a {
  color: #222222;
}

.details .box-right ul li h3 {
  padding: 20px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.details .box-right ul li p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
}
.details .box-right ul li .bt-img{
  margin-top: 20px;
  width: 25px;
  height: 25px;
}
.details .box-right ul li:hover h3{
  color: #2054A7;
}