@charset "UTF-8";
/**!
* 青海政务 - 法人服务（按主题分类、按部门分类）
* date:2021-07-08
* author: zhoujie;
*/
body {
  min-width: 1366px;
}

/* 热门服务样式 */
.hot-services {
  margin-top: 30px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e6eb;
}

.hot-services-title {
  font-size: 32px;
  font-weight: 700;
  color: #484e54;
  line-height: 48px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}

.hot-services-title .icon-fire {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  font-size: 18px;
  color: #ff4444;
  line-height: 20px;
  text-align: center;
}

/* 图片图标样式（用于使用图片替代字体图标的情况） */
.hot-services-icon {
  display: inline-block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-right: 12px;
  vertical-align: middle;
}

.hot-services-title .icon-fire::before {
  content: '🔥';
  display: block;
}

.hot-services-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hot-services-list li {
  float: left;
  width: calc(33.333% - 20px);
  margin-right: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 24px;
  padding: 12px 15px 12px 35px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #f0f7ff;
  border: 1px solid #e8f4ff;
  border-radius: 4px;
  box-sizing: border-box;
}

.hot-services-list li:nth-child(3n) {
  margin-right: 0;
}

.hot-services-list li::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1.5px solid #5ba3f5;
  border-radius: 50%;
}

.hot-services-list.collapsed li:nth-child(n+10) {
  display: none;
}

/* 展开/收起按钮 */
.hot-services-toggle {
  width: 100%;
  text-align: center;
  margin-top: 18px;
  cursor: pointer;
  font-size: 16px;
  color: #3289f5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hot-services-toggle:hover {
  color: #2868b1;
}

.hot-services-toggle .icon-toggle-down {
  display: inline-block;
  width: 10px;
  height: 16px;
  background: url(../images/icon-arrow-bottom.png) top 9px center no-repeat;
  transition: transform 0.25s ease;
}

.hot-services-toggle[aria-expanded="true"] .icon-toggle-down {
  transform: rotate(180deg);
}

.hot-services-list li:hover,
.hot-services-list li.active {
  color: #2868b1;
  background: #fff;
  border: 1px solid #2868b1;
  box-shadow: 0px 2px 8px 0px rgba(40, 104, 177, 0.15);
}

/* 隐藏类 */
.hidden {
  display: none !important;
}

.content {
  margin-bottom: 60px;
  margin-top: -1px;
}

.banner {
  height: 300px;
  background: url(../images/personal_services/bg-banner.png) center;
  padding-top: 0;
}

.banner .subtitle {
  font-size: 42px;
  font-weight: 500;
  color: #fff;
  line-height: 42px;
  padding-top: 105px;
}

.banner .subtitle span {
  margin-left: 31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 36px;
}

.content-area {
  width: 1200px;
  height: auto;
  margin: auto;
}

.main {
  width: 100%;
  background: #fff;
}

.main .content-area .tab {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.main .content-area .tab .hdl,
.main .content-area .tab .birth-matters {
  float: left;
  width: 194px;
  height: 52px;
  background: rgba(102, 149, 229, 0.43);
  border-radius: 4px 4px 0px 0px;
  margin-right: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.main .content-area .tab .hdl.active {
  background: #0e2b5d;
}

.main .content-area .tab .bdl .select-area {
  margin-top: 35px;
  height: 120px;
  overflow: hidden;
}

.main .content-area .tab .bdl .select-area ul li {
  float: left;
  width: 280px;
  height: 40px;
  margin-left: 20px !important;
  margin-bottom: 20px;
  background: #f3f8ff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  color: #000;
  line-height: 40px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main .content-area .tab .bdl .select-area ul li.active, .main .content-area .tab .bdl .select-area ul li:hover {
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#2868B1), to(#3780D3));
  background: linear-gradient(270deg, #2868B1, #3780D3);
  -webkit-box-shadow: 0px 3px 10px 0px rgba(59, 114, 178, 0.29);
          box-shadow: 0px 3px 10px 0px rgba(59, 114, 178, 0.29);
}

.main .content-area .tab .bdl .select-area ul li:nth-child(6n+1) {
  margin-left: 0;
}

.main .content-area .tab .bdl .item-table {
  margin-top: 40px;
  width: 1200px;
}

.main .content-area .tab .bdl .item-table .item-head {
  border-bottom: 2px solid #e4e6eb;
}

.main .content-area .tab .bdl .item-table .item-head h3 {
  float: left;
  margin-right: 19px;
  font-size: 28px;
  font-weight: bold;
  color: #484e54;
  line-height: 60px;
}

.main .content-area .tab .bdl .item-table .item-head span {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 60px;
}

.main .content-area .tab .bdl .item-table .item-head span .num {
  color: #2868b1;
}

.main .content-area .tab .bdl .item-table .item-head .right {
  width: 50%;
  height: 60px;
}

.main .content-area .tab .bdl .item-table .item-head .right .check {
  float: left;
  width: 206px;
  margin-left: 67px;
  cursor: pointer;
}

.main .content-area .tab .bdl .item-table .item-head .right .check .icon-check {
  width: 18px;
  height: 18px;
  margin-top: 21px;
  margin-right: 6px;
  background: url(../../images/icon-check.png) center no-repeat;
}

.main .content-area .tab .bdl .item-table .item-head .right .check .icon-checked {
  background: url(../../images/icon-checked.png) center no-repeat;
}

.main .content-area .tab .bdl .item-table .item-head .right .item-search {
  margin-top: 6px;
  float: right;
}

.main .content-area .tab .bdl .item-table .item-head .right .item-search .item-search-input {
  float: left;
  width: 252px;
  height: 34px;
  border-radius: 17px 0 0 17px;
  margin-top: 9px;
  color: black;
  /* 提示文字与边框的距离 */
  padding-left: 13px;
  /* 选中后的边框线 */
  outline: none;
  border: 1px solid #ccc;
  border-right: none;
}

.main .content-area .tab .bdl .item-table .item-head .right .item-search .item-search-button {
  float: left;
  width: 52px;
  height: 34px;
  margin-top: 9px;
  margin-right: 10px;
  border-radius: 2px 17px 17px 2px;
  border: none;
  outline: none;
  background: url(../images/personal_services/bg-magnifier.png) no-repeat center;
}

.main .content-area .tab .bdl .item-table .item-head .right .item-search .item-search-button:hover {
  -webkit-box-shadow: 0px 3px 10px 0px rgba(59, 114, 178, 0.29);
          box-shadow: 0px 3px 10px 0px rgba(59, 114, 178, 0.29);
}

.main .content-area .tab .bdl .item-table .item-table {
  margin-bottom: 20px;
}

/* ========== 事项列表参考样式 ========== */
/* 第一层事项样式 - 支持三层结构 */
.main .content-area .tab .bdl .item-table .item-table .table-list .item {
  float: left;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #e4e6eb;
  padding-bottom: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  overflow: hidden;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .icon-list-close {
  float: left;
  width: 20px;
  height: 20px;
  margin-top: 17px;
  margin-right: 12px;
  margin-left: 0;
  background: #2868b1;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .icon-list-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 4px solid #fff;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: transform 0.2s ease;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item.active .icon-list-close::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item span {
  display: inline-block;
  width: calc(100% - 50px);
  font-size: 24px;
  font-weight: 500;
  color: #2868b1;
  line-height: 54px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 第二层事项样式 - 支持三层结构 */
.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list {
  margin-top: 10px;
  margin-left: 32px;
  margin-right: 0;
  margin-bottom: 0;
  border-left: none;
  padding-left: 0;
  background: transparent;
  overflow: hidden;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li {
  float: left;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 6px;
  margin-bottom: 8px;
  padding: 0;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li:hover {
  background: #f8f9fa;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li.active {
  background: #fff;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li.no-grandchild {
  background: #f0f7ff;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li.no-grandchild:hover {
  background: #e8f4ff;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li.no-grandchild::before {
  content: '';
  float: left;
  width: 4px;
  height: 4px;
  margin-top: 22px;
  margin-right: 9px;
  margin-left: 14px;
  background: #2868b1;
  border-radius: 50%;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .icon-list-close {
  float: left;
  width: 16px;
  height: 16px;
  margin-top: 16px;
  margin-right: 10px;
  margin-left: 15px;
  background: #2868b1;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .icon-list-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 3px solid #fff;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: transform 0.2s ease;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li.active .icon-list-close::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .child-text {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  line-height: 48px;
  display: inline-block;
  width: calc(100% - 300px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 第三层事项样式 - 支持三层结构 */
.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .grandchild-list {
  margin-top: 8px;
  margin-left: 41px;
  margin-right: 15px;
  margin-bottom: 8px;
  border-left: none;
  padding-left: 0;
  background: transparent;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .grandchild-list li {
  display: flex;
  align-items: center;
  width: 100%;
  background: #f0f7ff;
  border: none;
  border-radius: 4px;
  margin-bottom: 6px;
  padding: 0;
  position: relative;
  transition: all 0.2s ease;
  overflow: hidden;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .grandchild-list li:hover {
  background: #e8f4ff;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .grandchild-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  margin-right: 9px;
  margin-left: 15px;
  background: #2868b1;
  border-radius: 50%;
  flex-shrink: 0;
}

.main .content-area .tab .bdl .item-table .item-table .table-list .item .child-list li .grandchild-list li .grandchild-text {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  line-height: 44px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 按钮区域样式 - 支持三层结构 */
.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn-area {
  float: right;
  margin-top: 9px;
  margin-right: 15px;
  white-space: nowrap;
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .grandchild-list li .btn-area {
  margin-right: 15px;
  white-space: nowrap;
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn-area.r {
  float: right;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn,
.main .content-area .tab .bdl .item-table .table-list .item .child-list li .grandchild-list li .btn {
  width: 80px;
  height: 26px;
  background: #fff;
  border: 1px solid #2868b1;
  border-radius: 13px;
  margin-right: 0;
  font-size: 12px;
  font-weight: 400;
  color: #2868b1;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn:hover,
.main .content-area .tab .bdl .item-table .table-list .item .child-list li .grandchild-list li .btn:hover {
  background: #2868b1;
  color: #fff;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn.close,
.main .content-area .tab .bdl .item-table .table-list .item .child-list li .grandchild-list li .btn.close {
  border: 1px solid #aeaeae;
  color: #aeaeae;
}

.main .content-area .tab .bdl .item-table .table-list .item .child-list li .btn.close:hover,
.main .content-area .tab .bdl .item-table .table-list .item .child-list li .grandchild-list li .btn.close:hover {
  background: #aeaeae;
  color: #fff;
  border-color: #aeaeae;
}

/* 隐藏类 */
.hidden {
  display: none !important;
}

.open-close {
  width: 100%;
  height: 16px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 400;
  color: #3289f5;
  text-align: center;
  cursor: pointer;
}

.open-close i {
  display: inline-block;
  width: 10px;
  height: 16px;
}

.icon-open {
  background: url(../../images/icon-arrow-bottom.png) top 9px center no-repeat;
}

.icon-close {
  background: url(../../images/icon-arrow-top.png) top 9px center no-repeat;
}

body .pager {
  padding-bottom: 0;
}

.cycle-box {
  width: 1200px;
  margin: 0 auto;
  padding-top: 42px;
}

.cycle-box .cycle-list {
  width: 287px;
  height: 287px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#dceafc));
  background: linear-gradient(0deg, #fff, #dceafc);
  border: 1px solid #d6f3f3;
  border-radius: 4px;
  margin-right: 17px;
  margin-top: 18px;
  position: relative;
}

.cycle-box .cycle-list:nth-child(4n) {
  margin-right: 0;
}

.cycle-box .cycle-list:hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#DCEAFC));
  background: linear-gradient(0deg, #FFFFFF, #DCEAFC);
  border: 1px solid #5291E4;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(179, 197, 225, 0.6);
          box-shadow: 0px 10px 30px 0px rgba(179, 197, 225, 0.6);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.cycle-box .cycle-list .cycle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cycle-box .cycle-list .cycle-container .cycle-list-name {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding: 35px 0 30px 62px;
}

.cycle-box .cycle-list .cycle-container .cycle-content {
  font-size: 16px;
  color: #666;
  line-height: 35px;
  padding-left: 24px;
  padding-top: 22px;
}

.cycle-box .cycle-list .cycle-container .cycle-content a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.cycle-box .cycle-list .cycle-container .cycle-content a:hover {
  color: #2668b1;
}
