.container {
  position: relative;
}

.container .banner {
  position: relative;
  width: 100%;
  height: 8rem;
  padding: 0 0 0 1.4rem;
}

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

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

.banner .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.banner .content .info .p_desc {
  color: rgba(79, 96, 109, 1);
}

.banner .content .info .desc {
  color: rgba(79, 96, 109, 1);
  line-height: 1.77;
  font-weight: 400;
  width: 3.49rem;
}

.banner .content .img_box {
  position: relative;
  width: 11.58rem;
  height: auto;
}

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

.main {
  background: rgba(248, 252, 254, 1);
  padding: 1.2rem 1.4rem;
  position: relative;
}

.main .icon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.main .icon img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.main .search_form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.main .search_form .form_item .label {
  margin-bottom: .2rem;
  line-height: 1.6;
  /*font-family: 'H_Regular';*/
  font-family: 'Microsoft YaHei';
  font-weight: 400;
  color: rgba(51, 51, 51, 1);
}

.main .search_form .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  width: 1.68rem;
  height: .5rem;
  color: #fff;
  background-color: rgba(36, 145, 202, 1);
  border-radius: .35rem;
  cursor: pointer;
  /* transition: background-color 0.2s; */
  border: none;
}

.main .list {
  display: flex;
  flex-wrap: wrap;
  margin: 1.4rem 0;
  gap: .4rem;
  position: relative;
}

.main .list .item {
  width: 3.75rem;
  height: 4.7rem;
  border-radius: .15rem;
  text-align: center;
  /*transition: all .1s ease;*/
}

.main .list .item:hover {
  background: #fff;
  box-shadow: .07rem .05rem .626rem .12rem rgba(163, 163, 163, 0.13);
}

.main .list .item .line {
  width: 100%;
  opacity: 0;
  border: .01rem solid rgba(242, 242, 242, 1);
}

.main .list .item:hover .line {
  opacity: 1;
}

.main .list .item .img {
  width: 2.59rem;
  height: 2.02rem;
  object-fit: cover;
  margin: .38rem auto .5rem auto;
}

.main .list .item .name {
  line-height: 1.08;
  font-family: 'Microsoft YaHei';
  /* font-weight: 600; */
  color: rgba(51, 51, 51, 1);
  margin: .55rem 0 0 0;
}

.main .list .item .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: .4rem;
  height: .4rem;
  margin: .3rem auto 0 auto;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  transition: all 0.5s;
}

.main .list .item:hover .btn {
  background: rgba(36, 145, 202, 1);
}

.main .list .item .btn .active,
.main .list .item:hover .btn .normal {
  display: none;
}

.main .list .item .btn .normal,
.main .list .item:hover .btn .active {
  display: block;
}

.main .list .more {
  width: 3.75rem;
  line-height: 1.08;
  font-family: 'Microsoft YaHei';
  /* font-weight: 600; */
  color: rgba(51, 51, 51, 1);
  margin: .55rem 0 0 0;

  
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .35rem;
}

.main .list .more .img {
  width: .9rem;
  height: .9rem;
  border-radius: 50%;
  border: .01rem solid rgba(36, 145, 202, 1);
  display: flex;
  align-items: center;
  justify-content: center;

}

.main .list .more .img img {
  width: .42rem;
  height: .42rem;
}






/* 下拉框容器 - 多个下拉框之间增加间距 */
.el-select {
  position: relative;
  width: 4.39rem;
  color: #606266;
  /* margin-bottom: 20px; */
  /* 多个下拉框垂直间距 */
}

/* 触发区域样式 */
.el-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: .6rem;
  padding: 0 .25rem;
  background-color: #fff;
  border: 1px solid #dcdfe6;
  border-radius: .06rem;
  cursor: pointer;
  transition: border-color 0.2s;
  position: relative;
}

.el-select__value {
  color: rgba(102, 102, 102, .8);
}

.el-select__trigger:hover {
  border-color: #c0c4cc;
}

.el-select__trigger:focus {
  outline: none;
  border-color: #409eff;
}

/* 下拉箭头样式 */
.el-select__arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #c0c4cc;
  transition: transform 0.2s;
  
  position: absolute;
  top: .25rem;
  right: .25rem;
}

.el-select__arrow.expanded {
  transform: rotate(180deg);
}

/* 下拉面板样式 */
.el-select__dropdown {
  position: absolute;
  padding: .2rem 0;
  top: .6rem;
  left: 0;
  width: 100%;
  max-height: 2rem;
  overflow-y: auto;
  background-color: #fff;
  border: 1px solid #e4e7ed;
  border-radius: 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
}

.el-select__dropdown::-webkit-scrollbar {
    width: 3px;
}

.el-select__dropdown.show {
  display: block;
}

/* 选项样式 */
.el-select__option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.el-select__option:hover {
  background-color: #f5f7fa;
}

.el-select__option.selected {
  color: #409eff;
  background-color: #ecf5ff;
}

/* 清除按钮核心样式 - 适配rem单位和现有设计规范 */
.el-select__clear {
  position: absolute;
  right: 0.45rem; /* 与trigger的padding-right对齐 */
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.18rem; /* 适配rem尺寸 */
  line-height: 1;
  color: #c0c4cc; /* 与箭头默认颜色一致 */
  cursor: pointer;
  display: none; /* 默认隐藏 */
  z-index: 1;
  width: 0.24rem;
  height: 0.24rem;
  text-align: center;
}

/* 清除按钮hover状态 - 与现有hover逻辑统一 */
.el-select__clear:hover {
  color: #606266; /* 加深颜色，提升交互反馈 */
}

/* 选中值后显示清除按钮 */
.el-select.has-value .el-select__clear {
  display: block;
}



/* 清除按钮点击禁止冒泡（样式层面辅助） */
.el-select__clear {
  pointer-events: auto;
}

@media (max-width: 767px) {
    .container .banner {
        height: 106.66vw;
        padding: 60px 20px;
        position: relative;
        top: unset;
        padding: 60px 20px;
    }
    .banner .content {
        flex-direction: column;
    }
    .banner .content .img_box {
        width: 100%;
    }
    .container .banner .content .p_label {
        font-size: 24px;
        width: 100%;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }
    .container .banner .content .p_desc {
        display: none;
    }
    .container .banner .content .desc {
        font-size: 14px;
        width: 100%;
        text-align: center;
        margin: 20px 0 0 0;
    }
    
    
    .main {
        padding: 60px 20px;
    }
    .main .search_form {
        flex-direction: column;
        gap: 26px;
    }
    .main .search_form .form_item .label {
        font-size: 19px;
    }
    .main .search_form .form_item {
        width: 100%;
    }
    .el-select {
        width: 100%;
        font-size: 14px;
    }
    .el-select__trigger {
        height: 42.5px;
    }
    .el-select__clear {
        font-size: 14px;
    }
    .el-select__arrow {
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #c0c4cc;
    }
    .main .search_form .btn {
        width: unset;
        height: unset;
        padding: 8px 56px;
        gap: 8px;
        font-size: 14px;
    }
    
    .main .list {
        margin: 60px 0;
    }
    .main .list .item {
        width: calc(50% - 0.2rem);
    }
    .main .list .item .name {
        margin: 0;
    }
    .main .list .more {
        width: calc(50% - 0.2rem);
    }
    
}
















