@charset "UTF-8";
:root {
  --color-primary: #bf8d2f;
  --color-text-dark: #000000;
  --color-text-muted: #c6c6c6;
  --color-text-gray: #9f9f9f;
  --color-white: #ffffff;
  --color-background: #F5F5F5;
  --color-border: #9f9f9f;
  --news-container-width: 1600px;
  --index-container-width: 1920px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  background-color: var(--color-background);
  color: var(--color-text-dark);
  position: relative;
}

.container {
  width: 1600px;
  margin: 0 auto;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  height: auto;
  display: block;
}

h1, h2, h3, p {
  margin: 0;
}

.w30 {
  width: 30px;
}

.h30 {
  height: 30px;
}

.hide {
  display: none;
}

/* CSS for section section:header */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.3);
  background-size: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .header-container {
  max-width: 1920px;
  min-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.site-header .header-container .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  height: 100%;
}
.site-header .logo-white {
  display: none;
}
.site-header .logo {
  display: block;
}
.site-header .main-nav {
  height: 100%;
}
.site-header .main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  height: 100%;
}
.site-header .main-nav a {
  font-size: 19px;
  font-weight: 400;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.site-header .main-nav a.active, .site-header .main-nav a:hover {
  font-weight: 700;
  color: #f2b537;
}
.site-header .main-nav a.active::after, .site-header .main-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 17px;
  font-weight: 500;
  color: #e0e0e0;
}
.site-header .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.site-header .search-btn:hover {
  transform: scale(1.1);
}
.site-header .search-btn img {
  width: 18px;
  height: 18px;
}
.site-header .divider {
  width: 1px;
  height: 35px;
  background: linear-gradient(to top, transparent, var(--color-white) 50%, transparent);
  opacity: 0.85;
}
.site-header.site-header-white, .site-header:hover {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.site-header-white .logo, .site-header:hover .logo {
  display: none;
}
.site-header.site-header-white .logo-white, .site-header:hover .logo-white {
  display: block;
}
.site-header.site-header-white .divider, .site-header:hover .divider {
  background: linear-gradient(to top, transparent, var(--color-text-dark) 50%, transparent);
}
.site-header.site-header-white .main-nav a.active, .site-header.site-header-white .main-nav a:hover, .site-header:hover .main-nav a.active, .site-header:hover .main-nav a:hover {
  color: #f2b537;
}
.site-header.site-header-white .main-nav a.active::after, .site-header.site-header-white .main-nav a:hover::after, .site-header:hover .main-nav a.active::after, .site-header:hover .main-nav a:hover::after {
  background-color: #f2b537;
}
.site-header.site-header-white .search-btn, .site-header:hover .search-btn {
  color: var(--color-text-dark);
}
.site-header.site-header-white .search-btn img, .site-header:hover .search-btn img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(61%) saturate(749%) hue-rotate(2deg) brightness(80%) contrast(120%);
}
.site-header.site-header-white .lang-link, .site-header:hover .lang-link {
  color: var(--color-text-dark);
}
.site-header.site-header-white {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1400px) {
  .site-header .logo-white img, .site-header .logo img {
    width: 220px;
  }
  .site-header .header-nav {
    gap: 20px;
  }
  .site-header .main-nav ul {
    gap: 20px;
  }
  .site-header .main-nav a {
    font-size: 16px;
  }
  .site-header .header-container {
    height: 90px;
  }
}
@media (max-width: 1100px) {
  .site-header .main-nav a {
    font-size: 14px;
  }
  .site-header .header-actions {
    font-size: 14px;
  }
  .site-header .header-container {
    height: 80px;
  }
}

/* CSS for section section:footer */
.site-footer {
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  background-color: #818181;
}
.site-footer .footer-container {
  background-color: #eaeaea;
}
.site-footer .bottom-top {
  margin: 0 auto;
  width: 1600px;
  color: #2b3145;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0;
  text-align: left;
}
.site-footer .bottom-top-left {
  width: 75%;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
.site-footer .bottom-top-left-title {
  padding: 20px 0px;
  font-size: 22px;
}
.site-footer .bottom-top-left div a {
  padding: 5px 0px;
  font-size: 18px;
  display: block;
}
.site-footer .bottom-top-left > div dl a {
  font-size: 16px;
}
.site-footer .bottom-top-right {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  position: absolute;
  right: 5%;
  padding-top: 20px;
}
.site-footer .bottom-top-right .contact-info {
  font-size: 16px;
  text-align: right;
  line-height: 2;
}
.site-footer .bottom-top-right .wechat-qrcode {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 15px;
  text-align: right;
}
.site-footer .bottom-top-right div div {
  width: 100%;
  text-align: center;
}

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

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

.footer-content {
  position: relative;
  padding: 20px 0;
}

.footer-content p {
  font-size: 15px;
  line-height: 2.4;
}

.beian-icon {
  display: inline-block;
  vertical-align: middle;
  width: 19px;
  height: 19px;
  margin: 0 5px;
}

/* CSS for section section:hero */
.hero-section-news {
  position: relative;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-section-news .hero-background {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.hero-section-news .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-news .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 28, 32, 0.35);
}

.hero-section-news .hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  margin-top: 80px;
}

.hero-section-news .hero-content h1 {
  font-size: 56px;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-section-news .hero-content p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3.6px;
  color: var(--color-text-muted);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* CSS for section section:breadcrumb */
.breadcrumb-section {
  margin: 0 auto;
  width: 1920px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--color-background);
}
.breadcrumb-section .news-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  letter-spacing: 1.8px;
}
.breadcrumb-section .breadcrumb .current {
  color: var(--color-primary);
  font-weight: 700;
}
.breadcrumb-section .category-nav a {
  margin: 0 10px;
}
.breadcrumb-section .category-nav a.active {
  color: var(--color-primary);
  font-weight: 700;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pagination li.active {
  color: #bf8d2f;
}
.pagination li.disabled {
  color: var(--color-text-gray);
}
.pagination .arrow img {
  width: 14px;
  height: 22px;
  display: block;
}
.pagination .page-number {
  font-size: 18px;
  color: var(--color-text-dark);
}
.pagination .page-number.active {
  color: var(--color-primary);
  font-weight: 700;
}
.pagination .page-jump {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 20px;
}
.pagination .page-jump input {
  width: 57px;
  height: 30px;
  border: 1px solid #9f9f9f;
  text-align: center;
  font-size: 15px;
  color: var(--color-text-gray);
  box-sizing: border-box;
}
.pagination .page-jump button {
  background: none;
  border: none;
  color: #bf8d2f;
  font-size: 16px;
  cursor: pointer;
}

/* CSS for section section:news */
.news-section {
  background-color: var(--color-white);
  padding-top: 60px;
  padding-bottom: 100px;
}
.news-section .show-header {
  padding-bottom: 60px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 3.6px;
  color: var(--color-text-dark);
}
.news-section .show-header h1 {
  font-size: 24px;
}
.news-section .featured-article {
  display: flex;
  gap: 50px;
  margin-bottom: 80px;
}
.news-section .featured-image {
  flex: 0 0 45%;
}
.news-section .featured-image img {
  width: 720px;
  height: 500px;
  object-fit: cover;
  object-position: top;
}
.news-section .featured-content {
  flex: 1;
  padding-top: 30px;
}
.news-section .featured-content h2 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 60px;
  color: #bf8d2c;
}
.news-section .featured-content time {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}
.news-section .featured-content .summary {
  font-size: 16px;
  line-height: 2.5;
  color: var(--color-text-dark);
  margin-bottom: 40px;
}
.news-section .featured-info {
  background-color: var(--color-white);
  margin-left: -100px;
  padding: 40px 40px;
  border-radius: 10px;
  position: relative;
  min-height: 390px;
}
.news-section .featured-info .more-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  bottom: 20px;
  left: 40px;
}
.news-section .article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 120px;
  margin-bottom: 80px;
}
.news-section .article-card {
  display: flex;
  gap: 20px;
}
.news-section .article-card img {
  width: 348px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}
.news-section .article-card img:hover {
  transform: scale(1.05);
}
.news-section .card-content {
  flex: 1;
  position: relative;
}
.news-section .card-content .more-link {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.news-section .card-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 1.8px;
  margin-bottom: 16px;
  color: #bf8d2c;
}
.news-section .card-content p {
  font-size: 16px;
  line-height: 1.875;
  color: #494949;
  margin-bottom: 16px;
}
.news-section .article-list-section {
  margin-bottom: 80px;
}
.news-section .list-column {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.news-section .list-item {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted var(--color-text-dark);
  font-size: 18px;
  line-height: 4;
  width: 45%;
  transition: all 0.5s ease;
}
.news-section .list-item:hover {
  background-color: #f6eee0;
  color: #c08d2f;
}
.news-section .list-item p {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-section .list-item span {
  margin-right: 20px;
  font-size: 15px;
}
.news-section .list-item img {
  width: 10px;
  height: 18px;
}
.news-section .jump-btn {
  font-size: 16px;
  color: var(--color-primary);
}

/* CSS for section section:hero */
.hero-section-index {
  height: 1000px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 垂直分页器样式 */
}
.hero-section-index .hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section-index .swiper-wrapper {
  margin: 0 auto;
  width: 100%;
}
.hero-section-index .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-section-index .swiper-pagination-vertical {
  right: 50px !important;
  left: auto !important;
  width: auto !important;
  top: 60% !important;
  transform: translateY(-50%) !important;
  display: flex;
  flex-direction: column;
}
.hero-section-index .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 8px 0 !important; /* 垂直间距 */
}
.hero-section-index .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.hero-section-index .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section-index .hero-background img {
  width: 100%;
}
.hero-section-index .hero-background .bg-img-3 {
  opacity: 0.33;
}
.hero-section-index .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero-section-index .hero-text-group {
  position: absolute;
  top: 353px;
  left: 50%;
  transform: translateX(-25%);
  text-align: left;
}
.hero-section-index .hero-text-1 {
  font-size: 75px;
  color: #daa73f;
  text-shadow: 7.13px -3.63px 10px rgba(144, 102, 16, 0.58);
  line-height: 1.2;
}
.hero-section-index .hero-text-2 {
  font-size: 145px;
  color: #daa73f;
  text-shadow: 7.13px -3.63px 10px rgba(144, 102, 16, 0.58);
  line-height: 1.2;
  margin-top: -20px;
}
.hero-section-index .hero-text-3 {
  font-size: 37px;
  color: #daa73f;
  letter-spacing: 11px;
  margin-top: 20px;
}
.hero-section-index .hero-cta {
  position: relative;
  display: inline-block;
  margin-top: 30px;
}
.hero-section-index .hero-cta img {
  width: 282px;
  height: 61px;
}
.hero-section-index .hero-cta span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #3c2772;
  font-size: 28px;
  letter-spacing: 5.7px;
  white-space: nowrap;
}
.hero-section-index .deco-line {
  position: absolute;
  top: 338px;
  left: 50%;
  transform: translateX(-15%);
  width: 97px;
}
.hero-section-index .deco-1 {
  position: absolute;
  top: 294px;
  left: 50%;
  transform: translateX(-40%);
  width: 100px;
  opacity: 0.9;
}
.hero-section-index .deco-2 {
  position: absolute;
  top: 363px;
  left: 50%;
  transform: translateX(-20%);
  width: 100px;
  opacity: 0.9;
}
.hero-section-index .deco-3 {
  position: absolute;
  top: 449px;
  left: 50%;
  transform: translateX(5%);
  width: 100px;
  opacity: 0.9;
}
.hero-section-index .hero-pagination {
  position: absolute;
  top: 493px;
  right: 360px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* CSS for section section:services */
.services-section-index {
  position: absolute;
  bottom: 40px;
  padding: 40px 0;
  z-index: 20;
}
.services-section-index .container {
  min-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.services-section-index .services-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 130px;
  padding: 0;
  position: relative;
  gap: 0;
}
.services-section-index .service-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 5);
  gap: 20px;
  padding: 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  border-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0)) 1;
  border-right: 2px solid;
}
.services-section-index .service-item:last-child {
  border-right: none;
}
.services-section-index .service-item:hover, .services-section-index .service-item.active {
  background-color: #0e1e84;
  box-shadow: 0px 0px 21px 0px rgba(50, 69, 143, 0.59);
  height: 140px;
  border: 2px solid #ffffff;
  border-radius: 0%;
  margin-left: -4px;
}
.services-section-index .service-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.services-section-index .service-text .title {
  font-size: 23px;
  letter-spacing: 2.4px;
}
.services-section-index .service-text .subtitle {
  font-size: 13px;
  letter-spacing: 2.8px;
  opacity: 0.8;
}
.services-section-index .service-divider {
  width: 2px;
  height: 99px;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

/* CSS for section section:news */
.news-section-index {
  padding: 80px 0;
  background: #fff;
}
.news-section-index .container {
  max-width: var(--news-container-width);
}
.news-section-index .news-layout {
  display: flex;
  gap: 40px;
}
.news-section-index .news-main {
  flex: 1;
}
.news-section-index .news-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.news-section-index .news-tabs a {
  font-size: 22px;
  letter-spacing: 2.2px;
  color: var(--color-text-dark);
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}
.news-section-index .news-tabs a.active,
.news-section-index .news-tabs a:hover {
  color: #c9952d;
  font-style: italic;
}
.news-section-index .news-tabs a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c9952d;
  transition: width 0.3s ease;
}
.news-section-index .news-tabs a.active:after,
.news-section-index .news-tabs a:hover:after {
  width: 100%;
}
.news-section-index .tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.news-section-index .tab-content.active {
  display: block;
  opacity: 1;
}
.news-section-index .featured-news h3 {
  font-size: 17px;
  line-height: 1.9;
  font-weight: 400;
}
.news-section-index .featured-news .date {
  font-size: 16px;
  color: #9f9f9f;
  margin: 10px 0;
}
.news-section-index .featured-news .summary {
  font-size: 16px;
  color: #737272;
  line-height: 2.3;
}
.news-section-index .news-divider {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 20px 0;
}
.news-section-index .news-list li {
  margin-bottom: 25px;
}
.news-section-index .news-list a {
  display: flex;
  justify-content: space-between;
  font-size: 19px;
  color: var(--color-text-dark);
}
.news-section-index .news-list .date {
  font-size: 17px;
  color: #9f9f9f;
}
.news-section-index .news-sidebar {
  flex-basis: 983px;
  max-width: 983px;
}
.news-section-index .excellence-banner {
  height: 350px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.news-section-index .banner-swiper {
  width: 100%;
  height: 100%;
}
.news-section-index .banner-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.news-section-index .banner-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.news-section-index .banner-swiper .swiper-pagination {
  bottom: 30px !important;
}
.news-section-index .banner-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
  margin: 0 5px;
}
.news-section-index .banner-swiper .swiper-pagination-bullet-active {
  background: #c9952d;
}
.news-section-index .sidebar-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.news-section-index .sidebar-card {
  position: relative;
  width: 315px;
  height: 315px;
  border-radius: 10px;
  overflow: hidden;
}
.news-section-index .sidebar-card:hover {
  cursor: pointer;
}
.news-section-index .sidebar-card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  object-fit: cover;
}
.news-section-index .sidebar-card .card-bg:hover {
  transform: scale(1.1);
}
.news-section-index .sidebar-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.news-section-index .sidebar-card .card-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 1.6px;
}
.news-section-index .sidebar-card .card-overlay img {
  width: 23px;
  height: 20px;
}

/* CSS for section section:publications */
.publications-section-index {
  padding: 80px 0;
  background: #f7f7f7;
}
.publications-section-index .container {
  max-width: var(--news-container-width);
}
.publications-section-index .section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.publications-section-index .section-header h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-text-dark);
}
.publications-section-index .section-header h2 span {
  font-size: 18px;
}
.publications-section-index .more-link {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}
.publications-section-index .more-link span {
  color: var(--color-primary);
}
.publications-section-index .publications-grid {
  width: 1920px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.publications-section-index .pub-card {
  position: relative;
}
.publications-section-index .pub-card img {
  border: 15px solid #ffffff;
}
.publications-section-index .pub-card.featured img {
  width: 378px;
  height: 530px;
  border: 15px solid #ffffff;
  box-shadow: 0px 0px 49px 0px rgba(15, 47, 169, 0.27);
}
.publications-section-index .pub-card .details-link {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  font-size: 17px;
  letter-spacing: 1.8px;
}
.publications-section-index .publications-swiper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0;
  overflow: visible;
  height: 500px;
}
.publications-section-index .pub-swiper {
  width: 100%;
  padding-bottom: 50px;
}
.publications-section-index .swiper-slide {
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
.publications-section-index .swiper-slide img {
  width: 311px;
  height: 420px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.15);
  z-index: 1;
}
.publications-section-index .swiper-slide:hover img {
  transform: scale(1.2);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}
.publications-section-index .pub-slide-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0 10px;
}

/* CSS for section section:articles */
.articles-section-index {
  padding: 80px 0;
  background: #fff;
  /* 标签切换结构 */
  /* 标签内容的显示和隐藏 */
  /* 侧边栏标签样式 */
}
.articles-section-index .container {
  max-width: var(--news-container-width);
}
.articles-section-index .articles-layout {
  display: flex;
  gap: 100px;
}
.articles-section-index .articles-tabs {
  flex-grow: 1;
}
.articles-section-index .articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-grow: 1;
}
.articles-section-index .tab-content {
  display: none;
}
.articles-section-index .tab-content.active {
  display: grid;
}
.articles-section-index .article-card {
  background: #f4f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.articles-section-index .article-image-container {
  position: relative;
  height: 290px;
}
.articles-section-index .article-image-container .article-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.articles-section-index .article-image-container .article-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.articles-section-index .article-image-container .article-img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.articles-section-index .article-info {
  padding: 20px;
}
.articles-section-index .article-info h4 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  height: 90px;
}
.articles-section-index .article-info .date {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-top: 10px;
}
.articles-section-index .articles-sidebar {
  text-align: right;
  white-space: nowrap;
  position: relative;
}
.articles-section-index .articles-sidebar nav ul li a {
  display: block;
  font-size: 24px;
  color: #000000;
  line-height: 2.3;
  transition: all 0.3s ease;
  opacity: 0.7;
}
.articles-section-index .articles-sidebar nav ul li a.active {
  color: var(--color-primary);
  opacity: 1;
  transform: translateX(-10px);
  font-style: italic;
  font-weight: 700;
}
.articles-section-index .articles-sidebar nav ul li a:hover {
  opacity: 1;
  color: var(--color-primary);
}
.articles-section-index .articles-sidebar .more-link {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-top: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
}
.articles-section-index .articles-sidebar .more-link span {
  color: var(--color-primary);
}
.articles-section-index .article-image-container .card-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 16px;
  letter-spacing: 1.6px;
}
.articles-section-index .article-image-container .card-overlay img {
  width: 23px;
  height: 20px;
}
.articles-section-index .interviews-swiper {
  width: 100%;
}

/* CSS for section section:sponsors */
.sponsors-section-index {
  padding: 60px 0;
  background: #fff;
}
.sponsors-section-index .container {
  max-width: var(--news-container-width);
}
.sponsors-section-index .section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}
.sponsors-section-index .section-header h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-text-dark);
}
.sponsors-section-index .section-header h2 span {
  font-size: 18px;
}
.sponsors-section-index .sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  align-items: center;
  justify-items: center;
  height: 500px; /* 固定高度，可根据实际需求调整 */
  overflow-y: scroll;
  position: relative;
  transition: overflow 0.2s;
  /* 始终允许滚动，避免内容被隐藏后无法通过滚动看到 */
  scrollbar-width: none;
}
.sponsors-section-index .sponsors-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsors-section-index .sponsors-grid a > img {
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.sponsors-section-index .sponsors-grid a:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

/* CSS for section section:links */
.site-links-index {
  background-color: #f7f7f7;
}
.site-links-index .footer-links-section {
  padding: 40px 0;
}
.site-links-index .footer-links-section .container {
  max-width: var(--news-container-width);
}
.site-links-index .footer-links-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.site-links-index .links-title h3 {
  font-size: 30px;
  font-weight: 700;
}
.site-links-index .links-title p {
  font-size: 20px;
  color: #c1c1c1;
}
.site-links-index .links-divider {
  width: 2px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
}
.site-links-index .links-logo img {
  max-width: 472px;
  object-fit: contain;
}

.hero-section-qikan .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}
.hero-section-qikan .hero-text h1 {
  font-size: 47px;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #fdfdfd;
}
.hero-section-qikan .hero-text p {
  font-size: 17px;
  letter-spacing: 3.6px;
  color: #dfdfdf;
  margin: 0;
}
.hero-section-qikan .hero-magazines {
  position: relative;
  display: flex;
  align-items: center;
  height: 218px;
}
.hero-section-qikan .hero-magazines img {
  height: 100%;
  width: auto;
  margin-left: -50px;
  transition: transform 0.3s ease;
}
.hero-section-qikan .hero-magazines img:first-child {
  margin-left: 0;
}
.hero-section-qikan .hero-magazines img:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 1;
}

/* CSS for section section:features */
.features-section-qikan {
  background-color: #ffffff;
  padding-bottom: 80px;
  padding-top: 60px;
}
.features-section-qikan .features-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
.features-section-qikan .features-container .features-button {
  display: flex;
  justify-content: space-between;
  gap: 85px;
  margin-bottom: 160px;
}
.features-section-qikan .features-container .features-button a {
  font-size: 16px;
  border: 1px solid #beb4a2;
  background-color: #f5f4f1;
  text-align: center;
  padding: 20px 0;
  border-radius: 5px;
  box-sizing: border-box;
  color: #9c9485;
  width: 485px;
}
.features-section-qikan .features-container .features-button a:hover, .features-section-qikan .features-container .features-button a.active {
  background-color: #f6eee0;
  color: #c08d2f;
}
.features-section-qikan .sub-nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  margin-bottom: 60px;
}
.features-section-qikan .breadcrumbs {
  font-size: 18px;
  color: var(--color-text-dark);
  letter-spacing: 1.8px;
}
.features-section-qikan .breadcrumbs .current {
  color: var(--color-primary);
  font-weight: 700;
}
.features-section-qikan .sub-nav ul {
  display: flex;
  gap: 30px;
}
.features-section-qikan .sub-nav a {
  font-size: 18px;
  color: var(--color-text-dark);
}
.features-section-qikan .sub-nav a.active {
  color: var(--color-primary);
  font-weight: 700;
}
.features-section-qikan .publications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 180px 80px;
  margin: 80px 0;
}
.features-section-qikan .publication-card {
  display: flex;
  gap: 30px;
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
.features-section-qikan .card-image {
  position: relative;
  margin-top: -140px;
}
.features-section-qikan .card-image img {
  width: 256px;
  height: 358px;
  box-shadow: -0.7px 10px 21px 0px rgba(0, 0, 0, 0.16);
}
.features-section-qikan .card-content {
  margin-top: -140px;
  display: flex;
  flex-direction: column;
}
.features-section-qikan .card-content h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 95px;
}
.features-section-qikan .card-details {
  flex-grow: 1;
  padding-top: 45px;
}
.features-section-qikan .card-details p {
  font-size: 17px;
  line-height: 2;
  margin: 0;
}
.features-section-qikan .card-actions {
  bottom: 40px;
  left: 326px;
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.features-section-qikan .btn {
  padding: 10px 20px;
  border: 1px solid #c08d2f;
  color: #c08d2f;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 10px;
  background-color: #f9f3ea;
}
.features-section-qikan .btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* 咨询评价页面 - 双碳战略发展中心部分 */
.carbon-strategy-section {
  position: relative;
  padding: 80px 0 0 0;
  min-height: 800px;
  overflow: hidden;
  background-color: var(--color-white);
}
.carbon-strategy-section .container {
  max-width: 1484px;
  padding: 0;
}
.carbon-strategy-section .carbon-bg-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 197px;
  z-index: -1;
}
.carbon-strategy-section .carbon-bg-overlay {
  width: 100%;
  height: 100%;
  background-color: #042924;
  opacity: 0.11;
}
.carbon-strategy-section .carbon-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.carbon-strategy-section .carbon-strategy-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.carbon-strategy-section .carbon-strategy-card .card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carbon-strategy-section .carbon-strategy-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carbon-strategy-section .carbon-strategy-card .card-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgb(1, 30, 31), rgba(1, 30, 31, 0));
}
.carbon-strategy-section .carbon-strategy-card .card-content {
  padding: 50px 35px 100px;
  flex: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 445px;
}
.carbon-strategy-section .carbon-strategy-card .card-content h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: #FEFEFE;
  transition: transform 1s ease;
}
.carbon-strategy-section .carbon-strategy-card:hover .card-content h2 {
  transform: translateY(-60px);
}
.carbon-strategy-section .carbon-strategy-card .card-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.0475em;
  color: #FEFEFE;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carbon-strategy-section .carbon-strategy-card:hover .card-content p {
  opacity: 1;
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 咨询评价页面 - 联系我们部分 */
.contact-section {
  padding: 0 0 80px;
  background-color: var(--color-white);
}
.contact-section .container {
  max-width: 1484px;
  padding: 50px 0;
  background-color: #e3e8e7;
}
.contact-section .contact-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.contact-section .contact-header {
  position: relative;
  text-align: left;
}
.contact-section .contact-header h2 {
  font-weight: 400;
  font-size: 35px;
  line-height: 1.21;
  letter-spacing: 0.05em;
  color: #193333;
  margin-bottom: 10px;
}
.contact-section .contact-header p {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.21;
  letter-spacing: 0.05em;
  color: #6C8888;
  margin-bottom: 20px;
}
.contact-section .divider {
  width: 1px;
  height: 125px;
  background-color: #1A3333;
  opacity: 0.9;
  display: inline-block;
  margin: 0 50px 0 260px;
}
.contact-section .contact-info {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.21;
  letter-spacing: 0.05em;
  color: #000000;
  text-align: left;
}
.contact-section .contact-info p {
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

/* 咨询评价页面 - 分支机构双栏图片布局 */
.pj-section {
  padding: 80px 0;
  background-color: var(--color-white);
}
.pj-section .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
.pj-section .pj-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.pj-section .pj-col {
  width: calc(50% - 20px);
}
.pj-section .pj-box {
  background-color: #F5F5F5;
  margin-top: 160px;
  padding-bottom: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}
.pj-section .pj-image-wrapper {
  max-width: 623px;
  width: 80%;
  height: 390px;
  position: absolute;
  top: 0;
  transform: translateY(-160px);
  overflow: hidden;
}
.pj-section .pj-col:first-child .pj-box {
  background-color: #F5F5F5;
}
.pj-section .pj-col:first-child .pj-image-wrapper {
  background-color: #D5181B;
}
.pj-section .pj-col:last-child .pj-box {
  background-color: #F5F5F5;
}
.pj-section .pj-col:last-child .pj-image-wrapper {
  background-color: #ECF0F0;
}
.pj-section .pj-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pj-section .pj-text-item {
  margin-top: 275px;
  max-width: 623px;
  width: 80%;
  bottom: 0;
}
.pj-section .pj-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21;
  letter-spacing: 1.75px;
  color: #000000;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pj-section .pj-description {
  font-size: 16px;
  line-height: 2.24;
  letter-spacing: 1.75px;
  color: #464545;
  margin-bottom: 10px;
}
.pj-section .pj-more {
  font-size: 14px;
  line-height: 1.21;
  color: #BF8D2F;
  font-weight: 700;
  white-space: nowrap;
}

/* 咨询评价页面 - 分支机构双栏图片布局 */
.meet-section {
  padding: 80px 0;
  background-color: var(--color-white);
}
.meet-section .container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}
.meet-section .meet-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.meet-section .meet-box {
  background-color: #F5F5F5;
  margin-top: 160px;
  height: 310px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  gap: 40px;
}
.meet-section .meet-image-wrapper {
  max-width: 50%;
  width: 50%;
  height: 390px;
  position: relative;
  top: -80px;
  overflow: hidden;
}
.meet-section .meet-col:first-child .meet-box {
  background-color: #F5F5F5;
}
.meet-section .meet-col:first-child .meet-image-wrapper {
  background-color: #D5181B;
}
.meet-section .meet-col:last-child .meet-box {
  background-color: #F5F5F5;
}
.meet-section .meet-col:last-child .meet-image-wrapper {
  background-color: #ECF0F0;
}
.meet-section .meet-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.meet-section .meet-image:hover {
  transform: scale(1.1);
}
.meet-section .meet-text-item {
  margin-top: 0;
  max-width: 45%;
  width: 45%;
  height: 390px;
  position: relative;
  top: -80px;
}
.meet-section .meet-title {
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 1.75px;
  color: #000000;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  font-size: 22px;
}
.meet-section .meet-description {
  font-size: 18px;
  line-height: 2.24;
  letter-spacing: 1.75px;
  color: #464545;
  margin-bottom: 10px;
  height: 225px;
  display: flex;
  align-items: center;
}
.meet-section .meet-more {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 18px;
  line-height: 1.21;
  color: #BF8D2F;
  font-weight: 700;
  white-space: nowrap;
}

/* 投稿页面样式 */
.tougao-main {
  padding-top: 120px;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 300px;
  /* 图片网格样式 */
  /* 按钮区域样式 */
}
.tougao-main .tougao-image-grid {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 230px;
  z-index: 1;
}
.tougao-main .tougao-row {
  display: flex;
  justify-content: space-between;
}
.tougao-main .tougao-image-item {
  width: 306px;
}
.tougao-main .tougao-image {
  width: 100%;
  height: 388px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.tougao-main .tougao-image:hover {
  transform: scale(1.05);
}
.tougao-main .tougao-buttons {
  margin-bottom: 70px;
}
.tougao-main .tougao-button-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.tougao-main .tougao-button {
  flex: 1;
}
.tougao-main .tougao-button-inner {
  height: 64px;
  border: 1px solid var(--color-primary);
  background-color: rgba(192, 141, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin-top: 70px;
  border-radius: 10px;
}
.tougao-main .tougao-button-inner:hover {
  background-color: rgba(192, 141, 47, 0.25);
}
.tougao-main .tougao-link {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

/* CSS for section search-page */
.search-page {
  position: relative;
  padding-top: 180px;
  padding-bottom: 80px;
  color: var(--color-white);
  overflow: hidden;
  min-height: 470px;
}
.search-page .search-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.search-page .search-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.search-page .search-page .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
.search-page .search-title {
  font-size: 39px;
  font-weight: 400;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 30px;
}
.search-page .search-content-types {
  text-align: center;
  margin-bottom: 40px;
}
.search-page .search-content-types p {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-white);
}
.search-page .search-form-container {
  margin-bottom: 50px;
}
.search-page .search-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.search-page .filter-item {
  position: relative;
}
.search-page .filter-box {
  width: 135px;
  height: 59px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  border-radius: 30px;
}
.search-page .filter-box span {
  font-size: 19px;
  font-weight: 400;
  color: #FFFFFF;
}
.search-page .triangle-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #D5D5D5;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.search-page .search-input-container {
  width: 669px;
  height: 59px;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  border-radius: 30px;
  padding: 0 20px;
  position: relative;
}
.search-page .search-input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-size: 19px;
  color: #FFFFFF;
}
.search-page .search-input::placeholder {
  color: #C5C9E5;
}
.search-page .search-button {
  width: 135px;
  height: 59px;
  background-color: rgba(0, 28, 171, 0.5);
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 30px;
}
.search-page .search-button:hover {
  background-color: rgba(0, 28, 171, 0.7);
}
.search-page .search-button button {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
.search-page .search-button span {
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.search-page .search-button img {
  width: 24px;
  height: 24px;
}

.search-history-section {
  padding-bottom: 50px;
  padding-top: 50px;
  width: 1600px;
  margin: 0 auto;
}
.search-history-section .search-history {
  text-align: center;
  font-size: 18px;
}
.search-history-section .search-history span {
  font-weight: 700;
  color: #c08d2f;
}
.search-history-section .search-history a {
  color: #000000;
  margin-left: 25px;
}

/* 搜索结果部分样式 */
.search-results-section {
  padding: 30px 0;
  background-color: #ffffff;
}
.search-results-section .container {
  max-width: 1600px;
  margin: 0 auto;
}
.search-results-section .search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
.search-results-section .results-title h2 {
  font-size: 16px;
  text-transform: uppercase;
  margin: 0;
  color: #868686;
  font-weight: inherit;
}
.search-results-section .results-title h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 20px;
}
.search-results-section .results-count {
  position: absolute;
  right: 0;
  top: 0;
}
.search-results-section .results-count p {
  font-size: 16px;
}
.search-results-section .results-filter {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 15px;
}
.search-results-section .filter-time,
.search-results-section .filter-sort {
  width: 129px;
  height: 39px;
  background-color: rgba(192, 141, 47, 0.1);
  border: 1px solid #C08D2F;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 10px;
}
.search-results-section .filter-time span,
.search-results-section .filter-sort span {
  font-size: 16px;
  font-weight: 400;
  color: #BF8D2F;
  letter-spacing: 2.5%;
}
.search-results-section .filter-time .triangle-icon,
.search-results-section .filter-sort .triangle-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-results-section .dropdown {
  position: relative;
}
.search-results-section .triangle-down.gold {
  border-top-color: #D5B77F;
  right: 12px;
}
.search-results-section .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #C08D2F;
  border-radius: 5px;
  margin-top: 5px;
  z-index: 10;
  display: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.search-results-section .dropdown-menu.active {
  display: block;
}
.search-results-section .dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results-section .dropdown-menu li {
  padding: 0;
}
.search-results-section .dropdown-menu a {
  display: block;
  padding: 8px 15px;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}
.search-results-section .dropdown-menu a:hover {
  background-color: rgba(192, 141, 47, 0.1);
  color: #BF8D2F;
}
.search-results-section .results-divider {
  width: 100%;
  height: 2px;
  background-color: #C08D2F;
  margin-top: 20px;
}

/* 搜索结果内容部分样式 */
.search-results-section .search-results-content {
  display: grid;
  grid-template-columns: 300px 1fr 300px;
  gap: 30px;
  margin-top: 40px;
}
.search-results-section .search-sidebar {
  background-color: #F5F6F7;
}
.search-results-section .search-sidebar .filter-section {
  position: relative;
  margin-bottom: 20px;
}
.search-results-section .search-sidebar .filter-section h3 {
  font-size: 16px;
  font-weight: 400;
  padding: 15px 30px;
  margin: 0;
  background: linear-gradient(90deg, #1A82DB 0%, #0C22B5 100%);
  color: #FFFFFF;
  border-radius: 10px;
}
.search-results-section .search-sidebar .filter-section ul {
  list-style: none;
  padding: 10px 30px;
  margin: 0;
}
.search-results-section .search-sidebar .filter-section ul li {
  margin-bottom: 10px;
}
.search-results-section .search-sidebar .filter-section ul li a {
  font-size: 17px;
  color: #000000;
  text-decoration: none;
}
.search-results-section .search-sidebar .filter-section ul li a:hover {
  color: #1A82DB;
}
.search-results-section .search-sidebar .filter-section .expand-icon {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.search-results-section .search-main {
  padding: 0 20px;
}
.search-results-section .search-main .search-result-item {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EEEEEE;
}
.search-results-section .search-main .search-result-item h3 {
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 15px;
}
.search-results-section .search-main .search-result-item .authors {
  font-size: 16px;
  color: #7F7F7F;
  margin-bottom: 10px;
}
.search-results-section .search-main .search-result-item .publication-info {
  font-size: 15px;
  color: #7F7F7F;
  margin-bottom: 15px;
}
.search-results-section .search-main .search-result-item .abstract {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 15px;
}
.search-results-section .search-main .search-result-item .keywords {
  font-size: 15px;
  color: #7F7F7F;
  margin-bottom: 15px;
}
.search-results-section .search-main .search-result-item .article-links a {
  font-size: 15px;
  color: #BF8D2F;
  margin-right: 15px;
  text-decoration: none;
}
.search-results-section .search-main .search-result-item .article-links a:hover {
  text-decoration: underline;
}
.search-results-section .search-sidebar-right .sidebar-box {
  background-color: #F5F6F7;
  margin-bottom: 30px;
}
.search-results-section .search-sidebar-right .sidebar-box .sidebar-title {
  font-size: 16px;
  font-weight: 400;
  padding: 15px 30px;
  margin: 0;
  background: linear-gradient(90deg, #1A82DB 0%, #0C22B5 100%);
  color: #FFFFFF;
  border-radius: 10px;
}
.search-results-section .search-sidebar-right .sidebar-box .hot-topics {
  padding: 20px;
  background-color: #f5f6f7;
}
.search-results-section .search-sidebar-right .sidebar-box .hot-topics a {
  display: inline-block;
  margin: 5px 10px;
  color: #535353;
  font-size: 16px;
  text-decoration: none;
}
.search-results-section .search-sidebar-right .sidebar-box .hot-topics a:hover {
  color: #1A82DB;
}
.search-results-section .search-sidebar-right .sidebar-box .authors-list {
  display: flex;
  padding: 20px;
}
.search-results-section .search-sidebar-right .sidebar-box .authors-list .authors-column {
  flex: 1;
}
.search-results-section .search-sidebar-right .sidebar-box .authors-list .authors-column p {
  font-size: 15px;
  margin-bottom: 20px;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart {
  padding: 20px;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container {
  position: relative;
  height: 200px;
  margin-top: 30px;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .y-axis {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .y-axis span {
  font-size: 14px;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .chart-content {
  position: relative;
  margin-left: 20px;
  height: 140px;
  width: 240px;
  border-left: 1px solid #C6CAE5;
  border-bottom: 1px solid #C6CAE5;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .chart-bar {
  position: absolute;
  bottom: 0;
  width: 12px;
  background: linear-gradient(180deg, #1A82DB 0%, #733BC9 100%);
  opacity: 0.44;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .x-axis {
  position: absolute;
  bottom: -25px;
  left: 20px;
  width: 240px;
  display: flex;
  justify-content: space-between;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .x-axis span {
  font-size: 14px;
}
.search-results-section .search-sidebar-right .sidebar-box .trend-chart .chart-container .chart-unit {
  position: absolute;
  top: -20px;
  right: 0;
  font-size: 15px;
  margin: 0;
}

.rongmei-section .rongmei-background {
  width: 1920px;
  height: 876px;
  margin: 0 auto;
}
.rongmei-section .rongmei-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 融媒矩阵页面样式 */
.hero-section-rongmei {
  position: relative;
  margin: 0 auto;
  height: 876px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
  /* 二维码弹窗样式 */
}
.hero-section-rongmei .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-section-rongmei .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-rongmei .container {
  margin: 0 auto;
  position: relative;
  height: 100%;
  width: 1600px;
}
.hero-section-rongmei .hero-content {
  position: absolute;
  z-index: 1;
  right: 25px;
  top: 300px;
}
.hero-section-rongmei .hero-text h1 {
  font-size: 48px;
  text-align: right;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}
.hero-section-rongmei .hero-text p {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 3.6px;
  color: #FFFFFF;
  text-align: right;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section-rongmei .media-platform-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: absolute;
  background: linear-gradient(to bottom, #0295E1, #001CAB, #036DC7);
  padding: 20px 40px;
  margin: 0 auto;
  top: 600px;
  right: 0px;
  border-radius: 70px;
  box-sizing: border-box;
}
.hero-section-rongmei .media-platform-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
}
.hero-section-rongmei .media-platform-item:hover .qrcode-popup {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section-rongmei .media-icon {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 23px;
}
.hero-section-rongmei .media-icon img {
  max-width: 100%;
  max-height: 100%;
}
.hero-section-rongmei .media-name {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.75px;
  text-align: center;
  white-space: nowrap;
}
.hero-section-rongmei .qrcode-container {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 256px;
}
.hero-section-rongmei .qrcode-popup {
  position: absolute;
  background-image: url("../images/rongmei/qrcode-triangle.png");
  background-size: 100% 100%;
  padding: 0 15px;
  height: 180px;
  top: -180px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
.hero-section-rongmei .qrcode-popup .qrcode-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-section-rongmei .qrcode-popup .qrcode-triangle img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 0px 24px rgba(0, 42, 178, 0.44));
}
.hero-section-rongmei .qrcode-popup .qrcode-box {
  display: flex;
  gap: 15px;
  z-index: 2;
  transform: translateY(15px);
}
.hero-section-rongmei .qrcode-popup .qrcode-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.hero-section-rongmei .qrcode-popup .qrcode-image {
  width: 101px;
  height: 100px;
  background-color: #fff;
}
.hero-section-rongmei .qrcode-popup .qrcode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-rongmei .qrcode-popup .qrcode-text {
  font-size: 13px;
  color: #000;
  text-align: center;
}

.rongmei-service {
  border-top: 2px solid #fff;
  padding: 50px 0;
  background: linear-gradient(to bottom, #9fadcb, #a3b3d3);
}
.rongmei-service .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 1600px;
  margin: 0 auto;
}
.rongmei-service .container .rongmei-service-left {
  width: 25%;
  text-align: left;
}
.rongmei-service .container .rongmei-service-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
}
.rongmei-service .container .rongmei-service-left p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}
.rongmei-service .container .rongmei-service-right {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  justify-content: space-between;
  align-content: space-between;
}
.rongmei-service .container .rongmei-service-right .rongmei-service-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.rongmei-service .container .rongmei-service-right .rongmei-service-item p {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 2em;
}
.rongmei-service .container .divider {
  width: 1px;
  height: 170px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.rongmei-contact {
  padding: 50px 0;
  background-color: var(--color-white);
}
.rongmei-contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1600px;
  margin: 0 auto;
}
.rongmei-contact .container h2 {
  font-size: 16px;
  color: #00275d;
  margin-bottom: 20px;
}
.rongmei-contact .container p {
  font-size: 16px;
  color: #363636;
  line-height: 2.5em;
}
.rongmei-contact .container .rongmei-contact-left {
  width: 60%;
  text-align: left;
}
.rongmei-contact .container .rongmei-contact-right {
  width: 20%;
}
.rongmei-contact .container .divider {
  width: 1px;
  height: 150px;
  background: linear-gradient(to bottom, rgba(213, 213, 213, 0) 0%, rgb(213, 213, 213) 50%, rgba(213, 213, 213, 0) 100%);
}

/* 融媒矩阵内容样式 */
.media-matrix-section {
  padding: 50px 0;
  background-color: var(--color-white);
}
.media-matrix-section .container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.media-matrix-section .media-matrix-content {
  position: relative;
  padding-top: 20px;
}
.media-matrix-section .media-platform-container {
  position: relative;
  margin-top: 50px;
}

/* 启阳讲堂页面样式 */
.lecture-section {
  padding-top: 30px;
  background-color: var(--color-white);
  padding-bottom: 80px;
}
.lecture-section .lecture-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1600px;
  margin: 0 auto;
}
.lecture-section .lecture-card {
  width: 48%;
  background-color: #F5F5F5;
  position: relative;
  margin-top: 200px;
}
.lecture-section .lecture-image-container {
  position: relative;
  background-color: #ECF0F0;
  width: 80%;
  margin: 0 auto;
  margin-top: -168px;
}
.lecture-section .lecture-image-wrapper {
  position: relative;
  width: 100%;
  height: 390px;
}
.lecture-section .lecture-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lecture-section .lecture-image:hover {
  transform: scale(1.05);
}
.lecture-section .lecture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.lecture-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}
.lecture-section .play-button:hover .circle-icon {
  background-color: #0066cc;
  border-radius: 50%;
}
.lecture-section .circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
}
.lecture-section .circle-icon img {
  width: 100%;
  height: 100%;
}
.lecture-section .triangle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.98;
}
.lecture-section .triangle-icon img {
  width: 31px;
  height: 35px;
}
.lecture-section .lecture-content {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F5F5F5;
  width: 80%;
  margin: 0 auto;
}
.lecture-section .lecture-title {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  color: #000000;
}
.lecture-section .more-link {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
}

.lecture-contact {
  padding: 60px 0;
  background-color: var(--color-background);
}
.lecture-contact .lecture-contact-content {
  display: flex;
  font-size: 20px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 0 100px;
}

/* 启阳讲堂页面样式 */
.exihibition-section {
  padding-top: 60px;
  background-color: var(--color-white);
}
.exihibition-section .container {
  padding-bottom: 60px;
}
.exihibition-section .exihibition-button {
  display: flex;
  justify-content: space-between;
  gap: 85px;
  margin-bottom: 60px;
}
.exihibition-section .exihibition-button a {
  font-size: 16px;
  border: 1px solid #beb4a2;
  background-color: #f5f4f1;
  text-align: center;
  padding: 20px 0;
  border-radius: 5px;
  box-sizing: border-box;
  color: #9c9485;
  width: 485px;
}
.exihibition-section .exihibition-button a:hover, .exihibition-section .exihibition-button a.active {
  background-color: #f6eee0;
  color: #c08d2f;
}
.exihibition-section .exihibition-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 130px;
  max-width: 1600px;
  margin: 0 auto;
  justify-content: space-between;
}
.exihibition-section .exihibition-card {
  background-color: #F5F5F5;
  position: relative;
  margin-top: 200px;
  width: calc(50% - 65px); /* 每行两个卡片,左右对齐 */
}
.exihibition-section .exihibition-image-container {
  position: relative;
  background-color: #ECF0F0;
  width: 80%;
  margin: 0 auto;
  margin-top: -168px;
}
.exihibition-section .exihibition-image-wrapper {
  position: relative;
  width: 100%;
  height: 390px;
}
.exihibition-section .exihibition-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exihibition-section .exihibition-image:hover {
  transform: scale(1.1);
}
.exihibition-section .exihibition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.exihibition-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.exihibition-section .circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}
.exihibition-section .circle-icon img {
  width: 82px;
  height: 82px;
}
.exihibition-section .triangle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.98;
}
.exihibition-section .triangle-icon img {
  width: 31px;
  height: 35px;
}
.exihibition-section .exihibition-content {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F5F5F5;
  width: 80%;
  margin: 0 auto;
}
.exihibition-section .exihibition-title {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  color: #000000;
}
.exihibition-section .more-link {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  white-space: nowrap;
}

/* 国际交流页面样式 */
.exchange-section {
  padding: 60px 0;
  background-color: var(--color-white);
}
.exchange-section .exchange-grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 1600px;
  margin: 0 auto;
}
.exchange-section .exchange-left {
  width: 355px;
  flex-shrink: 0;
}
.exchange-section .exchange-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.exchange-section .exchange-row-2 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.exchange-section .exchange-row-2 .exchange-card {
  width: 50%;
}
.exchange-section .exchange-row-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}
.exchange-section .exchange-row-3 .exchange-card {
  width: 33.333%;
}
.exchange-section .exchange-card {
  position: relative;
  background-color: #999080;
  overflow: hidden;
}
.exchange-section .large-card {
  width: 100%;
  height: 718px;
}
.exchange-section .medium-card {
  width: 50%;
  height: 355px;
}
.exchange-section .small-card {
  width: 25%;
  height: 355px;
}
.exchange-section .exchange-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.exchange-section .exchange-image-container:hover .exchange-overlay {
  display: none;
  transition: opacity 0.3s;
}
.exchange-section .exchange-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.exchange-section .exchange-image:hover {
  transform: scale(1.1);
}
.exchange-section .exchange-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.exchange-section .exchange-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
}
.exchange-section .exchange-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 1.95px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.exchange-section .more-link {
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 1.95px;
  color: #FFBC40;
  display: inline-block;
  margin-top: 10px;
}
.exchange-section .exchange-contact {
  margin-top: 60px;
  text-align: center;
  color: #FFFFFF;
  padding: 40px;
  background-color: var(--color-text-dark);
  border-radius: 5px;
  background-image: url(../images/jiaoliu-bottom.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.exchange-contact-section {
  background-image: url(../images/jiaoliu-bottom.jpg);
  background-size: 1920px 423px;
  background-position: center;
  background-repeat: no-repeat;
  height: 423px;
  background-color: #f1f4fa;
}
.exchange-contact-section .exchange-contact-content {
  width: 635px;
  height: 420px;
  margin-left: 160px;
  color: #FFFFFF;
  padding-top: 64px;
}
.exchange-contact-section .exchange-contact-content h2 {
  margin-left: 150px;
  font-size: 24px;
}
.exchange-contact-section .exchange-contact-content h3 {
  margin-left: 100px;
  font-size: 20px;
  margin-top: 35px;
}
.exchange-contact-section .exchange-contact-content p {
  font-size: 16px;
  margin-top: 35px;
}
.exchange-contact-section .exchange-contact-content p:nth-of-type(1) {
  margin-left: 70px;
}
.exchange-contact-section .exchange-contact-content p:nth-of-type(2) {
  margin-left: 50px;
}
.exchange-contact-section .exchange-contact-content p:nth-of-type(3) {
  margin-left: 30px;
}

.bwh-section {
  background-color: #fff;
}
.bwh-section .container {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}

.lsh-section {
  background-color: #fff;
}
.lsh-section .container {
  display: flex;
  flex-direction: column;
}
.lsh-section .lsh-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
  color: #C08D2F;
}
.lsh-section .lsh-footer h2 {
  font-size: 18px;
  font-weight: 700;
}
.lsh-section .lsh-footer p {
  font-size: 16px;
  margin: 0;
}

.contact2-section {
  background-color: #fff;
}
.contact2-section .container {
  padding: 80px 0;
}

.show-section {
  background-color: var(--color-white);
}
.show-section .show-main .show-header {
  width: 100%;
  border-bottom: 2px solid #FFBC40;
  text-align: center;
  padding: 40px 0 20px 0;
}
.show-section .show-main .show-header h2 {
  font-size: 24px;
}
.show-section .show-main .show-header .show-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  color: #666;
  padding: 20px 0;
}
.show-section .show-main .show-content {
  padding: 40px 20px;
}

.channel-search-section {
  padding: 120px 0 40px 0;
  background: #ffffff;
}
.channel-search-section .container {
  width: 1000px;
  margin: 0 auto;
}
.channel-search-section .channel-search-header {
  background-color: #f7f7f7;
  padding: 140px 0 20px 0;
}
.channel-search-section .channel-search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.channel-search-section .channel-search-input {
  flex: 1;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 0 16px;
  font-size: 18px;
  outline: none;
  transition: border-color 0.2s;
}
.channel-search-section .channel-search-input:focus {
  border-color: #f2b537;
}
.channel-search-section .channel-search-btn {
  height: 44px;
  padding: 0 28px;
  background-color: #f2b537;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.channel-search-section .channel-search-btn:hover {
  background-color: #f8a705;
}
.channel-search-section .channel-search-result-count {
  font-size: 16px;
  color: #888;
  margin-bottom: 18px;
}
.channel-search-section .channel-search-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.channel-search-section .channel-search-item {
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.channel-search-section .channel-search-item:last-child {
  border-bottom: none;
}
.channel-search-section .channel-search-title {
  font-size: 20px;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.channel-search-section .channel-search-title:hover {
  color: #f2b537;
  text-decoration: underline;
}
.channel-search-section .channel-search-date {
  font-size: 15px;
  color: #aaa;
  margin-left: 18px;
  white-space: nowrap;
}

.format-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: space-between;
}
.format-content p {
  box-sizing: border-box;
  width: 45%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #ccc;
  margin: 0;
  padding: 0 18px 0 0;
  position: relative;
  font-size: 16px;
}
.format-content p::after {
  content: ">";
  color: #aaa;
  font-size: 18px;
  margin-left: 10px;
  display: inline-block;
}

/*# sourceMappingURL=style.css.map */
