@font-face {
    font-family: SSZhiZunShuFaTi;
    src: url('/material/font/SSZhiZunShuFaTi.woff2') format('woff2'),
        /* 优先现代浏览器 */
        /* 兜底 */
        url('/material/font/SSZhiZunShuFaTi.ttf') format('truetype');
    font-weight: normal;
    font-display: swap;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
  font-family: "PingFang SC", "Microsoft YaHei", "SimHei", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 通用重置样式 */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

/* 通用容器（固定宽度） */
.container {
  width: 1200px;
  margin: 0 auto;
}

.container::after {
  content: "";
  display: block;
  clear: both;
}

.main {
  width: 100%;
}

/* ===================== 公共头部 ===================== */
.main .header {
  width: 100%;
  height: 190px;
  background-color: #9a0d14;
  background-image: url(../images/header_bg.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

.main .header .header-wrapper {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.main .header .header-wrapper .logo {
  width: 320px;
  height: 75px;
  display: inline-block;
  margin-top: 44px;
  margin-right: 20px;
}

.main .header .header-wrapper .logo img {
  width: 100%;
  height: 100%;
}

.main .header .header-wrapper .title {
  width: 200px;
  margin-top: 44px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: top;
}

.main .header .header-wrapper .title .title-info {
  width: 100%;
  font-weight: 500;
  font-size: 22px;
  color: #fff;
  line-height: 30px;
  text-align: left;
  font-style: normal;
}

.main .header .header-wrapper .slogan-1 {
  position: absolute;
  width: 115px;
  left: 975px;
  top: 55px;
}

.main .header .header-wrapper .slogan-2 {
  position: absolute;
  width: 115px;
  left: 1085px;
  top: 89px;
}

.main .header .header-wrapper .header-top {
  width: 100%;
  position: relative;
}

.main .header .header-wrapper .nav {
  width: 800px;
  margin-top: 19px;
  margin-left: 475px;
  vertical-align: top;
}

.main .header .header-wrapper .nav .nav-list {
  width: 100%;
  height: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: top;
  gap: 35px;
}

.main .header .header-wrapper .nav .nav-list>li {
  list-style: none;
  position: relative;
}

.subindex .header .header-wrapper .nav .nav-list>li a {

  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 22px;
  text-align: left;
  font-style: normal;

}

/* 下拉菜单结构 */
/* 菜单列表区域 */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFB6BA 100%);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.19);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
  overflow: hidden;
}

.submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 2px solid #74070D;
}

.submenu li {
  text-align: center;
  padding: 0 15px;
  cursor: pointer;
}

.submenu li a {
  color: #000 !important;
  font-size: 15px;
  display: block;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.6px;
  white-space: nowrap;
  padding: 14px 3px;
  text-align: center !important;
}

/* 顶部小三角形箭头 - 在菜单框外面 */
.has-submenu {
  position: relative;
}

.has-submenu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%) translateY(-10px);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.05s ease-out 0.01s, transform 0.05s ease-out 0.01s, visibility 0.05s ease-out 0.01s;
}

.has-submenu:hover::before,
.has-submenu:hover .submenu::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.submenu li:hover {
  background: #FFD4D7;
}

.submenu li:hover a {
  /* color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); */
}

.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* //导航结束 */

/* ===================== Banner 轮播区域 ===================== */
.banner {
  width: 100%;
  position: relative;
}

.banner img {
  display: block;
  width: 100%;
}

.block-1 {
  width: 100%;
  height: 760px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 8px 12px 0px rgba(199, 199, 199, 0.5);
  overflow: hidden;
}

.block-1 .left-block {
  width: 52%;
  height: 100%;
  background: url(../images/block_1_left_bg.png) no-repeat center/cover;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: right;
  align-items: center;
}

.block-1 .left-block .block-wrapper {
  width: 644px;
}

.block-1 .left-block .block-wrapper .block-title {
  width: 230px;
  margin-bottom: 36px;
}

.block-title .title-info {
  display: flex;
  align-items: center;
  gap: 4px;

}

.block-title .title-info .icon {
  width: 20px;
  height: 18px;
  display: inline-block;
  background: url(../images/block_icon.png) no-repeat center center;
  background-size: 100% 100%;
  margin-right: 8px;
}

.block-title .title-info .strong {
  font-family: SSZhiZunShuFaTi;
  font-size: 46px;
  color: #005aaa;
  line-height: 50px;
  font-style: normal;
}

.block-3 .block-title .title-info .strong {
  color: #fff;
}

.block-title .title-info .dian {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #000;
  margin: 0 10px;
  display: inline-block;

}

.block-title .title-icon {
  width: 20px;
  height: 18px;
  display: block;
  background: url(../images/block_icon.png) no-repeat center center;
  background-size: 100% 100%;
  margin-left: 62px;
}

.block-3 .block-title .title-info .dian {
  background-color: #fff;

}

.title-info .dynamic-title,
.title-info .notice-title-text,
.title-info .edu-title-text,
.title-info .party-title-text,
.title-info .special-title-text {
  font-weight: 900;
  font-size: 36px;
  color: #000;
  line-height: 50px;
  font-style: normal;
}

.block-title .title-info .edu-title-text {
  color: #86C6FF;
}

.block-title .title .more {
  position: relative;
  width: 150px;
  height: 44px;
  font-weight: 500;
  font-size: 20px;
  color: #333;
  line-height: 20px;
}

.block-title .title .more span {
  position: absolute;
  left: 0;
  top: 13px;
  z-index: 1;
}

.block-1 .left-block .block-wrapper .block-1-swiper {
  width: 688px;
  height: 488px;
  margin-bottom: 27px;
  overflow: hidden;
}

.block-1 .left-block .block-wrapper .block-1-swiper .slide-title {
  width: 633px;
  height: 60px;
  font-weight: 500;
  font-size: 22px;
  color: #000000;
  line-height: 30px;
  text-align: left;
  padding-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 90, 170, 0.3);
  margin-top: 20px;
}

.block-1 .left-block .block-wrapper .block-1-swiper .swiper-slide img {
  width: 688px;
  height: 391px;
  display: block;
  object-fit: cover;
}

.block-1 .left-block .block-wrapper .swiper-nav {
  width: 100%;
  height: 43px;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 25px;
  padding-right: 10px;
  box-sizing: border-box;
}

.block-1 .left-block .block-wrapper .swiper-nav .swiper-prev {
  width: 43px;
  height: 43px;
  background: url(../images/block_1_prev_btn.png) no-repeat center/contain;
}

.block-1 .left-block .block-wrapper .swiper-nav .swiper-next {
  width: 43px;
  height: 43px;
  background: url(../images/block_1_next_btn.png) no-repeat center/contain;
}

.block-1 .right-block {
  width: 48%;
  height: 100%;
  background: url(../images/block_1_right_bg.png) no-repeat center/cover;
  display: flex;
  justify-content: left;
  align-items: center;
}

.block-1 .right-block .block-wrapper {
  width: 558px;
  padding-left: 45px;
}

.block-1 .right-block .block-wrapper .more-btn {
  width: 80px;
  margin-left: 400px;
  margin-bottom: 20px;
}

.block-1 .right-block .block-wrapper .more-btn img {
  width: 100%;
  display: block;
}

.block-1 .right-block .block-wrapper .news-list {
  width: 512px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.block-1 .right-block .block-wrapper .news-list .news-item {
  width: 100%;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block-1 .right-block .block-wrapper .news-list .news-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.block-1 .right-block .block-wrapper .news-list .item-date {
  width: 61px;
  height: 56px;
  margin: 0 0 0 25px;
}

.block-1 .right-block .block-wrapper .news-list .day {
  width: 29px;
  height: 31px;
  overflow-wrap: break-word;
  color: rgba(234, 216, 182, 1);
  font-size: 22px;
  text-align: left;
  white-space: nowrap;
  line-height: 31px;
  margin-left: 16px;
}

.block-1 .right-block .block-wrapper .news-list .month {
  width: 61px;
  height: 22px;
  overflow-wrap: break-word;
  color: rgba(234, 216, 182, 1);
  font-size: 16px;
  text-align: left;
  white-space: nowrap;
  line-height: 22px;
  margin-top: 3px;
}

.block-1 .right-block .block-wrapper .news-list .item-line {
  width: 1px;
  height: 25px;
  margin: 0 0 0 15px;
  background-color: rgba(234, 216, 182, 1);
}

.block-1 .right-block .block-wrapper .news-list .item-title {
  width: 367px;
  height: 56px;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 1);
  font-size: 20px;
  font-weight: normal;
  text-align: left;
  line-height: 28px;
  margin: 0 26px 0 17px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-2 {
  width: 100%;
  height: 738px;
  background: url(../images/block_2_bg.png) no-repeat center/cover;
  padding-top: 150px;
  box-sizing: border-box;
}

.block-2 .container {
  height: 514px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-2 .container .title-column {
  width: 84px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.block-2 .container .title-column .block-title {
  width: 84px;
}

.block-2 .container .title-column .block-title .h-text {
  width: 60px;
}

.block-2 .container .title-column .block-title img {
  width: 100%;
  display: block;
}

.block-2 .container .title-column .more-btn {
  width: 20px;
  margin-right: 15px;
}

.block-2 .container .title-column .more-btn img {
  width: 100%;
  display: block;
}

.block-2 .container .content-column {
  width: 1030px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-2 .container .content-column .column-item {
  width: 338px;
  height: 346px;
  background: url(../images/block_2_border_2.png) no-repeat left top / auto 100%;
  padding: 0 0 0 55px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 25px;
}

.block-2 .container .content-column .column-item .item-date {
  width: 102px;
  height: 29px;
  font-size: 14px;
  color: #ffffff;
  line-height: 19px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-2 .container .content-column .column-item .item-title {
  width: 282px;
  height: 90px;
  font-weight: 400;
  font-size: 20px;
  color: #252525;
  line-height: 30px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-2 .container .content-column .column-item .item-desc {
  width: 282px;
  height: 90px;
  font-weight: 400;
  font-size: 18px;
  color: #676767;
  line-height: 30px;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-2 .container .content-column .column-item:hover {
  background-image: url(../images/block_2_border_1.png);
}

.block-2 .container .content-column .column-item:hover .item-title {
  color: #005aaa;
  text-decoration-line: underline;
}

.block-2 .container .content-column .column-item:hover .item-desc {
  color: rgba(0, 90, 170, 0.52);
}

.block-3 {
  width: 100%;
  height: 666px;
  background: url(../images/block_3_bg.png) no-repeat center/cover;
  padding-top: 62px;
  box-sizing: border-box;
}

.block-3 .container {
  height: 604px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.block-3 .container .title-wrapper {
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-3 .container .title-wrapper .block-title {
  width: 226px;
}

.block-3 .container .title-wrapper .block-title img {
  width: 100%;
  display: block;
}

.block-3 .container .title-wrapper .title-right-wrapper {
  width: 240px;
  height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-3 .container .title-wrapper .title-right-wrapper .swiper-nav {
  width: 111px;
  height: 43px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.block-3 .container .title-wrapper .title-right-wrapper .swiper-nav .swiper-prev {
  width: 43px;
  height: 43px;
  background: url(../images/block_3_prev_btn.png) no-repeat center/contain;
}

.block-3 .container .title-wrapper .title-right-wrapper .swiper-nav .swiper-next {
  width: 43px;
  height: 43px;
  background: url(../images/block_3_next_btn.png) no-repeat center/contain;
}

.block-3 .container .title-wrapper .more-btn {
  width: 80px;
}

.block-3 .container .title-wrapper .more-btn img {
  width: 100%;
  display: block;
}

.block-3 .block-3-swiper {
  width: 100%;
  height: 508px;
  overflow: hidden;
  margin-top: auto;
}

.block-3 .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.block-3 .swiper-slide .slide-item {
  display: block;
  width: 25%;
  height: 100%;
  border: 1px solid #2e72b2;
  border-right: 0px;
  padding: 26px 18px 0px 18px;
  box-sizing: border-box;
}

.block-3 .swiper-slide .slide-item:hover {
  background-color: #ffffff;
}

.block-3 .swiper-slide .slide-item:last-child {
  border-right: 1px solid #2e72b2;
}

.block-3 .swiper-slide .slide-item .item-img {
  width: 264px;
  height: 216px;
  overflow: hidden;
}

.block-3 .swiper-slide .slide-item .item-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.block-3 .swiper-slide .slide-item:hover .item-img img {
  transform: scale(1.1);
}

.block-3 .swiper-slide .slide-item .item-date {
  width: 264px;
  height: 19px;
  font-size: 14px;
  color: #ffffff;
  line-height: 19px;
  text-align: left;
  margin-top: 29px;
}

.block-3 .swiper-slide .slide-item .item-title {
  width: 264px;
  height: 50px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 25px;
  text-align: left;
  margin-top: 21px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-3 .swiper-slide .slide-item .item-desc {
  width: 264px;
  height: 52px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.56);
  line-height: 26px;
  text-align: left;
  margin-top: 29px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-3 .swiper-slide .slide-item:hover .item-date {
  color: #990d14;
}

.block-3 .swiper-slide .slide-item:hover .item-title {
  color: #990d14;
  text-decoration-line: underline;
}

.block-3 .swiper-slide .slide-item:hover .item-desc {
  color: rgba(153, 13, 20, 0.6);
}

.block-4 {
  width: 100%;
  height: 908px;
  background: url(../images/block_4_bg.png) no-repeat center/cover;
  padding-top: 95px;
  box-sizing: border-box;
}

.block-4 .block-title {
  width: 171px;
  margin: 0 auto;
}

.block-4 .block-title img {
  width: 100%;
  display: block;
}

.block-4 .news-list {
  width: 100%;
  height: 730px;
  position: relative;
}

.block-4 .news-list .list-item {
  position: absolute;
  width: 328px;
  height: 408px;
  background-color: #ffffff;
  color: #ffffff;
  overflow: hidden;
  padding-top: 40px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  transition: transform 0.4s ease;
}

.block-4 .news-list .list-item:hover {
  transform: translateY(-10px);
}

.block-4 .news-list .list-item .news-item {
  display: block;
  color: #ffffff;
  padding-bottom: 28px;
}

.block-4 .news-list .list-item .news-item:nth-child(1) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  margin-bottom: 28px;
}

.block-4 .news-list .list-item .item-date {
  margin-bottom: 13px;
  font-size: 14px;
  color: #ead8b6;
  line-height: 19px;
  text-align: left;
}

.block-4 .news-list .list-item .item-title {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-align: left;
  height: 50px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-4 .news-list .list-item .item-desc {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  opacity: 0.6;
  height: 44px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.block-4 .news-list .list-item:nth-child(1) {
  left: 0;
  top: 105px;
  padding-right: 40px;
  background-color: #990d14;
}

.block-4 .news-list .list-item:nth-child(2) {
  left: 292px;
  top: 159px;
  padding-right: 40px;
  background-color: #b7a07b;
}

.block-4 .news-list .list-item:nth-child(3) {
  left: 582px;
  top: 45px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #ffffff;
  z-index: 1;
}

.block-4 .news-list .list-item:nth-child(3) .news-item {
  color: #000000;
}

.block-4 .news-list .list-item:nth-child(3) .item-date {
  color: #990d14;
}

.block-4 .news-list .list-item:nth-child(3) .news-item:nth-child(1) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.19);
}

.block-4 .news-list .list-item:nth-child(4) {
  left: 873px;
  top: 124px;
  padding-left: 52px;
  background-color: #005aaa;
}

/* ===================== 尾部 ===================== */
.main .footer {
  width: 100%;
  height: 366px;
  background-color: #9a0d14;
  background-image: url(../images/footer_bg.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  padding-top: 1px;
  /* overflow: hidden; */
}

.main .footer .container {
  width: 1200px;
  margin: 0 auto;
  margin-top: 95px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.main .footer .container .logo-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.main .footer .container .logo-wrapper::after {
  content: "";
  display: block;
  width: 1px;
  height: 173px;
  background: rgba(151, 151, 151, 0.42);
  position: absolute;
  top: -30px;
  right: -18px;
}

.main .footer .container .logo-wrapper .logo {
  width: 300px;
  height: 70px;
  background: url(../images/logo.png) no-repeat;
  background-size: 100% auto;
}

.main .footer .container .logo-wrapper .collage {
  margin-left: 16px;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  line-height: 31px;
  text-align: left;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main .footer .container .contact {
  width: 724px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.main .footer .container .contact .contact-item:first-child {
  margin-left: 38px;
}

.main .footer .container .contact .contact-item:first-child .contact-content {
  margin-top: 18px;
}

.main .footer .container .contact .contact-item:nth-child(2) {
  margin-left: 20px;
}

.main .footer .container .contact .contact-item:nth-child(2) .contact-content {
  margin-top: 12px;
}

.main .footer .container .contact .contact-item:nth-child(3) {
  margin-left: 30px;
}

.main .footer .container .contact .contact-item:nth-child(3) .contact-content {
  margin-top: 7px;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  line-height: 17px;
  text-align: center;
  font-style: normal;
}

.main .footer .container .contact .contact-item:nth-child(3) .contact-content p {
  margin: 0;
}

.main .footer .container .contact .contact-item .contact-title {
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: left;
  font-style: normal;
}

.main .footer .container .contact .contact-item .contact-content {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: left;
  font-style: normal;
}

.main .footer .container .contact .contact-item .contact-content1 {
  margin-top: 16px;
}

.main .footer .container .contact .contact-item .contact-content a {
  display: block;
  width: 227px;
  height: 49px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
  line-height: 21px;
  text-align: left;
  font-style: normal;
  text-indent: 18px;
}

.main .footer .container .contact .contact-item .qr {
  width: 138px;
  height: 142px;
}

.main .footer .container .contact .contact-item .qr img {
  width: 100%;
  height: 100%;
}

.main .footer .pub {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.main .footer .pub p {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 18px;
  text-align: left;
  font-style: normal;
}

/* ===================== 自定义下拉菜单 ===================== */
.custom-select {
  position: relative;
  width: 227px;
  height: 49px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.custom-select .select-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 49px;
  padding: 0 15px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0);
  /* border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px; */
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.custom-select .select-header .select-title {
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-select .select-header .select-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.7);
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.custom-select .select-header:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.custom-select .select-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 220px;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
  z-index: 999;
  margin-bottom: 8px;
}

.custom-select .select-dropdown::-webkit-scrollbar {
  width: 6px;
}

.custom-select .select-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.custom-select .select-dropdown li {
  border-bottom: 1px solid #f0f0f0;
}

.custom-select .select-dropdown li:last-child {
  border-bottom: none;
}

.custom-select .select-dropdown li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    padding-left 0.2s ease;
}

.custom-select .select-dropdown li a:hover {
  background: #f5f5f5;
  color: rgba(153, 13, 20, 1);
  padding-left: 18px;
}

.custom-select.active .select-header {
  border-color: rgba(255, 255, 255, 0.8);
}

.custom-select.active .select-header .select-arrow {
  transform: rotate(180deg);
}

.custom-select.active .select-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-select.clicked-outside .select-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}