.container {
  position: relative;

}

.banner {
  width: 100%;
  position: relative;
  height: 6.3rem;
  padding: 1.2rem 1.3rem;
}

.banner .img_box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  height: .7rem;
  box-shadow: 0rem .1249rem .0886rem 0rem rgba(0, 0, 0, 0.01);
  border-bottom: .01rem solid rgba(0, 0, 0, 0.06);
}

.tab {
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  line-height: 130%;
  color: rgba(102, 102, 102, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tab.active::after {
  content: '';
  width: 100%;
  height: .02rem;
  background-color: rgba(0, 64, 152, 1);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tab.active {
  color: rgba(51, 51, 51, 1);
}

.p_label {
  text-align: center;
  padding: 1.6rem 0 0 0;
}

.content_box {
  background: #f7f8fb;
}

.content {
  padding: 1.27rem 1.3rem;
  display: flex;
  gap: 1.3rem;
  position: relative;
  align-items: flex-start;
}

.department-menu {
  width: 3.8rem;
  flex-shrink: 0;
  position: sticky;
  top: 1rem;
}

.menu-header {
  font-weight: 400;
  padding: 0 0 .13rem 0;
  border-bottom: .01rem solid #e5e7eb;
  margin-bottom: .44rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.menu-header::after {
  content: '';
  background: url('../img/arrow_bottom.svg') no-repeat center center;
  background-size: cover;
  width: .3rem;
  height: .3rem;
  transition: transform 0.2s ease;
}

.menu-header.collapsed::after {
  transform: rotate(-180deg);
}

.menu-options {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
  max-height: 7.5rem;
  transition: max-height 0.3s ease, margin 0.3s ease, padding 0.3s ease;
}

.menu-options::-webkit-scrollbar {
  width: .06rem;
}

.menu-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: .03rem;
}

.menu-options::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: .03rem;
}

.menu-options::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

.menu-options.collapsed {
  max-height: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.menu-option {
  display: flex;
  align-items: center;
  padding: .215rem .16rem;
  cursor: pointer;
  transition: background-color 0.2s;
}


.menu-option.active {
  font-weight: 500;
  color: #1e40af;
}

.checkbox-btn {
  width: .19rem;
  height: .19rem;
  margin-right: .1rem;
  border: .01rem solid #9ca3af;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s, background-color 0.2s;
}

.menu-option.active .checkbox-btn {
  border-color: rgba(0, 64, 152, 1);
  background-color: rgba(0, 64, 152, 1);
}

.menu-option.active .checkbox-btn::after {
  content: '';
  background: url('../img/checked.svg') no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: .1rem;
  height: .07rem;
  z-index: 1;
}

.dept-info {
  display: flex;
  align-items: center;
  flex: 1;

  font-weight: 400;
  font-family: 'Microsoft YaHei';
  /*line-height: 130%;*/
  line-height: .36rem;
  color: rgba(102, 102, 102, 1);
}

.menu-option.active .dept-info {
  font-weight: 500;
  color: rgba(0, 64, 152, 1);
}

.count-tag {
  margin-left: .06rem;
  color: rgba(102, 102, 102, 1);
  transition: color 0.2s;
}

.menu-option.active .count-tag {
  color: rgba(0, 64, 152, 1);
}

.content_box .info {
  width: 11.47rem;
}

.content_box .info .info_top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content_box .info .info_top .result {
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  line-height: .34rem;
  color: rgba(51, 51, 51, 1);
}

.content_box .info .info_top .result strong {
  color: rgba(0, 64, 152, 1);
}

.content_box .info .info_top .search {
  width: 7.72rem;
  height: .5rem;
  display: flex;
  align-items: center;
  padding: .12rem .26rem;
  background: #fff;
  gap: .2rem;
  border-radius: .25rem;
}

.content_box .info .info_top .search .icon_search {
  width: .16rem;
  height: .16rem;
}

.content_box .info .info_top .search .input_search {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
}

.content_box .info .info_top .search .btn_search {
  width: .6rem;
  height: .35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-style: none;
  background: transparent;
  border-left: .01rem solid rgba(0, 0, 0, 0.1);
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  line-height: 130%;
  color: rgba(102, 102, 102, 1);
}

.content_box .info .main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .22rem;
  margin: .35rem 0 0 0;
}

.content_box .info .main .main_header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 64, 152, 1);
  color: #fff;
  padding: .2rem .55rem;
  border-radius: .06rem;
}

.content_box .info .main .main_header .header_item {
  flex-shrink: 0;
  flex: 1;
}

.content_box .info .main .main_header .header_item:last-child {
  flex: 0.3;
}

.content_box .info .main .main_header .header_item:nth-child(4) {
  flex: 0.7;
}

.content_box .info .main .main_body {
  width: 100%;
  display: flex;
  flex-direction: column;
  /* gap: .22rem; */
  background: #fff;
  box-shadow: 0rem .04rem .2rem 0rem rgba(91, 126, 163, 0.06);
  border-radius: .1rem;
}

.content_box .info .main .main_body .line {
  border: .01rem solid rgba(0, 0, 0, 0.06);
}

.content_box .info .main .main_body .main_body_label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(51, 51, 51, 1);
  padding: .2rem .55rem;
  border-radius: .06rem;
  cursor: pointer;
}

.content_box .info .main .main_body .main_body_label .body_item {
  flex-shrink: 0;
  /* width: 2.5rem; */
  flex: 1;
  display: flex;
  gap: .25rem;
  align-items: center;
}

.content_box .info .main .main_body .main_body_label .body_item:nth-child(4) {
  flex: 0.6;
}

.content_box .info .main .main_body .main_body_label .body_item:last-child {
  flex: 0.4;
}

.content_box .info .main .main_body .main_body_content {
  width: 100%;
  padding: 0 .5513rem;
  /*height: 0;*/
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.content_box .info .main .main_body.active .main_body_content {
  /*height: 5rem;*/
  /*height: auto;*/
  max-height: 10rem;
  padding: .33rem .5513rem;
}

.content_box .info .main .main_body .main_body_content .title {
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  line-height: 130%;
  color: rgba(0, 64, 152, 1);
  margin: 0 0 .25rem 0;
}

.content_box .info .main .main_body .main_body_content .desc {
  font-weight: 300;
  font-family: 'Microsoft YaHei';
  line-height: .32rem;
  color: rgba(51, 51, 51, 1);
  display: flex;
  flex-direction: column;
  gap: .15rem;
  text-align: justify;
}

.content_box .info .main .main_body .main_body_content .btn {
  width: 1.443rem;
  height: .37rem;
  border-radius: 27.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .08rem;
  background: rgba(0, 64, 152, 1);
  font-weight: 400;
  font-family: 'Microsoft YaHei';
  line-height: 130%;
  color: #fff;
  margin: .42rem 0 0 0;
}

.content_box .info .main .main_body .main_body_content .btn img {
  width: .16rem;
  height: .14rem;
}


@media (max-width: 767px) {
    .banner {
        height: 50.66vw;
    }
    
    .department-menu {
        display: none;
    }
    
    .p_label {
        padding: 40px 0 0 0;
    }
    
    .content {
        padding: 24px 20px;
    }
    .content_box .info {
        width: 100%;
    }
    .content_box .info .info_top .search {
        width: 100%;
    }
    .content_box .info .info_top {
        flex-direction: column-reverse;
        gap: 18px;
    }
    .content_box .info .info_top .search .btn_search {
        width: unset;
        font-size: 13px;
        padding: 0 0 0 12px;
    }
    .content_box .info .info_top .result {
        width: 100%;
        font-size: 13px;
    }
    .content_box .info .info_top .result strong {
        font-size: 18px;
    }
    .content_box .info .main .main_header {
        display: none;
    }
    .content_box .info .main .main_body .main_body_label .body_item {
        font-size: 14px;
    }
    .content_box .info .main .main_body .main_body_label {
        padding: 14px 12px;
        gap: 23px;
    }
    .content_box .info .main .main_body .main_body_content .desc {
        font-size: 14px;
    }
    .content_box .info .main .main_body .main_body_content .btn {
        font-size: 14px;
        width: 118px;
        height: 30.5px;
    }
    .content_box .info .main .main_body .main_body_label .body_item {
        flex: unset;
    }
    .content_box .info .main .main_body .main_body_label .body_item:nth-child(4) {
        flex: unset;
    }
    .content_box .info .main .main_body .main_body_label .body_item:last-child {
        flex: unset;
    }
    .content_box .info .main .main_body .main_body_label .body_item {
        gap: 0;
    }
    
}











