/*
 * @制作者: 庄晓辉
 * @创建时间: 2022-10-24 11:50:09
 * @上次修改者: 庄晓辉
 * @上次修改时间: 2022-10-24 11:50:09
 */

/* 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 */
/* 热门产品 */
.hotMain {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.mainLeft {
  width: 285px;
  float: left;
  position: relative;
}
.mainLeft::before {
  content: "";
  width: 384px;
  float: left;
  height: 144px;
  background: url(../images/menu_left_bj.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: -2px;
  bottom: 0;
}
.leftMenu {
  width: 100%;
  float: left;
  background-color: #f5f5f5;
  position: relative;
  z-index: 2;
}
.menuTitle {
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #040203;
  padding: 25px 30px;
}
.menuTitle>img {
  width: 50px;
  float: left;
  height: 50px;
  margin-right: 20px;
}
.menuTitle>div {
  display: block;
  overflow: hidden;
  line-height: 16px;
  font-size: 14px;
  color: #666;
}
.menuTitle>div>span {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 18px;
  color: #fff;
}

.menuList {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menuList>li {
  display: block;
  overflow: hidden;
}
.menuList>li>a {
  display: block;
  overflow: hidden;
  height: 49px;
  line-height: 48px;
  font-size: 16px;
  color: #040203;
  font-weight: bold;
  padding: 0 30px;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #dcdddf;
}
.menuList>li:hover>a,
.menuList>li.menuActive>a {
  color: #e1000f;
  text-decoration: underline;
}
.menuChildList {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menuChildList>li {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
}
.menuChildList>li>a {
  float: left;
  max-width: 100%;
  font-size: 16px;
  color: #040203;
  padding-left: 25px;
  background: url(../images/menu_jiantou1.png) no-repeat left center;
}
.menuChildList>li>a:hover {
  background: url(../images/menu_jiantou2.png) no-repeat left center;
  color: #e1000f;
  text-decoration: underline;
}
.menuChildList>li>a.act {
  background: url(../images/menu_jiantou2.png) no-repeat left center;
  color: #e1000f;
  text-decoration: underline;
}
.menuMore {
  display: block;
  overflow: hidden;
  padding: 0 30px;
  margin: 20px 0;
}
.menuMore>a {
  width: 168px;
  height: 38px;
  float: left;
  background-color: #e1000f;
  border-radius: 5px;
  text-align: center;
  font-size: 15px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.menuMore>a>span {
  float: left;
  background: url(../images/menu_more.png) no-repeat right center;
  padding-right: 20px;
}
.menuMore>a:hover {
  width: 100%;
}

.mainRight {
  width: 895px;
  float: right;
}
.dqwzTitle {
  width: 100%;
  float: left;
  margin-top: 30px;
  position: relative;
}
.dqwzTitle::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #e5e6e8;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.dqwzTitle>span {
  float: left;
  position: relative;
  z-index: 2;
  background-color: #fff;
  font-size: 16px;
  color: #040203;
  font-weight: bold;
  padding-right: 20px;
}
.dqwzContect {
  width: 100%;
  float: left;
  padding-top: 25px;
}
.hotcpList {
  display: block;
  overflow: hidden;
  width: 915px;
}
.hotcpList>li {
  width: 285px;
  float: left;
  margin: 0 20px 0 0;
}
.hotcpList>li .hotcpImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #e5e5e5;
}
.hotcpList>li .hotcpImg::before {
  content: "";
  display: block;
  padding-top: 79.649123%;
}
.hotcpList>li .hotcpTxt {
  display: block;
  overflow: hidden;
  height: 46px;
  line-height: 46px;
  text-align: center;
  font-size: 16px;
  color: #040203;
}
.hotcpList>li:hover .hotcpImg {
  border-color: #e1000f;
}
.hotcpList>li:hover .hotcpImg>img {
  transform: scale(1.1);
}
.hotcpList>li:hover .hotcpTxt {
  color: #e1000f;
}

@media (max-width: 1200px) {
  .hotMain {
    padding: 50px 0;
  }
  .mainLeft {
    width: 24%;
  }
  .menuTitle {
    padding: 20px;
  }
  .mainRight {
    width: 74%;
  }
  .hotcpList {
    width: 102%;
    margin-left: -1%;
  }
  .hotcpList>li {
    width: 31.3333%;
    margin: 0 1%;
  }
}

@media (max-width: 991px) {
  .hotMain {
    padding: 30px 0;
  }
  .mainLeft {
    width: 29%;
  }
  .menuTitle {
    padding: 20px 15px;
  }
  .menuTitle>img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .menuMore>a {
    width: 120px;
  }
  .mainRight {
    width: 69%;
  }
}

@media (max-width: 767px) {
  .hotMain {
    padding: 0;
  }
  .mainLeft {
    width: 100%;
  }
  .mainLeft::before {
    display: none;
  }
  .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;
  }
  .menuList>li>a {
    height: 41px;
    line-height: 40px;
    padding: 0 20px;
  }
  .menuChildList>li {
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
  }
  .mainRight {
    width: 100%;
  }
  .dqwzContect {
    padding: 15px 0;
  }
  .hotcpList>li {
    width: 48%;
    margin: 0 1%;
  }
  .hotMain .hotcpList>li:last-child {
    display: none;
  }
  .hotcpList>li .hotcpTxt {
    height: 40px;
    line-height: 40px;
  }
}

/* 横幅 */
.hf {
  width: 100%;
  overflow: hidden;
  background: url(../images/hf_bj.jpg) no-repeat center center;
  background-size: cover;
  min-height: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.hf>.container {
  width: 95%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.hfLeft {
  float: left;
  color: #fff;
  margin-left: -130px;
  line-height: 34px;
  font-size: 18px;
}
.hfLeft>span {
  display: block;
  overflow: hidden;
  line-height: 64px;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
}
.hfRight {
  float: right;
  padding-left: 86px;
  line-height: 30px;
  font-size: 18px;
  color: #fff;
  background: url(../images/hf_dianhua.png) no-repeat left center;
  margin-right: 46px;
}
.hfRight>span {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  color: #e1000f;
  font-weight: bold;
}

@media (max-width: 1500px) {
  .hfLeft {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .hfLeft {
    width: 70%;
  }
  .hfRight {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .hfLeft {
    width: 60%;
    font-size: 16px;
    line-height: 30px;
  }
  .hfLeft>span {
    line-height: 44px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .hf {
    padding: 15px 0;
    min-height: initial;
  }
  .hf>.container {
    justify-content: center;
  }
  .hfLeft {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
  }
  .hfLeft>span {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 5px;
  }
  .hfRight {
    padding-left: 60px;
    line-height: 24px;
    font-size: 16px;
    background: url(../images/hf_dianhua.png) no-repeat left center;
    background-size: contain;
    margin: 15px 0 0 0;
  }
  .hfRight>span {
    line-height: 30px;
    font-size: 20px;
  }
}

/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  background: url(../images/about_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 130px 0;
}
.aboutTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  margin-top: 15px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  padding-left: calc(41.75% + 55px);
}
.aboutTitle>span {
  display: block;
  overflow: hidden;
  line-height: 48px;
  font-size: 48px;
  text-transform: uppercase;
}
.aboutContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.aboutLeft {
  width: 41.75%;
  float: left;
  overflow: hidden;
  position: relative;
  margin-top: -123px;
}
.aboutRight {
  width: calc(58.25% - 55px);
  float: right;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  height: 216px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
}
.about .menuMore {
  margin: 24px 0 10px 0;
  padding: 0;
}
.about .menuMore>a:hover {
  width: 200px;
}
.aboutList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.aboutList>li {
  width: 33.3333%;
  float: left;
  display: flex;
  align-items: center;
}
.aboutList>li .aboutIcon {
  width: 68px;
  float: left;
  background-color: #040203;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
}
.aboutList>li .aboutIcon::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.aboutList>li .aboutSubTitle {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #040203;
}
.aboutList>li .aboutSubTitle>span {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .about {
    padding: 100px 0;
  }
  .aboutTitle {
    padding-left: calc(41.75% + 45px);
  }
  .aboutRight {
    width: calc(58.25% - 45px);
  }
}

@media (max-width: 991px) {
  .about {
    padding: 60px 0;
  }
  .aboutTitle {
    padding-left: calc(41.75% + 30px);
  }
  .aboutRight {
    width: calc(58.25% - 30px);
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .aboutTitle {
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .aboutTitle>span {
    line-height: 20px;
    font-size: 20px;
  }
  .aboutContect {
    margin-top: 10px;
  }
  .aboutLeft {
    width: 100%;
    margin-top: 0;
  }
  .aboutLeft::before {
    content: "";
    display: block;
    padding-top: 82%;
  }
  .aboutRight {
    width: 100%;
    margin-top: 10px;
  }
  .aboutTxt {
    line-height: 22px;
    height: auto;
    -webkit-line-clamp: inherit;
  }
  .about .menuMore {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
  }
  .about .menuMore>a:hover {
    width: 100%;
  }
}

/* 联系我们 */
.lxwm {
  width: 100%;
  float: left;
  background: url(../images/lxwm_bj.jpg) no-repeat center center;
  background-size: cover;
}
.lxwm>.container {
  display: flex;
  width: 95%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lxwmLeft {
  width: 60%;
  float: left;
  overflow: hidden;
  position: relative;
}
.lxwmRight {
  width: 40%;
  float: left;
  background-color: #fff;
  margin-top: -97px;
}
.lxwmTitle {
  display: block;
  overflow: hidden;
  border-top: 15px solid #e1000f;
  padding: 30px 40px;
  background: url(../images/lxwm_heng.png) repeat-x left bottom;
  line-height: 40px;
  font-size: 30px;
  color: #090708;
}
.lxwmTitle>span {
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 48px;
  color: #2c2a2b;
  opacity: 0.1;
  text-transform: uppercase;
}
.lxwmTitle::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background-color: #e1000f;
  margin-top: 7px;
}
.lxwmList {
  display: block;
  overflow: hidden;
  background-color: #e1000f;
}
.lxwmList>li {
  display: block;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #ea4d57;
  padding: 15px 40px;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
}
.lxwmList>li .lxwmIcon {
  width: 34px;
  float: left;
  height: 30px;
  position: relative;
  margin-right: 20px;
}
.lxwmList>li .lxwmIcon>img {
  left: initial;
}
.lxwmMore {
  display: flex;
  position: relative;
}
.lxwmMore .lxwmTitle {
  width: 100%;
  border: none;
  background: #fff;
}
.lxwmMore::before {
  content: "";
  width: 50px;
  float: right;
  height: 50px;
  background: url(../images/down_jiantou.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.lxwmMore::after {
  content: "";
  width: 100%;
  float: left;
  height: 20px;
  background-color: #e1000f;
  position: absolute;
  left: 0;
  bottom: -20px;
}

@media (max-width: 1200px) {
  .lxwmRight {
    margin-top: -70px;
  }
}

@media (max-width: 991px) {
  .lxwmLeft {
    width: 40%;
  }
  .lxwmRight {
    width: 60%;
    margin-top: -40px;
  }
}

@media (max-width: 767px) {
  .lxwmRight {
    width: 100%;
    margin: 15px 0;
  }
  .lxwmTitle {
    border-top: 5px solid #e1000f;
    padding: 15px 15px 30px 15px;
    line-height: 30px;
    font-size: 20px;
    text-align: center;
  }
  .lxwmTitle>span {
    line-height: 30px;
    font-size: 20px;
  }
  .lxwmTitle::after {
    margin: 5px auto 0 auto;
  }
  .lxwmList>li {
    padding: 15px 20px;
  }
  .lxwmMore .lxwmTitle {
    text-align: left;
  }
  .lxwmMore .lxwmTitle::after {
    margin: 5px 0 0 0;
  }
  .lxwmMore::after {
    height: 5px;
    bottom: -5px;
  }
}

/* 车间设备 */
.wrokshop {
  width: 100%;
  overflow: hidden;
  padding: 100px 0 60px 0;
}
.wrokshopTitle {
  text-align: center;
  border: none;
  background: none;
  padding: 0;
}
.wrokshopTitle::after {
  margin: 7px auto 0 auto;
}
.wrokshopSwiper {
  display: block;
  overflow: hidden;
  margin-top: 50px;
}
.wrokshopSwiper a {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.wrokshopSwiper a::before {
  content: "";
  display: block;
  padding-top: 70.63493%;
}
.wrokshopSwiper a .wrokshopTxt {
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: rgba(66, 66, 66, 0.8);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}
.wrokshopSwiper a .wrokshopTxt::before {
  content: "";
  width: 92%;
  float: left;
  height: 88%;
  background: url(../images/work_hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wrokshopSwiper a:hover .wrokshopTxt {
  width: 100%;
  height: 100%;
}
.wrokshop .menuMore {
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  justify-content: center;
}
.wrokshop .menuMore>a {
  background-color: #060305;
}
.wrokshop .menuMore>a:hover {
  width: 200px;
}

@media (max-width: 1200px) {
  .wrokshop {
    padding: 80px 0 50px 0;
  }
}

@media (max-width: 991px) {
  .wrokshop {
    padding: 50px 0 30px 0;
  }
  .wrokshopSwiper {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .wrokshop {
    padding: 15px 0;
  }
  .wrokshopSwiper {
    margin-top: 10px;
  }
  .wrokshop .menuMore {
    margin: 10px 0 0 0;
  }
  .wrokshop .menuMore>a:hover {
    width: 100%;
  }
}

/* 新闻资讯 */
.news {
  width: 100%;
  overflow: hidden;
  background-color: #fbfbfb;
  padding: 80px 0;
}
.newsList {
  display: block;
  overflow: hidden;
  width: 1224px;
  margin-top: 10px;
}
.newsList>li {
  width: 384px;
  float: left;
  margin: 30px 24px 0 0;
}
.newsList>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #fafafa;
}
.newsList>li>a .newsTitle {
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin: 25px 40px 20px 40px;
  line-height: 26px;
  font-size: 16px;
  color: #040203;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList>li>a .newsTitle::before {
  content: "";
  width: 26px;
  float: right;
  height: 26px;
  background: url(../images/news_jiantou.png) no-repeat center center;
  background-size: 100% 100%;
  margin-left: 10px;
}
.newsList>li>a .newsHeng {
  display: block;
  max-width: 84%;
  overflow: hidden;
  position: relative;
  height: 7px;
}
.newsList>li>a .newsHeng::before {
  content: "";
  width: 100%;
  height: 1px;
  float: left;
  background-color: #fbfbfb;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.newsList>li>a .newsHeng::before {
  content: "";
  width: 7px;
  height: 7px;
  float: left;
  background-color: #fbfbfb;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.newsList>li>a .newsTxt {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: #666;
  margin: 30px 40px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.newsList>li>a .newsTime {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-bottom: 45px;
  font-size: 13px;
  color: #e1000f;
  padding: 0 40px;
}
.newsList>li>a .newsTime>span {
  font-size: 30px;
  font-weight: bold;
  margin-right: 15px;
}
.newsList>li>a:hover .newsTitle {
  color: #e1000f;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .newsList {
    width: 102%;
    margin-left: -1%;
  }
  .newsList>li {
    width: 31.3333%;
    margin: 30px 1% 0 1%;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .newsList>li {
    margin: 20px 1% 0 1%;
  }
  .newsList>li>a .newsTitle {
    margin: 20px;
  }
  .newsList>li>a .newsTxt {
    margin: 20px;
  }
  .newsList>li>a .newsTime {
    margin-bottom: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .newsList>li {
    width: 98%;
    margin: 10px 1% 0 1%;
  }
  .newsList>li>a .newsTime {
    margin-bottom: 10px;
  }
}

/* END-main */

/* 关于赐东 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.company img{
  display: block;
  max-width: 100%;
	height: auto;
	margin: 5px auto;
}

@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于赐东 */

/* 产品展示 */
.cpxq {
  display: block;
  overflow: hidden;
}
.cpxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 20px;
}
.cpxqContect {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
}
.cpxqContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {

  .cpxqTitle {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .cpxqContect {
    line-height: 24px;
  }
}
/* END-产品展示 */

/* 新闻资讯 */
.xwList {
  display: block;
  overflow: hidden;
}
.xwList>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.xwList>li>a {
  display: flex;
  flex-wrap: wrap;
}
.xwList>li>a .xwImg {
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
}
.xwList>li>a .xwRight {
  width: 70%;
  float: left;
  padding-left: 30px;
}
.xwList>li>a .xwRight .xwTitle {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xwList>li>a .xwRight .xwTxt {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.xwList>li>a .xwRight .xwTime {
  display: block;
  overflow: hidden;
  font-size: 14px;
  color: #999;
  line-height: 20px;
}
.xwList>li>a:hover .xwRight .xwTitle {
  color: #e1000f;
}

.xwxq {
  display: block;
  overflow: hidden;
}
.xwxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 40px;
}
.xwxqTime {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #999;
  line-height: 24px;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 20px;
}
.xwxqContect {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.xwxqContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .xwList>li>a .xwImg {
    width: 40%;
  }
  .xwList>li>a .xwRight {
    width: 60%;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .xwList>li {
    margin-bottom: 15px;
  }
  .xwList>li>a .xwRight {
    padding-left: 10px;
  }
  .xwList>li>a .xwRight .xwTitle {
    line-height: 30px;
    font-size: 18px;
  }
  .xwList>li>a .xwRight .xwTxt {
    height: 66px;
    line-height: 22px;
    font-size: 14px;
    margin: 5px 0;
  }

  .xwxqTitle {
    font-size: 18px;
    line-height: 30px;
  }
  .xwxqTime {
    line-height: 20px;
    padding: 5px 0;
  }
  .xwxqContect {
    line-height: 24px;
  }
}
/* END-新闻资讯 */

/* 下载中心 */
.downloadList {
  display: block;
  overflow: hidden;
}
.downloadList>li {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.downloadList>li>a {
  float: right;
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #333;
}
.downloadList>li>a:hover {
  color: #e1000f;
}

@media (max-width: 767px) {
  .downloadList>li {
    line-height: 24px;
    font-size: 14px;
    padding: 5px;
  }
}
/* END-下载中心 */

/* 联系我们 */
.contactTxt {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
}
.contactMap {
  width: 100%;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px;
}

@media (max-width: 767px) {

  .contactTxt {
    font-size: 14px;
  }
  .contactMap {
    margin-top: 10px;
    height: 300px;
  }
}
/* END-联系我们 */