﻿@charset "UTF-8";
/**!
 * 交易信息详情页
 * date:2022-05-16
 * author: fxyue;
 */
.banner-img {
  height: 315px;
  background: url("../images/engineer/banner_img.jpg") top center no-repeat;
}

.detail {
  padding: 20px 40px 20px;
}

.detail-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  margin-bottom: 26px;
}

.detail-hd {
  border-bottom: 1px solid #3584F6;
}

.detail-node {
  float: left;
  width: 220px;
  height: 55px;
  background: #e8f2fc;
  border: 1px solid #c8dff4;
  color: #999;
  font-weight: 500;
  font-size: 20px;
  line-height: 53px;
  margin-left: 15px;
  text-align: center;
  border-radius: 15px 15px 0 0;
  cursor: default;
  transition: all 0.2s;
}

.detail-node.current {
  background: #3584F6;
  border-color: #3584F6;
  color: #fff;
}

.detail-node:first-child {
  margin-left: 0;
}

.detail-node.active {
  background: #3584F6;
  border-color: #3584F6;
  color: #FFFFFF;
}

.detail-source {
  margin-top: 19px;
  font-size: 0;
  text-align: center;
}

.detail-txt {
  display: inline-block;
  vertical-align: middle;
  font-weight: 350;
  font-size: 16px;
  line-height: 36px;
  color: #666;
  margin: 0 28px;
}

.detail-bd {
  min-height: 600px;
}

.detail-content {
  margin-top: 35px;
  font-weight: 350;
  font-size: 16px;
  line-height: 36px;
  color: #333;
  position: relative;
  /* text-indent: 32px; */
}

.detail-content img {
  /* display: block; */
  /* margin: 0 auto 38px; */
  max-width: 100%;
}

.detail-wrap {
  margin-top: 35px;
}

.signup-action {
  margin: 28px 0 18px;
  text-align: center;
}

.signup-action .signup-btn {
  display: inline-block;
  width: 265px;
  height: 52px;
  line-height: 52px;
  border-radius: 5px;
  background: -webkit-linear-gradient(left, #4c94f4 0%, #7cc3f3 100%);
  background: -moz-linear-gradient(left, #4c94f4 0%, #7cc3f3 100%);
  background: -o-linear-gradient(left, #4c94f4 0%, #7cc3f3 100%);
  background: linear-gradient(90deg, #4c94f4 0%, #7cc3f3 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-indent: 0px;
}

.signup-action .signup-btn:hover {
  color: #fff;
  text-decoration: none;
  opacity: .92;
}

.detail-wrap > p {
  font-weight: 350;
  font-size: 16px;
  line-height: 36px;
  color: #000000;
  margin-bottom: 11px;
}

.detail-file {
  padding: 0 32px 0 10px;
  height: 60px;
  margin-top: 18px;
}

.detail-file:first-child {
  margin-top: 0;
}

.detail-pic {
  float: left;
  width: 36px;
  height: 36px;
  margin-top: 14px;
}

.detail-left {
  float: left;
  width: 388px;
  font-weight: 400;
  line-height: 24px;
  padding: 9px 0 3px;
  margin-left: 14px;
  color: #8A8F99;
}

.detail-left p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.detail-download {
  float: right;
  width: 22px;
  height: 26px;
  margin-top: 16px;
  background: url("../images/platform/file_download.png") no-repeat;
}

.detail-btn {
  display: block;
  margin: 40px auto 0;
  width: 166px;
  height: 44px;
  background: #3584F6;
  border-radius: 22px;
  font-weight: 500;
  font-size: 20px;
  line-height: 44px;
  color: #FFFFFF;
  text-align: center;
}

.pt30{
    padding-top:30px;
}

/* 带子列表的按钮包裹层 */
.tab-mod-wrap {
  position: relative;
  float: left;
  margin-left: 15px;
}

.tab-mod-wrap:first-child {
  margin-left: 0;
}

.tab-mod-wrap .detail-node {
  margin-left: 0;
  float: none;
  display: block;
}

/* 无包裹层的单个按钮保持原有样式 */
#guanlianBtn-list > .detail-node {
  float: left;
  margin-left: 15px;
}

#guanlianBtn-list > .detail-node:first-child {
  margin-left: 0;
}

/* 子列表容器 */
.gl-sub-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  min-width: 220px;
  width: auto;
  max-width: 800px;
  padding: 10px 12px;
  background: #f7f9fc;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* hover 展开子列表 */
.tab-mod-wrap:hover .gl-sub-list {
  display: block;
}

/* 最后一个按钮的子列表右对齐，防止超出屏幕 */
.gl-sub-list.right-align {
  left: auto;
  right: 0;
}

/* 子列表项 */
.gl-sub-list a {
  display: block;
  margin: 5px 0;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e0e6f1;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-align: left;
  line-height: 1.5;
}

.gl-sub-list a:hover {
  color: #1F6DE8;
  border-color: #1F6DE8;
  background: #eef4ff;
}

/* 子列表中当前公告项 */
.gl-sub-list a.sub-current {
  color: #fff;
  border-color: #3584F6;
  background: #3584F6;
}

/* 已关联但非当前阶段的按钮样式 */
.detail-node.linked {
  color: #3584F6;
  background: #fff;
  border-color: #3584F6;
  cursor: pointer;
  text-decoration: none;
}

.detail-node.linked:hover {
  background: #eef6ff;
}