@charset "UTF-8";
/*
 * @Description: 企业详情
 * @Author: hxh
 * @Date: 2025-04-24 14:36:27
 */
.detail-info {
  width: 100%;
  height: 370px;
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.detail-info .detail-image {
  width: 534px;
  height: 330px;
  margin-right: 22px;
}
.detail-info .detail-image img {
  width: 100%;
  height: 100%;
}
.detail-info .detail-content {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  padding-top: 10px;
}
.detail-info .detail-content .detail-title {
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  font-size: 20px;
  color: #333333;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 5px;
}
.detail-info .detail-content .detail-text {
  height: -webkit-calc(100% - 35px);
  height: -moz-calc(100% - 35px);
  height: calc(100% - 35px);
  position: relative;
  padding-bottom: 21px;
}
.detail-info .detail-content .detail-text .text-inner {
  overflow: hidden;
  font-size: 15px;
  color: #333333;
  text-indent: 30px;
  line-height: 28px;
  max-height: 252;
  -webkit-line-clamp: 9;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  /* ! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* autoprefixer: on */
}
.detail-info .detail-content .detail-text .text-inner span {
  font-weight: bold;
}
.detail-info .detail-content .detail-text .more {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  color: #2485e7;
  line-height: 21px;
  padding-right: 21px;
  background: url(../images/index/icon_module_more.png) no-repeat right center;
}

.viewer .left-viewer {
  width: 220px;
}
.viewer .right-viewer {
  width: 960px;
  min-height: 500px;
}

.list .list-item {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}
.list .list-item:last-child {
  border-bottom: none;
}
.list .list-item:hover {
  border-bottom-color: #2485e7;
}
.list .list-item:hover .item-date,
.list .list-item:hover .item-title {
  color: #2485e7 !important;
}
.list .list-item .item-icon {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}
.list .list-item .item-icon .icon-dot-gradient {
  position: relative;
  width: 15px;
  height: 15px;
}
.list .list-item .item-icon .icon-dot-gradient::before, .list .list-item .item-icon .icon-dot-gradient::after {
  content: "";
  position: absolute;
}
.list .list-item .item-icon .icon-dot-gradient::before {
  width: 10px;
  height: 10px;
  background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: -o-linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
  background: linear-gradient(315deg, rgba(255, 255, 255, 0) 0%, rgba(247, 165, 50, 0.89) 100%);
}
.list .list-item .item-icon .icon-dot-gradient::after {
  width: 10px;
  height: 10px;
  left: 5px;
  top: 5px;
  background: -webkit-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(315deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(135deg, #2485e7 0%, rgba(255, 255, 255, 0) 100%);
}
.list .list-item .item-content {
  -webkit-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
}
.list .list-item .item-content .item-title {
  font-size: 14px;
  line-height: 1.48em;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.list .list-item .item-date {
  font-size: 14px;
  line-height: 1.48em;
  color: #999;
  margin-left: 10px;
}
.list .list-item .item-date.active {
  color: #2485e7;
}