/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* main */
/* 热门产品 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.mainLeft {
  width: 230px;
  float: left;
}
.leftMenu {
  width: 100%;
  float: left;
  border-radius: 5px;
  overflow: hidden;
}
.menuTitle {
  display: block;
  overflow: hidden;
  background-image: url(../images/menu_bj.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-color: rgba(10, 110, 219, 1);
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  line-height: 20px;
  padding: 30px 0 30px 40px;
}
.menuTitle>span {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  font-weight: bold;
}
.menuList {
  display: block;
  overflow: hidden;
  transition: initial;
  border-left: 1px solid rgba(214, 214, 214, 1);
  border-right: 1px solid rgba(214, 214, 214, 1);
  border-radius: 0 0 5px 5px;
  position: relative;
  z-index: 2;
}
.menuList li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(214, 214, 214, 1);
}
.menuList li a {
  display: block;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 1);
  padding: 0 30px;
  color: rgba(51, 51, 51, 1);
  font-size: 16px;
}
.menuList li a>span {
  display: block;
  overflow: hidden;
  height: 55px;
  line-height: 55px;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 20px;
  transition: initial;
}
.menuList li a>span::before {
  content: "";
  width: 12px;
  float: left;
  height: 12px;
  border: 3px solid #0a6edb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menuList li:hover>a,
.menuList li.menuActive>a {
  background-color: rgba(10, 110, 219, 1);
  color: #fff;
}
.menuList li:hover>a>span::before,
.menuList li.menuActive>a>span::before {
  border-color: #fff;
}
.menuBox {
  display: block;
  overflow: hidden;
  margin-top: -16px;
  background: url(../images/menu_img.jpg) no-repeat center center;
  background-size: cover;
  padding: 90px 45px 35px 20px;
  text-align: right;
  color: #fff;
  font-size: 16px;
}
.menuTit {
  display: flex;
  line-height: 26px;
  justify-content: flex-end;
}
.menuTit>span {
  float: right;
  padding-left: 42px;
  position: relative;
}
.menuTit>span::before {
  content: "";
  width: 46px;
  float: left;
  height: 45px;
  background: url(../images/menu_icon.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 15px;
}
.menuTxt {
  display: flex;
  overflow: hidden;
  line-height: 30px;
  justify-content: flex-end;
  margin-top: 5px;
}

.mainRight {
  width: 940px;
  float: right;
}
.dqwzTitle {
  width: 100%;
  float: left;
  line-height: 42px;
  border-bottom: 1px solid rgba(214, 214, 214, 1);
}
.dqwzTit {
  float: left;
  font-size: 22px;
  color: rgba(51, 51, 51, 1);
}
.dqwzRight {
  float: right;
  font-size: 13px;
  color: rgba(51, 51, 51, 1);
}
.dqwzRight>a {
  font-size: 16px;
  color: rgba(51, 51, 51, 1);
}
.dqwzRight>a:hover {
  text-decoration: underline;
  color: rgba(10, 110, 219, 1);
}
.dqwzContect {
  width: 100%;
  float: left;
  padding-top: 10px;
}
.cpList {
  display: block;
  overflow: hidden;
  width: 960px;
}
.cpList li {
  width: 220px;
  float: left;
  margin: 0 20px 20px 0;
}
.cpList li>a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(214, 214, 214, 1);
  padding: 10px 10px 0 10px;
}
.cpList li>a .cpImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: rgba(230, 230, 230, 1);
}
.cpList li>a .cpImg>img {
  transform: scale(1.1);
}
.cpList li>a .cpImg::before {
  content: "";
  display: block;
  padding-top: 70%;
}
.cpList li>a .cpTxt {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 13px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cpList li>a:hover {
  background-color: rgba(10, 110, 219, 1);
  border-color: rgba(10, 110, 219, 1);
}
.cpList li>a:hover .cpImg>img {
  transform: scale(1);
}
.cpList li>a:hover .cpTxt {
  color: #fff;
}

@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
  .mainLeft {
    width: 24%;
  }
  .mainRight {
    width: 74%;
  }
  .cpList {
    width: 102%;
    margin-left: -1%;
  }
  .cpList li {
    width: 23%;
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .mainLeft {
    width: 29%;
  }
  .menuList li a {
    padding: 0 15px;
  }
  .menuBox {
    padding: 70px 25px 25px 20px;
  }
  .mainRight {
    width: 69%;
  }
  .cpList li {
    width: 31.3333%;
    margin: 0 1% 2% 1%;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .mainLeft {
    width: 100%;
  }
  .leftMenu {
    border: none;
    overflow: visible;
  }
  .menuTitle {
    width: calc(100% + 30px);
    text-align: left;
    margin-left: -15px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
  }
  .menuTitle::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menuList {
    display: none;
    margin-top: 2px;
  }
  .menuList li a>span {
    height: 40px;
    line-height: 40px;
  }
  .mainRight {
    width: 100%;
  }
  .dqwzContect {
    padding: 15px 0;
  }
  .cpList li {
    width: 48%;
  }
  .cpList li>a {
    padding: 5px 5px 0 5px;
  }
  .cpList li>a .cpTxt {
    height: 36px;
    line-height: 36px;
  }
}

/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  background: url(../images/about_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0 100px 0;
}
.aboutTitle {
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.aboutTitle::before {
  content: "";
  width: 1px;
  height: 30px;
  background-color: #2e3897;
  display: block;
  margin: 0 auto 7px auto;
  overflow: hidden;
}
.aboutTitle::after {
  content: "";
  width: 7px;
  height: 7px;
  float: left;
  background-color: #2e3897;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
}
.aboutCn {
  line-height: 40px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.aboutEn {
  line-height: 24px;
  font-size: 14px;
  color: #333;
}
.aboutContect {
  display: block;
  overflow: hidden;
  margin-top: 45px;
}
.aboutImg {
  width: 50%;
  float: left;
  border: 5px solid rgba(10, 110, 219, 1);
  overflow: hidden;
  position: relative;
}
.aboutImg>img {
  transform: scale(1.1);
}
.aboutImg::before {
  content: "";
  display: block;
  padding-top: 51.6667%;
}
.aboutImg:hover>img {
  transform: scale(1);
}
.aboutRight {
  width: 46%;
  float: right;
  padding-top: 25px;
}
.aboutTit {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 13px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.aboutList {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.aboutList ul {
  float: left;
  width: 80%;
  display: flex;
  justify-content: space-between;
}
.aboutList ul li {
  float: left;
}
.aboutList ul li>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.aboutList ul li>a>span {
  display: block;
  overflow: hidden;
  line-height: 18px;
  font-size: 13px;
  color: #333;
  text-align: center;
  margin-top: 10px;
}
.aboutMore {
  width: 60px;
  height: 60px;
  float: right;
  margin-top: 7px;
  overflow: hidden;
  position: relative;
}
.aboutMore>a {
  width: 100%;
  float: left;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: rgba(10, 110, 219, 1);
}
.aboutMore>a::before {
  content: "";
  width: 67%;
  float: left;
  height: 67%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.aboutMore>a>span {
  position: relative;
  z-index: 2;
  font-size: 13px;
  color: rgba(51, 51, 51, 1);
  text-align: center;
  padding: 0 14px;
  line-height: 12px;
}
.aboutMore>a:hover {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.aboutMore>a:hover::before {
  background-color: rgba(10, 110, 219, 1);
}
.aboutMore>a:hover>span {
  color: #fff;
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0 80px 0;
  }
  .aboutContect {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 40px 0 50px 0;
  }
  .aboutContect {
    margin-top: 20px;
  }
  .aboutRight {
    width: 48%;
  }
  .aboutList {
    margin-top: 20px;
  }
  .aboutList ul li {
    width: 22%;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .aboutTitle::before {
    height: 10px;
    margin: 0 auto 5px auto;
  }
  .aboutTitle::after {
    width: 5px;
    height: 5px;
    top: 10px;
  }
  .aboutCn {
    line-height: 30px;
    font-size: 20px;
  }
  .aboutEn {
    line-height: 20px;
    font-size: 12px;
  }
  .aboutContect {
    margin-top: 10px;
  }
  .aboutImg {
    width: 100%;
  }
  .aboutRight {
    width: 100%;
    padding-top: 10px;
  }
  .aboutTit {
    line-height: 26px;
    font-size: 18px;
  }
  .aboutTxt {
    line-height: 22px;
    -webkit-line-clamp: 8;
  }
  .aboutList {
    margin-top: 10px;
  }
  .aboutList ul li {
    width: 22%;
  }
}

/* 荣誉资质 */
.honor {
  width: 100%;
  overflow: hidden;
  background: url(../images/honor_bj.jpg) no-repeat center top;
  background-size: cover;
  padding: 130px 0 55px 0;
}
.honor>.container {
  max-width: 1520px;
}
.honorLeft {
  width: 26%;
  float: left;
}
.honorTitle {
  display: flex;
  overflow: hidden;
  align-items: center;
  line-height: 40px;
}
.honorCn {
  float: left;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  margin-right: 8px;
}
.honorEn {
  float: left;
  line-height: 26px;
  font-size: 14px;
  color: #fff;
  position: relative;
}
.honorEn::before {
  content: "";
  width: 38px;
  float: left;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 3px;
}
.honorEn::after {
  content: "";
  width: 7px;
  float: left;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 31px;
  bottom: 0;
}
.honorTxt {
  width: 100%;
  float: left;
  margin-top: 10px;
  line-height: 30px;
  color: #fff;
  font-size: 13px;
}
.honorRight {
  width: 68%;
  float: right;
  padding: 0 44px;
  position: relative;
}
.honorSwiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.honorSwiper .swiper-slide>a>img {
  transform: scale(1.1);
}
.honorSwiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 140.18265%;
}
.honorSwiper .swiper-slide>a::after {
  content: "";
  width: 100%;
  float: left;
  height: 100%;
  background: url(../images/honor_hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.honorSwiper .swiper-slide>a:hover>img {
  transform: scale(1);
}
.honor-prev,
.honor-next {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 24px;
  float: left;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  padding-right: 2px;
}
.honor-next {
  left: initial;
  right: 0;
  padding: 0 0 0 2px;
}
.honor-prev:hover,
.honor-next:hover {
  background-color: #fff;
  color: rgba(10, 110, 219, 1);
}

@media (max-width: 1520px) {
  .honor {
    padding: 100px 0 50px 0;
  }
  .honor>.container {
    max-width: 97%;
  }
}

@media (max-width: 1200px) {
  .honor {
    padding: 80px 0 40px 0;
  }
  .honorLeft {
    width: 30%;
  }
  .honorRight {
    padding: 0 35px;
  }
}

@media (max-width: 991px) {
  .honor {
    padding: 30px 0;
  }
  .honorLeft {
    width: 100%;
  }
  .honorTitle {
    justify-content: center;
  }
  .honorTxt {
    text-align: center;
  }
  .honorRight {
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .honor {
    padding: 15px 0;
  }
  .honorTitle {
    line-height: 30px;
    flex-wrap: wrap;
    text-align: center;
  }
  .honorCn {
    width: 100%;
    font-size: 20px;
    margin-right: 0;
  }
  .honorEn {
    width: 100%;
    line-height: 20px;
    font-size: 12px;
  }
  .honorEn::before,
  .honorEn::after {
    display: none;
  }
  .honorTxt {
    margin-top: 5px;
    line-height: 20px;
  }
  .honorRight {
    padding: 0 30px;
  }
  .honorSwiper .swiper-slide>a>img {
    transform: scale(1);
  }
  .honor-prev,
  .honor-next {
    background-color: rgba(10, 110, 219, 1);
  }
}

/* 5大优势 */
.ys {
  width: 100%;
  overflow: hidden;
}
.ysTitle {
  display: flex;
  justify-content: center;
  background: url(../images/ys_title_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 35px 0 30px 0;
  text-align: center;
}
.ysTitle>div {
  float: left;
  padding: 0 104px 30px 104px;
  background-image: url(../images/ys_title_L.png), url(../images/ys_title_R.png);
  background-position: left 20px, right bottom;
  background-repeat: no-repeat, no-repeat;
}
.ysCn {
  height: 74px;
  line-height: 74px;
  font-size: 36px;
  color: #f5f5f5;
  font-weight: bold;
}
.ysCn>span {
  font-size: 72px;
  font-style: oblique;
  padding: 0 15px;
}
.ysEn {
  line-height: 52px;
  font-size: 36px;
  color: #f5f5f5;
  font-weight: bold;
  font-family: Arial;
  text-transform: uppercase;
  font-style: oblique;
}
.ysContect {
  display: block;
  overflow: hidden;
  padding: 40px 0;
}
.ysList {
  display: block;
  overflow: hidden;
}
.ysList li {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
.ysList li:last-child {
  margin: 0 !important;
}
.ysList li .ysLeft {
  width: 50%;
  float: left;
}
.ysList li .ysLeft .ysBox {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
}
.ysList li .ysLeft .ysBox .ysNub {
  width: 100px;
  height: 100px;
  float: left;
  border: 10px solid rgba(10, 110, 219, 1);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.ysList li .ysLeft .ysBox .ysNub>span {
  width: 70%;
  float: left;
  height: 70%;
  font-size: 42px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(10, 110, 219, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.ysList li .ysLeft .ysBox .ysTit {
  flex: 1;
  padding-left: 20px;
  line-height: 26px;
  text-transform: uppercase;
  font-size: 16px;
  color: #bababa;
  font-weight: bold;
}
.ysList li .ysLeft .ysBox .ysTit>span {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.ysList li .ysLeft .ysTxt {
  width: 100%;
  float: left;
  overflow: hidden;
  font-size: 13px;
  color: #666;
  min-height: 112px;
  line-height: 24px;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-top: 20px;
}
.ysList li .ysRight {
  width: 50%;
  float: left;
  display: flex;
  justify-content: flex-end;
}
.ysList li .ysRight>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.ysList li:nth-child(even) {
  flex-direction: row;
}
.ysList li:nth-child(even) .ysRight {
  justify-content: flex-start;
}
.ysList li:nth-child(4) .ysLeft {
  width: 58%;
}
.ysList li:nth-child(4) .ysRight {
  width: 42%;
}

@media (max-width: 1200px) {
  .ysList li .ysLeft .ysBox .ysTit>span {
    line-height: 40px;
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  .ysTitle {
    padding: 25px 0;
  }
  .ysContect {
    padding: 30px 0;
  }
  .ysList li .ysLeft .ysBox .ysTit {
    line-height: 24px;
    font-size: 14px;
  }
  .ysList li .ysLeft .ysBox .ysTit>span {
    line-height: 30px;
    font-size: 18px;
  }
  .ysList li .ysLeft .ysTxt {
    padding: 15px;
    line-height: 20px;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .ysTitle {
    padding: 15px 0;
  }
  .ysTitle>div {
    padding: 0 30px;
    background-position: left top, right bottom;
    background-size: 30px auto, 30px auto;
  }
  .ysCn {
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .ysCn>span {
    font-size: 40px;
    padding: 0 5px;
  }
  .ysEn {
    line-height: 30px;
    font-size: 20px;
  }
  .ysContect {
    padding: 15px 0;
  }
  .ysList li {
    margin-bottom: 10px;
  }
  .ysList li .ysRight {
    width: 100%;
    justify-content: center;
  }
  .ysList li .ysLeft {
    width: 100%;
    margin-top: 10px;
  }
  .ysList li .ysLeft .ysBox .ysNub {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(10, 110, 219, 1);
  }
  .ysList li .ysLeft .ysBox .ysNub>span {
    font-size: 28px;
  }
  .ysList li .ysLeft .ysBox .ysTit {
    padding-left: 10px;
    line-height: 22px;
    font-size: 12px;
  }
  .ysList li .ysLeft .ysBox .ysTit>span {
    line-height: 24px;
    font-size: 16px;
  }
  .ysList li .ysLeft .ysTxt {
    padding: 5px;
    min-height: initial;
  }
  .ysList li:nth-child(4) .ysLeft {
    width: 100%;
  }
  .ysList li:nth-child(4) .ysRight {
    width: 100%;
  }
}

/* 产品应用 */
.app {
  width: 100%;
  overflow: hidden;
  background: url(../images/app_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 0 90px 0;
}
.app .aboutTitle::before,
.app .aboutTitle::after {
  background-color: #fff;
}
.app .aboutCn,
.app .aboutEn {
  color: #fff;
}
.appContect {
  display: flex;
  position: relative;
  margin-top: 25px;
}
.appSwiper .swiper-slide .appImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.appSwiper .swiper-slide .appImg>img {
  transform: scale(1.1);
}
.appSwiper .swiper-slide .appImg::before {
  content: "";
  display: block;
  padding-top: 56.41026%;
}
.appSwiper .swiper-slide .appTxt {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  background-color: #f5f5f5;
  text-align: center;
  padding: 0 10px;
  font-size: 13px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.appSwiper .swiper-slide:hover .appImg>img {
  transform: scale(1);
}
.app-prev,
.app-next {
  left: -45px;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  width: 24px;
  float: left;
  height: 24px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  z-index: 2;
}
.app-next {
  left: initial;
  right: -45px;
}
.app-prev:hover,
.app-next:hover {
  background-color: #fff;
  color: rgba(10, 110, 219, 1);
}

@media (max-width: 1200px) {
  .app {
    padding: 50px 0 70px 0;
  }
  .app-prev,
  .app-next {
    left: 0;
  }
  .app-next {
    left: initial;
    right: 0;
  }
}

@media (max-width: 991px) {
  .app {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .app {
    padding: 15px 0;
  }
  .appContect {
    margin-top: 10px;
  }
}

/* 广告 */
.hf {
  width: 100%;
  overflow: hidden;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.hf img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: 88px;
}

@media (max-width: 1200px) {
  .hf {
    padding: 60px 0;
  }
  .hf img {
    margin-left: 60px;
  }
}

@media (max-width: 991px) {
  .hf {
    padding: 40px 0;
  }
  .hf img {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .hf {
    padding: 20px 0;
  }
  .hf img {
    margin-left: 0;
  }
}

/* 新闻资讯 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.newsContect {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.newsLeft {
  width: 55.5%;
  float: left;
}
.newsList {
  width: 100%;
  float: left;
}
.newsList li {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.newsList li>a {
  width: 100%;
  float: left;
  display: flex;
  overflow: hidden;
  border: 1px solid #f4f4f4;
  background-color: #fff;
  padding: 20px;
}
.newsList li>a .newsImg {
  width: 158px;
  float: left;
  overflow: hidden;
  position: relative;
  border: 1px solid #f4f4f4;
}
.newsList li>a .newsImg::before {
  content: "";
  display: block;
  padding-top: 56.5218%;
}
.newsList li>a .newsR {
  width: calc(100% - 158px);
  float: left;
  padding-left: 15px;
}
.newsList li>a .newsR .newsTit {
  display: block;
  overflow: hidden;
  line-height: 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
.newsList li>a .newsR .newsTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 13px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 5px 0;
}
.newsList li>a:hover {
  background-color: rgba(10, 110, 219, 1) !important;
}
.newsList li>a:hover .newsR .newsTit,
.newsList li>a:hover .newsR .newsTxt {
  color: #fff;
}

.newsRight {
  width: 38.5%;
  float: right;
}
.newsTitle {
  float: left;
  display: flex;
  align-items: center;
  line-height: 40px;
  font-size: 24px;
  color: #333;
}
.newsTitle::after {
  content: "";
  width: 96px;
  float: right;
  height: 3px;
  background-color: rgba(10, 110, 219, 1);
  margin-left: 20px;
}
.newsNous {
  width: 100%;
  float: left;
}
.newsNous li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  line-height: 30px;
}
.newsNous li>h2 {
  display: block;
  overflow: hidden;
  padding: 0 40px 0 0;
  position: relative;
}
.newsNous li>h2::after {
  content: "";
  width: 16px;
  float: left;
  height: 16px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/news_more1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.newsNous li>h2>a {
  float: left;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #333;
}
.newsNous li>h2>a:hover {
  text-decoration: underline;
  color: rgba(10, 110, 219, 1);
}
.newsNous li .newsTxtBox {
  display: none;
  width: 100%;
  overflow: hidden;
  transition: initial;
}
.newsNous li .newsTxtBox .newsTxt {
  display: block;
  overflow: hidden;
  height: 240px;
  line-height: 30px;
  font-size: 13px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
}
.newsNous li.actived>h2::after {
  background-image: url(../images/news_more2.png);
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .newsList li>a {
    padding: 10px;
  }
  .newsRight {
    width: 40.5%;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .newsContect {
    margin-top: 0;
  }
  .newsLeft {
    width: 100%;
  }
  .newsList li>a {
    padding: 5px;
  }
  .newsList li>a .newsImg {
    width: 120px;
  }
  .newsList li>a .newsR {
    width: calc(100% - 120px);
    padding-left: 10px;
  }
  .newsList li>a .newsR .newsTxt {
    line-height: 26px;
  }
  .newsRight {
    width: 100%;
    margin-top: 15px;
  }
  .newsTitle {
    line-height: 30px;
    font-size: 20px;
  }
  .newsTitle::after {
    width: 50px;
    margin-left: 10px;
  }
  .newsNous li {
    padding: 5px 0;
  }
  .newsNous li .newsTxtBox .newsTxt {
    height: auto;
    line-height: 24px;
  }
}
/* END-main */

/* 关于我们 */
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
.company img{
  display: block;
	max-width: 100%;
	height: auto;
}

@media (max-width: 767px) {
  .company {
    line-height: 24px;
  }
}
/* END-关于我们 */

/* 新闻资讯 */
.dqwzContect .newsList li {
  margin: 0 0 20px 0;
}

.xwxq {
  display: block;
  overflow: hidden;
}
.xwxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
}
.xwxqTime {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 12px;
  color: #666;
  line-height: 1.1;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}
.xwxqContect {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  padding-top: 10px;
}
.xwxqContect img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

@media (max-width: 767px) {
  .dqwzContect .newsList li {
    margin: 0 0 10px 0;
  }
  .xwxqTitle {
    font-size: 16px;
  }
  .xwxqContect {
    line-height: 24px;
  }
}
/* END-新闻资讯 */

/* 产品中心 */
.cpxq {
  display: block;
  overflow: hidden;
}
.cpxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}
.cpxqContect {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  padding-top: 10px;
}
.cpxqContect img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

@media (max-width: 767px) {
  .cpxqTitle {
    font-size: 16px;
  }
  .cpxqContect {
    line-height: 24px;
  }
}
/* END-产品中心 */

/* 联系我们 */
.contactTxt {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
}
.contactMap {
  width: 100%;
  overflow: hidden;
  height: 350px;
  border: none;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .contactTxt {
    font-size: 14px;
    line-height: 24px;
  }
  .contactMap {
    margin-top: 10px;
  }
}
/* END-联系我们 */