@charset "UTF-8";
/**
* 交易信息详情
* date:2022-2-23
* author: qianyuting;
*/
.wrap {
  margin: 32px 0 50px;
  padding: 35px 20px 65px;
  -webkit-box-shadow: 0px 0px 15px rgba(17, 64, 128, 0.12);
          box-shadow: 0px 0px 15px rgba(17, 64, 128, 0.12);
  border-radius: 4px;
}

.title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
}

/* 来源 */
.sourse {
  margin-top: 16px;
  line-height: 1.5em;
  color: #999;
  text-align: center;
  border-bottom: 1px solid #E8ECF6;
}

.sourse-item {
  margin-right: 50px;
}

.sourse-item a{
  color: #999;
}
.sourse-item:last-child {
  margin-right: 0;
}

/* 流程 */
.step {
  margin-top: 35px;
  padding: 50px 40px 90px 60px;
  background-color: #f5f8ff;
}

.step-item {
  position: relative;
  float: left;
  width: 180px;
  height: 60px;
  border-top: 2px solid #e6e6e6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.step-item:nth-child(7) {
  width: 80px;
  border-radius: 0 24px 0 0;
  border-right: 2px solid #e6e6e6;
}

.step-item:nth-child(7):last-child {
  width: 0;
  border: 0;
}

.step-item:nth-child(7).abnormal {
  border-color: #0078de;
}

.step-item:nth-child(7).abnormal::after {
  display: none;
}

.step-item:nth-child(7) .step-abnormal {
  left: 100%;
  top: 100%;
  margin-left: -6px;
}

.step-item:nth-child(n+8) {
  float: right;
  border-top: 0;
  border-bottom: 2px solid #e6e6e6;
}

.step-item:nth-child(n+8) .step-info {
  top: 100%;
}

.step-item:nth-child(n+8) .step-tip {
  left: -5px;
  right: auto;
}

.step-item:nth-child(n+8) .step-tip::after {
  left: 10px;
  right: auto;
}

.step-item:nth-child(n+8).abnormal {
  border-bottom-color: #007de6;
}

.step-item:nth-child(n+8).abnormal::after {
  left: auto;
  right: 100%;
  top: 100%;
  width: 90px;
  margin-top: 0;
  z-index: 2;
}

.step-item:nth-child(n+8) .step-abnormal {
  left: -90px;
  top: 100%;
}

.step-item:nth-child(8) {
  width: 80px;
  border-radius: 0 0 24px 0;
  border-right: 2px solid #e6e6e6;
}

.step-item:nth-child(8).abnormal {
  border-right-color: #007de6;
}

.step-item.blue,
.step-item.done
 {
  border-color: #007de6;
}

.step-item.done.abnormal{
	border-color: #e6e6e6;
}

.step-item.blue .step-dot,
.step-item.done .step-dot
 {
  border-color: #007de6;
}

.step-item.current .step-detail,
.step-item.current .step-time {
  color: #007de6;
}

.step-item.current .step-dot {
  border: 0;
  background: #0078de;
  background: -webkit-gradient(linear, left top, left bottom, from(#0078de), to(#45a9ff));
  background: -webkit-linear-gradient(top, #0078de, #45a9ff);
  background: -o-linear-gradient(top, #0078de, #45a9ff);
  background: linear-gradient(to bottom, #0078de, #45a9ff);
}

.step-item.abnormal::after {
  position: absolute;
  top: 0;
  content: "";
  width: 90px;
  margin-top: -2px;
  border-top: 2px solid #007de6;
}

.step-item.abnormal .step-abnormal {
  display: block;
}

.step-info {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -10px;
  z-index: 2;
}

.step-dot {
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #e6e6e6;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.step-detail {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 8px;
  min-height: 40px;
  line-height: 20px;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.step-time {
  color: #999;
}

.step-tip {
  position: absolute;
  bottom: 100%;
  right: -5px;
  margin-bottom: 7px;
  padding: 0 10px;
  line-height: 28px;
  color: #fff;
  background: #0078de;
  background: -webkit-gradient(linear, left top, left bottom, from(#0078de), to(#45a9ff));
  background: -webkit-linear-gradient(top, #0078de, #45a9ff);
  background: -o-linear-gradient(top, #0078de, #45a9ff);
  background: linear-gradient(to bottom, #0078de, #45a9ff);
  border-radius: 6px;
  white-space: nowrap;
}

.step-tip::after {
  position: absolute;
  top: 100%;
  right: 10px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  border-color: #45a9ff transparent transparent transparent;
}

.step-deadline {
  margin-left: 10px;
}

.step-abnormal {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -6px;
}

.step-abnormal-dot {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #f1874d;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  z-index: 3;
}

.step-abnormal-tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-bottom: 11px;
  padding: 0 20px 0 40px;
  line-height: 28px;
  color: #fff;
  background: #f1874d url("../images/pages/step_abnormal_ico.png") 20px center no-repeat;
  border-radius: 6px;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.step-abnormal-tip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  width: 0;
  height: 0;
  margin-left: -4.5px;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  border-color: #f1874d transparent transparent transparent;
}

/* 内容区 */
.main {
  margin-top: 22px;
  word-break: break-all;
}

.main-content {
  width: calc(100% - 385px);
}

.sec-tit {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  line-height: 1.55em;
  font-weight: 600;
}

.sec-tit::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 3px;
  height: 16px;
  margin-top: -8px;
  background-color: #0078de;
}

.mt30 {
  margin-top: 30px;
}

/* 附件 */
.file-list {
  margin-left: 18px;
}

.file-item {
  margin-top: 20px;
}

.file-icon {
  display: inline-block;
  margin-right: 14px;
  vertical-align: middle;
}

.file-download {
  display: inline-block;
  width: 15px;
  height: 16px;
  margin-left: 15px;
  margin-top: -3px;
  background: url("../images/pages/file_download.png") center center no-repeat;
  vertical-align: middle;
}

/* 项目审批信息 */
.info-table {
  width: 100%;
  margin-top: 20px;
  table-layout: fixed;
}

.info-table td {
  height: 45px;
  padding: 12px;
  line-height: 20px;
  font-size: 13px;
  color: #5f5f5f;
  border: 1px solid #e6e6e6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info-table-label {
  font-size: 14px;
  background-color: #fafafa;
  color: #323232;
}

/* 公告正文 */
.article {
  margin-top: 20px;
}

.article-tit {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  text-align: center;
}

.article-content {
  margin-top: 25px;
  line-height: 1.7em;
  text-indent: 2em;
}

.article-p + .article-p {
  margin-top: 20px;
}

/* 办理流程公开 */
.open {
  width: 363px;
  padding: 16px 30px;
  background: url("../images/pages/flow_open_bg.jpg") no-repeat;
  background-size: 100% 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.open-info {
  margin-top: 12px;
}

.open-info-item {
  padding: 8px 0;
  font-size: 13px;
  line-height: 24px;
}

.open-info-label {
  width: 40%;
  text-align: right;
}

.open-info-cont {
  width: 60%;
}

.open-yes, .open-no {
  display: inline-block;
  width: 49px;
  color: #fff;
  text-align: center;
}

.open-yes {
  background: url("../images/pages/flow_open_yes.png") center center no-repeat;
}

.open-no {
  background: url("../images/pages/flow_open_no.png") center center no-repeat;
}

.flow-list {
  margin-top: 18px;
  padding: 35px 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.flow-item {
  position: relative;
  margin-bottom: 47px;
  background-color: #fff;
}

.flow-item::after {
  position: absolute;
  top: 100%;
  left: 50%;
  content: "";
  width: 12px;
  height: 14px;
  margin: 16px 0 0 -6px;
  background: url("../images/pages/open_flow_arrow.png") center center no-repeat;
}

.flow-item:last-child {
  margin-bottom: 0;
}

.flow-item:last-child::after {
  display: none;
}

.flow-item-hd {
  padding: 12px 22px;
  line-height: 1.5em;
  color: #fff;
  font-size: 600;
  background: url("../images/pages/open_flow_hd.jpg") center center no-repeat;
  background-size: 100% 100%;
}

.flow-item-bd {
  padding: 10px;
}

.flow-info-item {
  padding: 5px 0;
  font-size: 13px;
  line-height: 18px;
}

.flow-info-label {
  width: 30%;
  color: #666;
  text-align: right;
}

.flow-info-cont {
  width: 70%;
}

@media (max-width: 1680px) {
  .right-nav-list {
    right: 0;
  }
}

/* 2023-3-17 调整 */
.file-list {
  margin-top: 20px;
  margin-left: 0;
  padding: 20px 10px;
  border: 1px solid #e6e6e6;
}

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

.open {
  -webkit-box-shadow: 0px 0px 15px rgba(17, 64, 128, 0.12);
          box-shadow: 0px 0px 15px rgba(17, 64, 128, 0.12);
}

.trigger-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url("../images/pages/close_ico.png") center center no-repeat;
  vertical-align: middle;
  cursor: pointer;
}

.trigger-icon.expand {
  background-image: url("../images/pages/open_ico.png");
}

.muticontent .main-content {
	width: 100%;
}

.open-yes.notover{
	display:none;
}
.open-no.over{
	display:none;
}

/* 适老化 */

.show-old {
  font-size: 24px;
}

.show-old .sourse{
	padding: 13px 0;
	color: #666;
	border-bottom: 0;
	background:#DDEDFF;
}

.show-old .wrap {
  padding-bottom: 30px;
}

.show-old .main p{
	line-height:1em;
	
}
.show-old .main span{
	font-size:28px !important;
	line-height:55px;
}

.show-old .sec-tit {
  font-size: 28px;
}

.show-old .file,
.show-old .flow-item-hd  {
  font-size: 24px;
}

.show-old .step-detail {
  line-height: 1.2;
  font-size: 22px;
}

.show-old .step-tip {
  font-size: 20px;
}

.show-old .article-tit {
  font-size: 30px;
}

.show-old .open-info-item,
.show-old .flow-info-item {
  font-size: 22px;
}

.show-old .open-info-label {
  padding-right: 10px;
  box-sizing: border-box;
}

.show-old .main span.open-no {
  line-height: 1.1;
  background-size: 100% 100%;
}

.show-old .flow-info-label,
.show-old .flow-info-cont,
.show-old .open-info-label,
.show-old .open-info-cont {
  width: auto;
  line-height: 1.2;
  text-align: left;
}

.show-old .flow-list {
  padding-left: 0;
  padding-right: 0;
}

.show-old .file-list {
  font-size: 24px;
}

.show-old .file-download {
  height: 22px;
  width: 22px;
  background-size: 100% 100%;
}

.show-old table{
  font-size: 24px;
}