/* 通用 块标题 */
.section-title {
  font-size: 40px;
  font-weight: 500;
  color: #262626;
}
.section-second-title {
  font-size: 16px;
  color: #8C8C8C;
}

.shortcuts {
  padding: 0 36px
}
.shortcuts .shortcut-list-wrap {
  display: none;
}
.shortcuts .shortcut-list-wrap.active{
  display: block;
}
.shortcuts .shortcut-list {
  padding: 32px 0;
  margin-bottom: 0;
}
.shortcuts .shortcut-list .shortcut-item {
  flex: 1;
}
.shortcut-item .icon-wrap {
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
}
.shortcut-item img {
  transition: all ease-in-out .3s;
}
.shortcut-item:hover img {
  transform: scale(1.25, 1.25);
  box-shadow: 0 5px 16px #C5CEE0;
  border-radius: 8px;
}
.shortcuts .shortcut-list .shortcut-item a {
  text-decoration: none;
}
.shortcuts .shortcut-list .shortcut-item .infos {
  padding-top: 6px;
  margin-left: 18px;
}
.shortcuts .shortcut-list .shortcut-item .infos .title {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 8px;
}
.shortcuts .shortcut-list .shortcut-item:hover .infos .title {
  color: #007bff;
}
.shortcuts .shortcut-list .shortcut-item .infos .desc {
  font-size: 12px;
  color: #8c8c8c;
}
.shortcuts .shortcut-list .shortcut-item:hover .infos .desc {
  color: #007bff;
}
.shortcuts .expand-wrap {
  padding-bottom: 12px;
}
.shortcuts .expand-wrap .btn-expand {
  width: 48px;
  height: 48px;
  margin-top: -32px;
  background-image: url(../images/home/sprite-arrows-down.png);
  animation: .8s steps(7) infinite down;
  cursor: pointer;
}
@keyframes down {
  100% { background-position: 0 -336px; }
}

/* banner 广告位 */
.banner-advtisement {
  width: 100%;
}

/* 企业服务市场 */
.company-services-market .service {
  margin-bottom: 44px;
}
.service .service-desc {
  flex: 0 0 200px;
  width: 200px;
}
.service .service-body {
  flex: 1;
}
.service .service-body .service-title {
  line-height: 60px;
  height: 60px;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 600;
  border-radius: 0 12px 0 0;
}
.service .service-body .service-list {
  height: 200px;
  border-radius: 0 0 12px 0;
  background-color: #fff;
}
.service-body .service-list .service-item {
  flex: 1;
  position: relative;
  padding: 24px;
}
.service-body .service-list .service-item:after {
  display: block; 
  content: '';
  position: absolute;
  right: 0;
  top: 40px;
  width: 2px;
  height: 120px;
  background: rgba(235, 235, 235, 0.61);
}
.service-body .service-list .service-item:last-child:after {
  display: none;
}
.service-list .service-item .service-item-title {
  font-weight: 600;
  font-size: 18px; 
  color: #262626;
  margin-bottom: 14px;
}
.service-list .service-item .service-item-desc {
  font-size: 12px;
  color: #595959;
  line-height: 1.5;
  margin-bottom: 0;
}
.service-list .service-item:hover .service-item-title {
  color: #007bff;
}
.service-list .service-item {
  position: relative;
}
.service-list .service-item .link {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 154px;
  height: 32px;
  line-height: 32px;
  padding-left: 10px;
  border-radius: 16px;
  background-color: #FFF5EC;
}
.service-item .link .label {
  font-size: 12px;
  color: #FF7700;
}
.service-item .link .yh-icon-wrap {
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 50%;
  background-color: #FF7700;
}
.service-item .link .yh-icon-wrap .yh-icon {
  line-height: 32px;
}
.service-body .service-list .service-item-link {
  display: inline-block;
}
.service-body .service-list .service-item-link:hover {
  text-decoration: none;
}
.service.service-industry .service-body .service-title {
  background: rgba(4, 63, 255, 0.1);
}
.service.service-agency .service-body .service-title {
  background: rgba(28, 181, 131, 0.1);
}
.service.service-qualification .service-body .service-title {
  background: rgba(137, 129, 244, 0.1);
}
.service.service-operation .service-body .service-title {
  background: rgba(255, 143, 113, 0.1);
}
.service .other-relative-information {
  flex: 0 0 240px;
  width: 240px;
  height: 260px;
  margin-left: 16px;
  border-radius: 12px;
  border: 1px solid #E4E8F0;
}
.service .other-relative-information .info-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  background: rgba(3, 63, 255, 0.06);
  border-radius: 12px 12px 0 0;
}
.other-relative-information .info-head .info-head-title {
  height: 60px;
  line-height: 60px;
  padding-left: 12px;
  margin-bottom: 0;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.other-relative-information .info-head .info-head-img {
  position: absolute;
  left: 0; 
  top: 0;
  z-index: 1;
}
.other-relative-information .info-head .info-head-more {
  line-height: 60px;
  padding: 0 12px;
  cursor: pointer;
}
.info-head .info-head-more .info-head-more-label {
  font-size: 14px;
  color: #033FFF;
}
.info-head .info-head-more .yh-icon {
  font-size: 12px;
}
.info-head .info-head-more .yh-icon:before {
  color: #033FFF;
}
.other-relative-information .info-body {
  padding: 24px 12px;
}
.info-body .infos .info {
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
}
.info-body .infos .info a {
  display: inline-block;
  color: #595959;
}
.info-body .infos .info a:hover {
  text-decoration: none;
  color: #007bff;
}
.infos .info .round {
  width: 6px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background-color: #FF7700;
}
.infos .info .content {
  width: 200px;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0;
}

/* 定制方案  */
.customized-solutions {
  position: relative;
  margin-bottom: 50px;
}
.customized-solutions .bg-wrap{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 720px;
  z-index: 1;
}
.customized-solutions .content-container {
  position: relative;
  height: 720px;
  padding: 88px 40px 0;
  z-index: 2;
}
.customized-solutions .content-container .solution-form {
  position: relative;
  padding-top: 66px;
}
.content-container .solution-form .bg-solution-form {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 570px;
  z-index: -1;
}
.content-container .solution-form .title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}
.content-container .solution-form .second-title {
  font-size: 14px;
  color: #8C8C8C;
  margin-bottom: 30px;
}
.content-container .solution-form .tags {
  margin-bottom: 64px;
}
.solution-form .tags .tag {
  padding: 10px;
  font-size: 0;
  cursor: pointer;
  margin-right: 12px;
  border-radius: 18px;
  background-color: #E5EBFF;
}
.solution-form .tags .tag:last-child {
  margin-right: 0;
}
.solution-form .tag .yh-icon {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #033FFF;
  margin-right: 1px;
}
.solution-form .tag .tag-label {
  display: inline-block;
  vertical-align: middle;
  line-height: 20px;
  font-size: 14px;
  color: #033FFF;
}
.solution-form .tags .tag.active {
  background-color: #033FFF;
}
.solution-form .tags .tag.active .yh-icon {
  color: #fff;
}
.solution-form .tags .tag.active .tag-label {
  color: #fff;
}
.solution-form .form-wrap .form {
  width: 398px;
}
.solution-form .form .form-item {
  margin-bottom: 24px;
}
.form .form-item .input-wrap {
  padding: 12px 16px;
  border-radius: 4px;
  border: 2px solid #fff;
  box-shadow: 0px 7px 13px 0px #E8EEFA, 0px -3px 14px 0px #FFFFFF;
}
.form-item .input-wrap .yh-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  margin-right: 8px;
}
.form-item .input-wrap .label {
  font-size: 16px;
  color: #262626;
}
.form-item .input-wrap input {
  border: none;
  background: transparent;
}
.form-item .input-wrap input:focus {
  outline: none;
}
.form-item .input-wrap input::placeholder {
  font-size: 14px;
  color: #8C8C8C;
}
.form-item.btn-submit .btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  color: #fff;
}

/* 客户需求  左边 */
.customer-needs .customer-needs-left {
  flex: 0 0 844px;
  width: 844px;
  margin-right: 34px;
}
.customer-needs .customer-needs-list {
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
}
.customer-needs .customer-needs-list .customer-needs-item {
  position: relative;
  flex: 0 0 410px;
  width: 410px;
  height: 226px;
  padding: 24px;
  margin-bottom: 36px;
  margin-right: 24px;
  background-color: #fff;
  border-radius: 12px;
  cursor: pointer;
  color: #262626;
}
.customer-needs .customer-needs-list .customer-needs-item:nth-child(2n) {
  margin-right: 0;
 } 
.customer-needs .customer-needs-list .customer-needs-item:hover {
  box-shadow: 0px 8px 24px 0px #DCE2ED;
}
.customer-needs-list .customer-needs-item .needs-title {
  width: 260px;
  white-space: nowrap;
  text-overflow:ellipsis;
  overflow: hidden;
  height: 30px;
  color: #262626;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.customer-needs-list .customer-needs-item:hover .needs-title {
  color: #007bff;
}
.customer-needs-list .customer-needs-item .needs-body {
  flex-wrap: wrap;
}
.customer-needs-item .needs-body .needs-body-inline {
  flex: 0 0 50%;
  width: 50%;
  margin-bottom: 20px;
}
.customer-needs-item .needs-body .needs-body-block {
  flex: 0 0 100%;
  width: 100%;
  margin-bottom: 20px;
}
.customer-needs-item .needs-body .label {
  height: 24px;
  color: #495770;
}
.customer-needs-item .needs-body .needs-body-block.alarm {
  margin-bottom: 8px;
}
.needs-body .needs-body-item .yh-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
  margin-right: 12px;
}
.needs-body .needs-body-item.location .label, .needs-body .needs-body-item.alarm .label{
  display: inline-block;
  width: 330px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.customer-needs-list .customer-needs-item .status {
  position: absolute;
  top: 24px;
  right: 0;
  width: 120px;
  height: 36px;
  padding-left: 20px;
}
.customer-needs-item .status .bg-status {
  position: absolute;
  left: 0;
  top: 0;
}
.customer-needs-item .status .status-round {
  position: relative;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #033FFF;
}
.customer-needs-item .status.treating .status-round {
  background-color: #FF7700;
}
.customer-needs-item .status.treating .status-label {
  color: #FF7700;
}
.customer-needs-item .status .status-label {
  position: relative;
  line-height: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #033FFF;
}

/* 客户需求 右边 */
.content-container .customer-needs .customer-needs-right {
  flex: 1;
}
.customer-needs .latest-needs .latest-needs-title {
  height: 76px;
  line-height: 76px;
  padding-left: 12px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  color: #FF7700;
  border-radius: 12px 12px 0 0;
  background-color: rgba(255, 119, 0, .11);
}
.latest-needs .latest-needs-list-wrap {
  height: 674px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
.latest-needs .latest-needs-list-wrap .latest-needs-list {
  padding: 0 12px;
}
.latest-needs-list-wrap .latest-needs-list .latest-needs-item {
  position: relative;
  padding: 24px 0;
  cursor: pointer;
}
.latest-needs-list-wrap .latest-needs-list .latest-needs-item:hover .title {
  color: #033FFF;
}
.latest-needs-list-wrap .latest-needs-list .latest-needs-item:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
}
.latest-needs-list .latest-needs-item .needs-item-item .label {
  width: 70px;
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
}
.latest-needs-list .latest-needs-item .needs-item-item .txt {
  font-size: 14px;
  line-height: 20px;
  color: #262626;
}
.latest-needs-list .latest-needs-item .needs-item-item.title {
  width: 378px;
  padding-right: 198px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
  color: #262626;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.needs-item-item.contact {
  margin-bottom: 12px;
  margin-right: 28px;
}
.latest-needs-list .latest-needs-item .needs-item-item.contact .label {
  width: 56px;
}
.needs-item-item.phone {
  margin-bottom: 12px;
}
.needs-item-item.area {
  flex: 0 0 100%;
}
.needs-item-item.area .txt {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.latest-needs-list .latest-needs-item .needs-item-item.created {
  position: absolute;
  top: 28px;
  right: 12px;
  line-height: 18px;
}
.latest-needs-list .latest-needs-item .needs-item-item.created .label {
  font-size: 12px;
  color: #033FFF;
}
.latest-needs-list .latest-needs-item .needs-item-item.created .txt {
  font-size: 12px;
  color: #033FFF;
}
.customer-needs .review-more .link-review-more {
  text-decoration: none;
}
.customer-needs .link-review-more .yh-icon:before {
  color: #033FFF;
}

/* 创业知识库 */
.business-knowledge .knowledge-title {
  width: 100%;
  height: 38px;
  line-height: 38px;
  margin-bottom: 0;
  border-radius: 12px 12px 0 0;
  background-color: rgba(3, 63, 255, 0.06);
}
.business-knowledge .knowledge-title .text {
  width: 101px;
  height: 38px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding-left: 12px;
  background: url(../images/home/bg-knowledge-title.png) no-repeat center;
  background-size: 100%;
}
.business-knowledge .knowledge-title .link {
  padding:  0 12px;
  font-size: 14px;
}
.yh-video-title .link {
  padding:  0 12px;
  font-size: 14px;
}
.knowledge-title .link .yh-icon {
  font-size: 14px;
  margin-left: 6px;
}
.knowledge-title .link .yh-icon:before {
  color: #033FFF;
}
.yh-video-title .link .yh-icon {
  font-size: 14px;
  margin-left: 6px;
}
.yh-video-title .link .yh-icon:before {
  color: #033FFF;
}

/* 萤火视频  */
.yh-videos .content {
  height: 408px;
  padding: 24px 12px;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 24px;
}
.yh-videos .content .main {
  flex: 0 0 578px;
  width: 578px;
  position: relative;
  margin-right: 24px;
}
.yh-videos .content .main .bg-video {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  border-radius: 12px;
}
.yh-videos .main .icon-play {
  position: relative;
  z-index: 2;
}
.yh-videos .secondary {
  position: relative;
  margin-right: 24px;
  flex: 0 0 202px;
  width: 202px;
}
.yh-videos .secondary:last-child {
  margin-right: 0;
}
.yh-videos .content .secondary .bg-video {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 12px;
  z-index: 1;
}
.yh-videos .secondary .icon-play {
  position: relative;
  z-index: 2;
}
.yh-videos .video-player {
  border-radius: 12px;
  background-color: #000;
}

/* 萤火快讯 */
.yh-news .yh-latest-news {
  flex: 0 0 408px;
  width: 408px;
  margin-right: 24px;
}
.yh-news .yh-latest-news .news-list-wrap {
  height: 660px;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
}
.yh-news .yh-latest-news .news-list {
  padding: 0 12px;
}
.yh-latest-news .news-list .news-item {
  position: relative;
  padding: 16px 0;
}
.yh-latest-news .news-item .link {
  display: block;
}
.yh-latest-news .news-item .link:hover .title {
  color: #007bff;
}
.yh-latest-news .news-item .title {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 12px;
}
.yh-latest-news .news-item .text {
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
  margin-bottom: 0;
}
.yh-news .news-list .news-item:after {
  position: absolute;
  display: block;
  content: '';
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #D3D6DD;
}
.yh-news .news-item .img {
  flex: 0 0 176px;
  width: 176px;
  height: 118px;
  margin-right: 18px;
}
.yh-news .yh-other-news {
  flex: 1;
}
/* 分类资讯 */
.yh-news .yh-other-news .news-tabs-wrap {
  height: 330px;
  padding: 0 12px;
  background-color: #fff;
  border-radius: 12px;
  margin-bottom: 24px;
}
.yh-news .yh-other-news .news-tabs {
  margin-bottom: 0;
  padding: 10px 0;
}
.yh-other-news .news-tabs .news-tab {
  position: relative;
  padding: 0 14px;
}
.yh-other-news .news-tabs .news-tab:first-child {
  padding-left: 0;
}
.yh-other-news .news-tabs .news-tab:after {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 16px;
  background-color: #D3D6DD;
}
.yh-other-news .news-tabs .news-tab:last-child:after {
  display: none;
}
.yh-other-news .news-tab .tab-btn {
  display: inline-block;
  width: 84px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #262626;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
}
.yh-other-news .news-tab.active .tab-btn {
  color: #fff;
  background-color: #FF7700;
}
.yh-other-news .news-tabs-wrap .container {
  padding-top: 16px; 
} 
.yh-other-news .tab-container .first-news {
  flex:0 0 254px;
  width: 254px;
  margin-right: 22px;
}
.yh-other-news .tab-container .other-news-list {
  margin-bottom: 0;
}
.yh-other-news .tab-container .other-news-list .other-news-item {
  height: 20px;
  margin-right: 36px;
  margin-bottom: 16px;
}
.yh-other-news .tab-container .other-news-list .other-news-item:nth-child(2n) {
  margin-right: 0;
}
.other-news-list .other-news-item .link {
  display: flex;
  width: 240px;
  height: 100%;
  align-items: center;
  color: #262626;
}
.other-news-list .other-news-item .link .text {
  width: 226px;
}
.other-news-list .other-news-item .link:hover{
  color: #007bff;
}
.other-news-list .other-news-item .round {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: #FF7700;
}
.yh-news .yh-other-news .news-tabs-wrap .tab-container {
  display: none;
}
.yh-news .yh-other-news .news-tabs-wrap .tab-container.active {
  display: flex;
}
.yh-other-news .first-news .title {
  font-size: 16px;
  font-weight: 600;
}
.yh-other-news .first-news img {
  margin-bottom: 16px;
}
.fast-news-and-keywords .fast-news {
  flex: 1;
}
.fast-news-and-keywords .fast-news .fast-news-container {
  height: 308px;
  padding: 0 12px;
  border-radius: 0 0 12px 12px;
  background-color: #fff;
}
.fast-news .fast-news-container .fast-news-list {
  padding: 18px 0 16px 0;
}
.fast-news-container .fast-news-list .fast-news-item {
  margin-bottom: 20px;
}
.fast-news-container .fast-news-list .fast-news-link {
  display: flex;
  align-items: center;
}
.fast-news-list .fast-news-link img {
  margin-right: 12px;
}
.fast-news-list .fast-news-link .text {
  color: #262626;
  font-size: 16px;
}
.fast-news-container .fast-news-list .fast-news-link:hover .text {
  color: #007bff;
}
.fast-news-and-keywords .keywords {
  flex: 0 0 268px;
  width: 268px;
  margin-left: 24px;
}
.fast-news-and-keywords .keywords .keywords-container {
  height: 308px;
  padding: 0 12px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}
.keywords-container .keywords-list {
  padding: 16px 0;
}
.keywords-container .keywords-list .keywords-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.keywords-container .keywords-list .keywords-link {
  font-size: 14px;
  color: #262626;
}
.keywords-container .keywords-list .keywords-link:hover {
  color: #007bff;
}

.yh-news .business-knowledge-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(630px, 1fr)); /* 200px是项的最小宽度 */
  gap: 20px; /* 设置项之间的间隔 */
  width: 1280px;
}

/*.yh-news .business-knowledge-list .business-knowledge-item {*/
/*  width: 1280px;*/
/*}*/

.business-knowledge-item .link {
  display: inline-block;
  padding: 24px;
  border-radius: 12px;
  background-color: #fff;
  padding-bottom: 0px;
}
.business-knowledge-item .link:hover{
  box-shadow: 4px 6px 8px rgba(0, 0, 0, .1);
}
.business-knowledge-item .link:hover .desc .title {
  color: #033FFF;
}
.business-knowledge-item .link .img-wrap {
  flex: 0 0 276px;
  width: 276px;
  height: 184px;
  margin-right: 24px;
}
.business-knowledge-item .link .img-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-knowledge-item .link .desc {
  flex: 1;
}
.business-knowledge-item .link .desc .title {
  font-size: 16px;
  font-weight: 600;
  color: #262626;
  margin-bottom: 12px;
  height: 40px;
}
.business-knowledge-item .link .desc .desc-text {
  font-size: 14px;
  line-height: 20px;
  color: #8c8c8c;
  margin-bottom: 0;
  height: 60px;
}
.business-knowledge-item .link .desc .created {
  font-size: 12px;
  color: #8C8C8C;
  margin-top: 10px;
}

.business-knowledge-item .link .keywords {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  height: 50px;
}

.business-knowledge-item .link .keywords .keyword-item {
  height: 25px;
  background: #F7F7F7;
  font-size: 12px;
  margin-right: 10px;
  border-radius: 13px;
  margin-top: 15px;
}

.business-knowledge-item .link .keywords .keyword-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 10px;
  color: #595959;
}

