/* ========== 重置 & 全局 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html, body {
  font-family: "Microsoft YaHei", sans-serif;
  background: #FFFFFF;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 主要内容容器：动态内边距，自动居中 */
.header, .nav, .headline, .main-container, .cards-wrapper, .banner-section, .three-teaching-wrapper, .supervision-section, .links-section, .footer {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(20px, (100% - 1400px) / 2);
  padding-right: max(20px, (100% - 1400px) / 2);
}

/* ========== 头部 ========== */
.header {
  position: relative;
  height: auto;
  aspect-ratio: 1920 / 200;
  overflow: visible;
  padding: 0;
}
.header img:first-child {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.header img:last-child {
  position: absolute;
  left: 247px;
  top: 37px;
  width: 625px;
  height: 156px;
  z-index: 2;
  pointer-events: none;
  object-fit: contain;
  background-color: transparent;
}
@media (max-width: 872px) {
  .header img:last-child {
    left: 20px;
    width: calc(100% - 40px);
    height: auto;
    max-width: 625px;
    top: 20px;
  }
}

/* ========== 导航条 ========== */
.nav {
  background-color: #1668A9;
  position: relative;
}
.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  flex-wrap: wrap;
}
.nav-list .nav-item {
  position: relative;
  list-style: none;
}
.nav-list .nav-item a {
  display: block;
  padding: 0 22px;
  line-height: 60px;
  font-family: "MicrosoftYaHei-Bold", sans-serif;
  font-size: clamp(14px, 1.2vw, 20px);
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
.nav-list .nav-item.active a {
  background-color: #0e4d7c;
  border-radius: 4px;
}
.sub-nav {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  min-width: 100%;
  background: #fff;
  border: 1px solid #125698;
  border-top: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 200;
  padding: 0;
  margin: 0;
  border-radius: 0 0 4px 4px;
}
.sub-nav li {
  display: block;
  border-bottom: 1px solid #eee;
}
.sub-nav li a {
  display: block;
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 16px;
  color: #333 !important;
  background-color: #fff;
  white-space: nowrap;
}
.sub-nav li a:hover {
  background: #f5f5f5;
  color: #125698 !important;
}
.nav-item:hover > .sub-nav {
  display: block;
}
@media (max-width: 1200px) {
  .nav {
    overflow-x: auto;
    white-space: nowrap;
  }
  .nav-list {
    display: inline-flex;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .nav-item {
    display: inline-block;
  }
}
@media (min-width: 1201px) {
  .nav-list {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ========== 头条新闻 ========== */
.headline {
  margin: 0 auto 20px;       /* 移除顶部边距，紧贴导航条 */
  padding-top: 20px;         /* 标题内边距，使其居中显示 */
  font-family: "MicrosoftYaHei-Bold", sans-serif;
  font-size: clamp(20px, 5vw, 34px);
  font-weight: bold;
  color: #222;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.headline a {
  color: #CE0010;           /* 指定红色 */
  text-decoration: none;
  font-weight: bold;
}
/* 如果头条新闻区域显示了多条，控制间距 */
.headline a + a {
  margin-top: 10px;
}
.headline a {
  display: block;
}

/* ========== 主体双栏 ========== */
.main-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: -65px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}
.pic-news {
  flex: 1;
  min-width: 280px;
  max-width: 780px;
  position: relative;
  height: 450px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(18,86,152,0.1);
}
.pic-news .swiper-wrapper {
  height: 100%;
}
.pic-news .swiper-slide {
  position: relative;
  height: 100%;
}
.pic-news .slide-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.pic-news .slide-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.pic-news .slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pic-news .pic-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 12px 20px;
  background: rgba(0,0,0,0.6);
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 18px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: left;
  z-index: 10;
  transition: background 0.2s;
}
.pic-news .slide-link:hover .pic-title {
  background: rgba(0,0,0,0.8);
}
.pic-news .swiper-pagination {
  position: absolute !important;
  bottom: 10px !important;
  right: 10px !important;
  left: auto !important;
  width: auto !important;
  text-align: right !important;
  transform: none !important;
}
.pic-news .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.pic-news .swiper-pagination-bullet-active {
  background: #125698;
  opacity: 1;
}

.news-tab-box {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(18,86,152,0.2);
  padding: 20px 20px 0 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.tab-titles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e5eaef;
  margin-bottom: 10px;
  gap: 10px;
}
.tab-item {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #e5eaef;
  cursor: pointer;
  font-size: 16px;
}
.tab-item.active {
  width: 124px;
  background: url('../img/tab-xz-bg1.png') no-repeat center;
  background-size: cover;
  color: #fff;
  font-weight: bold;
}
.tab-more {
  flex: 1;
  text-align: right;
  line-height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #125698;
  white-space: nowrap;
}
.tab-more a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #125698;
  text-decoration: none;
}
.more-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-content ul {
  padding-bottom: 20px;
}
.tab-content ul li {
  height: 54px;
  line-height: 54px;
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tab-content ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #819CB6;
  border-radius: 2px;
  flex-shrink: 0;
}
.tab-content ul li span,
.tab-content ul li a {
  font-size: 15px;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  text-decoration: none;
}
.tab-content ul li i {
  font-size: 14px;
  color: #94acc3;
  font-style: normal;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========== 三列卡片区域 ========== */
.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding-bottom: 0;
}
.card {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(18,86,152,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: none;
}
.card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #e5eaef;
}
.card-title {
  width: 124px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: url('../img/tab-xz-bg1.png') no-repeat center;
  background-size: cover;
  margin-left: 20px;
  margin-top: 16px;
  font-family: MicrosoftYaHei-Bold, sans-serif;
  font-size: 20px;
  color: #fff;
}
.card-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #125698;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 16px;
}
.card-more a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #125698;
  text-decoration: none;
}
.notice-card {
  background: #fff url('../img/notice-bg.png') no-repeat left bottom;
  background-size: 100% auto;
}
.card-list {
  padding: 0 20px 0px;
  min-height: 400px;
}
.card-list ul {
  margin: 0;
  padding: 0;
}
.card-list li {
  height: 100px;
  padding: 5px 0;
  border-bottom: 1px dashed #e5eaef;
  display: flex;
  align-items: center;
  gap: 15px;
}
.card-list li .list-title {
  margin-top: 0;
}
.card-list li:last-child {
  border-bottom: none;
}
.date-wrapper {
  flex-shrink: 0;
  width: 90px;
  height: 64px;
  background: url('../img/date-bg.png') no-repeat center;
  background-size: contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 8px;
}
.date-no-bg {
  background: none;
  width: 90px;
  height: 64px;
  padding-right: 15px;
}
.date-day {
  font-family: MicrosoftYaHei-Bold, sans-serif;
  font-size: 24px;
  color: #222222;
  letter-spacing: 0;
  line-height: 1;
}
.date-month {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 14px;
  color: #222222;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 4px;
}
.list-title {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 18px;
  color: #454545;
  letter-spacing: 0;
  line-height: 32px;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.course-card .card-list {
  padding: 0 20px 20px;
  min-height: 400px;
}
.course-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
  flex-wrap: wrap;
}
.course-cover {
  flex-shrink: 0;
  width: 180px;
  height: 108px;
  overflow: hidden;
}
.course-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-title {
  font-size: 16px;
  color: #333;
  line-height: 26px;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}
.course-date {
  font-size: 14px;
  color: #94ACC3;
}
.teacher-grid-container {
  padding: 15px 20px 20px 19px;
}
.teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 27px;
  justify-content: start;
  width: 100%;
  min-height: 400px;
}
.teacher-item {
  text-align: center;
}
.teacher-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 120 / 140;
  object-fit: cover;
  display: block;
  background-color: #f0f0f0;
}
.teacher-name {
  margin-top: 7px;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #333333;
  text-align: center;
  word-break: break-word;
}
@media (max-width: 900px) {
  .teacher-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .teacher-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .course-item {
    flex-direction: column;
    align-items: center;
  }
  .course-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 180 / 108;
  }
  .course-info {
    width: 100%;
  }
}

/* ========== 专题区域 ========== */
.banner-section {
  height: 128px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.banner-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 128px;
}
.banner-section img {
  width: 100%;
  height: 128px;
  display: block;
  object-fit: cover;
}
.banner-inner {
  position: relative;
}
.banner-prev,
.banner-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 39px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-prev {
  left: 0;
}
.banner-next {
  right: 0;
}
.banner-prev img,
.banner-next img {
  width: 24px;
  height: 39px;
}
.banner-prev:hover,
.banner-next:hover {
  opacity: 0.8;
}
.banner-prev:focus,
.banner-next:focus {
  outline: none;
}

/* ========== 三列区域（教学动态等） ========== */
.three-teaching-wrapper {
  margin-top: 20px;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.three-teaching-wrapper.third-row {
  margin-top: 20px;
  margin-bottom: 0;
}
.teaching-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 453px;
  background: #FFFFFF;
  box-shadow: 0 2px 8px 0 rgba(18,86,152,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.teaching-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: none;
}
.teaching-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #e5eaef;
}
.teaching-title {
  width: 124px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: url('../img/tab-xz-bg1.png') no-repeat center;
  background-size: cover;
  margin-left: 20px;
  margin-top: 16px;
  font-family: MicrosoftYaHei-Bold, sans-serif;
  font-size: 20px;
  color: #fff;
}
.teaching-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #125698;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 16px;
}
.teaching-more a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #125698;
  text-decoration: none;
}
.teaching-list {
  padding: 0 20px 0px;
  flex: 1;
  min-height: 280px;
}
.teaching-list ul {
  margin: 0;
  padding: 0;
}
.teaching-list li {
  display: flex;
  align-items: center;
  height: 54px;
  line-height: 54px;
  border-bottom: 1px dashed #e5eaef;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #222222;
  letter-spacing: 0;
  position: relative;
}
.teaching-list li:last-child {
  border-bottom: none;
}
.teaching-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #819CB6;
  border-radius: 2px;
  margin-right: 10px;
  flex-shrink: 0;
}
.teaching-item-title {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  text-decoration: none;
  color: #222222;
}
.teaching-date {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 14px;
  color: #94ACC3;
  letter-spacing: 0;
  text-align: right;
  flex-shrink: 0;
}
.journal-card .teaching-list {
  padding: 20px;
  min-height: auto;
}
.journal-slider {
  padding: 20px 0 30px 0;
}
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}
.slider-image-wrapper {
  width: 180px;
  height: 245px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slider-btn {
  width: 16px;
  height: 28.6px;
  cursor: pointer;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.links-card {
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 453px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}
.smart-campus-wrapper {
  display: flex;
  flex-direction: column;
}
.pingtai-img {
  width: 446px;
  height: 130px;
  object-fit: cover;
}
.ma-bg-img {
  width: 446px;
  height: 208px;
  object-fit: cover;
}
.link-item {
  display: block;
  width: 100%;
  height: 106px;
  overflow: hidden;
}
.link-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.empty-tip {
  color: #999;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}
@media (max-width: 800px) {
  .course-cover { width: 130px; height: 78px; }
  .course-title { font-size: 14px; line-height: 22px; margin-bottom: 12px; }
  .card-title, .teaching-title { width: 100px; font-size: 18px; margin-left: 15px; }
  .tab-item { width: 90px; font-size: 14px; }
  .tab-item.active { width: 100px; }
  .teacher-grid { gap: 20px; }
  .teacher-grid-container { padding: 15px 15px 20px 15px; }
  .card-list, .course-card .card-list, .teacher-grid { min-height: 350px; }
  .teaching-list { min-height: 280px; }
}
@media (max-width: 680px) {
  .cards-wrapper { grid-template-columns: 1fr; }
  .card { max-width: 500px; margin: 0 auto; width: 100%; }
  .teacher-grid { justify-content: center; }
  .teaching-card, .links-card { max-width: 500px; margin-left: auto; margin-right: auto; }
}

/* ========== 纪检监察区域 ========== */
.supervision-section {
  margin-top: 20px;
  margin-bottom: 0;
}
.supervision-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: url('../img/jijian-bg.png') no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px 20px 30px 150px;
  height: 140px;
}
.supervision-tab {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 137px;
  height: 140px;
  object-fit: contain;
}
.supervision-text {
  flex: 1;
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 16px;
  color: #222222;
  letter-spacing: 0;
  line-height: 26px;
  word-break: break-word;
  text-indent: 2em;
}
.supervision-text p {
  text-indent: 2em;
}
@media (max-width: 1000px) {
  .supervision-inner {
    padding: 80px 20px 20px 20px;
  }
}
@media (max-width: 600px) {
  .supervision-inner {
    padding: 80px 20px 20px 20px;
  }
  .supervision-text {
    font-size: 14px;
    line-height: 22px;
  }
}

/* ========== 底部图片链接区域 ========== */
.bottom-links-card {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  padding: 0 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.bottom-link-item {
  display: block;
}
.bottom-link-item img {
  width: 446px;
  height: 80px;
  object-fit: cover;
}

/* ========== 友情链接区域 ========== */
.links-section {
  margin-top: 20px;
  margin-bottom: 31px;
}
.links-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background: #FFFFFF;
  box-shadow: 0 2px 8px 0 rgba(18,86,152,0.10);
  padding: 10px 0 10px 0;
}
.links-tab-titles {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #e5eaef;
  margin-bottom: 15px;
  padding: 0 20px;
  gap: 10px;
}
.links-tab-item {
  width: 120px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #e5eaef;
  cursor: pointer;
  font-size: 16px;
}
.links-tab-item.active {
  width: 124px;
  background: url('../img/tab-xz-bg1.png') no-repeat center;
  background-size: cover;
  color: #fff;
  font-weight: bold;
}
.links-tab-contents {
  padding: 0 20px 10px 20px;
}
.links-content {
  display: none;
  min-height: 150px;
}
.links-content.active {
  display: block;
}
.links-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
}
.links-content li {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 18px;
  color: #222222;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  width: 140px;
}
#link2 li, #link3 li, #link4 li {
  width: 200px;
}
.links-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #819CB6;
  border-radius: 2px;
}
.links-content li a {
  text-decoration: none;
  color: inherit;
}
.links-content li a:hover {
  color: #125698;
  text-decoration: none;
}
@media (max-width: 1300px) {
  .links-content ul {
    grid-template-columns: repeat(auto-fill, minmax(120px, auto));
  }
}
@media (max-width: 1000px) {
  .links-content ul {
    grid-template-columns: repeat(auto-fill, minmax(100px, auto));
  }
}
@media (max-width: 700px) {
  .links-content li {
    white-space: normal;
  }
}
@media (max-width: 800px) {
  .links-tab-item {
    width: 100px;
    font-size: 14px;
  }
  .links-tab-item.active {
    width: 100px;
  }
}
@media (max-width: 600px) {
  .links-tab-titles {
    gap: 8px;
  }
  .links-tab-item {
    width: 80px;
    font-size: 12px;
    height: 32px;
    line-height: 32px;
  }
  .links-tab-item.active {
    width: 80px;
  }
}

/* ========== 底部区域 ========== */
.footer {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: url('../img/foot-bg.png') no-repeat center center;
  background-size: cover;
  height: 130px;
  display: flex;
  align-items: center;
}
.footer-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left {
  color: #FFFFFF;
}
.copyright {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.address, .contact {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5;
}
.footer-right {
  display: flex;
  gap: 40px;
}
.qrcode-item {
  text-align: center;
}
.qrcode-item img {
  width: 80px;
  height: 80px;
  display: block;
  margin-bottom: 8px;
}
.qrcode-label {
  font-family: MicrosoftYaHei, sans-serif;
  font-size: 13px;
  color: #FFFFFF;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 15px;
  }
  .footer-left {
    text-align: center;
  }
  .footer-right {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .footer {
    height: auto;
    min-height: 160px;
    padding: 20px 0;
  }
  .copyright, .address, .contact {
    font-size: 14px;
  }
  .qrcode-item img {
    width: 60px;
    height: 60px;
  }
  .qrcode-label {
    font-size: 12px;
  }
}