.row {
  width: 1200px;
  margin: 0 auto;
}
.mr-0 {
  margin-right: 0;
}
.br {
  border-radius: 8px;
  overflow: hidden;
}
.flex {
  display: flex;
  flex-direction: row;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.flex-shrink {
  flex-shrink: 0;
}
.title {
  padding-top: 60px;
  padding-bottom: 30px;
  text-align: center;
  font-size: 26px;
}
.title h2 {
  margin-bottom: 14px;
  font-weight: bold;
}
.title h2::before,
.title h2::after {
  display: inline-block;
  content: '';
  width: 40px;
  height: 0;
  padding-bottom: 0.3em;
  border-top: 1px solid #666;
  margin: 0 20px;
}
.title p {
  font-family: 'SimSun';
  font-size: 14px;
  color: #999;
}
.title.cw {
  color: white;
}
.title.cw h2::before,
.title.cw h2::after {
  border-top: 1px solid white;
}
.news {
  padding: 32px 0;
  box-shadow: 0 3px 6px #f2f2f2;
}
.news .container h2 {
  margin-right: 30px;
  font-size: 22px;
  color: #ff5722;
  vertical-align: text-bottom;
}
.news .container h2 img {
  display: inline-block;
  width: 14px;
  height: 21px;
  margin-top: -5px;
  margin-right: 14px;
}
.news .container h2 span {
  font-size: 18px;
}
.news .container .content {
  display: flex;
  width: 100%;
  align-items: flex-end;
}
.news .container .content div {
  display: inline-block;
}
.news .container .content .item {
  max-width: 460px;
  font-family: 'SimSun';
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .container .content .line {
  height: 18px;
  margin: 0 54px;
  border-right: 1px solid #666;
}
.service {
  /*background-color: #f5f5f5;*/
}
.service .container {
  height: 460px;
  padding-bottom: 60px;
}
.service .container .left {
  position: relative;
  float: left;
  width: 226px;
  height: 460px;
  padding: 0 24px 0 30px;
  margin-right: 24px;
  background: -moz-linear-gradient(top, #7bc1f8 0%, #2a96e8 100%);
  background: -webkit-gradient(linear, top, color-stop(0%, #7bc1f8), color-stop(100%, #2a96e8));
  background: -webkit-linear-gradient(top, #7bc1f8 0%, #2a96e8 100%);
  background: -o-linear-gradient(top, #7bc1f8 0%, #2a96e8 100%);
  background: -ms-linear-gradient(top, #7bc1f8 0%, #2a96e8 100%);
  background: linear-gradient(to bottom, #7bc1f8 0%, #2a96e8 100%);
  color: white;
}
.service .container .left h4 {
  padding-top: 50px;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service .container .left span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 13px 0;
  background-color: white;
  border-radius: 3px;
}
.service .container .left p {
  position: relative;
  z-index: 9;
  font-size: 18px;
  text-shadow: #aaa 1px 0 0;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.service .container .left img {
  position: absolute;
  right: 24px;
  bottom: 15px;
  z-index: 0;
  float: right;
  width: 170px;
  height: 268px;
}
.service .container .right {
  height: 460px;
}
.service .container .right .right-top,
.service .container .right .right-bottom {
  display: flex;
  height: 244px;
  justify-content: space-between;
}
.service .container .right .right-top .box,
.service .container .right .right-bottom .box {
  position: relative;
  width: 168px;
  height: 198px;
  padding: 22px 16px 24px 22px;
  background-color: white;
  border-radius: 8px;
}
.service .container .right .right-top .box h4,
.service .container .right .right-bottom .box h4 {
  margin-bottom: 6px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service .container .right .right-top .box p,
.service .container .right .right-bottom .box p {
  position: relative;
  z-index: 9;
  font-family: 'SimSun';
  font-size: 16px;
  color: #ff5722;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.service .container .right .right-top .box img,
.service .container .right .right-bottom .box img {
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 0;
  max-width: 120px;
  max-height: 120px;
}
.service .container .right .right-bottom {
  height: 200px;
  margin-top: 16px;
}
.service .container .right .right-bottom .box {
  position: relative;
  width: 283px;
  height: 154px;
}
.service .container .right .right-bottom .box p {
  width: 160px;
}
.service .container .right .right-bottom .box.end {
  width: 168px;
  padding: 22px 16px 24px 22px;
  background-color: white;
  border-radius: 8px;
}
.service .container .left,
.service .container .box {
  transition: all 0.3s;
}
.service .container .left:hover,
.service .container .box:hover {
  box-shadow: 2px 2px 5px #bbb;
}
.advantage .title {
  min-width: 1200px;
}
.advantage .container {
  background: url(../../image/img_icon/advantage_bg.png) no-repeat center;
  background-size: 100%;
}
.advantage .row {
  position: relative;
  height: 400px;
  margin-bottom: 80px;
  background: url(../../image/img_icon/advantage_bg2.png) no-repeat center;
}
.advantage .row .info {
  position: absolute;
}
.advantage .row .info h3 {
  max-width: 260px;
  margin-bottom: 20px;
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.advantage .row .info p {
  width: 160px;
  font-family: 'SimSun';
  font-size: 14px;
  color: #999;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.advantage .row .one {
  left: 150px;
  top: 15px;
}
.advantage .row .two {
  top: 15px;
  right: 154px;
}
.advantage .row .three {
  left: 30px;
  top: 125px;
}
.advantage .row .four {
  top: 125px;
  right: 33px;
}
.advantage .row .five {
  left: 111px;
  top: 257px;
}
.advantage .row .six {
  top: 257px;
  right: 113px;
}
.advantage .row .two,
.advantage .row .four,
.advantage .row .six {
  text-align: right;
}
.customer1 {
  background: url(../../image/img_icon/customer_bg.png) no-repeat center;
}
.customer1 .title {
  padding-top: 60px;
}
.customer1 .row {
  width: 960px;
}
.customer1 .container {
  padding-bottom: 80px;
}
.customer1 .container .top {
  margin-bottom: 48px;
}
.customer1 .container .box {
  width: 270px;
  padding: 20px 0;
  text-align: center;
  background-color: white;
  border-radius: 8px;
}
.customer1 .container .box img {
  height: 60px;
}
.comment {
  /*background-color: #f5f5f5;*/
}
.comment .title {
  padding-top: 100px;
}
.comment .container {
  padding-bottom: 60px;
}
.comment .container .box {
  width: 240px;
  padding: 30px 20px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
}
.comment .container .box .handpor {
  margin-bottom: 22px;
  text-align: center;
}
.comment .container .box h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #333;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.comment .container .box span {
  display: block;
  font-size: 16px;
  color: #f37c43;
  text-align: center;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.comment .container .box i {
  display: block;
  width: 20px;
  height: 2px;
  margin: 14px auto;
  background-color: #666;
}
.comment .container .box p {
  font-size: 14px;
  color: #999;
  font-family: 'SimSun';
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.comment .tel {
  width: 590px;
  height: 56px;
  border: 1px solid #ff5722;
  border-radius: 10px;
  margin: 0 auto;
  overflow: hidden;
}
.comment .tel .left {
  display: flex;
  float: left;
  height: 56px;
  line-height: 56px;
}
.comment .tel .left img {
  width: 20px;
  height: 21px;
  padding: 18px 12px 0 24PX;
}
.comment .tel .left p {
  font-family: "SimSun";
  font-size: 16px;
  color: #333;
}
.comment .tel .left h2 {
  font-size: 24px;
  color: #ff5722;
}
.comment .tel .right {
  float: right;
  width: 190px;
  height: 56px;
  background-color: #ff5722;
  text-align: center;
  line-height: 56px;
  color: white;
}
.policy {
  /*background-color: #f5f5f5;*/
}
