/* 主宣传横幅 */

.banner-content {
  max-width: 1400px;
  margin: 0 auto;
}
.banner-title {
  font-size: 36px;
  font-weight: bold;
}
.banner-desc {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}
.ccq {
  display: flex;
  justify-content: space-between;
  gap: 21px;
  border-radius: 0 0 12px 12px;
  padding: 55px 45px;
  background-color: #fff;
}
.ccq .l {
  width: 50%;
}
.ccq .l .zzz {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0;
  padding-left: 20px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
}
.ccq .l .zzz .text {
  width: 60%;
}
.ccq .l1 {
  width: 25%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.ccq .l2 {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ccq .l2 a {
  display: block;
}
.ccq .l2 a > div {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 21px;
  color: #fff;
  font-size: 23px;
}
.ccq .l2 a > div span {
  position: absolute;
  right: 43px;
  top: 27px;
  font-size: 16px;
  transition: all 0.4s;
}

.ccq .l2 a:hover > div img{
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1;
  border-radius: 12px;
  transition: all 0.4s;
}

.ccq .l2 a:hover > div span {
  position: absolute;
  right: 203px;
  top: 27px;
  font-size: 16px;
  z-index: 2;
  transition: all 0.4s;
}

/* .ccq .l2 > div:nth-child(1) {
  background-color: #2b67ff;
}
.ccq .l2 > div:nth-child(2) {
  background-color: #f26750;
} */
.banner-carousel {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
}
/* 轮播图轨道 */
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}
/* 轮播图项 */
.carousel-item {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a00e0 0%, #8e2de2 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  color: white;
}
/* 轮播图内容 */
.carousel-content {
  max-width: 50%;
}
.carousel-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.carousel-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffb800;
  color: #333;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.4);
}
.carousel-btn:hover {
  background-color: #ffd700;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 184, 0, 0.6);
}
/* 轮播图图片 */
.carousel-image {
  position: relative;
  width: 40%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-image::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="none"><circle cx="50" cy="50" r="45" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}
/* 图标人物 */
.character-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" fill="none"><path d="M80,100 C60,100 40,120 40,140 L40,180 L160,180 L160,140 C160,120 140,100 120,100 L80,100 Z" fill="rgba(255,255,255,0.2)"/><circle cx="100" cy="70" r="30" fill="rgba(255,255,255,0.3)"/><path d="M120,50 L140,30" stroke="rgba(255,255,255,0.4)" stroke-width="4" stroke-linecap="round"/><path d="M150,70 L170,60" stroke="rgba(255,255,255,0.4)" stroke-width="4" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* 装饰元素 */
.decorative-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 184, 0, 0.3);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}
.decorative-element:nth-child(1) {
  top: 20px;
  right: 100px;
  animation-delay: 0s;
}
.decorative-element:nth-child(2) {
  bottom: 40px;
  right: 150px;
  width: 20px;
  height: 20px;
  animation-delay: 1s;
}
.decorative-element:nth-child(3) {
  top: 60px;
  right: 200px;
  width: 30px;
  height: 30px;
  animation-delay: 2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* 指示器 */
.carousel-indicators {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active {
  width: 30px;
  border-radius: 5px;
  background-color: white;
}
.search-input {
  flex: 1;
  padding: 15px 40px;
  border: none;
  border-radius: 10px 0 0 10px;
  outline: none;
  height: 64px;
  box-sizing: border-box;
  color: #939393;
  font-size: 18px;
}
/* 主要内容区域 */
#policy > div,
#appeal > div,
#finance > div,
#supply > div,
#talent > div,
#service > div {
  width: var(--w);
  margin: 0 auto;
  padding: 100px 0;
}
#talent{
  background-color: #f3f2f4;
}
#policy {
  background-color: #f7f5f6;
}
#appeal {
  background-color: #e3eefb;
}
#supply {
  background-color: #e2edfb;
}
#talent-header {
  background-color: #ebecef;
}
#service {
  background-color: #e5effb;
}
.supermarket-section {
  border-radius: 8px;
  padding-bottom: 30px;
  overflow: hidden;
}
.supermarket-section .section-header {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  height: 91px;
}
.supermarket-section .policy-header {
  background-image: url(../images/policy/t.png);
}
.supermarket-section .appeal-header {
  background-image: url(../images/appeal/1.png);
}
.supermarket-section .finance-header {
  background-image: url(../images/finance/t.png);
}
.supermarket-section .supply-header {
  background-image: url(../images/supplyAdemand/t.png);
}
.supermarket-section .talent-header {
  background-image: url(../images/talent/t.png);
}
.supermarket-section .service-header {
  background-image: url(../images/service/t.png);
}
.supermarket-section .sub-title-left-icon {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f932322b;
}
.supermarket-section .sub-title-left-icon img {
  object-fit: contain;
}








#finance {
  /* 滚动条整体样式 */
  /* 滚动条轨道样式 */
  /* 滚动条滑块样式 */
}
#finance .loan-list {
  padding: 9px;
  border: 1px solid #eee;
  border-radius: 12px;
  height: 333px;
  background-color: #fff;
}
#finance .loan-list > div {
  height: 333px;
  overflow: scroll;
  overflow-x: hidden;
}
#finance .loan-list .loan-item {
  padding: 8px 12px;
  background-color: #fff;
}
#finance .loan-list .loan-item:nth-child(odd) {
  background-color: #f5f5f5;
}
#finance .loan-list .loan-bank {
  display: flex;
  font-size: 14px;
}
#finance .loan-list .loan-bank > div:nth-child(1) {
  margin-right: 6px;
}
#finance .loan-list .loan-bank span {
  font-size: 12px;
  padding-right: 6px;
  color: #9d6cff;
  border-right: 1px solid #9d6cff;
  font-family: "MyCustomFont", sans-serif;
}
#finance .loan-list .loan-details.w {
  font-weight: normal;
  color: #798695;
  font-size: 11px;
}
#finance .loan-list .loan-details.w span,#finance .loan-list .loan-details span{
  width: 20%;
}

#finance .loan-list .apply-btn {
  padding: 7px 34px;
  font-size: 14px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(90deg, #a063fd 0%, #a886fe 100%);
}
#finance .loan-list .loan-details {
  color: #fb3d4e;
  font-weight: 600;
}
#finance .loan-list > div::-webkit-scrollbar {
  width: 0;
  background-color: #f5f5f5;
}
#finance .loan-list > div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}
#finance .loan-list > div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #d4cdcd;
}
.oooqw {
  padding:40px 12px;
}
.w {
  padding: 5px 0;
}

#service .sub-title .icon {
  background-color: #fff !important;
}


.wqqrr:nth-child(1) {
  background-color: #26b98c !important;
}

.wqqrr:nth-child(2) {
  background-color: #6daeef !important;
}

.wqqrr::after {
  background: url(../images/eqww.png) no-repeat center;
  background-size: 100% 100%;
}


#supply thead td {
  font-weight: bold;
  color: #333;
}
#supply tbody tr:nth-child(even) {
  background-color: #f5f5f5;
}
#supply tbody td {
  font-size: 12px;
}
#supply .content-right .feature-vertical {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
/* #supply .content-right .feature-vertical div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
} */
#supply .content-right .feature-vertical > div:last-child {
  display: flex;
  align-items: center;
  flex-direction: row;
}
#supply .content-middle {
  padding:30px 9px 10px;
  border-radius: 12px;
  background-color: #fff;
}
#supply .content-middle .company-showcase {
  gap: 0;
}
#supply .content-middle .company-showcase .showcase-placeholder {
  height: 100px;
}
#supply .content-middle .sub-title-h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 21px;
}
#supply .content-middle .sub-title-h div:nth-child(2) {
  padding: 3px 19px;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: normal;
  background: linear-gradient(90deg, #5688fb 0%, #82a6f5 100%);
}
#supply .sub-title {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #5386fb;
}
#supply .sub-title div {
    width: 185px;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
    height: 37px;
    line-height: 37px;
    border-radius: 6px 6px 0 0;
}
#supply .sub-title .sub-title-more {
  font-weight: bold;
  text-align: right;
  font-size: 11px;
}
#supply .sub-title div.active {
  color: #fff;
  background-color: #5386fb;
}
#supply .sub-title > div:nth-child(1) {
  display: flex;
  align-items: center;
}
#service .sub-title {
  display: flex;
  align-items: center;
  justify-content: start;
}
#service .sub-title .icon {
  width: 40px;
  height: 40px;
  display: flex;
  margin-right: 9px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f89999;
}
#service .sub-title .icon img {
  object-fit: contain;
}
#service .oooqw {
  background-color: #d8e5f8 !important;
}
#service .section-content {
  padding: 0 !important;
  grid-template-columns: 1fr 5fr !important;
}
#service .service-grid {
  grid-template-columns: 1fr 1fr;
}
#service .service-item {
    padding: 0;
    width: 140px;
    height: 70px;
    line-height: 70px;
}
#service .service-text {
  white-space: nowrap;
}
#service .w {
  height: 100%;
  display: grid;
  padding: 45px 40px 0 10px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 3fr;
}
#service .w .content-right {
  height: 90%;
}
#service .w .content-middle{
  width: 333px;
}
#service .w .content-right > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 12px;
  background-color: #fff;
  border-radius: 12px;
}
#service .w .content-right .b {
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 7px 0;
  cursor: pointer;
  border-radius: 6px;
  background-color: #608df6;
}

#service .w .content-right .op {
  height: 80%;
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
#service .w .content-right .op .p {
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
}
#service .w .content-right .op .p img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
#service .w .content-right .op .p > div {
  font-weight: bold;
  font-size: 14px;
  padding: 12px;
}
#service .w .content-right .op .p > div div:nth-child(3) {
  color: red;
  font-weight: normal;
}
#service .w .service-buttons {
  height: 100%;
}
#service .w .service-large-btn {
  position: relative;
  padding: 20px;
  height: 116px;
  width: 291px;
}
#service .w .service-large-btn .i {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  z-index: 2;
  transition: all 0.4s;
}
#service .w .service-large-btn .i img {
  object-fit: contain;
}

#service .w .service-large-btn .t {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 18px;
  z-index: 2;
  width: 100%;
  transition: all 0.4s;
}
#service .w .service-large-btn .p {
  position: absolute;
  top: 0;
  left:0;
  z-index: 1;
  transition: all 0.4s;
}
/* #service .w .service-large-btn:nth-child(1) {
  background: linear-gradient(180deg, #34b2ec 0%, #59e2fd 100%);
}
#service .w .service-large-btn:nth-child(2) {
  background: linear-gradient(180deg, #4ad29f 0%, #4add68 100%);
}
#service .w .service-large-btn:nth-child(3) {
  background: linear-gradient(180deg, #ff7d3d 0%, #f8b920 100%);
} */
.appeal-list {
  width: 100%;
}
.appeal-list thead {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  justify-content: center;
}
.appeal-list thead tr td {
  text-align: center;
  margin: 0 auto;
}
.appeal-list tbody {
  color: #b7afaf;
  font-size: 12px;
}
.appeal-list tbody tr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 0 6px;
}
.appeal-list tbody tr:first-child {
  padding-left: 0;
}
.appeal-list tbody tr:last-child {
  padding-right: 0;
}
#appeal .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  background-color: #f932322b;
}
#appeal .icon-box img {
  object-fit: contain;
}
.tub_tiblie{
  color: #021939;
}
#appeal .content-middle {
  background-color: #fff;
  padding: 12px;
  border-radius: 12px;
}
#appeal .sub-title-h {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
}
#appeal .sub-title-h .sub-title-more {
  font-size: 12px;
  color: #627791;
}
#appeal .appeal-list {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}
#appeal .appeal-list thead {
  padding: 6px 12px;
  align-items: center;
  text-align: center;
  background-color: #e9f0ff;
  border-radius: 9px 9px 0 0;
  font-weight: bold;
  font-size: 15px;
}
#appeal .appeal-list tbody tr {
  padding: 18px 12px;
  font-size: 14px;
  color: #798695;
  font-family: "MyCustomFont", sans-serif;
  border-top: 1px solid #ededed;
}
#appeal .appeal-list tbody tr:nth-child(even) {
  background-color: #f5f5f5;
  font-family: "MyCustomFont", sans-serif;
  border: 1px solid #ededed;
  border-left: none;
  border-right: none;
}
.wwqqqq {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wwqqqq > div {
  height: 30% !important;
}
.qqqwq {
  padding: 18px !important;
  background-color: #fff !important;
}
.wwq {
  background-color: #e9f0ff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.llllq {
  padding: 30px 18px 10px;
  background-color: #fff;
}
.section-header {
  padding: 20px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.section-header .section-header-left h2 {
  white-space: nowrap;
}
.section-header .section-header-left-item {
  width: 100%;
  display: grid;
  gap: 10px 30px;
  grid-auto-flow: column; 
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
}
.section-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header-left h2 {
  border-right: 1px solid #fff;
  padding-right: 25px;
}
.section-header-left-item {
  padding-left: 25px;
}
.section-header-left-item > a {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #fff;
  font-family: "MyCustomFont", sans-serif; 
}
.section-header-left-item > a i{
  margin-right: 10px;
}
.section-header h2 {
  font-size: 30px;
  font-weight: bold;
}
.header-stats {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
}
.more-link {
  color: #fff;
  font-size: 14px;
  opacity: 0.9;
}
.section-content {
  padding: 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  background-color: #f4f3f5;
  border-radius:0 0 9px 9px;
}
.section-content.three-column {
  grid-template-columns: 1fr 1fr 1fr;
}
.content-left {
  border-radius: 10px;
}
#finance .content-right{
    border-radius: 9px;
    background-color: #ffffff;
    box-sizing: border-box;
    padding: 18px;
}
.service-large-btn .i {
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-title {
  margin-bottom: 15px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sub-title-left {
  font-size: 22px;
  display: flex;
  align-items: center;
}
.sub-title-left-text {
  padding-left: 12px;
}
.sub-title-more {
  font-size: 14px;
  font-family: "MyCustomFont", sans-serif; 
}
/* 政策超市 */
.policy-list {
  border: 1px solid #eee;
  border-radius: 9px;
}
.policy-list li {
  padding: 12px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s;
}
.policy-list li:hover {
  background-color: #eff1f3;
}
.policy-title {
  flex: 1;
  color: #01193b;
  font-weight: bold;
  font-size: 16px;
  display: flex;
}
.policy-title span {
  color: #ec7b6b;
  font-size: 12px;
  white-space: nowrap;
  margin-left: 9px;
  line-height: 30px;
}
.policy-date {
  color: #999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.feature-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
}
.feature-grid > div {
  background-color: #fff;
}
.feature-text {
  z-index: 1 !important;
}
.feature-card {
  position: relative;
  z-index: 9;
  background-color: #f8f9fa;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  overflow: hidden;
}
.feature-card a{
  display: flex;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: url(../images/uio.png) no-repeat center;
  background-size: 100% 100%;
}

.n2w:hover  {
  background-image: url(../images/uio1.png);
  background-size: 100% 100%;
}


.wqq:hover {
  background-image:  url(../images/uio2.png);
  background-size: 100% 100%;
}

.wqq2:hover {
  background-image:  url(../images/eqww.png);
  background-size: 100% 100%;
}
.wqq3:hover {
  background-image:  url(../images/c3.png);
  background-size: 100% 100%;
}
.wqq1:hover {
  background-image:  url(../images/uio1.png);
  background-size: 100% 100%;
}

.feature-card:hover .feature-icon {
  margin-left: -100px;
  transition: all 0.4s;
  margin-right: 80px;
}
.feature-card:hover .feature-text {
  color: #ffffff;
  font-size: 30px;
  margin-top: -10px;
  transition: all 0.4s;
}
.feature-card:hover .feature-text .feature-text-desc{
  color: #ffffff;
  transition: all 0.4s;
}
.feature-card.red-bg {
  background-color: #ff6b6b;
  color: #fff;
}
.feature-card.blue-bg {
  background-color: #4a9eff;
  color: #fff;
}
.feature-card.green-bg {
  background-color: #4caf50;
  color: #fff;
}
.feature-text-desc {
  color: #6d6d6d;
  font-size: 14px;
  font-family: "MyCustomFont", sans-serif; 
  transition: all 0.4s;
}


#finance .feature-icon {
  width: 60px;
  height: 60px;
}
.feature-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 30px;
  margin-left: 40px;
  transition: all 0.4s;
}
.feature-icon .feature-icon:nth-child(1) {
  background-color: #eef9ff;
}
.feature-icon:nth-child(3) {
  background-color: #eef9ff;
}
.feature-icon:nth-child(4) {
  background-color: #eef9ff;
}
.feature-icon:nth-child(5) {
  background-color: #ffece9;
}
.feature-icon:nth-child(6) {
  background-color: #fef3ef;
}
.feature-icon img {
  object-fit: contain;
}
.feature-text {
  font-size: 22px;
  color: #011838;
  font-weight: bold;
  transition: all 0.4s;
}
.feature-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* 诉求超市 */
.appeal-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 15px;
  align-items: center;
}
.appeal-title {
  flex: 1;
  color: #333;
}
.appeal-time {
  color: #999;
  font-size: 14px;
}
.appeal-status {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  background-color: #4caf50;
  color: #fff;
}








.faq-list div {
  text-align: center;
  padding-top: 21px;
  font-size: 15px;
  color: #2b67ff;
}
.faq-list li {
  display: flex;
  align-items: center;
  padding: 16px 10px;
  margin: 5px auto;
  color: #223150;
  font-size: 14px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.ssdbja{
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.15);
}
.ssdbj{
  background-color: #e9f0ff;
  box-shadow: 0 5px 13px rgba(0, 0, 0, 0.15);
}
.faq-list li img {
  margin:0 5px;
}
/* 金融超市 */
.loan-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.loan-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loan-info {
  flex: 1;
}
.loan-bank {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.loan-details {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
}
.apply-btn {
  padding: 8px 20px;
  background-color: #4a9eff;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
  transition: background-color 0.3s;
}
.apply-btn:hover {
  background-color: #357abd;
}
/* 供需超市 */
.supply-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.supply-table th {
  background-color: #f8f9fa;
  padding: 12px;
  text-align: left;
  font-weight: bold;
  color: #333;
  border-bottom: 2px solid #ddd;
}
.supply-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #666;
}
.company-showcase {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.showcase-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.showcase-placeholder {
  height: 120px;
  background-color: #e0e0e0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  margin-bottom: 10px;
}
.supply-module__view {
  padding: 6px 20px;
  background-color: #4a9eff;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}
/* 人才超市 */
.talent-banner-card {
  background: linear-gradient(135deg, #4a9eff 0%, #357abd 100%);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.talent-module__illustration {
  font-size: 48px;
  margin-bottom: 15px;
}
.talent-module__banner-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.talent-btn {
  padding: 10px 30px;
  background-color: #fff;
  color: #4a9eff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
}
.activity-list li {
  padding: 10px 0;
  color: #666;
  border-bottom: 1px solid #eee;
}
.talent-module__calendar {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}
.talent-module__calendar-header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}
.calendar-days {
  display: flex;
  justify-content: space-around;
}
.calendar-day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #666;
}
.calendar-day.highlight {
  background-color: #4a9eff;
  color: #fff;
}
.talent-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.talent-action-btn {
  padding: 12px;
  background-color: #4a9eff;
  color: #fff;
  border-radius: 6px;
  font-size: 14px;
}
/* 服务超市 */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.service-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
  cursor: pointer;
}
.service-item:hover {
  transform: translateY(-3px);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.service-text {
  font-size: 18px;
  color: #223150;
}
.service-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-large-btn {
  padding: 20px;
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.4s;
}
#service .w .service-large-btn:hover .i{
  left:124px;
  transition: all 0.4s;
}
#service .w .service-large-btn:hover .t {
    top: 70%;
    transition: all 0.4s;
}

.space-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.space-item {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
}
.space-name {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}
.space-details {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
}
.space-tip {
  color: #999;
  font-size: 14px;
  text-align: center;
  padding: 10px;
}
/* 底部页脚 */

.qr-code {
  width: 120px;
  height: 120px;
  background-color: #2a4a6f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}
.qr-placeholder {
  color: #999;
}
/* 响应式布局调整 */
@media (max-width: 1200px) {
  .section-content {
    grid-template-columns: 1fr;
  }
  .main-content {
    padding-left: 20px;
  }
  .side-nav {
    display: none;
  }
}
/* 修复三列布局 */
#appeal .section-content,
#supply .section-content,
#service .section-content {
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 1400px) {
  #appeal .section-content,
  #supply .section-content,
  #service .section-content {
    grid-template-columns: 1fr;
  }
}
.calendar-container {
  height: 100%;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
/* 日历头部 */
.calendar-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px;
  background-color: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.month-nav-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  font-weight: bold;
  font-family: "宋体";
  padding: 5px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.month-nav-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}
.current-month {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}
/* 星期标题 */
.weekdays {
  width: 90%;
  margin: auto;
  margin-top: 9px;
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background-color: #f8f9fa;
}
.weekday {
  padding: 5px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}
.weekday.saturday,
.weekday.sunday {
  color: #ff4d4f;
}
/* 日期网格 */
.calendar-grid {
  width: 90%;
  margin: auto;
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(7, 1fr);
}
.calendar-grid > div {
  width: 100%;
  height: 100%;
  padding: 7px 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.day {
  width: 34px;
  height: 34px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.day:last-child {
  border-right: none;
}
.day:nth-child(7n) {
  border-right: none;
}
.day.saturday,
.day.sunday {
  color: #ff4d4f;
}
.day.empty {
  background-color: #fafafa;
  cursor: default;
}
.day.selected {
  background-color: #ff4d4f;
  color: white;
  font-weight: 500;
}
.day.highlighted {
  background-color: #ffccd5;
}
.day:hover:not(.empty) {
  background-color: #f0f0f0;
}
