/* 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;
  overflow: hidden;
}
.bannerSwiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.bannerSwiper .swiper-pagination {
  opacity: 1;
  bottom: 155px;
  display: flex;
  justify-content: center;
}
.bannerSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: #fff;
  opacity: 0.5;
}
.bannerSwiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.bannerSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.bannerSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #fff;
}
.bannerSwiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.bannerSwiper .banner-prev,
.bannerSwiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.bannerSwiper .banner-next {
  left: initial;
  right: 2%;
}
.bannerSwiper:hover .banner-next,
.bannerSwiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .bannerSwiper .swiper-pagination {
    bottom: 10px;
  }
  .bannerSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
  }
  .bannerSwiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .bannerSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .bannerSwiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}

/* 产品回收 */
.recovery {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.recoveryTitle {
  width: 100%;
  float: left;
}
.recoveryEn {
  display: block;
  overflow: hidden;
  line-height: 52px;
  font-size: 50px;
  color: #333;
  font-weight: bold;
}
.recoveryCn {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 20px;
}
.recoveryCn>h1,h3,h4,h5 {
  float: left;
  padding-right: 65px;
  line-height: 48px;
  font-size: 36px;
  color: #0a8d00;
  font-weight: bold;
}
.recoveryCn>h2 {
  float: left;
  padding-right: 65px;
  line-height: 48px;
  font-size: 36px;
  color: #0a8d00;
  font-weight: bold;
}
.recoveryCn::after {
  content: "";
  flex: 1;
  float: left;
  height: 1px;
  background-color: #e3e1e1;
}
.recoveryNav {
  float: right;
  margin-top: -58px;
}
.recoveryNav>li {
  float: left;
  background-color: #fff;
  padding-left: 10px;
}
.recoveryNav>li:first-child {
  padding: 0;
}
.recoveryNav>li>a {
  width: 156px;
  float: left;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #ccc;
  font-size: 24px;
  color: #fff;
}
.recoveryNav>li>a:hover,
.recoveryNav>li.recoveryActive>a {
  background-color: #0a8d00;
}
.recoveryContect {
  width: 100%;
  float: left;
  margin-top: 66px;
}
.recoveryContect>div {
  display: none;
}
.recoveryContect>div:first-child {
  display: block;
}
.recoveryList {
  display: flex;
  flex-wrap: wrap;
  width: 1416px;
}
.recoveryList>li {
  width: 456px;
  float: left;
  margin: 0 16px 50px 0;
}
.recoveryList>li>a {
  width: 100%;
  float: left;
  margin-bottom: 39px;
  padding: 30px;
  background-color: #f4f2f2;
  position: relative;
  top: 0;
}
.recoveryList>li>a .recoveryImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.recoveryList>li>a .recoveryImg::before {
  content: "";
  display: block;
  padding-top: 66.1655%;
}
.recoveryList>li>a .recoveryTxt {
  display: block;
  overflow: hidden;
  line-height: 52px;
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  color: #333;
}
.recoveryList>li>a .recoveryMore {
  width: 78px;
  height: 78px;
  line-height: 70px;
  text-align: center;
  border: 4px solid #eee;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  margin: 0 auto -69px auto;
  font-size: 16px;
  color: #999;
  text-transform: uppercase;
}
.recoveryList>li>a:hover {
  background-color: #fff;
  top: -20px;
  box-shadow: 0 0 76px rgba(153, 153, 153, 0.15);
}
.recoveryList>li>a:hover .recoveryMore {
  background-color: #0a8d00;
  border-color: #0a8d00;
  color: #fff;
}

@media (max-width: 1500px) {
  .recovery {
    padding: 80px 0;
  }
  .recoveryList {
    width: 102%;
    margin-left: -1%;
  }
  .recoveryList>li {
    width: 31.33333%;
    margin: 0 1% 50px 1%;
  }
}

@media (max-width: 1200px) {
  .recovery {
    padding: 50px 0;
  }
  .recoveryContect {
    margin-top: 50px;
  }
  .recoveryList>li {
    margin: 0 1% 40px 1%;
  }
}

@media (max-width: 991px) {
  .recovery {
    padding: 30px 0;
  }
  .recoveryContect {
    margin-top: 30px;
  }
  .recoveryList>li {
    margin: 0 1% 30px 1%;
  }
  .recoveryList>li>a {
    padding: 15px;
  }
  .recoveryList>li>a .recoveryMore {
    margin: 0 auto -54px auto;
  }
}

@media (max-width: 767px) {
  .recovery {
    padding: 15px 0;
  }
  .recoveryEn {
    line-height: 30px;
    font-size: 30px;
    text-align: center;
  }
  .recoveryCn {
    margin-top: 0px;
    justify-content: center;
    position: relative;
  }
  .recoveryCn>span {
    padding: 0 10px;
    line-height: 30px;
    font-size: 20px;
    position: relative;
    z-index: 2;
  }
  .recoveryCn::after {
    display: none;
  }
  .recoveryNav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .recoveryNav>li {
    width: calc(50% - 5px);
    padding: 0;
    margin-bottom: 5px;
  }
  .recoveryNav>li>a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
  .recoveryContect {
    margin-top: 10px;
  }
  .recoveryList>li {
    width: 48%;
    margin: 0 1% 10px 1%;
  }
  .recoveryList>li>a {
    padding: 5px;
    margin: 0;
  }
  .recoveryList>li>a .recoveryTxt {
    line-height: 40px;
    margin-top: 0;
    font-size: 16px;
  }
  .recoveryList>li>a .recoveryMore {
    width: 100%;
    height: 34px;
    line-height: 30px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin: 0 auto;
    font-size: 14px;
  }
  .recoveryList>li>a:hover {
    top: 0;
  }
}


/* 我们的优势 */
.ys {
  width: 100%;
  overflow: hidden;
  background: url(../images/ys_bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 70px 0;
}
.ysTitle .recoveryCn>h1 {
  color: #333;
  background: none;
}
.ysList {
  display: flex;
  flex-wrap: wrap;
  float: left;
  overflow: hidden;
  width: 1412px;
  margin-top: 50px;
}
.ysList>li {
  width: 341px;
  float: left;
  margin: 15px 12px 0 0;
}
.ysList>li>a {
  display: block;
  overflow: hidden;
  height: 100%;
  background-color: #fff;
  padding: 20px;
  position: relative;
  top: 0;
}
.ysList>li>a .ysIcon {
  width: 68px;
  height: 60px;
  background-color: #0a8d00;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  transform: translateY(-20px);
}
.ysList>li>a .ysName {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 30px;
  color: #333;
}
.ysList>li>a .ysTxt {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  text-align: center;
  line-height: 36px;
  font-size: 24px;
  color: #666;
  min-height: 108px;
}
.ysList>li>a:hover {
  top: -15px;
}

@media (max-width: 1500px) {
  .ysList {
    width: 101%;
    margin-left: -0.5%;
  }
  .ysList>li {
    width: 24%;
    margin: 15px 0.5% 0 0.5%;
  }
}

@media (max-width: 1200px) {
  .ys {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .ys {
    padding: 30px 0;
  }
  .ysList {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .ys {
    padding: 15px 0;
  }
  .ysList {
    margin-top: 0;
  }
  .ysList>li {
    width: 49%;
    margin: 10px 0.5% 0 0.5%;
  }
  .ysList>li>a {
    padding: 10px;
  }
  .ysList>li>a .ysIcon {
    width: 44px;
    height: 44px;
    transform: translateY(-10px);
  }
  .ysList>li>a .ysName {
    margin-top: 5px;
    line-height: 30px;
    font-size: 18px;
  }
  .ysList>li>a .ysTxt {
    margin-top: 5px;
    line-height: 24px;
    font-size: 16px;
    min-height: 72px;
  }
}

/* 关于我们 */
.about {
  width: 100%;
  overflow: hidden;
  padding: 110px 0;
}
.aboutMore {
  float: right;
  margin-top: -58px;
}
.aboutMore>a {
  width: 208px;
  float: left;
  height: 58px;
  font-size: 24px;
  color: #fff;
  background-color: #0a8d00;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.aboutMore>a:hover {
  width: 240px;
}
.aboutMore>a>span {
  float: left;
  padding-right: 46px;
  background: url(../images/more_jiantou.png) no-repeat right center;
}
.aboutContect {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin-top: 65px;
}
.aboutLeft {
  width: 49%;
  float: left;
  padding: 0 0 25px 60px;
  position: relative;
}
.aboutLeft::before {
  content: "";
  width: calc(100% - 130px);
  height: calc(100% - 60px);
  float: left;
  background-color: #378bd3;
  position: absolute;
  left: 0;
  bottom: 0;
}
.aboutImg {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.aboutImg::before {
  content: "";
  display: block;
  padding-top: 87.439614%;
}
.aboutRight {
  width: 51%;
  float: left;
  box-shadow: 0 0 40px rgba(230, 225, 225, 0.5);
  padding: 85px 20px 115px 65px;
}
.aboutTitle {
  display: block;
  overflow: hidden;
  line-height: 52px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.aboutTxt {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 16px;
  color: #666;
  margin: 30px 0 40px 0;
  max-height: 295px;
}
.aboutRight .aboutMore {
  margin: 0;
  float: left;
}

@media (max-width: 1420px) {
  .about {
    padding: 80px 0;
  }
  .aboutContect {
    margin-top: 55px;
  }
  .aboutRight {
    padding: 60px 20px 80px 65px;
  }
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .aboutContect {
    margin-top: 40px;
  }
  .aboutRight {
    padding: 50px 20px 50px 50px;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .aboutContect {
    margin-top: 30px;
  }
  .aboutRight {
    padding: 30px 20px 30px 30px;
  }
  .aboutTitle {
    line-height: 32px;
    font-size: 22px;
  }
  .aboutTxt {
    line-height: 26px;
    font-size: 18px;
    margin: 15px 0;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .aboutContect {
    margin-top: 10px;
  }
  .aboutLeft {
    width: 100%;
    padding: 0 0 10px 10px;
  }
  .aboutRight {
    width: 100%;
    padding: 15px;
  }
  .aboutTitle {
    line-height: 30px;
    font-size: 16px;
  }
  .aboutTxt {
    line-height: 24px;
    font-size: 14px;
    margin: 10px 0;
  }
  .aboutMore>a {
    width: 120px;
    height: 30px;
    font-size: 14px;
  }
  .aboutMore>a>span {
    padding-right: 20px;
    background: url(../images/more_jiantou.png) no-repeat right center;
    background-size: 15px auto;
  }
}

/* 翡翠新闻 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 85px 0;
  background-color: #f0f0f0;
}

.newsNav {
  float: right;
  margin-top: -58px;
}
.newsNav>li {
  float: left;
  background-color: #f0f0f0;
  padding-left: 10px;
}
.newsNav>li:first-child {
  padding: 0;
}
.newsNav>li>a {
  width: 156px;
  float: left;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #ccc;
  font-size: 24px;
  color: #fff;
}
.newsNav>li>a:hover,
.newsNav>li.newsActive>a {
  background-color: #0a8d00;
}
.newsContect {
  width: 100%;
  float: left;
  margin-top: 55px;
}
.newsContect>div {
  display: none;
}
.newsContect>div:first-child {
  display: block;
}
.newsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsList>li {
  width: calc(50% - 15px);
  float: left;
  margin-bottom: 30px;
}
.newsList>li>a {
  display: flex;
  overflow: hidden;
  background-color: #fff;
}
.newsList>li>a .newsLeft {
  width: 185px;
  float: left;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  padding-right: 55px;
}
.newsList>li>a .newsLeft::before {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s;
  transform: skew(25deg) translateX(-40px);
}
.newsList>li>a .newsLeft .newsTime {
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
  line-height: 26px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.newsList>li>a .newsLeft .newsTime>span {
  display: block;
  overflow: hidden;
  line-height: 48px;
  margin-top: 20px;
  font-size: 48px;
  font-weight: bold;
}
.newsList>li>a .newsRight {
  width: calc(100% - 185px);
  float: left;
  padding: 30px 40px 25px 20px;
}
.newsList>li>a .newsRight .newsTitle {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 24px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsList>li>a .newsRight .newsTxt {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 36px;
  font-size: 16px;
  color: #999;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.newsList>li>a:hover .newsLeft::before {
  background-color: #0a8d00;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .newsContect {
    margin-top: 30px;
  }
  .newsList>li {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .newsNav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
  }
  .newsNav>li {
    width: calc(50% - 5px);
    padding: 0;
    margin-bottom: 5px;
  }
  .newsNav>li>a {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .newsContect {
    margin-top: 10px;
  }
  .newsList>li {
    margin-bottom: 10px;
  }

  .newsList>li>a .newsLeft {
    width: 80px;
    padding-right: 0;
  }
  .newsList>li>a .newsLeft::before {
    transform: skew(0) translateX(0);
  }
  .newsList>li>a .newsLeft .newsTime {
    line-height: 20px;
    font-size: 14px;
  }
  .newsList>li>a .newsLeft .newsTime>span {
    line-height: 30px;
    margin-top: 5px;
    font-size: 20px;
  }
  .newsList>li>a .newsRight {
    width: calc(100% - 80px);
    padding: 10px;
  }
  .newsList>li>a .newsRight .newsTitle {
    line-height: 30px;
    font-size: 18px;
  }
  .newsList>li>a .newsRight .newsTxt {
    height: 40px;
    line-height: 20px;
    font-size: 14px;
  }
}

/* 支付方式 */
.pay {
  width: 100%;
  overflow: hidden;
  padding: 110px 0;
}
.payList {
  float: left;
  display: flex;
  flex-wrap: wrap;
  width: 1420px;
  margin-top: 40px;
}
.payList>li {
  width: 335px;
  float: left;
  margin: 20px 20px 0 0;
}
.payList>li>a {
  display: block;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 0 40px rgba(230, 225, 225, 0.5);
}
.payList>li>a::before {
  content: "";
  display: block;
  padding-top: 38.09524%;
}
.payList>li>a:hover {
  border-color: #0a8d00;
}

@media (max-width: 1500px) {
  .pay {
    padding: 80px 0;
  }
  .payList {
    width: 102%;
    margin-left: -1%;
  }
  .payList>li {
    width: 23%;
    margin: 20px 1% 0 1%;
  }
}

@media (max-width: 1200px) {
  .pay {
    padding: 50px 0;
  }
  .payList {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .pay {
    padding: 30px 0;
  }
  .payList {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .pay {
    padding: 15px 0;
  }
  .payList {
    margin-top: 0;
  }
  .payList>li {
    width: 48%;
    margin: 10px 1% 0 1%;
  }
}

/* 友情链接/热门标签 */
.link {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10px;
}
.linkTitle {
  display: block;
  overflow: hidden;
  line-height: 50px;
  border-bottom: 1px solid #e3e1e1;
  margin-bottom: 5px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.linkTxt {
  display: block;
  overflow: hidden;
  line-height: 30px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #666;
}
.linkTxt>a {
  color: #666;
  margin-right: 30px;
}
.linkTxt>a:hover {
  color: #0a8d00;
}

@media (max-width: 1420px) {
  .link {
    padding-bottom: 70px;
  }
}

@media (max-width: 1200px) {
  .link {
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .link {
    padding-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .link {
    padding-bottom: 15px;
  }
  .linkTitle {
    line-height: 30px;
  }
  .linkTxt {
    line-height: 24px;
    margin-bottom: 10px;
  }
  .linkTxt>a {
    margin-right: 10px;
  }
}
/* END-main */

/* 内页大图 */
.nBanner {
  width: 100%;
  overflow: hidden;
  height: 390px;
  background: url(../images/n_banner.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 78px;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 767px) {
  .nBanner {
    height: 200px;
    font-size: 30px;
  }
}
/* END-内页大图 */

/* 关于翡翠 */
.main {
  width: 100%;
  overflow: hidden;
}
.menuList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  transition: initial;
  margin-top: 110px;
}
.menuList>li {
  width: 198px;
  float: left;
  margin: 10px 10px 0 10px;
}
.menuList>li>a {
  display: block;
  overflow: hidden;
  height: 68px;
  line-height: 68px;
  font-size: 24px;
  color: #fff;
  background-color: #ccc;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menuList>li:hover>a,
.menuList>li.menuActive>a {
  background-color: #0a8d00;
  color: #fff;
}

@media (max-width: 1420px) {
  .menuList {
    margin-top: 80px;
  }
}

@media (max-width: 1200px) {
  .menuList {
    margin-top: 50px;
  }
  .menuList>li {
    width: 19%;
    margin: 10px 0.5% 0 0.5%;
  }
}

@media (max-width: 991px) {
  .menuList {
    margin-top: 30px;
  }
  .menuList>li {
    width: 24%;
  }
}

@media (max-width: 767px) {
  .menuTitle {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: #0a8d00;
  }
  .menuTitleActive {
    text-align: left;
  }
  .menuTitleActive::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menuList {
    display: none;
    margin-top: 0;
    transition: initial;
  }
  .menuList>li {
    width: 100%;
    margin-top: 3px;
  }
  .menuList>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }
}

/* 公司介绍 */
.company {
  width: 100%;
  overflow: hidden;
  padding: 85px 0;
}
.companyTitle {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 68px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.companyContect {
  display: block;
  overflow: hidden;
  margin-top: 50px;
  font-size: 16px;
  color: #666;
  line-height: 36px;
}
.companyContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 80px auto;
}

@media (max-width: 1420px) {
  .company {
    padding: 70px 0;
  }
}

@media (max-width: 1200px) {
  .company {
    padding: 50px 0;
  }
  .companyContect img {
    margin: 50px auto;
  }
}

@media (max-width: 991px) {
  .company {
    padding: 30px 0;
  }
  .companyContect {
    margin-top: 30px;
  }
  .companyContect img {
    margin: 30px auto;
  }
}

@media (max-width: 767px) {
  .company {
    padding: 15px 0;
  }
  .companyTitle {
    line-height: 30px;
    font-size: 20px;
  }
  .companyContect {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .companyContect img {
    margin: 10px auto;
  }
}

/* 发展历程 */
.course {
  width: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 85px 0;
}
.courseContect {
  margin-top: 50px;
  position: relative;
  padding: 0 60px;
}
.courseSwiper .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.courseSwiper .swiper-slide .courseTitle {
  width: 100%;
  overflow: hidden;
  padding-bottom: 46px;
  position: relative;
  display: flex;
  justify-content: center;
}
.courseSwiper .swiper-slide .courseTitle::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #d0d0d0;
  position: absolute;
  left: 0;
  bottom: 10px;
}
.courseSwiper .swiper-slide .courseTitle::after {
  content: "";
  width: 20px;
  float: left;
  height: 20px;
  background-color: #fff;
  border: 1px solid #0a8d00;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50%;
}
.courseSwiper .swiper-slide .courseTime {
  width: 90px;
  float: left;
  height: 110px;
  background: url(../images/company_icon.png) no-repeat center center;
  background-size: 100% 100%;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.courseSwiper .swiper-slide .courseTxt {
  width: calc(100% - 20px);
  flex: 1;
  overflow: hidden;
  margin-top: 40px;
  background-color: #fff;
  font-size: 16px;
  color: #666;
  line-height: 36px;
  padding: 30px 25px;
  text-align: justify;
  min-height: 276px;
}
.course-prev,
.course-next {
  width: 30px;
  float: left;
  height: 74px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  cursor: pointer;
  font-size: 40px;
  color: #fff;
  border-radius: 15px;
  background-color: #ccc;
  position: absolute;
  left: 0;
  top: 110px;
}
.course-next {
  left: initial;
  right: 0;
}
.course-prev:hover,
.course-next:hover {
  background-color: #0a8d00;
}

@media (max-width: 1420px) {
  .course {
    padding: 70px 0;
  }
}

@media (max-width: 1200px) {
  .course {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .course {
    padding: 30px 0;
  }
  .courseContect {
    margin-top: 30px;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .course {
    padding: 15px 0;
  }
  .courseContect {
    margin-top: 10px;
    padding: 0 40px;
  }
  .courseSwiper .swiper-slide .courseTitle {
    padding-bottom: 25px;
  }
  .courseSwiper .swiper-slide .courseTime {
    width: 50px;
    height: 60px;
    font-size: 18px;
  }
  .courseSwiper .swiper-slide .courseTxt {
    width: 100%;
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
    padding: 10px;
    min-height: initial;
  }
  .course-prev, .course-next {
    top: 35px;
  }
}

/* 企业文化 */
.culture {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.cultureList {
  width: 1419px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}
.cultureList>li {
  width: 454px;
  float: left;
  margin: 35px 19px 0 0;
}
.cultureList>li>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(230, 225, 225, 0.5);
  position: relative;
  top: 0;
}
.cultureList>li>a .cultureImg {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cultureList>li>a .cultureImg::before {
  content: "";
  display: block;
  padding-top: 66.8132%;
}
.cultureList>li>a .cultureBox {
  width: 100%;
  overflow: hidden;
  padding: 30px 50px;
}
.cultureList>li>a .cultureBox .cultureTitle {
  display: block;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.cultureList>li>a .cultureBox .cultureTxt {
  display: block;
  overflow: hidden;
  height: 102px;
  line-height: 34px;
  font-size: 16px;
  color: #666;
  margin-top: 20px;
  text-align: justify;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.cultureList>li>a:hover {
  top: -35px;
}
.cultureList>li>a:hover .cultureImg>img {
  transform: scale(1.1);
}

@media (max-width: 1500px) {
  .culture {
    padding: 80px 0;
  }
  .cultureList {
    width: 102%;
    margin-left: -1%;
  }
  .cultureList>li {
    width: 31.33333%;
    margin: 35px 1% 0 1%;
  }
}

@media (max-width: 1200px) {
  .culture {
    padding: 50px 0;
  }
  .cultureList>li>a .cultureBox {
    padding: 20px 30px;
  }
}

@media (max-width: 991px) {
  .culture {
    padding: 30px 0;
  }
  .cultureList {
    margin-top: 0;
  }
  .cultureList>li>a .cultureBox {
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .culture {
    padding: 15px 0;
  }
  .cultureList {
    width: 100%;
    margin: 0;
  }
  .cultureList>li {
    width: 100%;
    margin-top: 10px;
  }
  .cultureList>li>a .cultureImg {
    width: 30%;
    float: left;
  }
  .cultureList>li>a .cultureBox {
    width: 70%;
    float: left;
    padding: 5px 10px;
  }
  .cultureList>li>a .cultureBox .cultureTitle {
    line-height: 30px;
    font-size: 16px;
    text-align: left;
  }
  .cultureList>li>a .cultureBox .cultureTxt {
    height: 60px;
    line-height: 20px;
    font-size: 14px;
    margin-top: 5px;
  }
}
/* END-关于翡翠 */


/* 翡翠资讯 */
.info {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}

.journalismList {
  display: block;
  overflow: hidden;
}
.journalismList>li {
  display: block;
  overflow: hidden;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4e2e2;
}
.journalismList>li>a {
  display: flex;
  width: 100%;
  float: left;
}
.journalismList>li>a .journalismImg {
  width: 280px;
  float: left;
  overflow: hidden;
  position: relative;
}
.journalismList>li>a .journalismImg::before {
  content: "";
  display: block;
  padding-top: 64.28572%;
}
.journalismList>li>a .journalismContect {
  width: calc(100% - 280px);
  float: left;
  padding: 15px 0 2px 30px;
}
.journalismList>li>a .journalismContect .journalismLeft {
  width: 68%;
  float: left;
}
.journalismList>li>a .journalismContect .journalismLeft .journalismTitle {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 24px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.journalismList>li>a .journalismContect .journalismLeft .journalismTxt {
  display: block;
  overflow: hidden;
  height: 108px;
  line-height: 36px;
  font-size: 16px;
  color: #999;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 15px;
  text-align: justify;
}
.journalismList>li>a .journalismContect .journalismRight {
  float: right;
}
.journalismList>li>a .journalismContect .journalismRight .journalismTime {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 16px;
  color: #999;
  font-weight: bold;
}
.journalismList>li>a .journalismContect .journalismRight .journalismMore {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: flex-end;
  height: 26px;
  max-width: 80px;
  border-left: 1px solid #ccc;
  margin-top: 15px;
}
.journalismList>li>a:hover .journalismImg>img {
  transform: scale(1.1);
}
.journalismList>li>a:hover .journalismContect .journalismLeft .journalismTitle {
  color: #0a8d00;
}

/* 资讯详情 */
.infoLeft {
  width: 1040px;
  float: left;
}
.details {
  width: 100%;
  overflow: hidden;
}
.detailsTitle {
  display: block;
  overflow: hidden;
  line-height: 48px;
  font-size: 24px;
  color: #333;
}
.detailsTime {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 16px;
  color: #999;
  padding: 20px 0 25px 0;
  border-bottom: 1px dashed #ccc;
}
.detailsTime>div {
  float: left;
  margin-right: 50px;
  display: flex;
  align-items: center;
}
.detailsTime>div>img {
  float: left;
  margin-right: 10px;
}
.detailsContect {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 32px;
  color: #333;
  padding: 30px 0;
  border-bottom: 1px dashed #ccc;
}
.detailsContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 40px auto;
}
.detailsTags {
  display: block;
  overflow: hidden;
  /* line-height: 32px;
  color: #333;
  padding: 30px 0;
  border-bottom: 1px dashed #ccc; */
}
.detailsTags .tags{
	margin:10px 0;
}
.detailsTags .tags li{
  float: left;
  line-height: 16px;
  margin: 0 10px;
  background-color: #e1e1e1;
  border-radius: 16px;
  padding: 10px;
}

.detailsTags .tags li a{
  color: #333;
  font-size:16px;
}
.detailsBottom {
  display: flex;
  justify-content: space-between;
  line-height: 28px;
  margin-top: 20px;
}
.detailsBottom>a {
  float: left;
  font-size: 18px;
  color: #333;
  text-align: left;
  margin-right: 5px;
}
.detailsBottom>a:last-child {
  text-align: right;
  margin: 0 0 0 5px;
}
.detailsBottom>a:hover {
  color: #0a8d00;
}

/* 相关新闻推荐 */
.suggest {
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
}
.suggestTitle {
  width: 100%;
  float: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
.suggestTitle>span {
  float: left;
  line-height: 32px;
  font-size: 24px;
  color: #333;
  position: relative;
  padding: 0 5px;
}
.suggestTitle>span::before {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #0a8d00;
  position: absolute;
  left: 0;
  bottom: -11px;
}
.suggestList {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.suggestList>li {
  width: calc(50% - 35px);
  float: left;
  border-bottom: 1px dashed #ccc;
  line-height: 68px;
  font-size: 18px;
  color: #999;
}
.suggestList>li>span {
  float: right;
  margin-left: 5px;
}
.suggestList>li>a {
  display: block;
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
/*  font-size:24px;*/
font-size:18px;

}
.suggestList>li>a:hover {
  color: #0a8d00;
}

.infoRight {
  width: 322px;
  float: right;
  padding-top: 128px;
}
.infoNav {
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 10px 10px 0 0;
  position: relative;
}
.infoNav>li {
  width: 50%;
  float: left;
}
.infoNav>li>a {
  display: block;
  overflow: hidden;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: #333;
}
.infoNav>li>a:hover,
.infoNav>li.infoActive>a {
  background-color: #0a8d00;
  color: #fff;
}
.infoContect {
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  border-radius: 0 0 10px 10px;
  margin-top: -1px;
}
.infoContect>div {
  display: none;
}
.infoContect>div:first-child {
  display: block;
}
.infoList {
  display: block;
  overflow: hidden;
}
.infoList>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding: 20px;
}
.infoList>li>a {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.infoList>li>a:hover {
  color: #0a8d00;
}
.infoList>li .infoData {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  font-size: 16px;
  color: #999;
}
.infoList>li .infoData>div {
  float: left;
  display: flex;
  align-items: center;
  margin-left: 30px;
  line-height: 22px;
}
.infoList>li .infoData>div>img {
  float: left;
  margin-right: 10px;
}
.infoList>li .infoData>div:first-child {
  margin: 0;
}

.infoWx {
  display: block;
  overflow: hidden;
  margin-top: 50px;
}
.infoWx>img {
  width: 200px; 
  height: auto;
  display: block;
  margin:auto;
}
.infoDianhua {
  display: flex;
  justify-content: center;
  line-height: 42px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.infoDianhua>span {
  float: left;
  padding-left: 28px;
  background: url(../images/dianhua1.png) no-repeat left center;
}

.infoLink {
  display: block;
  overflow: hidden;
  margin-top: 50px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.infoLinkTitle {
  display: block;
  overflow: hidden;
  line-height: 60px;
  text-align: center;
  background-color: #0a8d00;
  font-size: 18px;
  color: #fff;
}
.infoLinkList {
  display: block;
  overflow: hidden;
  padding: 20px;
}
.infoLinkList>li {
  width: 50%;
  float: left;
  padding: 10px 0 10px 15px;
  position: relative;
  line-height: 20px;
}
.infoLinkList>li::before {
  content: "";
  width: 5px;
  float: left;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.infoLinkList>li>a {
  font-size: 18px;
  color: #333;
}
.infoLinkList>li>a:hover {
  color: #0a8d00;
}

.tag {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
}
.tag>li {
  width: calc(50% - 6px);
  float: left;
  margin: 6px 0;
}
.tag>li>a {
  display: block;
  overflow: hidden;
  height: 36px;
  line-height: 34px;
  text-align: center;
  border: 1px solid #dfdfdf;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag>li>a:hover {
  background-color: #0a8d00;
  border-color: #0a8d00;
  color: #fff;
}

@media (max-width: 1500px) {
  .infoLeft {
    width: 74%;
  }
  .infoRight {
    width: 24%;
  }
}

@media (max-width: 1200px) {
  .info {
    padding: 50px 0;
  }

  .journalismList>li>a .journalismContect .journalismLeft {
    width: 78%;
  }

  .suggestList>li {
    width: calc(50% - 20px);
  }
  .infoList>li {
    padding: 10px;
  }
  .infoList>li .infoData {
    font-size: 14px;
  }
  .infoList>li .infoData>div {
    margin-left: 10px;
  }
  .infoList>li .infoData>div>img {
    width: 20px;
    height: auto;
    margin-right: 5px;
  }
  .infoList>li .infoData>div:first-child {
    margin: 0;
  }
  .infoLinkList {
    padding: 10px;
  }

}

@media (max-width: 991px) {
  .info {
    padding: 30px 0;
  }

  .journalismList>li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .journalismList>li>a .journalismImg {
    width: 200px;
  }
  .journalismList>li>a .journalismContect {
    width: calc(100% - 200px);
    padding: 15px 0 2px 20px;
  }
  .journalismList>li>a .journalismContect .journalismLeft {
    width: 70%;
  }

  .infoLeft {
    width: 69%;
  }
  .detailsTitle {
    line-height: 40px;
    font-size: 30px;
  }
  .detailsTime {
    line-height: 30px;
    font-size: 16px;
    padding: 15px 0;
  }
  .infoRight {
    width: 29%;
    padding-top: 100px;
  }
  .infoNav>li>a {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  .infoList>li .infoData {
    font-size: 12px;
  }
  .infoList>li .infoData>div>img {
    width: 14px;
  }
  .infoWx {
    margin-top: 30px;
  }
  .infoLink {
    margin-top: 30px;
  }
  .infoLinkList>li {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .info {
    padding: 15px 0;
  }

  .journalismList>li {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .journalismList>li>a .journalismImg {
    width: 140px;
  }
  .journalismList>li>a .journalismContect {
    width: calc(100% - 140px);
    padding: 0 0 0 15px;
  }
  .journalismList>li>a .journalismContect .journalismLeft {
    width: 100%;
  }
  .journalismList>li>a .journalismContect .journalismLeft .journalismTitle {
    line-height: 30px;
    font-size: 16px;
  }
  .journalismList>li>a .journalismContect .journalismLeft .journalismTxt {
    height: 66px;
    line-height: 22px;
    font-size: 14px;
    margin-top: 4px;
  }
  .journalismList>li>a .journalismContect .journalismRight {
    width: 100%;
  }
  .journalismList>li>a .journalismContect .journalismRight .journalismTime {
    line-height: 16px;
    margin-top: 4px;
    font-size: 13px;
  }


  .infoLeft {
    width: 100%;
  }
  .detailsTitle {
    line-height: 30px;
    font-size: 20px;
    text-align: center;
  }
  .detailsTime {
    line-height: 20px;
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    justify-content: center;
  }
  .detailsTime>div {
    margin: 0 5px;
  }
  .detailsContect {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
  }
  .detailsContect img {
    margin: 10px auto;
  }
  .suggest {
    margin-top: 10px;
  }
  .suggestTitle>span {
    line-height: 30px;
    font-size: 18px;
  }
  .suggestList>li {
    width: 100%;
    line-height: 40px;
    font-size: 16px;
  }
}
/* END-翡翠资讯 */


/* 翡翠回收 */
.recoveryMain {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}

.recoveryDetails {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  padding: 10px 0;
}
.recoveryDetailsContect {
  display: block;
  overflow: hidden;
  margin-top: 50px;
  font-size: 16px;
  color: #666;
  line-height: 36px;
}
.recoveryDetailsContect img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 50px auto;
}

@media (max-width: 1200px) {
  .recoveryMain {
    padding: 50px 0;
  }
  .recoveryDetailsContect img {
    margin: 40px auto;
  }
}

@media (max-width: 991px) {
  .recoveryMain {
    padding: 30px 0;
  }
  .recoveryDetailsContect img {
    margin: 30px auto;
  }
}

@media (max-width: 767px) {
  .recoveryMain {
    padding: 15px 0;
  }
  .recoveryDetails {
    font-size: 20px;
    padding: 5px 0;
  }
  .recoveryDetailsContect {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .recoveryDetailsContect img {
    margin: 10px auto;
  }
}
/* END-翡翠回收 */


/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap;
}
.contactRight {
  width: 50%;
  float: right;
  padding-left: 50px;
}
.contactTitle {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  line-height: 40px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}
.contactTxt {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  font-size: 16px;
  line-height: 36px;
  color: #333;
}
.contactTxt>span {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-weight: bold;
  color: #0a8d00;
  font-size: 24px;
  margin-bottom: 20px;
}
.contactMap {
  width: calc(50% - 20px);
  float: left;
  overflow: hidden;
  height: 500px;
  border: none;
}

@media (max-width: 767px) {
  .contact {
    flex-direction: column-reverse;
  }
  .contactRight {
    width: 100%;
    padding: 0;
  }
  .contactTitle {
    margin-top: 0;
    line-height: 30px;
    font-size: 20px;
  }
  .contactTxt {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .contactTxt>span {
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contactMap {
    width: 100%;
    margin-top: 15px;
    height: 300px;
  }
}
/* END-联系我们 */


.cp {
  width: 100%;
  overflow: hidden;
}
.cpLeft {
  width: 45%;
  float: left;
}
.cpSwiper {
  width: 100%;
}
.cpSwiper .swiper-slide {
  overflow: hidden;
}
.cpSwiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 76.69292%;
}
.cpContect {
  width: 100%;
  margin-top: 55px;
  padding: 0 50px;
  position: relative;
}
.cpNavSwiper {
  width: 100%;
}
.cpNavSwiper .swiper-slide {
  overflow: hidden;
  border: 1px solid #ccc;
  padding: 5px 3px;
}
.cpNavSwiper .swiper-slide>div {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cpNavSwiper .swiper-slide>div::before {
  content: "";
  display: block;
  padding-top: 76.69292%;
}
.cpNavSwiper .swiper-slide-thumb-active {
  border-color: #0a8d00;
}

.cp-prev,
.cp-next {
  width: 40px;
  float: left;
  height: 40px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #8a8a8a;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}
.cp-next {
  left: initial;
  right: 0;
}
.cp-prev:hover,
.cp-next:hover {
  color: #0a8d00;
}

.cpRight {
  width: 55%;
  float: right;
  padding-left: 50px;
}
.cpTitle {
  display: block;
  overflow: hidden;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  line-height: 1;
}
.cpTxt {
  display: block;
  overflow: hidden;
  margin-top: 40px;
  min-height: 260px;
  line-height: 36px;
  font-size: 16px;
  color: #666;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.cpMore {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.cpMore>a {
  width: 156px;
  float: left;
  height: 58px;
  line-height: 58px;
  text-align: center;
  background-color: #0a8d00;
  font-size: 24px;
  color: #fff;
}
.cpMore>a:hover {
  width: 200px;
}

.sug {
  width: 100%;
  float: left;
  margin-top: 50px;
}
.sugtTitle {
  display: flex;
  border-bottom: 1px solid #ccc;
  line-height: 52px;
  margin-bottom: 30px;
}
.sugtTitle>span {
  float: left;
  font-size: 24px;
  color: #333;
  position: relative;
}
.sugtTitle>span::after {
  content: "";
  width: 100%;
  float: left;
  height: 1px;
  background-color: #0a8d00;
  position: absolute;
  left: 0;
  bottom: -1px;
}

@media (max-width: 767px) {
  .cpLeft {
    width: 100%;
  }
  .cpContect {
    margin-top: 15px;
    padding: 0 40px;
  }
  .cp-prev,
  .cp-next {
    width: 30px;
    height: 30px;
    font-size: 40px;
  }
  .cpRight {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .cpTitle {
    font-size: 20px;
  }
  .cpTxt {
    margin-top: 5px;
    min-height: initial;
    line-height: 24px;
    font-size: 14px;

  }
  .cpMore {
    margin-top: 10px;
  }
  .cpMore>a {
    width: 120px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
  }
  .cpMore>a:hover {
    width: 150px;
  }

  .sug {
    margin-top: 20px;
  }
  .sugtTitle {
    line-height: 40px;
    margin-bottom: 10px;
  }
  .sugtTitle>span {
    font-size: 20px;
  }
}
.contactbody{
				display: none;
				border: 1px solid #bbbbbb;
				border-radius: 20px;
				background-color: white;
				z-index: 1002;
				overflow: auto;
}
.contactbody .form{
    width: 93%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 10% 3% 3% 3%;
}
.contactbody .form .p1{
    width: 75px;
    float: left;
}
.contactbody .form input{
    height: 100%;
    width: 250px;
    border: 1px #666 solid;
    float: left;
    border-radius:16px;
    padding-left: 15px;
}
.contactbody .form textarea{
    width: 250px;
    border: 1px #666 solid;
    float: left;
    border-radius:16px;
    padding-left: 15px;
    padding-top: 5px;
}
.contactbody .form .input1{
    width: 100%;
    height: 30px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    float: left;
    margin-left: 20px;
}
.contactbody .form .input2{
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}
.contactbody .form .btn2{
    width: 90px;
    height: 30px;
    background: #e94f0c;
    color: #fff;
    font-size: 12px;
    border: 0;
    margin-top: 10px;
}
.black_overlay {
				display: none;
				position: absolute;
				top: 0%;
				left: 0%;
				width: 100%;
				height: 100%;
				background-color: #bbbbbb;
				z-index: 1001;
				opacity: .80;
			}

			#light {
				position: fixed;
				left: 50%;
				top: 40%;
				width: 450px;
				height: 300px;
				margin-left: -150px;
			}