<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/*****************
*这里是注释，以后都以这个为标准
*本css以公共部分为主，主要是整个项目的通用组件，的编写		
*name：项目的名称
*time：2021-08-11
*BY：kom
**************************************************/

/******************index public************************/


/************animate***************/

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes shrink {
  from {
    transform: scale(1.2);
  }

  to {
    transform: scale(1);
  }
}

/************animate end***************/

html,
body {
  height: 100%;
}

body {
  overflow-y: auto;
}

.tran {
  transition: all ease .3s;
}

.xd-main {
  height: 100%;
}

.xd-in {
  width: 1180px;
  height: 100%;
  position: relative;
  margin: 0 auto;
}

.xd-header {
  height: 148px;
  background: #fff;
}

.xd-logo {
  position: absolute;
  left: 0px;
  top: 20px;
  width: 304px;
  line-height: 1;
  height: 60px;
  text-align: left;
}

.xd-logo img {
  height: 100%;
}

.xd-tops {
  height: 48px;
  box-shadow: inset 0px -1px 0px 0px #F7F8F8;
  text-align: right;
  line-height: 48px;
  position: relative;
  z-index: 10;
}

.xd-nav {
  height: 100px;
  line-height: 100px;
  text-align: right;
}

.xd-nets {
  position: absolute;
  display: none;
  top: 0px;
  right: 120px;
  width: 195px;
  padding: 50px 0px 10px 0px;
}

.xd-nets ul {
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(1, 5, 14, 0.1000);
  border-radius: 0px 0px 4px 4px;
}

.xd-tops-li {
  text-align: left;

}

.xd-tops-li a {
  display: block;
  line-height: 32px;
  padding: 0px 12px;
  height: 32px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.xd-tops-li a.xd-tops-li-sel {
  background: #FAF7F5;
  color: #E82D17;
}

.xd-tops-li a:hover {
  background: #FAF7F5;
  color: #E82D17;
}

.xd-tops-href {
  margin-left: 20px;
  color: #666666;
}

.xd-tops-href:hover {
  color: #E82D17;
}

.xd-nav-href {
  font-weight: bold;
  margin-left: 80px;
  border-bottom: 6px solid #fff;
  height: 100px;
  display: inline-block;
}

.xd-nav-href:hover {
  color: #E82D17;
  border-bottom: 6px solid #E82D17;
}

.xd-nav-sel {
  color: #E82D17;
  border-bottom: 6px solid #E82D17;
}




/************banner*****************/
.xd-banner {
  height: 65vh;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.xd-banner-swiper {
  height: 100%;
  width: 100%;
}

.xd-banner-swiper .swiper-slide {
  overflow: hidden;
}

.xd-banner-wrap {
  height: 100%;
}

.xd-banner-wrap-an {
  animation: shrink 5s ease;
}

.xd-banner-href {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.xd-banner-desc {
  color: #fff;
  font-weight: bold;
  width: 1180px;
  position: absolute;
  z-index: 100;
  top: 120px;
  left: 50%;
  margin-left: -480px;
}

.xd-banner-desc&gt;div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xd-banner-zhu {
  font-size: 48px;
  margin-bottom: 20px;

}

.xd-banner-eng {
  font-size: 16px;
  margin-bottom: 20px;
  margin-left: 270px;
  line-height: 1.6;
}

.xd-banner-sub {
  font-size: 48px;
  margin-left: 270px;
}

.swiper-container-horizontal .banner-pagination {
  bottom: 40px;
}

.swiper-container-horizontal .banner-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #fff;
  opacity: 1;
  margin: 0px 8px;
  transition: all ease .3s;

}

.swiper-container-horizontal .banner-pagination .swiper-pagination-bullet-active {
  width: 40px;
  height: 18px;
  background: #E82D17;
  opacity: 1;
  border-radius: 9px;
}

/************banner end*****************/

.xd-g-title {
  padding: 80px 0px 60px 0px;
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.xd-g-title span {
  font-size: 32px;
  font-weight: bold;
}

.xd-g-more {
  color: #666666;
  position: absolute;
  right: 0px;
  top: 80px;
  padding: 10px 40px 10px 0px;
  background: url(../image/crcs-pub-btn-more-nor.png) no-repeat right center;
  background-size: 32px 32px;
}

.xd-g-more:hover {
  background: url(../image/crcs-pub-btn-more-sel.png) no-repeat right center;
  background-size: 32px 32px;
  color: #E82D17;
}

.xd-news-tab {
  text-align: center;
  margin-bottom: 40px;
}

.xd-news-wrap {
  display: none;
}

.xd-news-wrap:nth-child(1) {
  display: block;
}

.xd-about-item:nth-child(2) {
  width: 680px;
  height: 275px;
  position: absolute;
  background: #E82D17;
  left: 500px;
  z-index: 10;
  top: 40px;
}

.xd-about {
  background: url(../image/crcs-index-about-bg.png) no-repeat center bottom;
  background-size: cover;
  padding-bottom: 80px;
}

.xd-about-main {
  position: relative;
}

.xd-about-in {
  width: 720px;
  height: 275px;
  background: #fff;
  position: absolute;
  left: -50px;
  z-index: 100;
  bottom: 10px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.2000);
  padding: 60px 40px 100px 40px;
  line-height: 2;
  color: #666;
}

.xd-news-tab-href {
  width: 160px;
  height: 48px;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  background: #EEEEEE;
  border-radius: 24px;
  margin: 0px 10px;
  font-size: 16px;
  font-weight: bold;
}

.xd-news-tab-sel {
  background: #E82D17;
  color: #fff;
}

.xd-search {
  height: 100px;
  position: absolute;
  width: 100%;
  background: #fff;
  top: 148px;
  z-index: 100;
  border-top: 1px solid #eee;
  display: none;
}

.xd-tops-search {
  width: 20px;
  height: 20px;
  background: url(../image/crcs-toolbar-search-icon-query.png) no-repeat;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.xd-tops-search:hover {
  background: url(../image/crcs-toolbar-search-icon-query-sel.png) no-repeat;
  background-size: cover;
}

.xd-tops-search-close {
  background: url(../image/crcs-toolbar-search-icon-close.png) no-repeat;
  background-size: cover;
}

.xd-tops-search-close:hover {
  background: url(../image/crcs-toolbar-search-icon-close-sel.png) no-repeat;
  background-size: cover;
}

.xd-line {
  margin-left: 20px;
  font-size: 10px;
  color: #eee;
}

.xd-search-text {
  width: 100%;
  height: 56px;
  background: #F5F0EC;
  border-radius: 28px;
  border: none;
  padding: 0px 110px 0px 20px;
}

.xd-search-main {
  width: 780px;
  margin: 0 auto;
  padding: 22px 0px;
  position: relative;
}

.xd-search-button {
  width: 100px;
  height: 56px;
  background: #E82D17;
  border-radius: 28px;
  position: absolute;
  right: 0px;
  font-size: 16px;
  color: #fff;
  top: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 56px;
}

/**********关于华润现代服务**********/
.xd-about-item:nth-child(1) {
  width: 500px;
  height: 330px;
}

.xd-about-pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.xd-about-pic img {
  width: 100%;
  height: 100%;
}

/**********关于华润现代服务 end**********/

/**********新闻news**********/
a {
  transition: color ease .3s;
}

.xd-news-wrap {
  height: 420px;
}

.xd-news-wrap::after {
  clear: both;
}

.xd-news-left {
  width: 500px;
  float: left;
  height: 100%;
  margin-bottom: 10px;
}

.xd-news-left-pic img {
  max-width: 100%;
  max-height: 100%;
}

.xd-news-left-pic {
  height: 330px;
  overflow: hidden;
  background: #fbfbfb;
  margin-bottom: 20px;
}

.xd-news-left-pic .table {
  width: 100%;
  height: 100%;
  display: table;
}

.xd-news-left-pic .table .table-cell {
  display: table-cell;
  height: 330px;
  vertical-align: middle;
  text-align: center;
}

.xd-news-left-title a {
  display: block;
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;

}

.xd-news-left-title a:hover {
  color: #E82D17;
}

.xd-news-left-desc {
  line-height: 2;
  color: #666;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.xd-news-right {
  width: 640px;
  padding-left: 40px;
  float: right;
  height: 100%;
  border-left: 1px solid #e5e5e5;
}

.xd-news-right-time {
  color: #999;
  margin-bottom: 10px;
}

.xd-news-right-title a {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 7px;
  display: block;
  line-height: 1.5;
}

.xd-news-right-title a:hover {
  color: #E82D17;
}

.xd-news-right-desc {
  color: #666;
  padding-bottom: 15px;
  line-height: 1.5;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.xd-news-right-li {
  box-shadow: inset 0px -1px 0px 0px #EEEEEE;
  margin-bottom: 20px;
}

.xd-news-right-li:last-child {
  margin-bottom: 0px;
  box-shadow: inset 0px 0px 0px 0px #EEEEEE;
}

.xd-news-right-li:last-child .xd-news-right-desc {
  padding-bottom: 0px;
}


/**********新闻news end**********/



/**********业务与服务**********/
.xd-yewu {
  background: url(../image/crcs-index-business-bg.png) no-repeat center top;
  background-size: auto 367px;
}

.xd-yewu-long {
  background: url(../image/crcs-index-business-bg.png) no-repeat center top;
  background-size: auto 420px;

}

.xd-yewu .xd-g-title,
.xd-yewu .xd-g-title a {
  color: #fff;
}

.xd-yewu .xd-g-title a:hover {
  color: #E82D17;
}

.xd-yewu-main {
  justify-content: space-between;
}

.xd-yewu-item {
  width: 280px;
  height: 440px;
  background: #fff;
  transition: all .3s;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  top: 0px;
}

.xd-yewu-item:hover .wraps .more-href {
  color: #E82D17;
  background: url(../image/crcs-pub-more-sell.png) no-repeat right center;
  background-size: 8px 8px;
}

.xd-yewu-item-long {
  width: 360px;
  height: 466px;
  background: #fff;
  transition: all .3s;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  top: 0px;
}

.xd-yewu-item .pic {
  height: 187px;
  overflow: hidden;
}

.xd-yewu-item-long .pic {
  height: 240px;
  overflow: hidden;
}

.xd-yewu-item .pic img {
  width: 100%;
  height: 100%;
}

.xd-yewu-item .wraps {
  height: 250px;
  padding: 0px 20px;
}

.xd-yewu-item .wraps .title {
  font-size: 20px;
  font-weight: bold;
  padding: 30px 0px 15px 0px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xd-yewu-item .wraps .desc {
  height: 125px;
  line-height: 2;
  color: #666;
}

.xd-yewu-item-long .wraps .desc {
  height: 90px;
  line-height: 2;
  color: #666;
}

.xd-yewu-item .wraps .more-href {
  padding-right: 15px;
  background: url(../image/crcs-pub-more-nor.png) no-repeat right center;
  background-size: 8px 8px;
  color: #666;
}

.xd-yewu-item .wraps .more-href:hover {
  color: #E82D17;
  background: url(../image/crcs-pub-more-sel.png) no-repeat right center;
  background-size: 8px 8px;
}



/**********业务与服务 end**********/

/**********视频**********/
.xd-video-main {
  overflow: hidden;
}

.xd-video-item {
  width: 380px;
  height: 290px;
  float: left;
  margin-right: 20px;
  overflow: hidden;
}

.xd-video-item:last-child {
  margin-right: 0px;
}

.xd-video-pic {
  height: 214px;
  overflow: hidden;
}

.xd-video-pic-in {
  width: 100%;
  height: 100%;
  transition: all ease .3s;
  position: relative;
  cursor: pointer;
}

.xd-video-pic-in {
  background: url(../image/crcs-pub-video-default-pic.png) no-repeat;
  background-size: cover;
}

.xd-video-pic-icon {
  width: 48px;
  height: 48px;
  background: url(../image/crcs-pub-video-icon-nor.png) no-repeat center center;
  background-size: 48px 48px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -24px;
  margin-top: -24px;
}

.xd-video-pic-icon:hover {
  background: url(../image/crcs-pub-video-icon-sel.png) no-repeat center center;
  background-size: 48px 48px;
}

.xd-video-pic-in:hover {
  transform: scale(1.1);
}

.xd-video-pic-in:hover .xd-video-pic-icon {
  background: url(../image/crcs-pub-video-icon-sel.png) no-repeat center center;
  background-size: 48px 48px;
}

.xd-video {
  padding: 110px 0px 60px 0px;
  background: url(../image/crcs-index-video-bg.png) no-repeat center bottom;
  background-size: cover;
}

.xd-video-title {
  padding: 20px 0px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/**********视频 end**********/


/**********其他**********/
.xd-other-main {
  overflow: hidden;
  padding: 15px 10px;
}

.xd-other-item {
  width: 220px;
  height: 195px;
  float: left;
  margin-right: 15px;
  border: 1px solid #E5E5E5;
  text-align: center;
  transition: ease .3s;
}

.xd-other-item:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  transform: translateY(-5px);

}

.xd-other-item:last-child {
  margin: 0px;
}

.xd-other {
  padding: 65px 0px;
}

.xd-other-pic {
  height: 100px;
  transition: ease .3s;
}


.xd-other-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.xd-other-title a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xd-other-title a:hover {
  color: #E82D17;
}

.xd-other-desc {
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0px 20px;
}

/**********其他 end**********/

.xd-footer {
  height: 148px;
  background: #333;
}

.xd-footer a {
  color: #999;
}

.xd-footer-links {
  padding: 40px 0px 24px 0px;
  color: #999;
}

.xd-footer-href::after {
  content: ' · ';
}

.xd-footer-href:hover {
  color: #E82D17;
}

.xd-footer-href:last-child::after {
  content: '';
}

.xd-footer-qrcode {
  position: absolute;
  right: 0px;
}

.xd-footer-copy span {
  color: #666;
  margin-right: 15px;
}

.xd-footer-copy a {
  color: #666;
}

.xd-footer-copy a:hover {
  color: #E82D17;
}

.xd-footer-qrcode-href {
  padding: 50px 0px 0px 0px;
  background: url(../image/crcs-pub-code-weeChat.png) no-repeat center top;
  background-size: 40px 40px;
}


/***************list****************/
.xd-list-banner {
  height: 400px;
  background: url(../image/crcs-col-banner-about.png) no-repeat center top;
  background-size: cover;
}

.xd-banner-intro {
  padding: 120px 0px 0px 0px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1.2;
}

.xd-bread {
  background: #FBFBFB;
  height: 60px;
  position: relative;
  line-height: 60px;
  overflow: hidden;
}

.xd-bread-catlog {
  float: left;
}

.xd-bread-item {
  float: right;
}

.xd-bread-catlog-href {
  font-size: 16px;
  font-weight: bold;
  margin-right: 40px;
  color: #666;
}

.xd-bread-catlog-sel {
  color: #E82D17;
}

.xd-bread-catlog-href:hover,
.xd-bread-item-href:hover {
  color: #E82D17;
}

.xd-bread-item-href {
  padding: 0px 20px 0px 20px;
  font-weight: bold;
  color: #999;
  background: url(../image/crcs-nav-icon-arrow.png) no-repeat left center;
  background-size: 9px 9px;
}

.xd-bread-item-index {
  padding: 0px 10px 0px 25px;
  background: url(../image/crcs-nav-icon-home.png) no-repeat left center;
  background-size: 14px 14px;
  font-weight: bold;
  color: #999;
}

.xd-bread-item-index:hover {
  color: #E82D17;
}

.xd-tops-net {
  padding-right: 15px;
  background: url(../image/crcs-toolbar-web-icon-arrow-nor.png) no-repeat right center;
  background-size: 12px 12px;
  cursor: pointer;
}

.xd-tops-net-up {
  background: url(../image/crcs-toolbar-web-icon-arrow-sel.png) no-repeat right center;
  background-size: 12px 12px;
}

.xd-jft {
  padding: 5px 0px 5px 28px;
  background: url(../image/crcs-toolbar-language-icon-ball.png) no-repeat left center;
  background-size: 20px 20px;
}

.xd-jft:hover {
  background: url(../image/crcs-toolbar-language-icon-ball-sel.png) no-repeat left center;
  background-size: 20px 20px;
}

.xd-single-title {
  padding: 80px 0px 60px 0px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}

.xd-single-left {
  width: 380px;
  min-height: 253px;
  float: left;
}

.xd-single-left img {
  width: 100%;
}

.xd-single-right {
  padding-left: 420px;
  line-height: 2;
  color: #666;
}

.xd-single-main {
  overflow: hidden;
  padding-bottom: 60px;
  line-height: 2;
}

.xd-single-main img {
  max-width: 100%;
}

.xd-ban-wrap {
  overflow: hidden;
  padding: 15px 0px 80px 0px;
}

.xd-ban-wrap .xd-item {
  width: 280px;
  height: 186px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  float: left;
  margin-right: 13px;
  padding: 20px;
  transition: all .3s;
}

.xd-ban-wrap .xd-item-long {
  width: 360px;
  height: 186px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  float: left;
  margin-right: 50px;
  padding: 20px;
  transition: all .3s;
}

.xd-ban-wrap .xd-item:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
}

.xd-ban-wrap .xd-item:last-child {
  margin: 0px;
}

.xd-ban-title {
  padding: 80px 0px 40px 0px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.xd-item-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding: 5px 0px 5px 40px;
}

.xd-item:nth-child(1) .xd-item-title {
  background: url(../image/crcs-about-crcs-icon-purchase.png) no-repeat left center;
  background-size: 32px 32px;
}

.xd-item:nth-child(2) .xd-item-title {
  background: url(../image/crcs-about-crcs-icon-property.png) no-repeat left center;
  background-size: 32px 32px;
}

.xd-item:nth-child(3) .xd-item-title {
  background: url(../image/crcs-about-crcs-icon-secretary.png) no-repeat left center;
  background-size: 32px 32px;
}

.xd-item:nth-child(4) .xd-item-title {
  background: url(../image/crcs-about-crcs-icon-director.png) no-repeat left center;
  background-size: 32px 32px;
}

.xd-item-desc {
  line-height: 2;
  height: 80px;
  color: #666;
}

.xd-item-more a {
  padding-right: 15px;
  background: url(../image/crcs-pub-more-nor.png) no-repeat right center;
  background-size: 8px 8px;
  color: #666;
}

.xd-item-more a:hover {
  color: #E82D17;
  background: url(../image/crcs-pub-more-sell.png) no-repeat right center;
  background-size: 8px 8px;
}

.xd-manage-li {
  padding: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  margin-bottom: 20px;
}

.xd-manage-li .left {
  width: 180px;
  height: 240px;
  float: left;
}

.xd-manage-def {
  background: url(../image/crcs-about-team-pic.png) no-repeat center top;
  background-size: cover;
}

.xd-manage-li .left img {
  width: 100%;
}

.xd-manage-li .item {
  padding-left: 220px;
  line-height: 2;
}

.xd-manage-li .item .name {
  padding-top: 30px;
  font-size: 24px;
  font-weight: bold;
  color: #115581;
}

.xd-manage-li .item .name span {
  color: #999999;
  font-size: 14px;
  font-weight: normal;
}

.xd-manage-li .item .desc {
  color: #666;
  height: 110px;
  overflow: hidden;
  position: relative;
}

.xd-manage-li .item .desc .more {
  position: absolute;
  padding: 0px 20px 0px 0px;
  right: 8px;
  bottom: 0px;
  background: #fff url(../image/crcs-toolbar-web-icon-arrow-nor.png) no-repeat right center;
  background-size: 12px 12px;
  width: 100%;
  height: 30px;
  text-align: right;
  cursor: pointer;
  display: none;
}

.xd-manage-li .item .desc .more-up {
  background: #fff url(../image/crcs-toolbar-web-icon-arrow-sel.png) no-repeat right center;
  background-size: 12px 12px;
}

.xd-manage-main {
  padding-bottom: 60px;
  width: 1000px;
  margin: 0 auto;
}

.xd-news {
  background: url(../image/crcs-index-news-bg.png) no-repeat center bottom;
  background-size: 100% auto;
  padding-bottom: 80px;
}

.xd-news-swiper {
  height: 300px;
}

.xd-news-all {
  height: 100%;
  background: #FAF7F5;
}

.xd-news-all .left {
  width: 450px;
  height: 100%;
  float: left;
}

.xd-news-all .right a:hover {
  color: #E82D17;
}

.xd-news-all .left a {
  width: 100%;
  height: 100%;
  display: block;
  background: url(../image/crcs-pub-news-default-pic.png) no-repeat;
  background-size: cover;
}

.xd-news-all .left img {
  width: 100%;
  height: 100%;
}

.xd-news-all .right {
  padding-left: 490px;
  height: 100%;
  padding-right: 40px;
}

.xd-news-bot-li {
  border-bottom: 1px solid #eee;
  padding-bottom: 40px;
  margin-top: 40px;
  overflow: hidden;
  transition: all ease .3s;
  position: relative;
}

.xd-news-bot-li::after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #E82D17;
  transition: all .6s ease;
}

.xd-news-bot-li:hover::after {
  width: 100%;
}

.xd-news-bot-li:hover a {
  color: #E82D17;
}

.xd-news-bot-li .time {
  width: 100px;
  height: 100px;
  float: left;
  text-align: center;
  background: #F5F0EC;
}

.xd-news-bot-li .top {
  font-size: 32px;
  font-weight: bold;
  padding: 14px 20px 14px 0px;
  color: #E82D17;
  text-align: right;
}

.xd-news-bot-li .bot {
  color: #666;
}

.xd-news-bot-li .cont {
  padding-left: 140px;
}

.xd-news-bot-li .cont .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-news-bot-li .cont .desc {
  line-height: 2;
  color: #666;
}

.xd-news-all .time {
  font-size: 20px;
  font-weight: bold;
  padding: 40px 0px 20px 0px;
  color: #E82D17;
}

.xd-news-all .title {
  font-size: 20px;
  font-weight: bold;
  padding: 0px 0px 20px 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.xd-news-all .desc {
  color: #666;
  line-height: 2;
}

.swiper-news-prev,
.swiper-news-next {
  position: absolute;
  bottom: 28px;
  top: auto;
  width: 40px;
  height: 40px;
}

.swiper-news-next {
  right: 40px;
  background: url(../image/crcs-about-course-scoll-next-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-news-prev {
  right: 100px;
  left: auto;
  background: url(../image/crcs-about-course-scoll-back-btn-nor.png) no-repeat;
  background-size: cover;
}

.xd-map-list {
  overflow: hidden;
  margin-bottom: 60px;
}

.xd-map-list .item {
  float: left;
  margin-right: 60px;
}

.xd-map-list .item a {
  padding-right: 15px;
  background: url(../image/crcs-map-icon-arrow.png) no-repeat right center;
  background-size: 10px 10px;
}

.xd-map-list .item a:hover {
  color: #E82D17;
}

.xd-map-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #E82D17;
}

.xd-ry-title {
  margin-bottom: 45px;
  font-size: 24px;
  font-weight: bold;
  margin-left: 160px;
}

.xd-ry-item {
  margin-left: 315px;
  border-left: 1px solid #E5E5E5;
}

.xd-ry-main {
  padding-bottom: 80px;
}

.xd-ry-li .year {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.xd-ry-li {
  margin-bottom: 60px;
  padding-left: 45px;
  background: url(../image/crcs-about-honor-icon-point.png) no-repeat left 2px;
  background-size: 14px 14px;
  position: relative;
  left: -7px;
}

.xd-ry-li .desc li {
  margin-bottom: 30px;
}

.xd-det-title {
  padding: 80px 0px 40px 0px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}

.xd-det-title .xd-in,
.xd-det-sub .xd-in {
  width: 900px;
}

.xd-det-sub {
  text-align: Center;
  margin-bottom: 40px;
}


.xd-det-span {
  color: #999;
  margin: 0px 20px;
}

.xd-det-font {
  color: #999;
}

.xd-det {
  line-height: 2;
  color: #666;
  width: 900px;
  margin: 0 auto 40px;
}

.xd-det,
.xd-det-pic {
  margin-bottom: 40px;
}

.xd-sm-in {
  width: 900px;
  position: relative;
  height: 100%;
  margin: 0 auto;
}

.xd-mid-in {
  width: 1000px;
  position: relative;
  height: 100%;
  margin: 0 auto;
}

.xd-det-pn {
  box-shadow: inset 0px 1px 0px 0px #EEEEEE;
  margin-top: 60px;
  padding: 40px 0px;
}

.xd-det-pn .items {
  width: 50%;
}

.xd-det-pn .items .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-det-pn a:hover {
  color: #E82D17;
}

.xd-det-pn .items .times {
  float: right;
  margin-right: 40px;
  color: #999;
}

.xd-mi-desc {
  text-align: center;
  line-height: 2;
  margin-bottom: 40px;
}

.xd-mi-main {
  overflow: hidden;
}

.xd-mi-item {
  float: left;
  width: 360px;
  height: 360px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  margin-right: 50px;
  padding: 40px;
  text-align: center;
}

.xd-mi-item:last-child {
  margin: 0px;
}

.xd-mi-main-pic {
  height: 80px;
  margin-bottom: 40px;
}

.xd-mi-main-title {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-mi-main-desc,
.xd-zhao-main {
  line-height: 2;
  color: #666;
}

.xd-zhao-main {
  margin-bottom: 80px;
}

.xd-zhao-main .xd-in p {
  margin-bottom: 40px;
}

.xd-zhao-main img {
  max-width: 100%;
}

.xd-zhao-num {
  background: url(../image/crcs-business-bidding-bg.png) no-repeat center bottom;
  background-size: cover;
}

.xd-news-more {
  display: none;
}

.xd-zhao-item {
  float: left;
  width: 220px;
  height: 295px;
  margin: 0px 80px 0px 80px;
  text-align: Center;
}

.xd-zhao-num-title {
  text-align: Center;
  padding: 60px 0px;
  color: #E82D17;
  font-weight: bold;
}

.zhao-name {
  padding-top: 120px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  background: url(../image/crcs-business-bidding-icon-bidding.png) no-repeat center top;
  background-size: 80px 80px;
}

.zhao-det {
  line-height: 2;
  color: #666;
}

.zhao-det span {
  font-size: 20px;
  font-weight: bold;
}

.zhao-det .red {
  color: #E82D17;
}

.zhao-det .blue {
  color: #6887B7;
}

.zhao-det .yellow {
  color: #F99C34;
}

.xd-zhao-num-wrap {
  overflow: hidden;
  padding-bottom: 80px;
}

.xd-zhi-main {
  line-height: 2;
  color: #666;
  margin-bottom: 40px;
}

.xd-zhi-num {
  overflow: hidden;
  padding: 60px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  margin-bottom: 80px;
}

.xd-zhi-item {
  float: left;
  width: 50%;
  height: 120px;

}

.xd-zhi-item:nth-child(1) {
  box-shadow: inset -1px 0px 0px 0px #EEEEEE;
  width: 45%;
  margin-right: 5%;
}

.xd-zhi-item .left {
  width: 80px;
  height: 80px;
  float: left;
  background: url(../image/crcs-business-secretary-icon-noListedCompany.png) no-repeat;
  background-size: cover;
}

.xd-zhi-item .cont {
  padding-left: 120px;
}

.xd-zhi-item .cont .title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-zhi-item .cont .list {
  margin-bottom: 10px;
  color: #666;
}

.xd-zhi-item .cont .list span {
  color: #75956C;
  font-size: 20px;
  font-weight: bold;
}

.xd-zhi-all {
  overflow: hidden;
}

.xd-zhi-all .item {
  width: 50%;
  float: left;
}

.xd-zhi-all .item p {
  margin-bottom: 10px;
}

.xd-zhi-all .item p span {
  color: #E82D17;
  font-size: 20px;
  font-weight: bold;
}

.xd-zhi-about-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.xd-zhi-about-desc {
  line-height: 2;
  color: #666;
  margin-bottom: 35px;
}

.xd-rencai-guan {
  overflow: hidden;
  margin-bottom: 80px;
}

.xd-rencai-guan .left {
  height: 100%;
  width: 620px;
  line-height: 2;
  color: #666;
}

.xd-rencai-guan .right {
  height: 100%;
  width: 460px;
}

.xd-rencai-guan .right img {
  width: 100%;
}

.xd-rencai-guan .left .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-rencai-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.xd-rencai-tab {
  text-align: center;
  margin-bottom: 44px;
}

.xd-rencai-href {
  width: 160px;
  height: 48px;
  border-radius: 24px;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
  margin: 0px 10px;
}

.xd-rencai-href:nth-child(1) {
  border: 1px solid #E82D17;
  background: #fff;
  color: #E82D17;
}

.xd-rencai-href:nth-child(2) {
  border: 1px solid #6887B7;
  color: #6887B7;
  background: #fff;
}

.xd-rencai-href:nth-child(3) {
  border: 1px solid #F99C34;
  background: #fff;
  color: #F99C34;
}

.xd-rencai-man {
  overflow: hidden;
  padding: 40px 60px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
}

.xd-rencai-main-left {
  width: 660px;
  float: left;
  box-shadow: inset -1px 0px 0px 0px #EEEEEE;
  height: 196px;
  padding-right: 160px;
  line-height: 2;
  color: #666;
}

.xd-rencai-wrap {
  margin-bottom: 80px;
}

.xd-rencai-main-right {
  width: 240px;
  height: 240px;
  float: right;
}

.xd-rencai-main-right img {
  width: 100%;
  height: 100%;
}

.xd-zhi-swiper {
  height: 240px;
  width: 1180px;
  margin: 0 auto;
  overflow: hidden;
}

.xd-zhi-swiper .swiper-slide {
  border: 1px solid #6887B7;
  border-radius: 8px;
}

.xd-zhi-swiper .swiper-slide:nth-child(1) .xd-zhi-cont {
  background: url(../image/xd-bg-org.png) no-repeat left center;
  background-size: auto 100%;
}

.xd-zhi-swiper .swiper-slide:nth-child(2) .xd-zhi-cont {
  background: url(../image/xd-bg-blue.png) no-repeat left center;
  background-size: auto 100%;
}

.xd-zhi-swiper .swiper-slide:nth-child(3) .xd-zhi-cont {
  background: url(../image/xd-bg-red.png) no-repeat left center;
  background-size: auto 100%;
}

.xd-rencai-zhi {
  position: relative;
}

.xd-zhi-cont {
  padding: 60px 60px 10px 60px;
  height: 100%;
  line-height: 2;
  color: #666;
}

.swiper-zhi-prev,
.swiper-zhi-next {
  width: 48px;
  height: 48px;
  top: 110px;
}

.swiper-zhi-prev {
  left: -20px;
  background: url(../image/crcs-pub-scoll-back-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-zhi-next {
  right: -20px;
  background: url(../image/crcs-pub-scoll-next-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-zhi-prev:hover {
  background: url(../image/crcs-pub-scoll-back-btn-sel.png) no-repeat;
  background-size: cover;
}

.swiper-zhi-next:hover {
  background: url(../image/crcs-pub-scoll-next-btn-sel.png) no-repeat;
  background-size: cover;
}

.xd-rencai-tab a:nth-child(1).xd-rencai-sel,
.xd-rencai-tab a:nth-child(1):hover {
  background: #E82D17;
  border: none;
  color: #fff;
}

.xd-rencai-tab a:nth-child(2).xd-rencai-sel,
.xd-rencai-tab a:nth-child(2):hover {
  background: #6887B7;
  border: none;
  color: #fff;
}

.xd-rencai-tab a:nth-child(3).xd-rencai-sel,
.xd-rencai-tab a:nth-child(3):hover {
  background: #F99C34;
  border: none;
  color: #fff;
}

.xd-zhi-swiper .swiper-slide:nth-child(1).swiper-slide-active {
  border: 1px solid #E82D17;
}

.xd-zhi-swiper .swiper-slide:nth-child(2).swiper-slide-active {
  border: 1px solid #6887B7;
}

.xd-zhi-swiper .swiper-slide:nth-child(3).swiper-slide-active {
  border: 1px solid #F99C34;
}

.xd-zhao-pt .descp {
  line-height: 2;
  color: #666;
  padding: 80px 0px 0px 0px;
}

.xd-zhao-pt .num {
  justify-content: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.xd-zhao-pt .num .desc {
  font-weight: bold;
}

.xd-zhao-pt .item {
  width: 260px;
  height: 78px;
  margin: 0px 20px;
  text-align: center;
}

.xd-zhao-pt .item .nums {
  color: #666;
  margin-bottom: 20px;
}

.xd-zhao-pt .item .nums span {
  color: #E82D17;
  font-size: 40px;
  font-weight: bold;
}

.xd-zhao-pt .pics {
  text-align: center;
  padding-bottom: 20px;
}

.xd-zhao-pt .pics img {
  width: 700px;
}



.xd-detsm-pic-swiper {
  height: 80px;
  width: 516px;
  margin: 0 auto;
}

.xd-detsm-pic-swiper .xd-det-pic {
  opacity: .4;
  height: 80px;
}

.xd-detsm-pic-swiper .swiper-slide-thumb-active .xd-det-pic {
  opacity: 1;
}

.xd-detsm-pic-swiper .xd-det-pic img {
  width: 100%;
  max-height: 100%;
}

.xd-det-pic-main {
  width: 600px;
  margin: 0 auto;
  position: relative;
}

.xd-detbig-pic-swiper {
  height: 456px;
  width: 100%;
  margin-bottom: 40px;
  box-shadow: inset 0px -1px 0px 0px #E5E5E5;

}

.xd-detbig-pic-swiper .xd-det-pic img {
  width: 100%;
}

.swiper-detbig-prev,
.swiper-detbig-next {
  width: 32px;
  height: 64px;
  top: 35%;
}

.swiper-detbig-prev {
  left: 0px;
  background: url(../image/crcs-news-pic-scoll-back-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-detbig-next {
  right: 0;
  background: url(../image/crcs-news-pic-scoll-next-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-detsm-prev,
.swiper-detsm-next {
  width: 32px;
  height: 80px;
  background: #f5f5f5 url(../image/crcs-news-scoll-next-btn-nor.png) no-repeat;
  background-size: cover;
  border-radius: 4px 0px 4px 4px;
  bottom: 0px;
  top: auto;
}

.swiper-detsm-next {
  right: 0px;
}

.swiper-detsm-prev {
  background: #f5f5f5 url(../image/crcs-news-scoll-back-btn-nor.png) no-repeat;
  background-size: cover;
  left: 0px;
}

.xd-det-tab {
  width: 100%;
  height: 400px;
  display: table;
}

.xd-det-tab-in {
  width: 100%;
  height: 400px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  background: #f8f8f8;
}

.xd-det-tab-in img {
  max-width: 100%;
  max-height: 100%;
}

.xd-zhi-about-files {
  position: relative;
}

.xd-zheng-wraps {
  width: 100%;
  height: 100%;
  padding: 8px;
  transition: all ease .3s;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
}

.xd-zheng-wraps .pics {
  text-align: center;
  display: table;
  height: 100%;
  width: 100%;
  background: #f8f8f8;
}

.xd-zheng-wraps .pic-in {
  text-align: Center;
  display: table-cell;
  vertical-align: middle;
  height: 313px;
}

.xd-zheng-wraps .pic-in img {
  max-width: 100%;
  max-height: 100%;
}

.xd-zheng-swiper {
  width: 900px;
  margin: 0 auto;
  padding: 40px 0px 80px 0px;
}

.xd-zheng-swiper .swiper-container {
  padding-bottom: 60px;
}

.xd-zheng-swiper .swiper-slide {
  width: 500px;
  height: 333px;
}

.xd-zheng-titles {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-top: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.swiper-zheng-prev,
.swiper-zheng-next {
  width: 54px;
  height: 54px;
  top: 45%;
}

.swiper-zheng-prev {
  left: 140px;
  background: url(../image/crcs-pub-scoll-back-btn-nor.png) no-repeat;
  background-size: cover;
}

.swiper-zheng-next {
  right: 140px;
  background: url(../image/crcs-pub-scoll-next-btn-nor.png) no-repeat;
  background-size: cover;
}

.xd-ry-table {
  border-radius: 8px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e5e5;
  border-bottom: none;
}

.xd-ry-table tr {
  height: 56px;
  border-radius: 8px;
}

.xd-ry-table th,
.xd-ry-table td {
  padding-left: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.xd-ry-table-pic {
  display: inline-block;
  padding-top: 8px;
  vertical-align: top;
  width: 24px;
}

.xd-ry-table-pic img {
  width: 24px;
}

.xd-ry-table-title {
  font-weight: bold;
  width: 90%;
  display: inline-block;
  line-height: 2;
  margin-left: 20px;
}

.xd-ry-table th {
  font-weight: bold;
  color: #E82D17;
}

.xd-zhishi {
  background: url(../image/crcs-business-property-bg.png) no-repeat center bottom;
  background-size: 100% auto;
}


/***************list end****************/


/***************成长****************/

.xd-cheng-in {
  width: 980px;
  margin: 0 auto;
  border-left: 1px solid #e5e5e5;
}

.xd-chengzhang {
  background: url(../image/crcs-about-couse-bg01.png) no-repeat center top;
  background-size: auto 360px;
}

.xd-cheng-wrap {
  position: relative;
  left: -9px;
  padding-top: 45px;
}

.xd-cheng-item-title {
  background: url(../image/crcs-about-couse-axis-point.png) no-repeat left center;
  background-size: 18px 18px;
  font-weight: bold;
  color: #E82D17;
  font-size: 24px;
  padding-left: 55px;
  margin-bottom: 20px;
}

.xd-cheng-item-cont {
  margin-left: 55px;
  width: 860px;
  min-height: 194px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  padding: 10px;
  display: flex;
  margin-bottom: 20px;
}

.xd-cheng-item-left {
  flex: 1 0 auto
}

.xd-cheng-item-right {
  width: 270px;
  height: 100%;
}

.xd-cheng-item-right .table {
  display: table;
  height: 100%;
  width: 100%;
}

.xd-cheng-item-right .table-in {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  height: 172px;
  width: 100%;
}

.xd-cheng-item {
  margin-bottom: 60px;
}

.xd-cheng-item-right .table-in img {
  max-width: 100%;
  max-height: 100%;
}

.xd-cheng-item-left {
  padding: 57px 30px 30px 30px;
  width: 0px;
  overflow: hidden;
}

.xd-cheng-item-left .item-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.xd-cheng-item:last-child {
  margin: 0px;
}

.xd-cheng-item:last-child .xd-cheng-item-cont:last-child {
  margin-bottom: 0px;
}

.xd-cheng-item-left .item-desc {
  color: #666;
  line-height: 2;
}

.xd-cheng-main {
  padding-bottom: 247px;
  background: url(../image/crcs-about-couse-bg02.png) no-repeat center bottom;
  background-size: auto 400px;
}

/***************成长 end****************/


/***************news page****************/

.xd-news-page {
  color: #666;
  text-align: center;
  padding: 40px 0px 80px 0px;
}

.xd-news-page .crc-page-num,
.xd-news-page .crc-pub-page-num,
.xd-news-page .crc-pub-page-next {
  width: 42px;
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  border: 1px solid #d9d9d9;
  font-size: 14px;
  color: #666;
  margin: 0 5px;
  background: #fff;
}

.xd-news-page .crc-page-num.crc-page-sel,
.xd-news-page .crc-page-num:hover,
.xd-news-page .crc-pub-page-num:hover,
.xd-news-page .crc-pub-page-sel,
.xd-news-page .crc-pub-page-next:hover {
  color: #fff !important;
  background: #E82D17;
  border-color: #E82D17;
}

.xd-news-page span {
  display: inline-block;
  margin: 0 5px;
  color: #666;
}

.xd-news-page .crc-page-text,
.xd-news-page .crc-pub-page-text {
  height: 42px;
  padding: 5px;
  width: 60px;
  border: 1px solid #d9d9d9;
  margin-right: 5px;
}

.xd-news-page .crc-page-enter1,
.xd-news-page .crc-pub-page-enter {
  height: 42px;
  line-height: 42px;
  display: inline-block;
  color: #fff;
  text-align: center;
  background: #E82D17;
  cursor: pointer;
  border-radius: 4px;
  width: 60px;
}

.xd-news-page .crc-prePage,
.xd-news-page .crc-nextPage,
.xd-news-page .crc-pub-page-prev,
.xd-news-page .crc-pub-page-next {
  width: 80px;
  height: 40px;
  line-height: 40px;
  background: #fff;
}


.xd-news-page .crc-pub-page {
  padding: 40px 0px 80px 0px;
}

.xd-news-page .crc-pub-page-sel {
  background: #E82D17;
  border: #E82D17;
  color: #fff;
}

.xd-news-page .crc-pub-page-enter {
  border-color: #E82D17;
  background: #E82D17;
}

.xd-footer-qrcode-pic {
  position: absolute;
  bottom: 70px;
  left: -55px;
  display: none;
}

.xd-footer-qrcode-pic img {
  width: 160px;
}

.xd-footer-qrcode:hover .xd-footer-qrcode-pic {
  display: block;
}


/***************news page end****************/


/***************企业文化****************/

.rcms-item {
  padding: 36px 40px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  margin-bottom: 20px;
  position: relative;
}

.rcms-item-top {
  display: flex;
}

.rcms-catlog-bot {
  padding-left: 220px;
  position: relative;
  top: -20px;
}

.rcms-item-bottom {
  padding-right: 220px;
  position: absolute;
  top: 120px;
}

.rcms-jing-bottom {
  position: absolute;
  padding-left: 220px;
  top: 120px;
}

.rcms-item-qiye {
  padding: 36px 40px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  margin-bottom: 20px;
}

.rcms-catlog-pic {
  width: 180px;
  flex: 0 0 auto;
}

.rcms-catlog-pic img {
  width: 100%;
}

.rcms-catlog-text {
  flex-grow: 1;
  padding-left: 40px;
}

.rcms-item:nth-child(even) .rcms-catlog-text {
  padding-right: 40px;
  padding-left: 0px;
}

.rcms-catlog-title {
  line-height: 1.4;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.rcms-catlog-sub {
  color: #F99D35;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.rcms-catlog-desc {
  line-height: 2;
  color: #666;
  text-align: justify;
}

.rcms-catlog-desc-title {
  font-weight: bold;
  margin-bottom: 2px;
}

.rcms-catlog-desc-item {
  color: #666;
}

.rcms-catlog-jzg-bg {
  padding-right: 0px !important;
  position: relative;
}

.rcms-catlog-jzg-pic,
.rcms-qiye-pic {
  width: 180px;
  height: 180px;
  position: absolute;
  right: 0px;
  top: -20px;
}

.rcms-catlog-jzg-pic img,
.rcms-qiye-pic img {
  width: 100%;
  height: 100%;
}

.rcms-catlog-disc-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.rcms-catlog-disc {
  display: flex;
}

.rcms-catlog-disc .rcms-catlog-disc-item:nth-child(2) {
  padding-left: 130px;
}

.rcms-catlog-disc .rcms-catlog-disc-item:nth-child(1) {
  padding-right: 100px;
  background: url(image/crcs-lines.png) no-repeat right center;
}

.rcms-catlog-qiye-disc .rcms-catlog-qiye-disc-item:nth-child(1) {
  background: url(image/crcs-lines.png) no-repeat right center;
  background-size: 1px 120px;
}

.rcms-catlog-disc-item {
  width: 50%;
  color: #666;
  min-height: 250px;
}

.rcms-catlog-disc-wrap p {
  margin-bottom: 5px;
}

.rcms-catlog-qiye-disc {
  display: flex;
  width: 100%;
  margin-bottom: 40px;
}

.rcms-catlog-qiye-disc-item {
  width: 50%;
  padding-left: 16px;
}

.rcms-catlog-qiye-disc-item:nth-child(even) {
  padding-left: 130px;
}

.rcms-item-qiye {
  position: relative;
}

.rcms-item-qiye-top {
  display: flex;
  margin-bottom: 10px;
}

.rcms-qiye-pic {
  right: 45px;
  top: 50px;
}

.rcms-catlog-qiye-disc-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.rcms-catlog-qiye-desc {
  color: #666;
}

.rcms-catlog-qiye-disc-desc p {
  margin-bottom: 5px;
}

.rcms-nopadding {
  padding: 0px;
}

.rcms-catlog-sub-text {
  margin-bottom: 30px;
  color: #666;
}

.rcms-catlog-sub-text p {
  color: #666;
}

.rcms-item-main {
  display: flex;
  justify-content: space-between;
}

.rcms-item-main .rcms-item {
  width: calc(50% - 10px);
}

.xd-fan {
  display: none;
}</pre></body></html>