* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

body {
  background-color: #fff;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

img {
  border: none;
  outline: none;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  background-color: rgba(76, 217, 100, 0.9);
  height: 72px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 52px;
  }
}
.header .menu {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.header .menu:before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 4px;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}
.header .menu:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 4px;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@media (max-width: 768px) {
  .header .menu {
    display: block;
  }
}
.header .menu.open:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 9px;
}
.header .menu.open:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 9px;
}
.header .logo {
  display: block;
  width: 81px;
  height: 62px;
  background: url('../images/logo@2x.png') no-repeat center;
  background-size: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header .logo {
    width: 55px;
    height: 42px;
    position: relative;
    z-index: 2;
  }
}
@media (min-width: 414px) {
  .header .navigation {
    display: block;
  }
}
@media (max-width: 768px) {
  .header .navigation {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #4cd964;
    height: 100vh;
    padding-top: 52px;
    z-index: 1;
  }
}
.header .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 16px;
}
@media (max-width: 768px) {
  .header .navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.header .navigation ul > li {
  margin: 0 30px;
  padding: 10px 5px;
  position: relative;
}
@media (max-width: 1200px) {
  .header .navigation ul > li {
    margin: 0 20px;
  }
}
@media (max-width: 768px) {
  .header .navigation ul > li {
    width: 100%;
    margin-left: 0;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .header .navigation ul > li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
.header .navigation ul > li:after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: transparent;
  border-radius: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
}
@media (max-width: 768px) {
  .header .navigation ul > li:after {
    display: none;
  }
}
.header .navigation ul > li > a {
  color: #fff;
  white-space: nowrap;
}
.header .navigation ul > li.current:after {
  background-color: #fff;
}
.header .others {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header .others {
    display: none;
  }
}
.header .others .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 17px;
  padding: 7px 10px;
}
.header .others .search .icon-search {
  display: block;
  width: 14px;
  height: 14px;
  background: url('../images/icon/icon_search@2x.png') no-repeat center;
  background-size: contain;
}
.header .others .search .form-control {
  margin-left: 10px;
}
.header .others .search .form-control input {
  background-color: transparent;
  border: none;
  width: 100%;
  font-size: 14px;
  color: #fff;
  outline: none;
}
.header .others .search .form-control input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}
.header .others .search .form-control input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.header .others .search .form-control input::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}
.header .others .search .form-control input::placeholder {
  color: #fff;
  opacity: 1;
}
@media (max-width: 1024px) {
  .header .others .search {
    display: none;
  }
}
.header .others .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  margin-left: 60px;
}
.header .others .tel .icon-tel {
  display: block;
  width: 14px;
  height: 14px;
  background: url('../images/icon/icon_tel@2x.png') no-repeat center;
  background-size: contain;
  margin-right: 5px;
}
@media (max-width: 1200px) {
  .header .others .tel {
    display: none;
  }
}
.header .others .language {
  margin-left: 20px;
  padding: 9px 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
}
.header .others .language .icon {
  display: block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.header .others .language .icon-chinese {
  background-image: url('../images/icon/chinese@2x.png');
}
.header .others .language .icon-english {
  background-image: url('../images/icon/english@2x.png');
}
.header .others .language .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.header .others .language .current .value {
  display: block;
  width: 50px;
  font-size: 12px;
  color: #fff;
}
.header .others .language .current .arrow {
  display: block;
  width: 10px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 5px;
}
.header .others .language .current .arrow.icon-down {
  background-image: url('../images/icon/icon_arrow_down@2x.png');
}
.header .others .language .current .arrow.icon-up {
  background-image: url('../images/icon/icon_arrow_up@2x.png');
}
.header .others .language .drop-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 12px;
  color: #656972;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.header .others .language .drop-menu ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}
.header .others .language .drop-menu ul > li:hover {
  background-color: #fff;
}

@media (max-width: 992px) {
  .en .header .logo {
    width: 68px;
    height: 52px;
  }
  .en .header .navigation ul {
    font-size: 14px;
  }
  .en .header .navigation ul > li {
    margin: 0 15px;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.swiper-container .swiper-slide img {
  width: 100%;
}
.swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 26px;
  height: 2px;
  border-radius: 0;
  background: #fff;
  opacity: 0.8;
}
.swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #4cd964;
}

.footer {
  margin-top: 60px;
  background-color: #f4f4f4;
  padding: 40px 0 60px;
}
@media (max-width: 1200px) {
  .footer {
    padding: 40px 20px 60px;
  }
}
.footer .company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer .company-info .left .logo {
  margin-right: 20px;
}
.footer .company-info .left .logo img {
  max-width: 123px;
}
.footer .company-info .left .info-group {
  margin-top: 20px;
}
.footer .company-info .left .info-group .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  color: #656972;
}
.footer .company-info .left .info-group .item + .item {
  margin-top: 8px;
}
.footer .company-info .left .info-group .item .key {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.footer .company-info .left .info-group .item .value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
  line-height: 1.4;
}
.footer .company-info .right {
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .footer .company-info .right {
    display: none;
  }
}
.footer .company-info .right .quick-code {
  text-align: center;
}
.footer .company-info .right .quick-code + .quick-code {
  margin-left: 50px;
}
.footer .company-info .right .quick-code img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}
.footer .company-info .right .quick-code p {
  font-size: 14px;
  color: #656972;
  margin-top: 10px;
}
.footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #e4e4e4;
}
.footer .copyright .left {
  font-size: 12px;
  color: #656972;
  line-height: 1.8;
}
.footer .copyright .language {
  margin-left: 20px;
  padding: 9px 12px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  position: relative;
}
.footer .copyright .language .icon {
  display: block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.footer .copyright .language .icon-chinese {
  background-image: url('../images/icon/chinese@2x.png');
}
.footer .copyright .language .icon-english {
  background-image: url('../images/icon/english@2x.png');
}
.footer .copyright .language .current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
.footer .copyright .language .current .value {
  display: block;
  width: 50px;
  font-size: 12px;
  color: #fff;
}
.footer .copyright .language .current .arrow {
  display: block;
  width: 10px;
  height: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 5px;
}
.footer .copyright .language .current .arrow.icon-down {
  background-image: url('../images/icon/icon_arrow_down@2x.png');
}
.footer .copyright .language .current .arrow.icon-up {
  background-image: url('../images/icon/icon_arrow_up@2x.png');
}
.footer .copyright .language .drop-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 34px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  font-size: 12px;
  color: #656972;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.footer .copyright .language .drop-menu ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}
.footer .copyright .language .drop-menu ul > li:hover {
  background-color: #fff;
}

.side-bar {
  position: fixed;
  right: 20px;
  bottom: 100px;
  z-index: 10;
}
.side-bar .back-top {
  background-color: rgba(0, 0, 0, 0.18);
  padding: 10px;
  cursor: pointer;
}
.side-bar .back-top .icon-top {
  width: 42px;
  height: 46px;
  background: url('../images/icon/icon-uptop@2x.png') no-repeat center;
  background-size: contain;
  display: block;
}
.side-bar .back-top:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

.home .banner {
  padding-top: 72px;
}
@media (max-width: 768px) {
  .home .banner {
    padding-top: 51px;
  }
}

.home .news {
  padding: 100px 0;
}
@media (max-width: 414px) {
  .home .news {
    padding: 50px 0;
  }
}
.home .news .title {
  font-size: 22px;
  color: #4a4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.home .news .title .en {
  font-size: 16px;
  color: #b0b2b7;
  margin-top: 5px;
  position: relative;
}
.home .news .title .en span {
  display: block;
  padding: 0 20px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.home .news .title .en::after {
  content: '';
  display: block;
  width: 140px;
  height: 1px;
  background-color: #b0b2b7;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home .news .tabs-column {
  margin-top: 37px;
}
.home .news .tabs-column .tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home .news .tabs-column .tabs ul > li {
  font-size: 14px;
  color: #656972;
  cursor: pointer;
}
.home .news .tabs-column .tabs ul > li + li {
  margin-left: 150px;
}
@media (max-width: 414px) {
  .home .news .tabs-column .tabs ul > li + li {
    margin-left: 40px;
  }
}
.home .news .tabs-column .tabs ul > li.selected {
  color: #4cd964;
}
.home .news .tabs-column .tab-content {
  margin-top: 40px;
  position: relative;
}
.home .news .tabs-column .tab-content .tab-item {
  overflow: hidden;
}
.home .news .tabs-column .tab-content .tab-item.hide {
  display: none;
}
.home .news .tabs-column .tab-content .tab-item .news-list .news-item {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 50%;
  padding: 30px 28px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home .news .tabs-column .tab-content .tab-item .news-list .news-item:hover {
  background-color: #f4f4f4;
}
@media (max-width: 768px) {
  .home .news .tabs-column .tab-content .tab-item .news-list .news-item {
    width: 100%;
    border-bottom: 1px solid #f4f4f4;
  }
}
@media (max-width: 414px) {
  .home .news .tabs-column .tab-content .tab-item .news-list .news-item {
    padding: 10px;
  }
}
.home .news .tabs-column .tab-content .tab-item .news-list .news-item .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 5px 0;
  overflow: hidden;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .title {
  display: inline-block;
  font-size: 18px;
  color: #26272b;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (max-width: 414px) {
  .home
    .news
    .tabs-column
    .tab-content
    .tab-item
    .news-list
    .news-item
    .text
    .title {
    width: 100%;
    font-size: 16px;
  }
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .title:hover {
  color: #4cd964;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .sub-title {
  height: 54px;
  font-size: 12px;
  color: #656972;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 12px;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .info
  .time {
  color: #656972;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .text
  .info
  .tag {
  color: #4cd964;
  margin-left: 10px;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .thumbnail {
  display: block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 190px;
  overflow: hidden;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .home
    .news
    .tabs-column
    .tab-content
    .tab-item
    .news-list
    .news-item
    .thumbnail {
    margin-left: 20px;
  }
}
@media (max-width: 414px) {
  .home
    .news
    .tabs-column
    .tab-content
    .tab-item
    .news-list
    .news-item
    .thumbnail {
    width: 100px;
  }
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .thumbnail
  img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-height: 116px;
}
.home
  .news
  .tabs-column
  .tab-content
  .tab-item
  .news-list
  .news-item
  .thumbnail:hover
  img {
  -webkit-transform: scale(1.1, 1.1) rotate(-3deg);
  transform: scale(1.1, 1.1) rotate(-3deg);
}
.home .news .tabs-column .tab-content .tab-item .handler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 20px;
}
.home .news .tabs-column .tab-content .tab-item .handler .more {
  padding: 11px 104px;
  border: 1px solid #4cd964;
  border-radius: 20px;
  color: #4cd964;
  font-size: 14px;
}
.home .news .tabs-column .tab-content .tab-item .handler .more:hover {
  background-color: #4cd964;
  color: #fff;
}

.home .products-technologies {
  padding: 55px 0;
  background: url('../images/bg_16@2x.png') no-repeat center;
  background-size: cover;
  position: relative;
}
@media (max-width: 414px) {
  .home .products-technologies {
    padding: 40px 0 0;
  }
}
.home .products-technologies:after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4cd964;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.home .products-technologies .tabs-column {
  position: relative;
  z-index: 2;
}
.home .products-technologies .tabs-column .tabs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home .products-technologies .tabs-column .tabs ul > li {
  color: #fff;
  text-align: center;
  position: relative;
  padding: 10px 20px 15px;
  cursor: pointer;
}
.home .products-technologies .tabs-column .tabs ul > li + li {
  margin-left: 200px;
}
@media (max-width: 414px) {
  .home .products-technologies .tabs-column .tabs ul > li + li {
    margin-left: 50px;
  }
}
.home .products-technologies .tabs-column .tabs ul > li:after {
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home .products-technologies .tabs-column .tabs ul > li.selected:after {
  background-color: #fff;
}
.home .products-technologies .tabs-column .tabs ul > li .zh {
  font-size: 44px;
  line-height: 1;
}
@media (max-width: 640px) {
  .home .products-technologies .tabs-column .tabs ul > li .zh {
    font-size: 34px;
  }
}
@media (max-width: 414px) {
  .home .products-technologies .tabs-column .tabs ul > li .zh {
    font-size: 24px;
  }
}
.home .products-technologies .tabs-column .tabs ul > li .en {
  font-size: 12px;
  margin-top: 10px;
}
.home .products-technologies .tabs-column .tab-content {
  padding: 50px 0;
}
.home .products-technologies .tabs-column .tab-content .handler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 50px;
}
.home .products-technologies .tabs-column .tab-content .handler .more {
  padding: 11px 104px;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
}
.home .products-technologies .tabs-column .tab-content .handler .more:hover {
  background-color: #fff;
  color: #4cd964;
}
.home .products-technologies .tabs-column .tab-content .tab-item.hide {
  display: none;
}
.home .products-technologies .tabs-column .tab-content .tab-item .inner {
  color: #fff;
  text-align: left;
  padding: 10px 15px;
  overflow: hidden;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .thumbnail {
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .thumbnail
  img {
  width: 100%;
  max-height: 205px;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .thumbnail
  img:hover {
  -webkit-transform: scale(1.1, 1.1) rotate(-3deg);
  transform: scale(1.1, 1.1) rotate(-3deg);
}
.home .products-technologies .tabs-column .tab-content .tab-item .inner .title {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .title:hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .title
  .zh {
  display: block;
  font-size: 18px;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .title
  .en {
  display: block;
  font-size: 16px;
  margin-top: 5px;
}
.home .products-technologies .tabs-column .tab-content .tab-item .inner .intr {
  height: 54px;
  margin-top: 16px;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.6;
}
.home .products-technologies .tabs-column .tab-content .tab-item .inner .more {
  margin-top: 16px;
  display: inline-block;
  font-size: 12px;
  opacity: 0.5;
  border: 1px solid #fff;
  border-radius: 18px;
  padding: 8px 35px;
  color: #fff;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .inner
  .more:hover {
  background-color: #fff;
  color: #4cd964;
  opacity: 1;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
}
.home .products-technologies .tabs-column .tab-content .tab-item .arrow {
  width: 70px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .arrow.swiper-button-prev {
  left: -80px;
  background-image: url('../images/icon/icon_arrow_left@2x.png');
}
.home
  .products-technologies
  .tabs-column
  .tab-content
  .tab-item
  .arrow.swiper-button-next {
  right: -80px;
  background-image: url('../images/icon/icon_arrow_right@2x.png');
}
@media (max-width: 1024px) {
  .home .products-technologies .tabs-column .tab-content .tab-item .arrow {
    display: none;
  }
}

.home .areas-values {
  margin-top: 100px;
}
.home .areas-values .title {
  text-align: center;
}
.home .areas-values .title .zh {
  color: #4a4a4a;
  font-size: 20px;
}
.home .areas-values .title .en {
  margin-top: 5px;
  font-size: 16px;
  color: #b0b2b7;
  text-transform: uppercase;
}
.home .areas-values .sub-title {
  color: #656972;
  font-size: 14px;
  text-align: center;
  margin: 10px 0;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .home .areas-values .sub-title {
    padding: 0 20px;
  }
}
.home .areas-values .numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 80px;
}
.home .areas-values .numbers .number {
  text-align: center;
  padding: 0 70px;
  position: relative;
}
@media (max-width: 768px) {
  .home .areas-values .numbers .number {
    padding: 0 40px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .numbers .number {
    padding: 0 20px;
  }
}
@media (max-width: 320px) {
  .home .areas-values .numbers .number {
    padding: 0 15px;
  }
}
.home .areas-values .numbers .number .count {
  color: #4cd964;
  font-family: PingFangSC-Ultralight;
  line-height: 1;
  font-size: 100px;
  font-style: normal;
}
@media (max-width: 640px) {
  .home .areas-values .numbers .number .count {
    font-size: 70px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .numbers .number .count {
    font-size: 40px;
  }
}
.home .areas-values .numbers .number .label {
  font-size: 16px;
  color: #b0b2b7;
  margin-top: 20px;
}
.home .areas-values .numbers .number + .number:after {
  content: '';
  display: block;
  width: 1px;
  height: 80%;
  background-color: #eee;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.home .areas-values .areas {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .home .areas-values .areas {
    padding: 0 20px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .areas {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
    padding: 0 5px;
  }
}
.home .areas-values .areas .item {
  text-align: center;
}
@media (max-width: 414px) {
  .home .areas-values .areas .item {
    margin-top: 20px;
    padding: 5px;
  }
}
.home .areas-values .areas .item + .item {
  margin-left: 120px;
}
@media (max-width: 1024px) {
  .home .areas-values .areas .item + .item {
    margin-left: 60px;
  }
}
@media (max-width: 640px) {
  .home .areas-values .areas .item + .item {
    margin-left: 30px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .areas .item + .item {
    margin-left: 0;
  }
}
.home .areas-values .areas .item .icon {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 640px) {
  .home .areas-values .areas .item .icon {
    width: 78px;
    height: 78px;
  }
}
.home .areas-values .areas .item .icon.icon-1 {
  background-image: url('../images/icon/icon_1@2x.png');
}
.home .areas-values .areas .item .icon.icon-2 {
  background-image: url('../images/icon/icon_2@2x.png');
}
.home .areas-values .areas .item .icon.icon-3 {
  background-image: url('../images/icon/icon_3@2x.png');
}
.home .areas-values .areas .item .icon.icon-4 {
  background-image: url('../images/icon/icon_4@2x.png');
}
.home .areas-values .areas .item .text {
  margin-top: 37px;
  font-size: 16px;
  color: #26272b;
}
.home .areas-values .areas .item .intr {
  margin-top: 10px;
  line-height: 1.4;
  font-size: 12px;
  color: #b0b2b7;
}
@media (max-width: 414px) {
  .home .areas-values .areas .item {
    width: 50%;
  }
}
.home .areas-values .values {
  margin-top: 160px;
  background: url('../images/bg2@2x.png') no-repeat top center;
  background-size: contain;
  padding: 100px 125px;
}
@media (max-width: 1024px) {
  .home .areas-values .values {
    padding: 50px 67px;
  }
}
@media (max-width: 640px) {
  .home .areas-values .values {
    padding: 25px 34px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .values {
    margin-top: 50px;
    padding: 20px;
  }
}
.home .areas-values .values .inner {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  padding: 50px;
}
@media (max-width: 1024px) {
  .home .areas-values .values .inner {
    padding: 25px;
  }
}
@media (max-width: 640px) {
  .home .areas-values .values .inner {
    padding: 25px 15px;
  }
}
@media (max-width: 414px) {
  .home .areas-values .values .inner {
    padding: 20px 10px;
    font-size: 12px;
  }
}
.home .areas-values .values .inner .title {
  text-align: center;
  font-size: 32px;
  color: #26272b;
}
.home .areas-values .values .inner .text {
  margin-top: 22px;
  color: #656972;
  font-size: 14px;
  line-height: 30px;
  text-align: justify;
  padding: 0 5px;
}
@media (max-width: 414px) {
  .home .areas-values .values .inner .text {
    font-size: 12px;
  }
}
.home .areas-values .values .inner .line {
  position: relative;
  margin-top: 58px;
}
@media (max-width: 414px) {
  .home .areas-values .values .inner .line {
    margin-top: 20px;
  }
}
.home .areas-values .values .inner .line:before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4cd964;
  position: absolute;
  top: 5px;
  left: 0;
}
.home .areas-values .values .inner .line:after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #4cd964;
  position: absolute;
  top: 0;
  left: 0;
}

.home .join-us .join-us-banner img {
  display: block;
  width: 100%;
}

.home .join-us .tips {
  margin-top: 24px;
  font-size: 14px;
  color: #656972;
}
.home .join-us .tips a {
  color: #4cd964;
}
@media (max-width: 1200px) {
  .home .join-us .tips {
    padding: 0 20px;
  }
}
@media (max-width: 414px) {
  .home .join-us .tips {
    padding: 0 10px;
  }
}

.home .join-us .job-list {
  margin-top: 20px;
}
@media (max-width: 1200px) {
  .home .join-us .job-list {
    padding: 0 20px;
  }
}
@media (max-width: 414px) {
  .home .join-us .job-list {
    padding: 0 10px;
  }
}
.home .join-us .job-list .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 15px 0;
}
.home .join-us .job-list .title .left {
  font-size: 18px;
  color: #26272b;
}
.home .join-us .job-list .title .more {
  font-size: 14px;
  color: #656972;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home .join-us .job-list .title .more .icon-more {
  display: block;
  width: 10px;
  height: 10px;
  background: url('../images/icon/icon-more@2x.png') no-repeat center;
  background-size: contain;
  margin-left: 3px;
}
@media (max-width: 414px) {
  .home .join-us .job-list .list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.home .join-us .job-list .list table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
@media (max-width: 414px) {
  .home .join-us .job-list .list table {
    width: 150%;
  }
}
.home .join-us .job-list .list table thead tr > th {
  font-weight: normal;
  background-color: #f4f4f4;
  font-size: 14px;
  padding: 12px 10px;
  color: #656972;
}
.home .join-us .job-list .list table thead tr > th:first-child {
  text-align: left;
}
.home .join-us .job-list .list table thead tr > th.position {
  width: 20%;
}
.home .join-us .job-list .list table thead tr > th.function {
  width: 40%;
}
.home .join-us .job-list .list table thead tr > th.place {
  width: 20%;
}
.home .join-us .job-list .list table thead tr > th.handler {
  width: 20%;
}
@media (max-width: 414px) {
  .home .join-us .job-list .list table thead tr > th.handler {
    width: 25%;
  }
}
.home .join-us .job-list .list table tbody tr {
  border-bottom: 1px solid #eee;
}
.home .join-us .job-list .list table tbody tr:hover {
  background-color: #f4f4f4;
}
.home .join-us .job-list .list table tbody tr > td {
  font-size: 14px;
  color: #656972;
  padding: 20px 10px;
  text-align: center;
}
@media (max-width: 414px) {
  .home .join-us .job-list .list table tbody tr > td {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.home .join-us .job-list .list table tbody tr > td:first-child {
  text-align: left;
}
.home .join-us .job-list .list table tbody tr > td .apply {
  border: 1px solid #cbcbcb;
  border-radius: 18px;
  font-size: 14px;
  color: #656972;
  padding: 7px 15px;
  display: inline-block;
}
.home .join-us .job-list .list table tbody tr > td .apply:hover {
  border-color: #4cd964;
  color: #4cd964;
}
@media (max-width: 414px) {
  .home .join-us .job-list .list table tbody tr > td .apply {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.home .contact-us {
  margin-top: 100px;
  margin-bottom: 50px;
}
@media (max-width: 414px) {
  .home .contact-us {
    margin-top: 50px;
  }
}
.home .contact-us .title {
  text-align: center;
}
.home .contact-us .title .zh {
  font-size: 20px;
  color: #4a4a4a;
}
.home .contact-us .title .en {
  margin-top: 5px;
  color: #b0b2b7;
  font-size: 16px;
}
.home .contact-us .sub-title {
  color: #656972;
  font-size: 12px;
  text-align: center;
  margin: 10px 0;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .home .contact-us .sub-title {
    padding: 0 20px;
  }
}
.home .contact-us .contact-list {
  margin-top: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 414px) {
  .home .contact-us .contact-list {
    margin-top: 40px;
  }
}
.home .contact-us .contact-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  width: 33.3333333333%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.home .contact-us .contact-list .item .icon {
  display: block;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 640px) {
  .home .contact-us .contact-list .item .icon {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 414px) {
  .home .contact-us .contact-list .item .icon {
    width: 60px;
    height: 60px;
  }
}
.home .contact-us .contact-list .item .icon.icon-tel {
  background-image: url('../images/icon/icon_phone@2x.png');
}
.home .contact-us .contact-list .item .icon.icon-time {
  background-image: url('../images/icon/icon_time@2x.png');
}
.home .contact-us .contact-list .item .icon.icon-map {
  background-image: url('../images/icon/icon_map@2x.png');
}
.home .contact-us .contact-list .item .label {
  margin-top: 20px;
  font-size: 14px;
  color: #26272b;
}
.home .contact-us .contact-list .item .value {
  margin-top: 7px;
  font-size: 12px;
  color: #656972;
  line-height: 1.4;
  height: 48px;
  overflow: hidden;
}
.home .contact-us .contact-list .item + .item {
  margin-left: 110px;
}
@media (max-width: 768px) {
  .home .contact-us .contact-list .item + .item {
    margin-left: 50px;
  }
}
@media (max-width: 640px) {
  .home .contact-us .contact-list .item + .item {
    margin-left: 25px;
  }
}

.home .map #map-box {
  height: 346px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 414px) {
  .home .map #map-box {
    height: 200px;
  }
}

.home.en .products-technologies .tabs-column .tabs ul > li .zh {
  font-size: 34px;
}
@media (max-width: 640px) {
  .home.en .products-technologies .tabs-column .tabs ul > li .zh {
    font-size: 28px;
  }
}
@media (max-width: 640px) {
  .home.en .products-technologies .tabs-column .tabs ul > li .zh {
    font-size: 20px;
  }
}

.home.en .products-technologies .tabs-column .tabs ul > li + li {
  margin-left: 150px;
}
@media (max-width: 640px) {
  .home.en .products-technologies .tabs-column .tabs ul > li + li {
    margin-left: 100px;
  }
}
@media (max-width: 640px) {
  .home.en .products-technologies .tabs-column .tabs ul > li + li {
    margin-left: 50px;
  }
}

.products .detail {
  padding-top: 72px;
}
@media (max-width: 1200px) {
  .products .detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 414px) {
  .products .detail {
    padding-top: 51px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.products .breadcrumbs {
  padding: 10px 0;
}
.products .breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.products .breadcrumbs ul > li {
  color: #b0b2b7;
  font-size: 14px;
  position: relative;
}
.products .breadcrumbs ul > li + li {
  padding-left: 15px;
  margin-left: 10px;
}
.products .breadcrumbs ul > li + li:after {
  content: '>';
  font-size: 16px;
  line-height: 1;
  color: #b0b2b7;
  position: absolute;
  left: 0;
  top: -1px;
}
.products .breadcrumbs ul > li > a {
  color: #4cd964;
}

.products .introduction .banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.products .introduction .banner img {
  display: block;
  max-width: 100%;
}

.products .introduction .content {
  margin-top: 27px;
}
.products .introduction .content .title {
  font-size: 24px;
  color: #26272b;
  line-height: 1.5;
}
.products .introduction .content .sub-title {
  margin-top: 25px;
  font-size: 16px;
  color: #000;
  line-height: 1.4;
}
.products .introduction .content .text {
  margin-top: 30px;
  line-height: 26px;
  color: #656972;
  font-size: 14px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: justify;
}
.products .introduction .content .text p {
  line-height: 26px;
  color: #656972;
  font-size: 14px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: justify;
  text-indent: 30px;
}
.products .introduction .content .text p + p {
  margin-top: 20px;
}
.products .introduction .content .text img {
  width: 100%;
}
.products .introduction .content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
.products .introduction .content table thead tr > th {
  font-weight: normal;
  background-color: #f4f4f4;
  font-size: 14px;
  padding: 12px 10px;
  color: #656972;
}
.products .introduction .content table thead tr > th:first-child {
  text-align: left;
}
.products .introduction .content table thead tr > th.position {
  width: 20%;
}
.products .introduction .content table thead tr > th.function {
  width: 40%;
}
.products .introduction .content table thead tr > th.place {
  width: 20%;
}
.products .introduction .content table thead tr > th.handler {
  width: 20%;
}
@media (max-width: 414px) {
  .products .introduction .content table thead tr > th.handler {
    width: 25%;
  }
}
.products .introduction .content table tbody tr {
  border-bottom: 1px solid #eee;
}
.products .introduction .content table tbody tr:hover {
  background-color: #f4f4f4;
}
.products .introduction .content table tbody tr > td {
  font-size: 14px;
  color: #656972;
  padding: 20px 10px;
  text-align: center;
}
@media (max-width: 414px) {
  .products .introduction .content table tbody tr > td {
    font-size: 12px;
    padding: 10px 5px;
  }
}
.products .introduction .content table tbody tr > td:first-child {
  text-align: left;
}
.products .introduction .content table tbody tr > td .apply {
  border: 1px solid #cbcbcb;
  border-radius: 18px;
  font-size: 14px;
  color: #656972;
  padding: 7px 15px;
  display: inline-block;
}
.products .introduction .content table tbody tr > td .apply:hover {
  border-color: #4cd964;
  color: #4cd964;
}
@media (max-width: 414px) {
  .products .introduction .content table tbody tr > td .apply {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.news .detail {
  padding-top: 72px;
}
@media (max-width: 1200px) {
  .news .detail {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 414px) {
  .news .detail {
    padding-top: 51px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.products .products-box{
  padding-top: 72px;
}
.products .products-box .products-list ul li{
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.products .products-box .products-list ul li + li{
  border-top: 1px solid #eee;
}
.products .products-box .products-list ul li .thumnail{
  width: 241px;
  height: 147px;
  flex-shrink: 0;
  overflow: hidden;
}
.products .products-box .products-list ul li .thumnail img{
  display: block;
  width: 100%;
}
.products .products-box .products-list ul li .info{
  flex: 1;
  overflow: hidden;
  margin-left: 20px;
  height: 147px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  color: #26272b;
}
.products .products-box .products-list ul li .info .title{
  font-size: 18px;
  word-break: break-all;
}
.products .products-box .products-list ul li .info .intr{
  font-size: 14px;
}
.products .products-box .products-list ul li .info .intr p + p{
  margin-top: 5px;
}
@media (max-width: 1200px) {
  .products .products-box{
    padding: 72px 20px 0;
  }
}
@media (max-width: 768px) {
  .products .products-box{
    padding: 52px 20px 0;
  }
}
@media (max-width: 414px) {
  .products .products-box{
    padding: 52px 10px 0;
  }
  .products .products-box .products-list ul li{
    padding: 10px 0;
  }
  .products .products-box .products-list ul li .thumnail{
    width: 150px;
    height: 84px;
  }
  .products .products-box .products-list ul li .info{
    height: 84px;
    padding: 5px 0;
    margin-left: 10px;
  }
  .products .products-box .products-list ul li .info .title{
    font-size: 14px;
  }
  .products .products-box .products-list ul li .info .intr{
    font-size: 12px;
  }
}
.news .breadcrumbs {
  padding: 10px 0;
}
.news .breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.news .breadcrumbs ul > li {
  color: #b0b2b7;
  font-size: 14px;
  position: relative;
}
.news .breadcrumbs ul > li + li {
  padding-left: 15px;
  margin-left: 10px;
}
.news .breadcrumbs ul > li + li:after {
  content: '>';
  font-size: 16px;
  line-height: 1;
  color: #b0b2b7;
  position: absolute;
  left: 0;
  top: -1px;
}
.news .breadcrumbs ul > li > a {
  color: #4cd964;
}

.news .content {
  margin-top: 24px;
}
.news .content .title {
  font-size: 24px;
  color: #26272b;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 414px) {
  .news .content .title {
    text-align: left;
  }
}
.news .content .time-tag {
  font-size: 12px;
  margin-top: 10px;
  text-align: center;
}
@media (max-width: 414px) {
  .news .content .time-tag {
    text-align: left;
  }
}
.news .content .time-tag .time {
  color: #26272b;
}
.news .content .time-tag .tag {
  color: #4cd964;
  margin-left: 10px;
}
.news .content .sub-title {
  text-align: center;
  margin-top: 23px;
  font-size: 16px;
  color: #656972;
  line-height: 1.4;
}
.news .content .text {
  margin-top: 30px;
  line-height: 26px;
  color: #656972;
  font-size: 14px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: justify;
}
.news .content .text p {
  line-height: 26px;
  color: #656972;
  font-size: 14px;
  word-break: break-all;
  word-wrap: break-word;
  text-align: justify;
  margin-top: 20px;
  text-indent: 30px;
}
.news .content .text img {
  display: block;
  width: 100%;
}
