/* 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 */
/* 公司简介 */
.about {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.aboutTitle {
  text-align: center;
  font-weight: bold;
}
.aboutEn {
  line-height: 56px;
  font-size: 60px;
  color: #333;
  text-transform: uppercase;
}
.aboutCn {
  line-height: 44px;
  font-size: 36px;
  color: #e20c0c;
  margin-top: 10px;
  background: url(../images/title_heng.png) no-repeat center center;
}
.about .aboutTitle {
  text-align: left;
  margin-top: 10px;
}
.about .aboutTitle .aboutCn {
  background: none;
}
.aboutContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 45px;
}
.aboutLeft {
  width: 33.3334%;
  float: right;
  position: relative;
  margin-top: -165px;
}
.aboutLeft::before {
  content: "";
  width: 200px;
  float: left;
  height: 20px;
  background-color: #e20c0c;
  position: absolute;
  left: 0;
  bottom: -10px;
  z-index: 2;
}
.aboutLeft .aboutImg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-bottom: 10px solid #000;
}
.aboutLeft .aboutImg::before {
  content: "";
  display: block;
  padding-top: 55%;
}
.aboutRight {
  width: 59.25%;
  float: left;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  min-height: 180px;
  line-height: 30px;
  font-size: 14px;
  color: #666;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.aboutMore {
  display: block;
  overflow: hidden;
  margin-top: 10px;
}
.aboutMore>a {
  width: 142px;
  float: left;
  height: 36px;
  line-height: 36px;
  background-color: #e20c0c;
  text-align: center;
  border-radius: 5px;
  font-size: 13px;
  color: #fff;
}
.aboutMore>a:hover {
  background-color: #000;
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .aboutContect {
    margin-top: 25px;
  }
  .aboutLeft {
    width: 39%;
    margin-top: -145px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about .aboutTitle {
    text-align: center;
    margin-top: 0;
  }
  .aboutEn {
    line-height: 20px;
    font-size: 20px;
  }
  .aboutCn {
    line-height: 30px;
    font-size: 22px;
    margin-top: 5px;
  }
  .about .aboutTitle .aboutCn {
    background: url(../images/title_heng.png) no-repeat center center;
  }
  .aboutContect {
    margin-top: 10px;
  }
  .aboutLeft {
    width: 100%;
    margin: 0;
  }
  .aboutLeft::before {
    display: none;
  }
  .aboutLeft .aboutImg {
    border-bottom: 3px solid #000;
  }
  .aboutRight {
    width: 100%;
    margin-top: 10px;
  }
  .aboutTxt {
    min-height: initial;
    line-height: 24px;
    -webkit-line-clamp: initial;
  }
  .aboutMore {
    display: flex;
    justify-content: center;
  }
}

/* 服务项目 */
.fw {
  width: 100%;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 75px 0;
}
.fwSwiper {
  margin-top: 35px;
  padding-bottom: 16px;
}
.fwSwiper .fwBox {
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid #c9c9c9;
  padding: 5px;
  background-color: #fff;
}
.fwSwiper .fwBox .fwImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  border: 5px solid #e20c0c;
}
.fwSwiper .fwBox .fwImg::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.fwSwiper .fwTxt {
  display: block;
  overflow: hidden;
  height: 64px;
  line-height: 64px;
  text-align: center;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
/* 圆点 */
.fwSwiper .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
}
.fwSwiper .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  float: left;
  background: #000;
  opacity: 1;
  border-radius: 50%;
}
.fwSwiper .banner-roll>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}
.fwSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 32px;
  border-radius: 6px;
  background: #e20c0c;
}

@media (max-width: 1200px) {
  .fw {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .fw {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .fw {
    padding: 15px 0;
  }
  .fwSwiper {
    margin-top: 15px;
  }
  .fwSwiper .fwBox {
    border: 2px solid #c9c9c9;
    padding: 3px;
  }
  .fwSwiper .fwBox .fwImg {
    border: 2px solid #e20c0c;
  }
  .fwSwiper .fwTxt {
    height: 34px;
    line-height: 34px;
  }
}

/* 视频展示 */
.video {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
#certify {
  position: relative;
  margin-top: 20px;
}
#certify .swiper {
  padding-bottom: 48px;
}
#certify .swiper-slide {
  width: 100%;
  max-width: 640px;
}
#certify .swiper-slide .videoImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
#certify .swiper-slide .videoImg::before {
  content: "";
  display: block;
  padding-top: 45.3125%;
}
#certify .swiper-slide .videoImg>.videoHover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#certify .swiper-slide .videoImg>video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
#certify .swiper-slide .videoTxt {
  width: 100%;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #e20c0c;
  font-size: 16px;
  color: #fff;
}
#certify .swiper-slide-active .videoHover {
  display: none;
}
#certify .swiper-slide-active .videoTxt {
  background-color: #000;
}
#certify .swiper-pagination {
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
}
#certify .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 3px;
  border: none;
  border-radius: initial;
  background-color: #7f7f7f;
  width: 40px;
  height: 2px;
  opacity: 1;
}
#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #e20c0c;
  height: 3px;
}
#certify .swiper-button-prev,
#certify .swiper-button-next {
  left: -70px;
  width: 42px;
  height: 42px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: #fff;
  z-index: 2;
}
#certify .swiper-button-next {
  left: initial;
  right: -70px;
}
#certify .swiper-button-prev::after,
#certify .swiper-button-next::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transition: all 0.4s;
}
#certify .swiper-button-prev::after {
  border-right: 8px solid #000;
}
#certify .swiper-button-next::after {
  border-left: 8px solid #000;
}
#certify .swiper-button-prev:hover,
#certify .swiper-button-next:hover {
  border-color: #e20c0c;
}
#certify .swiper-button-prev:hover::after {
  border-right-color: #e20c0c;
}
#certify .swiper-button-next:hover::after {
  border-left-color: #e20c0c;
}

@media (max-width: 1200px) {
  .video {
    padding: 50px 0;
  }
  #certify .swiper-button-prev,
  #certify .swiper-button-next {
    left: 0;
  }
  #certify .swiper-button-next {
    left: initial;
    right: 0;
  }
}

@media (max-width: 991px) {
  .video {
    padding: 30px 0;
  }
  #certify .swiper {
    padding-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .video {
    padding: 15px 0;
  }
  #certify {
    margin-top: 10px;
  }
  #certify .swiper {
    padding-bottom: 10px;
  }
  #certify .swiper-slide .videoImg::before {
    padding-top: 56.25%;
  }
  #certify .swiper-slide .videoTxt {
    height: 40px;
    line-height: 40px;
  }
}

/* 服务流程 */
.fwlc {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.fwlcBj {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
.fwlcTitle {
  width: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.fwlcTitle>.aboutTitle {
  max-width: 1200px;
  text-align: left;
  margin: 0 auto;
}
.fwlcTitle>.aboutTitle>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}
.fwlcTitle>.aboutTitle .aboutEn,
.fwlcTitle>.aboutTitle .aboutCn {
  color: #fff;
  background: none;
}
.fwlcContect {
  width: 65%;
  height: 100%;
  background: url(../images/fw_bj2.png) no-repeat center center;
  background-size: 100% 100%;
  float: left;
  position: absolute;
  right: 0;
  top: 30px;
  display: flex;
  align-items: center;
}
.fwlcList {
  width: 100%;
  float: left;
  max-width: 880px;
  padding-left: 60px;
  display: flex;
  flex-wrap: wrap;
}
.fwlcList>li {
  width: calc(20% - 14px);
  float: left;
  margin: 7px 0 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: url(../images/fwlc_bj.png) no-repeat center top;
  background-size: 100% auto;
  padding: 40px 15px 15px 15px;
}
.fwlcList>li .fwlcNub {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  border: 3px solid #e20c0c;
  border-radius: 50%;
  background-color: #000;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.fwlcList>li .fwlcTxt {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  height: 144px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background-position: center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 1200px) {
  .fwlcTitle {
    padding: 0 1.5%;
  }
  .fwlcContect {
    width: 70%;
  }
  .fwlcList {
    padding: 0 1.5% 0 40px;
  }
}

@media (max-width: 991px) {
  .fwlc {
    background: url(../images/fw_bj1.jpg) no-repeat center center;
    background-size: cover;
    padding: 30px 20px;
  }
  .fwlcTitle {
    padding: 0;
    position: relative;
    top: 0;
    transform: initial;
  }
  .fwlcTitle>.aboutTitle {
    text-align: center;
  }
  .fwlcTitle>.aboutTitle>img {
    margin: 0 auto 10px auto;
  }
  .fwlcContect {
    width: 100%;
    position: relative;
    top: 0;
    transform: initial;
    background-size: 120% 120%;
    margin-top: 20px;
  }
  .fwlcList {
    padding: 20px;
  }
  .fwlcList>li {
    width: calc(20% - 14px);
    margin: 7px;
    padding: 20px 15px 15px 15px;
  }
}

@media (max-width: 767px) {
  .fwlc {
    padding: 15px;
  }
  .fwlcTitle>.aboutTitle>img {
    height: 30px;
    margin: 0 auto 5px auto;
  }
  .fwlcContect {
    margin-top: 10px;
  }
  .fwlcList {
    padding: 10px;
  }
  .fwlcList>li {
    width: calc(50% - 6px);
    margin: 3px;
    padding: 10px;
  }
}

/* 客户案例 */
.case {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.caseList {
  display: block;
  overflow: hidden;
  width: 1224px;
  padding-top: 35px;
}
.caseList>li {
  width: 282px;
  float: left;
  margin: 0 24px 30px 0;
}
.caseList>li .caseImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.caseList>li .caseImg::before {
  content: "";
  display: block;
  padding-top: 88.57143%;
}
.caseList>li .caseTxt {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  background-color: #000;
  text-align: center;
  font-size: 16px;
  color: #fff;
}
.caseList>li:hover .caseImg>img {
  transform: scale(1.1);
}
.caseList>li:hover .caseTxt {
  background-color: #e20c0c;
}
.case .aboutMore {
  display: flex;
  justify-content: center;
  margin: 0;
}

@media (max-width: 1200px) {
  .case {
    padding: 50px 0;
  }
  .caseList {
    width: 102%;
    margin-left: -1%;
  }
  .caseList>li {
    width: 23%;
    margin: 0 1% 30px 1%;
  }

}

@media (max-width: 991px) {
  .case {
    padding: 30px 0;
  }
  .caseList>li {
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .caseList {
    padding-top: 10px;
  }
  .caseList>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
}

/* 搬家常识 */
.move {
  width: 100%;
  overflow: hidden;
  background: url(../images/moving_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.moveList {
  display: block;
  overflow: hidden;
  margin-top: 65px;
}
.moveList>li {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 30px;
}
.moveList>li .moveImg {
  width: 20%;
  float: left;
  overflow: hidden;
  position: relative;
}
.moveList>li .moveImg>img {
  display: block;
  width: 100%;
  height: auto;
}
.moveList>li .moveLeft {
  width: 72.5%;
  float: left;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 7px;
}
.moveList>li .moveLeft::before {
  content: "";
  width: 100%;
  float: left;
  height: 7px;
  border-top: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.moveList>li .moveLeft .moveNub {
  width: 80px;
  float: left;
  height: 80px;
  background: url(../images/moving_nub.png) no-repeat center center;
  background-size: 100% 100%;
  margin: 8px 0 0 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 42px;
  color: #e20c0c;
  font-family: "Source Han Sans CN";
}
.moveList>li .moveLeft .moveBox {
  width: calc(100% - 80px);
  float: left;
  padding-left: 30px;
}
.moveList>li .moveLeft .moveBox .moveTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #000;
  font-weight: bold;
}
.moveList>li .moveLeft .moveBox .moveTxt {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #666;
}
.moveList>li:nth-child(even) {
  flex-direction: row;
}
.moveList>li:nth-child(even) .moveLeft {
  flex-direction: row-reverse;
}
.moveList>li:nth-child(even) .moveLeft .moveBox {
  padding: 0 30px 0 0;
  text-align: right;
}
.move .aboutMore {
  display: flex;
  justify-content: center;
  margin: 0;
}

@media (max-width: 1200px) {
  .move {
    padding: 50px 0;
  }
  .moveList {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .move {
    padding: 30px 0;
  }
  .moveList {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .move {
    padding: 15px 0;
  }
  .moveList {
    margin-top: 15px;
  }
  .moveList>li {
    margin-bottom: 10px;
  }
  .moveList>li .moveImg {
    width: 100%;
  }
  .moveList>li .moveLeft {
    width: 100%;
    padding: 10px 0;
  }
  .moveList>li .moveLeft .moveNub {
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 20px;
  }
  .moveList>li .moveLeft .moveBox {
    width: calc(100% - 40px);
    padding-left: 10px;
  }
  .moveList>li .moveLeft .moveBox .moveTxt {
    line-height: 20px;
    font-size: 12px;
  }
  .moveList>li:nth-child(even) .moveLeft .moveBox {
    padding: 0 10px 0 0;
  }
}

/* 资讯动态 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
}
.newsNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.newsNav>li {
  width: 120px;
  float: left;
  margin: 0 5px 10px 5px;
}
.newsNav>li>a {
  display: block;
  overflow: hidden;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #000;
  font-size: 13px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
}
.newsNav>li>a:hover {
  background-color: #e20c0c;
  border-color: #e20c0c;
  color: #fff;
}

.newsContect {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.newsLeft {
  width: 40%;
  float: left;
}
.newsLeft>a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.newsLeft>a .newsImg {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.newsLeft>a .newsImg::before {
  content: "";
  display: block;
  padding-top: 55.625%;
}
.newsLeft>a .newsBox {
  width: 100%;
  float: left;
  overflow: hidden;
  padding: 20px 25px 25px 25px;
  border: 1px solid #dcdcdc;
}
.newsLeft>a .newsBox .newsSubTitle {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsLeft>a .newsBox .newsSubTxt {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 13px;
  color: #666;
  margin-top: 7px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsLeft>a:hover {
  background-color: #e20c0c;
}
.newsLeft>a:hover .newsBox .newsSubTitle,
.newsLeft>a:hover .newsBox .newsSubTxt {
  color: #fff;
}

.newsList {
  width: 56.75%;
  float: right;
}
.newsList>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.newsList>li:last-child {
  margin: 0;
}
.newsList>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #e0e6e0;
  padding: 9px;
}
.newsList>li>a .newsTime {
  width: 110px;
  float: left;
  background-color: #e5e5e5;
  text-align: center;
  padding: 14px 0;
  line-height: 18px;
  font-size: 14px;
  color: #333;
  margin-right: 30px;
}
.newsList>li>a .newsTime>span {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-size: 48px;
  transition: initial;
}
.newsList>li>a .newsSubTitle {
  display: block;
  overflow: hidden;
  line-height: 26px;
  margin-top: 8px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList>li>a .newsSubTxt {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsList>li>a:hover {
  border-color: #e20c0c;
}
.newsList>li>a:hover .newsTime {
  background-color: #e20c0c;
  color: #fff;
}
.newsList>li>a:hover .newsSubTitle {
  color: #e20c0c;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .newsContect {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .newsContect {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .newsNav {
    margin-top: 10px;
  }
  .newsNav>li {
    width: 32.3333%;
    margin: 0 0.5% 1% 0.5%;
  }
  .newsContect {
    margin-top: 10px;
  }
  .newsLeft {
    width: 100%;
  }
  .newsLeft>a .newsImg {
    width: 35%;
  }
  .newsLeft>a .newsBox {
    width: 65%;
    padding: 10px;
  }
  .newsLeft>a .newsBox .newsSubTxt {
    line-height: 24px;
    height: 72px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .newsList {
    width: 100%;
  }
  .newsList>li {
    margin: 10px 0 0 0;
  }
  .newsList>li>a {
    padding: 4px;
  }
  .newsList>li>a .newsTime {
    width: 80px;
    padding: 15px 0;
    font-size: 14px;
    margin-right: 10px;
  }
  .newsList>li>a .newsTime>span {
    line-height: 30px;
    font-size: 30px;
  }
  .newsList>li>a .newsSubTitle {
    line-height: 24px;
    margin-top: 0;
  }
  .newsList>li>a .newsSubTxt {
    height: 48px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
}

/* END-main */

/* 公司简介 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
}
.mainLeft {
  width: 275px;
  float: left;
}
.leftMenu {
  width: 100%;
  float: left;
}
.menuTitle {
  display: block;
  overflow: hidden;
  line-height: 22px;
  text-align: center;
  background-color: #000;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  padding: 30px 0;
}
.menuTitle>span {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  font-weight: bold;
}
.menuList {
  display: block;
  overflow: hidden;
  transition: initial;
  border: 1px solid #d6d6d6;
}
.menuList>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #d6d6d6;
}
.menuList>li>a {
  display: block;
  overflow: hidden;
  padding: 0 50px;
}
.menuList>li>a>span {
  display: block;
  overflow: hidden;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
  color: #000;
  padding-left: 30px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menuList>li>a>span::before {
  content: "";
  width: 12px;
  float: left;
  height: 12px;
  border-radius: 50%;
  border: 3px solid #000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menuList>li:hover>a,
.menuList>li.menuActive>a {
  background-color: #e20c0c;
}
.menuList li:hover>a>span,
.menuList li.menuActive>a>span {
  color: #fff;
}
.menuList li:hover>a>span::before,
.menuList li.menuActive>a>span::before {
  border-color: #fff;
}

.mainRight {
  width: 890px;
  float: right;
}
.dqwzTitle {
  width: 100%;
  float: left;
  margin-top: 25px;
  line-height: 36px;
  border-bottom: 1px solid #ccc;
}
.dqwzName {
  float: left;
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.dqwzNav {
  float: right;
  font-size: 14px;
  color: #333;
}
.dqwzContect {
  width: 100%;
  float: left;
  padding-top: 20px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: #000;
}

@media (max-width: 1200px) {
  .mainLeft {
    width: 24%;
  }
  .menuList>li>a {
    padding: 0 40px;
  }
  .mainRight {
    width: 74%;
  }
}

@media (max-width: 991px) {
  .mainLeft {
    width: 29%;
  }
  .menuList>li>a {
    padding: 0 30px;
  }
  .mainRight {
    width: 69%;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .mainLeft {
    width: 100%;
  }
  .leftMenu {
    margin: 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;
  }
  .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 {
    padding: 0 15px;
  }
  .menuList>li>a>span {
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
  }
  .mainRight {
    width: 100%;
  }
  .dqwzContect {
    padding: 15px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-公司简介 */

/* 服务项目/客户案例 */
.dqwzContect .caseList {
  width: 915px;
  padding-top: 0;
}
.dqwzContect .caseList>li {
  width: 280px;
  margin: 0 25px 25px 0;
}

.cpxq {
  display: block;
  overflow: hidden;
}
.cpxqTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  color: #000;
  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;
  color: #000;
}
.cpxqContect img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .dqwzContect .caseList {
    width: 102%;
    margin-left: -1%;
  }
  .dqwzContect .caseList>li {
    width: 31.3333%;
    margin: 0 1% 25px 1%;
  }
}

@media (max-width: 991px) {
  .dqwzContect .caseList>li {
    margin: 0 1% 15px 1%;
  }
}

@media (max-width: 767px) {
  .dqwzContect .caseList>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }

  .cpxqTitle {
    font-size: 16px;
  }
  .cpxqContect {
    line-height: 24px;
  }
}
/* END-服务项目/客户案例 */

/* 视频展示 */
.videoList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.videoList>li {
  width: calc(50% - 10px);
  float: left;
  margin-bottom: 20px;
}
.videoList>li .videoImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.videoList>li .videoImg::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.videoList>li .videoImg>video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.videoList>li .videoTxt {
  width: 100%;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #e20c0c;
  font-size: 16px;
  color: #fff;
}

@media (max-width: 991px) {
  .videoList>li {
    width: 100%;
  }
}

/* END-视频展示 */

/* 搬家常识/资讯动态 */
.xwList {
  display: block;
  overflow: hidden;
}
.xwList>li {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
}
.xwList>li>a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background-color: #f3f5f9;
  padding: 1px;
}
.xwList>li>a .newsImg {
  width: 30%;
  float: left;
  overflow: hidden;
  position: relative;
}
.xwList>li>a .newsBox {
  width: 70%;
  float: left;
  overflow: hidden;
  padding: 20px;
}
.xwList>li>a .newsBox .newsSubTitle {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.xwList>li>a .newsBox .newsSubTxt {
  display: block;
  overflow: hidden;
  height: 90px;
  line-height: 30px;
  font-size: 14px;
  color: #333;
  margin: 5px 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.xwList>li>a .newsBox .newsSubTime {
  display: block;
  overflow: hidden;
  line-height: 20px;
  color: #999;
  font-size: 12px;
}
.xwList>li>a:hover {
  background-color: #e20c0c;
}
.xwList>li>a:hover .newsBox .newsSubTitle,
.xwList>li>a:hover .newsBox .newsSubTxt,
.xwList>li>a:hover .newsBox .newsSubTime {
  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: 14px;
  line-height: 30px;
  padding-top: 10px;
}
.xwxqContect img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .xwList>li {
    margin-bottom: 10px;
  }
  .xwList>li>a .newsBox {
    padding: 10px;
  }
  .xwList>li>a .newsBox .newsSubTxt {
    height: 44px;
    line-height: 22px;
    -webkit-line-clamp: 2;
  }

  .xwxqTitle {
    font-size: 16px;
  }
  .xwxqContect {
    line-height: 24px;
  }
}
/* End-搬家常识/资讯动态 */

/* 联系我们 */
.contactTxt {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.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-联系我们 */