@charset "UTF-8";
/**
 * 政策文件页面样式
 * date: 2024-7-5
 * author: xhz
 */
.detail-main {
  margin: 40px auto 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.detail-main .left-nav {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.detail-main .left-nav .guide-module {
  height: 100px;
  background: url(../images/list-nav.png) no-repeat center;
  overflow: hidden;
  position: relative;
  padding: 22px 0 0 30px;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.08);
}
.detail-main .left-nav .guide-module:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 1px;
  background: #fff;
  top: 23px;
  left: 30px;
}
.detail-main .left-nav .guide-module .guide-title {
  margin-top: 5px;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.5;
}
.detail-main .left-nav .guide-module .guide-subtitle {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  text-transform: uppercase;
}
.detail-main .left-nav .links {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.detail-main .left-nav .links a {
  display: block;
  height: 60px;
  background: #fff;
  line-height: 60px;
  padding-left: 24px;
  position: relative;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(153, 153, 153, 0.1);
  background: url(../images/list-arrow1.png) no-repeat right 20px center;
}
.detail-main .left-nav .links a:last-child {
  border-bottom: none;
}
.detail-main .left-nav .links a:hover {
  background: url(../images/list-arrow2.png) no-repeat right 20px center;
  color: #17a4b7;
}
.detail-main .left-nav .links a.current {
  color: #17a4b7;
  background: url(../images/list-arrow2.png) no-repeat right 20px center;
  font-weight: bold;
}
.detail-main .detail-content {
  flex: 1;
  min-width: 0;
  background: #fff;
  padding: 8px 24px 24px;
}
.detail-main .mod .detail-title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  position: relative;
}
.detail-main .mod .detail-title:before {
  content: "";
  position: absolute;
  top: 44%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #17a4b7 0%, #23c1eb 100%);
}
.detail-main .mod .detail-title .txt {
  padding-left: 16px;
  font-size: 22px;
  color: #333;
  font-weight: bold;
}
.detail-main .mod .detail-title .search {
  width: 280px;
  height: 34px;
  display: flex;
  overflow: hidden;
  background: #fff;
}
.detail-main .mod .detail-title .search input {
  flex: 1;
  padding: 0 12px;
  border: 1px solid #dce3e9;
  background: none;
  font-size: 14px;
  outline: none;
  color: #333;
}
.detail-main .mod .detail-title .search input::-moz-placeholder {
  color: #999;
}
.detail-main .mod .detail-title .search input::placeholder {
  color: #999;
}
.detail-main .mod .detail-title .search button {
  border: none;
  outline: none;
  width: 50px;
  cursor: pointer;
  background: #17a4b7;
  position: relative;
  transition: all 0.3s ease;
  color: #fff;
}
.detail-main .list-title {
  margin-top: 24px;
  display: flex;
  align-items: center;
  height: 48px;
  background: #fafafa;
}
.detail-main .list-title .txt {
  flex: 1;
  text-align: center;
}
.detail-main .list-title .date {
  color: #333;
  width: 200px;
  text-align: center;
  font-size: 14px;
}
.detail-main .com-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-main .com-list li {
  height: 50px;
  border-bottom: 1px dashed #d3d3d3;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 0 0 0 24px;
  transition: all 0.3s ease;
}
.detail-main .com-list li:hover {
  background: #fafafa;
}
.detail-main .com-list li:hover .txt,
.detail-main .com-list li:hover .date {
  color: #17a4b7;
}
.detail-main .com-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 16px;
}
.detail-main .com-list li .txt {
  flex: 1;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.detail-main .com-list li .date {
  width: 200px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
  transition: all 0.3s ease;
}

.flexsb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}