/* 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 */
/* banner大图 */
.banner {
  width: 100%;
  position: relative;
}
.banner .bannerSwiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner .swiper-pagination {
  bottom: 15.5%;
  display: flex;
  align-items: center;
  padding: 0 7%;
  height: 22px;
}
.banner .swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  float: left;
  opacity: 1;
  position: relative;
  background: none;
}
.banner .swiper-pagination-bullet::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.banner .swiper-pagination-bullet::after {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.banner .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px 0 0 !important;
}
.banner .swiper-pagination-bullet-active {
  opacity: 1;
}
.banner .swiper-pagination-bullet-active::before {
  border-color: rgba(255, 255, 255, 0.2);
}
.banner .swiper-pagination-bullet-active::after {
  background-color: #fff;
}

/* 箭头 */
.banner .banner-prev,
.banner .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  width: 30px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.banner .banner-next {
  left: initial;
  right: 2%;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner .swiper-pagination {
    bottom: 10px;
    padding: 0 5%;
    height: 2px;
  }
  .banner .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    background: #fff;
    border-radius: 0;
  }
  .banner .swiper-pagination-bullet::before,
  .banner .swiper-pagination-bullet::after {
    display: none;
  }
  .banner .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px 0 0 !important;
  }
  .banner .swiper-pagination-bullet-active {
    opacity: 1;
    width: 20px;
  }
}

/* 洛银产品 */
.cp {
  width: 100%;
  overflow: hidden;
  padding: 65px 0;
}
.cpTitle {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-size: 30px;
  color: #1b1b1b;
}
.cpTitle::after {
  content: "";
  display: block;
  overflow: hidden;
  width: 70px;
  height: 3px;
  background-color: #009944;
  margin-top: 15px;
}
.cpList {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  width: 102%;
  margin-left: -1%;
}
.cpList>li {
  width: 18%;
  float: left;
  margin: 0 1% 2% 1%;
}
.cpList>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px;
}
.cpList>li>a .cpImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.cpList>li>a .cpImg::before {
  content: "";
  display: block;
  padding-top: 86.88525%;
}
.cpList>li>a .cpTxt {
  display: block;
  overflow: hidden;
  height: 62px;
  line-height: 62px;
  text-align: center;
  font-size: 18px;
  color: #1a1a1a;
  position: relative;
}
.cpList>li>a .cpTxt::after {
  content: "";
  width: 54px;
  height: 2px;
  float: left;
  background-color: #d0d0d0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.4s;
}
.cpList>li>a:hover {
  background-color: #009944;
}
.cpList>li>a:hover .cpTxt {
  color: #fff;
}
.cpList>li>a:hover .cpTxt::after {
  background-color: #fff;
}

@media (max-width: 1200px) {
  .cp {
    padding: 50px 0;
  }
  .cpList>li {
    width: 23%;
  }
}

@media (max-width: 991px) {
  .cp {
    padding: 30px 0;
  }
  .cpList>li {
    width: 31.3333%;
  }
}

@media (max-width: 767px) {
  .cp {
    padding: 15px 0;
  }
  .cpTitle {
    line-height: 30px;
    font-size: 20px;
  }
  .cpTitle::after {
    margin-top: 5px;
  }
  .cpList {
    padding-top: 15px;
  }
  .cpList>li {
    width: 48%;
  }
  .cpList>li>a {
    padding: 10px;
  }
  .cpList>li>a .cpTxt {
    height: 38px;
    line-height: 38px;
    font-size: 16px;
  }
}

.bigBox {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* 关于洛银 */
.about {
  width: 50%;
  float: left;
  background: url(../images/gsjj_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 65px 5.5%;
}
.aboutContect {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding-top: 40px;
}
.aboutImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.aboutImg::before {
  content: "";
  display: block;
  padding-top: 41.08762%;
}
.aboutTitle {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
  line-height: 24px;
  font-size: 16px;
  color: #323232;
  font-weight: bold;
}
.aboutTitle>span {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  height: 150px;
  line-height: 30px;
  font-size: 16px;
  color: #3f3f3f;
  margin-top: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.aboutMore {
  display: block;
  overflow: hidden;
  padding-top: 15px;
}
.aboutMore>a {
  display: block;
  width: 162px;
  height: 54px;
  border: 2px solid #009944;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: #009944;
}
.aboutMore>a:hover {
  background-color: #009944;
  color: #fff;
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 4%;
  }
}

@media (max-width: 991px) {
  .about {
    width: 100%;
    padding: 30px 4%;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px;
  }
  .aboutContect {
    padding-top: 15px;
  }
  .aboutContect {
    padding-top: 10px;
  }
  .aboutTitle {
    margin-top: 10px;
    line-height: 20px;
    font-size: 14px;
  }
  .aboutTitle>span {
    line-height: 24px;
    font-size: 18px;
  }
  .aboutTxt {
    height: auto;
    line-height: 24px;
    font-size: 14px;
    margin-top: 10px;
    -webkit-line-clamp: initial;
  }
  .aboutMore {
    padding-top: 10px;
  }
  .aboutMore>a {
    width: 112px;
    height: 34px;
    line-height: 30px;
    font-size: 14px;
  }
}

/* 新闻资讯 */
.news {
  width: 50%;
  float: left;
  background-color: #eaeaea;
  padding: 65px 5.5%;
}
.newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 40px;
}
.newsList>li {
  width: calc(50% - 20px);
  float: left;
  margin-bottom: 40px;
}
.newsList>li .newsImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.newsList>li .newsImg::before {
  content: "";
  display: block;
  padding-top: 54.3974%;
}
.newsList>li .newsName {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 15px;
  font-size: 24px;
  color: #1f1f1f;
}
.newsList>li .newsName>span {
  float: left;
  padding-right: 45px;
  background: url(../images/news_jiantou.png) no-repeat right center;
}
.newsList>li:hover .newsImg>img {
  transform: scale(1.1);
}
.newsList>li:hover .newsName {
  color: #009944;
}
.newsContect {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 10px;
}
.newsSwiper {
  width: 100%;
  float: left;
  border-top: 1px solid #909090;
  border-bottom: 1px solid #909090;
  padding: 30px 0;
}
.newsSwiper .newsTime {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #005cba;
  text-decoration: underline;
}
.newsSwiper .newsTitle {
  display: block;
  line-height: 34px;
  overflow: hidden;
  margin-top: 25px;
  font-size: 24px;
  color: #2d2d2d;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsSwiper .newsTxt {
  display: block;
  height: 48px;
  line-height: 24px;
  overflow: hidden;
  margin-top: 15px;
  font-size: 16px;
  color: #535353;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsSwiper .swiper-slide:hover .newsTitle {
  color: #005cba;
}
.news-prev,
.news-next {
  width: 30px;
  float: left;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background-color: #858585;
  font-size: 20px;
  color: #fff;
  margin: 85px 15px 0 0;
  cursor: pointer;
}
.news-prev:hover,
.news-next:hover {
  background-color: #005cba;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 4%;
  }
}

@media (max-width: 991px) {
  .news {
    width: 100%;
    padding: 30px 4%;
  }
  .newsList>li {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  .newsSwiper {
    padding: 20px 0;
  }
  .news-prev, .news-next {
    margin: 15px 15px 0 0;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px;
  }
  .newsList {
    padding-top: 10px;
  }
  .newsList>li {
    width: calc(50% - 5px);
    margin-bottom: 10px;
  }
  .newsList>li .newsName {
    line-height: 24px;
    margin-top: 10px;
    font-size: 16px;
  }
  .newsSwiper {
    padding: 10px 0;
  }
  .newsSwiper .newsTime {
    line-height: 20px;
    font-size: 14px;
  }
  .newsSwiper .newsTitle {
    line-height: 30px;
    margin-top: 5px;
    font-size: 18px;
  }
  .newsSwiper .newsTxt {
    margin-top: 5px;
    font-size: 14px;
  }
  .news-prev, .news-next {
    margin: 10px 10px 0 0;
  }
}
/* END-main */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
}
.dqwzBanner {
  width: 100%;
  float: left;
  position: relative;
}
.dqwzBanner>img {
  width: 100%;
  display: block;
  height: auto;
}
.dqwzTitle {
  width: 100%;
  float: left;
  position: absolute;
  left: 0;
  bottom: 20px;
}
.menuList {
  display: block;
  overflow: hidden;
}
.menuList>li {
  width: 162px;
  float: left;
  margin: 0 28px 28px 0;
}
.menuList>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #fff;
  padding: 2px;
}
.menuList>li>a>span {
  display: block;
  overflow: hidden;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.menuList>li:hover>a,
.menuList>li.menuActive>a {
  border-color: #b9b9b9;
}
.menuList>li:hover>a>span,
.menuList>li.menuActive>a>span {
  background-color: #fff;
  color: #009944;
  font-weight: bold;
}

.dqwzContect {
  width: 100%;
  float: left;
  padding: 70px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.company>span {
  font-weight: bold;
  color: #009944;
}

@media (max-width: 1200px) {
  .dqwzContect {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .dqwzTitle {
    bottom: 10px;
  }
  .menuList>li {
    width: 24%;
    margin: 0 1% 1% 0;
  }
  .dqwzContect {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .dqwzTitle {
    position: relative;
    bottom: 0;
  }
  .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;
    background-color: #009944;
  }
  .menuTitle::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menuList {
    display: none;
  }
  .menuList>li {
    width: 100%;
    margin: 3px 0 0 0;
  }
  .menuList>li>a>span {
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
  }
  .menuList>li:hover>a,
  .menuList>li.menuActive>a {
    border-color: #009944;
  }
  .menuList>li:hover>a>span,
  .menuList>li.menuActive>a>span {
    background-color: #009944;
    color: #fff;
  }
  .dqwzContect {
    padding: 15px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* HIWIN/ABBA/TBI */
.cpTxts {
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #999999;
  font-size: 16px;
  line-height: 24px;
  color: #4e4e4e;
  padding-bottom: 40px;
}
.dqwzContect .cpList>li {
  width: 23%;
}

.dqwzNav {
  width: 100%;
  float: left;
  display: block;
  overflow: hidden;
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  margin-top: 30px;
  font-size: 16px;
  color: #898989;
}
.dqwzNav>a {
  color: #898989;
  margin: 0 15px;
}
.dqwzNav>a:last-child {
  color: #009944;
}
.dqwzNav>a:hover {
  color: #009944;
  text-decoration: underline;
}


.cpxq {
  display: block;
  overflow: hidden;
}
.cpxqTitle {
  width: 100%;
  float: left;
  font-size: 36px;
  color: #009944;
  line-height: 40px;
  margin-bottom: 25px;
}
.cpxqLeft {
  width: 44%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.cpxqLeft::before {
  content: "";
  display: block;
  padding-top: 74.6106%;
}
.cpxqRight {
  width: 56%;
  float: right;
  padding-left: 35px;
}
.cpxqBox {
  width: 100%;
  float: left;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 30px;
  color: #5f5f5f;
  min-height: 163px;
}
.cpxqBox .cpxqSubTitle {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 22px;
  color: #383838;
  margin-bottom: 15px;
}
.cpxqMore {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.cpxqMore>a {
  width: 174px;
  float: left;
  height: 62px;
  border: 3px solid #9b9b9b;
  background-color: #9b9b9b;
  text-align: center;
  line-height: 56px;
  margin: 0 2px 2px 0;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
}
.cpxqMore>a:hover {
  background-color: #f7f7f7;
  color: #009944;
  border-color: #009944;
}

.cpxqNav {
  width: 100%;
  float: left;
  margin-top: 55px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
.cpxqNav>li {
  min-width: 136px;
  float: left;
  border-right: 1px solid #ccc;
  padding: 0 30px;
  line-height: 66px;
  font-size: 22px;
  color: #373737;
  text-align: center;
  cursor: pointer;
}
.cpxqNav>li:last-child {
  border: none;
}
.cpxqNav>li:hover,
.cpxqNav>li.cpxqActive {
  background-color: #009944;
  color: #fff;
  font-weight: bold;
}
.cpxqContect {
  width: 100%;
  float: left;
  margin-top: 40px;
  font-size: 16px;
  color: #333;
  line-height: 30px;
}
.cpxqContect>div {
  display: none;
}
.cpxqContect>div img{
  max-width: 100%;
	height: auto;
}
.cpxqContect>div table{
  border-collapse:collapse !important;
  max-width: 100% !important;
	height: auto !important;
	overflow: auto !important;
}
.cpxqContect>div table td,.cpxqContect>div table th{
  border: 1px #ccc solid !important;
  border-collapse:collapse !important;
	outline:none !important;
}
.cpxqContect>div:first-child {
  display: block;
}
.cpxqList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cpxqList>li {
  width: calc(50% - 15px);
  float: left;
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  border-left: 8px solid #9b9b9b;
  padding: 25px;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
}
.cpxqList>li>.cpxqListLeft {
  flex: 1;
  float: left;
  position: relative;
}
.cpxqList>li>.cpxqListLeft::before {
  content: "";
  width: 4px;
  height: 25px;
  background-color: #009944;
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
}
.cpxqList>li>.cpxqListLeft>a {
  float: left;
  max-width: 100%;
  overflow: hidden;
  color: #009944;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cpxqList>li>.cpxqListLeft>a:hover {
  text-decoration: underline;
  color: #009944;
}
.cpxqList>li>.cpxqListRight {
  float: right;
}
.cpxqList>li>.cpxqListRight>a {
  width: 40px;
  float: left;
  height: 40px;
  line-height: 38px;
  border: 1px solid #009944;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  color: #009944;
  margin: 0 10px;
}
.cpxqList>li>.cpxqListRight>a:hover {
  background-color: #009944;
  color: #fff;
}

.otherCp {
  width: 100%;
  float: left;
  margin-top: 85px;
}
.otherCpTitle {
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 30px;
  color: #333;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
}
.otherCpList {
  display: block;
  overflow: hidden;
  padding-top: 20px;
  width: 101%;
  margin-left: -0.5%;
}
.otherCpList>li {
  width: 15.6666%;
  float: left;
  margin: 0 0.5% 1% 0.5%;
}
.otherCpList>li>a {
  display: block;
  overflow: hidden;
  height: 62px;
  line-height: 58px;
  text-align: center;
  border: 2px solid #e1e1e1;
  border-left-color: #009944;
  font-size: 18px;
  color: #009944;
  background-color: #fff;
  padding: 0 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.otherCpList>li>a:hover {
  background-color: #009944;
  border-color: #009944;
  color: #fff;
}

@media (max-width: 1400px) {
  .otherCpList>li {
    width: 19%;
  }
}

@media (max-width: 1200px) {
  .otherCpList>li {
    width: 24%;
  }
}

@media (max-width: 991px) {
	.dqwzContect .cpList>li {
	  width: 31.3333%;
	}
  .dqwzNav {
    margin-top: 15px;
  }
  .cpxqLeft {
    width: 100%;
  }
  .cpxqRight {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .cpxqBox {
    margin-bottom: 15px;
  }
  .cpxqNav {
    margin-top: 30px;
  }
  .cpxqList>li {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
  }
  .cpxqList>li>.cpxqListRight>a {
    margin: 0 5px;
  }
  .otherCp {
    margin-top: 30px;
  }
  .otherCpList>li {
    width: 32.3333%;
  }
}

@media (max-width: 767px) {
	.dqwzContect .cpList>li {
	  width: 48%;
	}
	
  .cpxqTitle {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .cpxqBox {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
    min-height: initial;
  }
  .cpxqBox .cpxqSubTitle {
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .cpxqMore {
    margin-top: 10px;
  }
  .cpxqMore>a {
    width: calc(50% - 4px);
    height: 46px;
    line-height: 40px;
    font-size: 16px;
  }
  .cpxqNav {
    margin-top: 10px;
  }
  .cpxqNav>li {
    min-width: 33.3333%;
    padding: 0 10px;
    line-height: 40px;
    font-size: 16px;
  }
  .cpxqList>li {
    margin-bottom: 10px;
    padding: 5px 10px;
    line-height: 32px;
  }
  .cpxqList>li>.cpxqListLeft::before {
    content: "";
    width: 4px;
    height: 25px;
    background-color: #009944;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cpxqList>li>.cpxqListLeft>a {
    font-size: 16px;
  }
  .cpxqList>li>.cpxqListRight>a {
    width: 32px;
    height: 32px;
    line-height: 30px;
    font-size: 14px;
    margin: 0 2px;
  }
  .cpxqContect {
    line-height: 24px;
    margin-top: 10px;
  }
  .otherCp {
    margin-top: 15px;
  }
  .otherCpTitle {
    line-height: 30px;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .otherCpList {
    padding-top: 10px;
  }
  .otherCpList>li {
    width: 49%;
  }
  .otherCpList>li>a {
    height: 36px;
    line-height: 32px;
    font-size: 16px;
  }
.cpxqContect>div table{
  border-collapse:collapse !important;
  width: 100% !important;
	height: auto !important;
	overflow: auto !important;
}
.cpxqContect>div img{
    width: 100% !important;
	height: auto !important;
}
}
/* END-HIWIN/ABBA/TBI */

/* 技术支持 */
.dqwzBannerTitle {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 48px;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

.mainTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 30px;
  color: #141414;
  line-height: 1.2;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .dqwzBannerTitle {
    font-size: 30px;
  }
  .mainTitle {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/* END-技术支持 */

/* 图面下载 */
.drawingList {
  display: block;
  overflow: hidden;
  width: 102%;
  margin-left: -1%;
}
.drawingList>li {
  width: 31.3333%;
  float: left;
  margin: 0 1% 2% 1%;
}
.drawingList>li>a {
  display: flex;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #999;
  border-radius: 15px;
  padding: 20px;
}
.drawingList>li>a .drawingImg {
  width: 144px;
  float: left;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.drawingList>li>a .drawingImg::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.drawingList>li>a .drawingRight {
  width: calc(100% - 144px);
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  text-align: center;
}
.drawingList>li>a .drawingRight .drawingTitle {
  width: 100%;
  overflow: hidden;
  line-height: 30px;
  text-align: center;
  font-size: 24px;
  color: #1e1e1e;
}
.drawingList>li>a .drawingRight .drawingTxt {
  width: 100%;
  overflow: hidden;
  line-height: 28px;
  text-align: center;
  font-size: 18px;
  color: #4c4c4c;
  margin-top: 15px;
}
.drawingList>li>a:hover {
  background-color: #009944;
  border-color: #009944;
}
.drawingList>li>a:hover .drawingRight .drawingTitle,
.drawingList>li>a:hover .drawingRight .drawingTxt {
  color: #fff;
}

@media (max-width: 1200px) {
  .drawingList>li {
    width: 48%;
  }
}

@media (max-width: 991px) {
  .drawingList>li {
    width: 98%;
  }
}

@media (max-width: 767px) {
  .drawingList>li {
    width: 48%;
  }
  .drawingList>li>a {
    border-radius: 10px;
    padding: 10px;
    flex-wrap: wrap;
  }
  .drawingList>li>a .drawingImg {
    width: 100%;
  }
  .drawingList>li>a .drawingRight {
    width: 100%;
  }
  .drawingList>li>a .drawingRight .drawingTitle {
    font-size: 18px;
    margin-top: 5px;
  }
  .drawingList>li>a .drawingRight .drawingTxt {
    line-height: 20px;
    font-size: 14px;
    margin-top: 5px;
  }

}
/* END-图面下载 */

/* 新闻中心 */
.xwList {
  display: block;
  overflow: hidden;
}
.xwList>li {
  display: block;
  overflow: hidden;
  margin-bottom: 22px;
}
.xwList>li>a {
  display: flex;
  overflow: hidden;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
}
.xwList>li>a .xwImg {
  width: 314px;
  float: left;
  overflow: hidden;
  position: relative;
}
.xwList>li>a .xwRight {
  width: calc(100% - 314px);
  float: left;
  padding: 10px 0 20px 30px;
}
.xwList>li>a .xwRight .xwTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #413232;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xwList>li>a .xwRight .xwTxt {
  display: block;
  overflow: hidden;
  height: 120px;
  line-height: 24px;
  font-size: 16px;
  color: #646464;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin: 15px 0;
}
.xwList>li>a .xwRight .xwMore {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: #009944;
  text-decoration: underline;
}
.xwList>li>a:hover {
  background-color: #009944;
}
.xwList>li>a:hover .xwRight .xwTitle,
.xwList>li>a:hover .xwRight .xwTxt,
.xwList>li>a:hover .xwRight .xwMore {
  color: #fff;
}

.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: 16px;
  line-height: 32px;
  padding-top: 10px;
	margin-bottom: 20px;
}
.xwxqContect img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .xwList>li>a .xwImg {
    width: 35%;
  }
  .xwList>li>a .xwRight {
    width: 65%;
  }
  .xwList>li>a .xwRight .xwTxt {
    height: 72px;
    -webkit-line-clamp: 3;
    margin: 10px 0;
  }
}

@media (max-width: 767px) {
  .xwList>li {
    margin-bottom: 10px;
  }
  .xwList>li>a {
    padding: 10px;
    border-radius: 10px;
  }
  .xwList>li>a .xwRight {
    padding: 5px 0 5px 15px;
  }
  .xwList>li>a .xwRight .xwTitle {
    line-height: 24px;
    font-size: 16px;
  }
  .xwList>li>a .xwRight .xwTxt {
    height: 48px;
    -webkit-line-clamp: 2;
    margin: 5px 0;
  }
  .xwList>li>a .xwRight .xwMore {
    line-height: 20px;
    font-size: 14px;
  }

  .xwxqTitle {
    font-size: 16px;
  }
  .xwxqContect {
    line-height: 24px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
}
.contactTxt {
  width: 38%;
  float: left;
  font-size: 16px;
  line-height: 36px;
  color: #313131;
  padding: 40px;
}
.contactTxt>span {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 22px;
  color: #009944;
  font-weight: bold;
  margin-bottom: 15px;
}
.contactMap {
  width: 62%;
  float: right;
  overflow: hidden;
  height: 415px;
  border: none;
}

@media (max-width: 1200px) {
  .contactTxt {
    width: 42%;
    padding: 30px;
  }
  .contactMap {
    width: 58%;
  }
}

@media (max-width: 991px) {
  .contactTxt {
    width: 100%;
  }
  .contactMap {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contactTxt {
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .contactTxt>span {
    line-height: 30px;
    font-size: 18px;
    margin-bottom: 5px;
  }
  .contactMap {
    width: 100%;
    height: 250px;
  }

}
/* END-联系我们 */