/* 基础样式重置 */
html,
body {
  position: relative;
  height: 100%;
  font-family: "微软雅黑", "Microsoft YaHei", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

@font-face {
  font-family: "DINAlternate-Bold";
  src: url(../font/DINCond-Regular.otf);
}

@font-face {
  font-family: "Objectivity-Medium";
  src: url(../font/objectivity-medium.otf);
}

body {
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  list-style-type: none;
}

li::marker {
  display: none;
}

/* 容器样式 */
.wrapper {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 顶部导航 */
.gxHead {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: all 0.3s ease;
  display: none;
}

.gxHead .logo {
  padding: 0 20px;
}

.gxHead .logo img {
  height: 40px;
  width: auto;
}

.menu_btn {
  position: relative;
  right: 20px;
  top: 10%;
  transform: translateY(-50%);
  width: 30px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

.menu_btn span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  transition: all 0.3s ease;
}

.menu_btn span:nth-child(1) {
  top: 0;
}

.menu_btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu_btn span:nth-child(3) {
  bottom: 0;
}

.menu_btn.active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.menu_btn.active span:nth-child(2) {
  opacity: 0;
}

.menu_btn.active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobileNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.3s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding-top: 80px;
}

.mobileNav.hideNav {
  right: -100%;
}

.mobileNav ul li {
  border-bottom: 1px solid #f0f0f0;
}

.mobileNav ul li a {
  display: block;
  padding: 15px 30px;
  color: #333;
  font-size: 16px;
}

.mobileNav ul li a:hover {
  background: #f5f5f5;
  color: #1a73e8;
}

.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 2.14rem;
  background-image: url(../images/logo-bg.jpg);
  background-size: 100% 100%;
}

.top .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  height: 1.3rem;
}

.top .logo {
  display: flex;
  align-items: center;
}

.top .logo img {
  height: 1rem;
  width: auto;
}

.top .right {
  flex: 1;
  display: flex;
  justify-content: center;
  margin-left: 2rem;
}

.top .nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top .nav-item {
  position: relative;
}

.top .nav-item>a {
  padding: 10px 15px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.top .nav-item:hover>a,
.top .nav-item.active>a {
  color: #1a73e8;
}

.top .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}

.top .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.top .dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #1a73e8;
}

.top .dropdown-menu li:last-child a {
  border-bottom: none;
}

.top .handle {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top .search {
  cursor: pointer;
}

.top .search img {
  width: 24px;
  height: 24px;
}

.top .nav-icon {
  cursor: pointer;
}

.top .nav-icon img {
  width: 24px;
  height: 24px;
}

.top .sub-nav {
  background-color: #c91019;
  display: flex;
  height: 0.84rem;
  justify-content: space-around;
}

.top .sub-nav .nav {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  display: flex;
  height: 100%;
  color: #ffffff;
}

.top .sub-nav .active {
  border-bottom: 4px solid #ffffff;
  box-sizing: border-box;
}

/* 首页容器 */
.index-container {
  padding-top: 2.4rem;
}

/* 轮播图Banner */
.swiper-container {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.swiper-slide {
  height: 100%;
}

.banner-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 60px 0;
}

.banner-title {
  font-size: 56px;
  font-weight: bold;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.banner-desc {
  font-size: 24px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.3s both;
}

.swiper-pagination {
  bottom: 30px !important;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #fff;
  width: 30px;
  border-radius: 6px;
}

/* 数据统计区域 */
.stats-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-number {
  font-family: "DINAlternate-Bold", Arial, sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: #1a73e8;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #666;
}

/* 通用板块样式 */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .cn-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
}

.section-title .en-title {
  font-size: 18px;
  color: #999;
  margin: 0 0 20px 0;
  font-weight: normal;
  letter-spacing: 2px;
}

.title-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #1a73e8, #4285f4);
  margin: 0 auto;
}

/* 关于我们区域 */
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text p {
  font-size: 16px;
  line-height: 2;
  color: #666;
  margin: 0 0 20px 0;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: #1a73e8;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background: #1557b0;
  transform: translateX(5px);
}

.more-btn img {
  width: 16px;
  height: 16px;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 业务领域区域 */
.business-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.business-item {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.business-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.business-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
}

.business-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 25px 0;
  min-height: 80px;
}

.business-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a73e8;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.business-link:hover {
  color: #1557b0;
}

.business-link img {
  width: 14px;
  height: 14px;
}

/* 新闻中心区域 */
.news-section {
  padding: 80px 0;
}

.news-content {
  display: flex;
  gap: 30px;
  /* justify-content: space-between; */
}

.news-left {
  width: 6.32rem;
  height: 4.3rem;
}

.big-news {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  width: 6.32rem;
  height: 4.3rem;
}

.big-news:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
  height: 100%;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.big-news:hover .news-image img {
  transform: scale(1.05);
}

.news-info {
  padding: 0px;
}

.news-date {
  color: #1a73e8;
  font-size: 14px;
  margin-bottom: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
}

.news-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a73e8;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #1557b0;
}

.news-link img {
  width: 14px;
  height: 14px;
}

.news-right {
  width: 5.9rem;
  height: 4.5rem;
  overflow: hidden;
}

.news-right .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.news-right .news-header .title {
  font-size: 24px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  color: #c91019;
  position: relative;
}

.news-right .news-header .title::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 60px;
  height: 3px;
  background-color: #c91019;
}

.news-right .news-header .more {
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #333333;
}

.news-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-top: 20px;
  overflow-y: scroll;
  overflow-x: hidden;
    height: 100%;
}

.news-list::-webkit-scrollbar {
  width: 6px;
}

.news-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.news-list::-webkit-scrollbar-thumb {
  background: rgba(201,16,25,0.3);
  border-radius: 3px;
}

.news-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.news-item {
  display: flex;
  padding: 0px 0px;

  width: 100%;
  padding-left: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 35px;
}

.news-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 6px;
  height: 6px;
  background-color: #bfbfbf;
  border-radius: 3px;
  z-index: -1;
}

.news-item:hover {
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); */
  transform: translateX(5px);
  color: #c91019 !important;
}

.news-item:hover::after {
  background-color: #c91019;
}

.news-item:hover .news-item-title {
  color: #c91019 !important;
}

.news-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-item-date {
  color: #999;
  font-size: 16px;
  margin-bottom: 5px;
  white-space: nowrap;
  width: 30%;
}

.news-item-title {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-item-desc {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-center {
  width: 4.6rem;
  height: fit-content;

  background-color: #fafafa;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  padding: 0rem 0.2rem;
  padding-bottom: 0.3rem;
}

.news-top {
  display: flex;
  justify-content: space-between;
}

.news-top .box {
  width: 0.96rem;
  height: 0.96rem;
  background-color: #c91019;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
  padding: 0.15rem;
}

.news-center .location {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-center .location img {
  width: 0.2rem;
  height: 0.24rem;
}

.news-center .location span {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.news-center a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-left: 0.15rem;
}

.wd-search {
  width: 100%;
  height: 0.8rem;
  background-image: url("../images/rightSide-bg.jpg");
  background-repeat: no-repeat;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding-left: 0.2rem;
  margin-left: 0rem !important;
}

.wd-search img {
  width: 0.2rem;
  height: 0.24rem;
  margin-right: 0.1rem;
}

.wd-search span {
  width: 1.96rem;
  height: 0.38rem;
  border-radius: 0.19rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-center table {
  width: 100%;
  border-collapse: collapse;
}

.news-center table thead {
  height: 0.4rem;
  background-color: #f3f3f3;
  font-weight: 500;
}

.news-center table thead th {
  font-weight: 500;
}

.news-center table tbody tr {
  height: 0.4rem;
  background-color: #ffffff;
  text-align: center;
  color: #333333;
  border-bottom: 1px solid #e8e8e8;
}

.news-center table tbody tr span {
  font-weight: 600;
  color: #c00000;
}

.slogn {
  margin-top: 0.4rem;
}

.more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid #1a73e8;
  color: #1a73e8;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.more-link:hover {
  background: #1a73e8;
  color: #fff;
}

.more-link img {
  width: 16px;
  height: 16px;
}

/* 合作伙伴区域 */
.partner-section {
  padding: 80px 0;
  padding-top: 0px;
  background: #ffffff;
}

.partner-section .wrapper {
  display: flex;
  width: 16.5rem;
  justify-content: space-between;
}

.partner-section .wrapper .news-container {
  width: 8rem;
  height: 6.4rem;
  background-color: #fafafa;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  padding: 0.36rem;
  overflow: hidden;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.party-list {
  overflow-y: scroll;
}

.party-list::-webkit-scrollbar {
  opacity: 0;
}

.partner-item {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 120px;
}

.partner-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.party-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  border-bottom: solid 1px #e8e8e8;
  padding-bottom: 0.3rem;
}

.party-top .tit {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  position: relative;
}

.party-top .tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0.9rem;
  height: 0.05rem;
  background-color: #c00000;
}

.party-top .tabs {
  margin-left: 1rem;
  display: flex;
}

.party-top .tabs .tab {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-right: 0.2rem;
  width: 1.56rem;
  height: 0.44rem;
  text-align: center;
  line-height: 0.44rem;
  background-color: #f2f6f9;
  border: solid 1px #e8e8e8;
}

.party-top .tabs .tab.active {
  background-color: #c00000;
  color: #fff;
}

.party-top .more {
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.party-list {}

.party-list .first-news {
  display: flex;
  margin: 0.2rem 0rem;
}

.party-list .first-news .cover {
  width: 2.26rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.2rem;
}

.party-list .first-news .cover img {
  width: 100%;
  height: 100%;
}

.party-list .first-news .info .party-title {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 36px;
  letter-spacing: 0px;
  font-weight: 600;
  color: #333333;
}

.party-list .first-news .info .party-desc {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  margin-top: 0.1rem;
  -webkit-box-orient: vertical;
  margin-bottom: 0.1rem;
}

.party-list .first-news .info .party-time {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #c91019;
}

.party-list .party-it {
  display: flex;
  margin: 0.1rem 0rem;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 0rem;
}

.party-list .party-it .party-title {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0px;
  color: #333333;
  position: relative;
  padding-left: 0.15rem;
}

.party-list .party-it .party-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 0.08rem;
  border-radius: 0.04rem;
  height: 0.08rem;

  background-color: #bea369;
}

.party-list .party-it .party-time {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #c91019;
}

.notice-section {
  background-image: url("../images/index-footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.4rem 0;
}

.notice-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-top .tit {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  position: relative;
}

.notice-top .tit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.1rem;
  width: 0.9rem;
  height: 0.05rem;
  background-color: #c00000;
}

.notice-container {
  display: flex;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.notice-container .notice-left {
  width: 10rem;
  background-color: #fff;
  min-height: 4rem;
  box-sizing: border-box;
  padding: 0.4rem;
}

.notice-container .notice-left .search-wrap {
  width: 100%;
  height: 0.4rem;
  background-color: #f2f6f9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  margin-top: 0.2rem;
  align-items: center;
}

.notice-container .notice-left .search-wrap img {
  margin-left: 0.2rem;
}

.notice-container .notice-left .search-wrap input {
  flex: 1;
  height: 100%;
  background-color: transparent;
  border: none;
  outline: none;
}

.notice-container .notice-left .search-wrap button {
  width: 0.8rem;
  height: 0.4rem;
  background-color: #c80a14;
  border-radius: 0px 0.2rem 0.2rem 0px;
  color: #fff;
  border: none;
}

.notice-container .notice-left .search-wrap img {
  width: 15px;
  height: 15px;
}

.notice-container .notice-left .notice-it {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.15rem;
  position: relative;
  padding-left: 0.15rem;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  color: #333333;
}

.notice-container .notice-left .notice-it::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
}

.notice-container .notice-right {
  width: 6rem;
  min-width: 4rem;
  background-color: #fff;
  box-sizing: border-box;
  padding: 0.4rem;
}

.notice-container .notice-right .code-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  margin-top: 0.2rem;
  align-items: center;
}

.notice-container .notice-right .code-wrap .code {
  margin-right: 0.2rem;
}

.notice-container .notice-right .cell {
  display: flex;
  margin: 0.2rem 0rem;
  font-weight: 600;
}

.notice-container .notice-right .cell {}

.footer-section .footer-item {
  width: 100%;
  height: 1.1rem;
  background-color: #c91019;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 0rem 1.4rem;
  color: #fff;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #ffffff;
}

.footer-section .footer-item ul {
  display: flex;
  margin-left: 0.2rem;
  justify-content: space-between;
  align-items: center;
}

.footer-section .footer-item ul li {
  margin-right: 0.2rem;
}

.footer-section .wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: 1.72rem;
  box-sizing: border-box;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  background-color: #515151;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.banner {
  width: 100%;
  height: 4rem;
}

.banner img {
  display: block;
  width: 100%;
  height: 100%;
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .wrapper {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .top .right {
    display: none;
  }

  .top .handle {
    display: none;
  }

  .swiper-container {
    height: 500px;
  }

  .banner-title {
    font-size: 42px;
  }

  .banner-desc {
    font-size: 20px;
  }

  .about-content {
    flex-direction: column;
  }

  .news-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-right {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .swiper-container {
    height: 400px;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-desc {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title .cn-title {
    font-size: 28px;
  }

  .section-title .en-title {
    font-size: 14px;
  }

  .stat-item {
    padding: 30px 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .news-item {
    flex-direction: column;
  }

  .news-thumb {
    width: 100%;
    height: 150px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .swiper-container {
    height: 300px;
  }

  .banner-title {
    font-size: 24px;
  }

  .banner-desc {
    font-size: 14px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: 150px;
  }
}

.drop-nav {
  width: 100%;
  height: 0.72rem;
  background-color: #fff;
}

.drop-nav .wrapper {
  width: 100%;
  height: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  padding: 0;
}

.drop-nav .wrapper .left {
  display: flex;
  height: 100%;
  width: 4.1rem;
  background-color: #c91019;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0rem 0.2rem 0rem 1.5rem;
}

.drop-nav .wrapper .left .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.drop-nav .wrapper .left .wrap .line {
  width: 2px;
  height: 0.24rem;
  margin: 0rem 0.1rem;
  background-color: #fff;
}

.drop-nav .wrapper .left .wrap img {
  width: 0.25rem;
  height: 0.24rem;
}

.drop-nav .wrapper ul {
  display: flex;
  flex: 1;
  height: 100%;
  box-sizing: border-box;
  padding-left: 0.7rem;
  align-items: center;
}

.drop-nav .wrapper ul li {
  margin-right: 0.7rem;
  font-size: 16px;
  height: 100%;
  line-height: 0.72rem;
}

.drop-nav .wrapper ul .active {
  color: #c91019;
  border-bottom: 4px solid #c91019;
}

.about {
  width: 100%;
  height: 100%;
  min-height: 7rem;
  background-image: url("../images/about-bg.png");
  background-size: cover;
  background-position: bottom;
  box-sizing: border-box;
  padding: 1rem 0rem;
}

.about .about-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.about .about-header .about-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .about-header .about-title h4 {
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 48px;
  letter-spacing: 0px;
  color: #222222;
  margin: 0;
}

.about .about-header .about-title p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #222222;
}

.about .about-header .about-title h3 {
  font-size: 44px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 60px;
  letter-spacing: 0px;
  color: #cc1121;
  margin: 0;
}

.about .about-header .about-title .line {
  width: 50px;
  height: 8px;
  margin-top: 10px;
  background-color: #cc1121;
}

.about .about-header .about-count {
  display: flex;
  align-items: center;
}

.about .about-header .about-count .item {
  margin-right: 0.5rem;
}

.about .about-header .about-count .item .count {
  display: flex;
  align-items: baseline;
  font-size: 16px;
  font-weight: bold;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #d0121b;
}

.about .about-header .about-count .item .num {
  font-size: 0.64rem;
  font-weight: bold;
  font-stretch: normal;
  /* line-height: 30px; */
  letter-spacing: 0px;
  color: #cc1121;
}

.about .about-header .about-count .item p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #555555;
  text-align: center;
}

.about .content {
  margin-top: 0.6rem;
  font-size: 16px;
  color: #555555;
  line-height: 32px;
}

.about .dsj .dsj-title {
  display: flex;
  align-items: flex-end;
  margin-right: 1.5rem;
}

.about .dsj {
  display: flex;
}

.about .dsj .dsj-title h2 {
  font-size: 50px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 67px;
  letter-spacing: 5px;
  color: #222222;
  writing-mode: vertical-rl;
}

.about .dsj .dsj-title img {
  width: 80px;
  height: 133px;
}

.about .dsj .dsj-wrap {
  display: flex;
  flex-direction: column;
}

.about .dsj .dsj-wrap .year {
  font-family: DIN-Black;
  font-weight: 600;
  font-size: 72px;
  line-height: 48px;
  letter-spacing: 0px;
  color: #ffffff;
  text-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
}

.about .dsj .dsj-wrap .line {
  background-color: #e0e0e0;
  width: 1px;
  height: 100%;
  margin: 0rem 0.5rem;
}

.about .dsj .dsj-wrap .content {
  margin-top: 0px;
}

.news {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  box-sizing: border-box;
  padding: 1rem 0rem;
}

.news .news-main {
  width: 100%;
  height: 5rem;
  display: flex;
  background-color: #fff;
}

.news .news-main .cover {
  width: 8.2rem;
  height: 100%;
  flex-shrink: 0;
}

.news .news-main .cover img {
  width: 100%;
  height: 100%;
}

.news .news-main .info {
  box-sizing: border-box;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
}

.news .news-main .info .date-icon {
  display: flex;
  color: #999999;
  align-items: center;
}

.news .news-main .info .date-icon img {
  width: 16px;
  height: 16px;
  margin-right: 0.1rem;
}

.news .news-main .info .more {
  width: 128px;
  height: 36px;
  background-color: #cc1121;
  border-radius: 18px;
  color: #fff;
  text-align: center;
  line-height: 36px;
  margin-top: 0.8rem;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.2rem;
}

.news-list .item {
  width: 3.8rem;
  height: 4.7rem;
  margin-right: 0.3rem;
  margin-bottom: 0.2rem;
  flex-shrink: 0;
  background-color: #fff;
}

.news-list .item .date-icon {
  display: flex;
  color: #999999;
  align-items: center;
}

.news-list .item .cover {
  width: 100%;
  height: 2.64rem;

}

.news-list .item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-list .item .date-icon img {
  width: 16px;
  height: 16px;
  vertical-align: baseline;
  margin-right: 0.1rem;
}

.news-list .item .info {
  box-sizing: border-box;
  padding: 0.2rem 0.2rem 0.2rem 0.2rem;
  background-color: #fff;
}

.news-list .item .info .title {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #333333;
  margin: 10px 0px;
}

.news-list .item .info .more {
  width: 128px;
  height: 36px;
  background-color: #ffffff;
  border-radius: 18px;
  border: solid 1px #dfdfdf;
  text-align: center;
  line-height: 36px;
  color: #333333;
}

.news-list .item:nth-child(4n) {
  margin-right: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.pagination a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  /* border-radius: 18px; */
  border: solid 1px #dfdfdf;
  text-align: center;
  line-height: 36px;
  margin: 0 0.05rem;
  color: #333333;
  background-color: #fff;
}

.pagination a.active {
  background-color: #cc1121;
  color: #fff;
}

.detail {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  box-sizing: border-box;
  padding: 0.66rem 0rem;
}

.detail .wrapper {
  background-color: #FFF;
  box-sizing: border-box;
  padding: 0.5rem 0.9rem;
}

.detail .wrapper .title {
  font-family: MicrosoftYaHei;
  font-size: 30px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 0px;
  color: #333333;
  text-align: center;
}

.detail .wrapper .desc {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  text-align: center;
  margin: 0.4rem 0rem;
  margin-bottom: 0rem;
  line-height: 30px;
  letter-spacing: 0px;
  color: #666666;
}

.detail .wrapper .line {
  width: 100%;

  height: 1px;
  margin: 0.2rem 0rem;
  background-color: #e0e0e0;
}

.detail .prev,
.detail .next {
  font-size: 16px;
  font-weight: normal;
  display: flex;
  width: 100%;
  font-stretch: normal;
  line-height: 40px;
  letter-spacing: 0px;
  color: #999999;
}

.detail .back {
  width: 180px;
  height: 50px;
  background-color: #cc1121;
  text-align: center;
  line-height: 50px;
  margin-top: 0.4rem;
  color: #fff;
}

.detail .content {
  font-size: 16px;
}

.detail .content img {
  width: auto;
  height: auto;
  display: inline-block;
}

.info-wrap .wrapper {
  background-color: transparent;
}

.info-wrap .wrapper .item {
  width: 100%;
  height: 1.3rem;
  background-color: #FFF;
  display: flex;
  margin-bottom: 0.24rem;
  box-sizing: border-box;
  padding: 0.26rem;
}

.info-wrap .wrapper .item .date {
  width: 78px;
  height: 78px;
  background-color: rgba(204, 17, 33, 0.06);
  text-align: center;
  line-height: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 0.3rem;
}


.info-wrap .wrapper .item .date .day {
  font-size: 36px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #cc1121;
}

.info-wrap .wrapper .item .date .year {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #cc1121;
  margin-top: 0.1rem;
}

.info-wrap .wrapper .item .info h3 {
  margin: 0;
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #333333;
}

.info-wrap .wrapper .item .info .year {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #666666;
}

.report .report-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #333333;
}

.report .report-list {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.report .report-list .item {
  width: 8rem;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 0.4rem;
}

.report .report-list .item .arr {
  width: 33px;
  height: 10px;
}

.report .report-list .item .report-t {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  line-height: 32px;
  letter-spacing: 0px;
  color: #333333;
  /* margin-bottom:0.2rem; */
}

.report .report-list .item .arr {
  float: right;
  margin-top: 0.2rem;
}

.report .report-list .item .desc {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 28px;
  letter-spacing: 0px;
  color: #666666;
}