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

/* 新闻正文页面样式 */
.news-detail {
  margin-bottom: 30px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #666;
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.detail-font-size {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.font-size-label {
  color: #666;
  font-size: 14px;
}

.font-size-btn {
  padding: 5px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.font-size-btn:hover {
  border-color: #3a5b8c;
  color: #3a5b8c;
}

.font-size-btn.active {
  background: #3a5b8c;
  color: #fff;
  border-color: #3a5b8c;
}

.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}

.detail-content p {
  margin-bottom: 15px;
  text-indent: 2em;
}

.detail-content h2 {
  color: #3a5b8c;
  font-size: 22px;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3a5b8c;
}

.detail-content h3 {
  color: #333;
  font-size: 20px;
  margin: 25px 0 10px;
}

.detail-content ul {
  margin: 15px 0;
  padding-left: 40px;
}

.detail-content ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .detail-title {
    font-size: 24px;
  }

  .detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .detail-content {
    font-size: 15px;
  }

  .detail-content p {
    text-indent: 0;
  }

  .detail-font-size {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .detail-title {
    font-size: 20px;
  }

  .detail-content h2 {
    font-size: 20px;
  }

  .detail-content h3 {
    font-size: 18px;
  }

  .detail-font-size {
    flex-wrap: wrap;
  }
}

body {
  font-family:
    Microsoft YaHei,
    Arial,
    sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.header {
  background-color: #383838;
  color: #fff;
  padding: 30px 0 0 0;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo img {
  height: 50px;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* gap: 20px */
}

.header-right span.divider {
  margin: 0 10px;
}

.btn-apply,
.btn-consult {
  /* background-color: #fff; */
  color: #fff;
  /* padding: 8px 16px; */
  text-decoration: none;
  /* border-radius: 4px; */
  /* font-weight: 700; */
  transition: all 0.3s ease;
}

.btn-apply:hover,
.btn-consult:hover {
  background-color: #495d84;
  transform: translateY(-2px);
}

.contact-info {
  font-size: 12px;
}

.nav {
  background-color: #495d84;
  border-radius: 4px;
  display: flex;
  justify-content: center;
}

.nav ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  width: 100%;
  max-width: 1200px;
}

.nav ul li {
  position: relative;
}

.nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 44px;
  transition: all 0.3s ease;
}

.nav ul li a:hover {
  background-color: #1f3457;
}
.nav ul li:hover > .sub {
  display: block;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* aspect-ratio: 16/4; */
  /*background-image: url(../images/banner.png);*/
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-color: #fffcee;
  /*padding-top: 60vh;*/
}

.banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.img-container {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.img-container img.load-error {
  opacity: 0;
}

.img-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-container.load-error:after {
  opacity: 1;
}

.img-ratio-16-9 {
  aspect-ratio: 16/9;
}

.img-ratio-4-3 {
  aspect-ratio: 4/3;
}

.img-ratio-1-1 {
  aspect-ratio: 1/1;
}

.img-ratio-3-2 {
  aspect-ratio: 3/2;
}

.img-ratio-2-1 {
  aspect-ratio: 2/1;
}

.banner2 {
  width: 100%;
  overflow: hidden;
  /* aspect-ratio: 16/4; */
  background-image: url(../images/H84A3603.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-color: #fffcee;
  height: 254px;
}

.banner2 .container {
  position: relative;
  height: 254px;
  width: 100%;
  max-width: 1200px;
}

.banner-title {
  position: absolute;
  bottom: 0%;
  left: 0%;
  color: #fff;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 4px;
  margin-left: 30px;
}

.campus-notice {
  padding: 30px 0;
}

.campus-notice .container {
  display: flex;
  gap: 30px;
  padding: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
}

.section-title {
  font-size: 20px;
  color: #3a5b8c;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid #3a5b8c;
  padding-left: 10px;
  line-height: 1.1;
}

.section-title .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: black;
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 400;
  color: #a8a8a8;
  text-transform: uppercase;
}

.more {
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.more:hover {
  color: #3a5b8c;
}

.campus-section {
  flex: 1;
  background-color: #fff;
  padding: 30px;
}

.notice-section {
  width: 30%;
  background-color: #fff;
  padding: 30px;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.campus-item {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  background-color: #f0f0f0;
  position: relative;
}

.campus-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.campus-item img:hover {
  transform: scale(1.05);
}

.campus-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.campus-item.load-error:after {
  opacity: 1;
}

.campus-item img.load-error {
  opacity: 0;
}

.notice-list {
  list-style: none;
}

.notice-list li {
  margin-bottom: 16px;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 16px;
}

.notice-list li:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #3a5b8c;
}

.notice-list li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.notice-list li a:hover {
  color: #3a5b8c;
}

.shuttle {
  background-image: url(../images/shuttle.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 30px 0;
}

.shuttle .section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
}

.shuttle .section-title .title::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30%;
  height: 3px;
  background-color: #495d84;
  margin-top: 5px;
}

.shuttle-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.shuttle-item {
  position: relative;
  width: calc(20% - 16px);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  aspect-ratio: 3/4;
  background-color: #f0f0f0;
}

.shuttle-item:hover {
  transform: translateY(-5px);
}

.shuttle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shuttle-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shuttle-item.load-error:after {
  opacity: 1;
}

.shuttle-item img.load-error {
  opacity: 0;
}

.shuttle-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  color: #fff;
  padding: 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.shuttle-item:hover .shuttle-content {
  background-color: rgba(73, 93, 132, 0.8);
}

.shuttle-content img {
  width: auto;
  height: 70%;
  margin-top: 15%;
}

.majors {
  background-color: #fff;
  padding: 30px 0;
}

.majors-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.major-item {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.major-item:hover {
  background-color: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.major-item img {
  width: 50px;
  height: auto;
}

.major-item p {
  margin: 0;
  color: #333;
  font-size: 14px;
  height: 40%;
}

.footer {
  background-color: #3a5b8c;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 40px;
}

.footer-info p {
  margin: 5px 0;
  font-size: 14px;
}

.breadcrumb {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumb a {
  text-decoration: none !important;
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.apply-content,
.campus-content,
.industry-content {
  background-color: #fff;
  padding: 30px 0;
}

.apply-main,
.campus-main,
.industry-main {
  display: flex;
  gap: 30px;
}

.apply-sidebar,
.campus-sidebar,
.industry-sidebar {
  width: 250px;
}

.apply-form-main,
.campus-photos,
.industry-article {
  flex: 1;
}

.sidebar-menu {
  background-color: #f5f5f5;
  border-radius: 4px;
}

.sidebar-menu h3 {
  color: #fff;
  text-align: center;
  padding: 15px;
  border-top: 3px solid #000;
  background-color: #495d84;
}

.sidebar-menu ul {
  list-style: none;
}

.sidebar-menu ul li {
  border-bottom: 1px solid #fff;
}

.sidebar-menu ul li a {
  display: block;
  color: #333333;
  text-decoration: none;
  padding: 15px 12px;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-menu ul li a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 6px;
  height: 11px;
  background-image: url(../images/arrow.png);
  transition: width 0.3s ease;
}

.sidebar-menu ul li a.active,
.sidebar-menu ul li a:hover {
  color: #3a5b8c;
  font-weight: 700;
  padding: 15px 16px;
}

.consult-box {
  background-color: #f0f5fa;
  border-radius: 4px;
  margin-bottom: 20px;
  text-align: center;
}

.consult-box img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.btn-consult-small {
  background-color: #3a5b8c;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-consult-small:hover {
  background-color: #2d4a73;
  transform: translateY(-2px);
}

.apply-form-small {
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 30px;
  background-image: url(../images/side-form-bg.png);
  background-size: 100% 100%;
}

.apply-form-small h4 {
  color: #3a5b8c;
  margin-bottom: 15px;
  font-size: 16px;
}

.apply-form-small form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.apply-form-small input,
.apply-form-small select {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.btn-submit-small {
  background-color: #3a5b8c;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}

.btn-submit-small:hover {
  background-color: #2d4a73;
  transform: translateY(-2px);
}

.apply-form-main h2 {
  color: #3a5b8c;
  margin-bottom: 20px;
  font-size: 24px;
}

.notice-box {
  background-color: #f3f3f3;
  /* border-left: 4px solid #3a5b8c; */
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 0 4px 4px 0;
}

.color-red {
  color: #ff0000;
}

.notice-box p {
  margin: 8px 0;
  font-size: 14px;
}

.apply-form-main .apply-form {
  padding: 30px 150px;
  border-radius: 4px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.form-group label {
  display: block;
  /*margin-bottom: 8px;*/
  color: #333;
  font-weight: 700;
  width: 40%;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3a5b8c;
  box-shadow: 0 0 0 2px rgba(58, 91, 140, 0.2);
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-reset,
.btn-submit {
  padding: 12px 50px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-reset {
  background-color: #fff;
  color: #3a5b8c;
  border: 1px solid #3a5b8c;
}

.btn-reset:hover {
  background-color: #dae9ff;
  transform: translateY(-2px);
}

.btn-submit {
  background-color: #3a5b8c;
  color: #fff;
}

.btn-submit:hover {
  background-color: #2d4a73;
  transform: translateY(-2px);
}

.privacy-policy {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}

.privacy-policy a {
  color: #3a5b8c;
  text-decoration: none;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.photo-item {
  text-align: center;
  padding: 15px;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.photo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.photo-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.photo-item p {
  margin: 0;
  color: #333;
  font-size: 14px;
}

.photo-item:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  aspect-ratio: 3/2;
  background-color: #f0f0f0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
}

.photo-item.load-error:after {
  opacity: 1;
}

.photo-item img.load-error {
  opacity: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #f0f5fa;
  border-color: #3a5b8c;
  color: #3a5b8c;
}

.pagination a b {
  display: initial;
  padding: 0;
  background: none;
  color: #333;
  border: none;
}
.pagination b {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #3a5b8c;
  color: #fff;
  border-color: #3a5b8c;
}

.page-info {
  color: #666;
  font-size: 14px;
}

.industry-article h2 {
  color: #3a5b8c;
  margin-bottom: 20px;
  font-size: 24px;
}

.article-section {
  margin-bottom: 30px;
}

.article-section h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;
}

.article-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

.article-section img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: opacity 0.3s ease;
}

.article-section {
  position: relative;
}

.article-section img.load-error {
  opacity: 0;
}

.article-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #f0f0f0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 4px;
  pointer-events: none;
}

.article-section.load-error:after {
  opacity: 1;
}

.growth-plan {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.plan-item {
  flex: 1;
  min-width: 200px;
  background-color: #f0f5fa;
  padding: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.plan-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.plan-item h4 {
  color: #3a5b8c;
  margin-bottom: 10px;
  font-size: 16px;
}

.plan-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .campus-notice .container {
    flex-direction: column;
  }

  .shuttle-item {
    width: calc(25% - 15px);
  }

  .majors-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .nav ul {
    flex-wrap: wrap;
  }

  .nav ul li a {
    padding: 10px 15px;
  }

  .apply-main,
  .campus-main,
  .industry-main {
    flex-direction: column;
  }

  .apply-sidebar,
  .campus-sidebar,
  .industry-sidebar {
    width: 100%;
  }

  .shuttle-grid {
    justify-content: center;
  }

  .shuttle-item {
    width: calc(33.333% - 14px);
  }

  .growth-plan {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 24px;
  }

  .campus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shuttle-item {
    width: calc(50% - 10px);
  }

  .majors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photos-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-reset,
  .btn-submit {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 10px;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .banner-title {
    font-size: 20px;
    padding: 8px 15px;
  }

  .campus-grid {
    grid-template-columns: 1fr;
  }

  .shuttle-item {
    width: 100%;
  }

  .majors-grid {
    grid-template-columns: 1fr;
  }

  .apply-form {
    padding: 20px;
  }

  .apply-form-small,
  .consult-box,
  .sidebar-menu {
    padding: 15px;
  }
}

/* 根节点弹出窗口样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  width: 479px;
  height: 196px;
  background-image: url("../images/modal-bg.png");
  background-size: 100% 100%;
}

/* 链接样式重置 - 确保三个板块中的链接不影响视觉效果 */
.shuttle-item a,
.campus-item a {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
}

.major-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.shuttle-item a:hover,
.campus-item a:hover,
.major-item a:hover {
  text-decoration: none;
}

.major-item a p {
  margin: 0;
  color: #333;
}

/* 录取查询弹窗样式 */
.admission-popup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
  padding: 20px;
}

.admission-popup {
  width: 500px;
  min-height: 350px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admission-popup2 {
  width: 500px;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup-title {
  font-size: 24px;
  color: #3a5b8c;
  margin-bottom: 15px;
  font-weight: bold;
  background-color: #e4edff;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-radius: 4px;
}

.popup-form {
  padding: 0 30px;
  width: 100%;
  margin-bottom: 5px;
}

.popup-form .form-group {
  margin-bottom: 20px;
}

.popup-form label {
  display: block;
  font-size: 14px;
  color: #666;
  /*margin-bottom: 8px;*/
}

.popup-form input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.popup-form input:focus {
  outline: none;
  border-color: #3a5b8c;
}

.btn-query {
  width: 50%;
  height: 45px;
  background-color: #3a5b8c;
  color: #fff;
  border: none;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
  padding: 10px 0;
  border-radius: 18px;
}

.btn-query:hover {
  background-color: #2d4a73;
}

.popup-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  padding: 10px 0;
}

/* 响应式样式 */
@media (max-width: 576px) {
  .admission-popup {
    width: 100%;
    height: auto;
    min-height: 350px;
    padding: 20px;
  }

  .popup-title {
    font-size: 20px;
  }
}

/* 查询页面特定样式 */
/* 录取查询结果样式 */
.admission-result {
  width: 100%;
}

.result-header {
  text-align: left;
  margin-bottom: 0px;
}

.result-header h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
  font-weight: normal;
}

.student-name {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}

.congratulation {
  font-size: 18px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

.major-name {
  font-weight: bold;
  text-decoration: underline;
  color: #000;
}

.result-info {
  border-radius: 8px;
  padding: 10px;
}

.info-title {
  background-color: #3a5b8c;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  padding: 10px;
  text-align: center;
}

.info-table {
  width: 100%;
  border: 1px solid #e6e6e6;
  border-collapse: collapse;
}

.info-table tr {
  border-bottom: 1px solid #e6e6e6;
}

.info-table tr:last-child {
  border-bottom: none;
}

.info-label {
  width: 40%;
  padding: 12px 15px;
  font-size: 14px;
  color: #666;
  font-weight: normal;
}

.info-value {
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
}

/* 响应式设计 */
@media (max-width: 576px) {
  .result-header h3 {
    font-size: 18px;
  }

  .congratulation {
    font-size: 16px;
  }

  .result-info {
    padding: 15px;
  }

  .info-label,
  .info-value {
    padding: 10px;
    font-size: 13px;
  }
}

/* 查询页面特定样式 */
body.querybody {
  background-color: #f5f5f5;
}

/* 侧边悬浮窗口样式 */
.side-form-container {
  position: fixed;
  top: 345px;
  right: 0px;
  width: 243px;
  background-image: url("../images/side-form-bg.png");
  background-size: 100% 100%;
  z-index: 999;
  padding: 30px;
  box-sizing: border-box;
}

.side-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.side-form div {
  display: flex;
  flex-direction: column;
}

.side-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.side-form input,
.side-form select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.side-form button {
  width: 100%;
  padding: 10px;
  background-color: #2c3e50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.article-title {
  color: #333 !important;
  font-size: 24px !important;
  font-weight: normal !important;
  text-align: center;
}

/* 新闻列表组件样式 */
.news-list-container {
  margin-bottom: 30px;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #e6e6e6;
  transition: background-color 0.3s ease;
}

.news-item:hover {
  background-color: #f8f9fa;
}

.news-content {
  flex: 1;
  margin-right: 20px;
}

.news-title a {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #3a5b8c;
  text-decoration: none;
}

.news-summary a {
  color: #666666;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  text-decoration: none;
}

.news-date {
  color: #999;
  font-size: 14px;
  white-space: nowrap;
  align-self: center;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .news-date {
    white-space: normal;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

/* 新闻正文页面样式 */
.news-detail {
  margin-bottom: 30px;
}

.detail-title {
  color: #333;
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #666;
  font-size: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.detail-font-size {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 20px;
}

.font-size-label {
  color: #666;
  font-size: 14px;
}

.font-size-btn {
  padding: 5px 12px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.font-size-btn:hover {
  border-color: #3a5b8c;
  color: #3a5b8c;
}

.font-size-btn.active {
  background: #3a5b8c;
  color: #fff;
  border-color: #3a5b8c;
}

.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}

.detail-content p {
  margin-bottom: 15px;
  text-indent: 2em;
}

.detail-content h2 {
  color: #3a5b8c;
  font-size: 22px;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #3a5b8c;
  font-weight: bold;
}

.detail-content h3 {
  color: #3a5b8c;
  font-size: 20px;
  margin: 25px 0 12px;
  font-weight: bold;
}

.detail-content ul,
.detail-content ol {
  margin-bottom: 15px;
  padding-left: 40px;
}

.detail-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .detail-title {
    font-size: 24px;
  }

  .detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .detail-font-size {
    justify-content: center;
  }

  .detail-content {
    font-size: 15px;
  }

  .detail-content p {
    text-indent: 0;
  }

  .detail-content h2 {
    font-size: 20px;
  }

  .detail-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .detail-title {
    font-size: 20px;
  }

  .detail-meta {
    font-size: 13px;
  }

  .detail-font-size {
    gap: 5px;
  }

  .font-size-btn {
    padding: 4px 10px;
    font-size: 13px;
  }

  .detail-content {
    font-size: 14px;
  }
}

/* 新闻正文页面样式 */
.news-detail {
  margin-bottom: 30px;
}

.detail-title {
  color: #3a5b8c;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.detail-font-size {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 10px;
}

.font-size-label {
  color: #666;
  font-size: 14px;
}

.font-size-btn {
  padding: 5px 12px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.font-size-btn:hover {
  background-color: #f5f5f5;
  border-color: #3a5b8c;
  color: #3a5b8c;
}

.font-size-btn.active {
  background-color: #3a5b8c;
  color: #fff;
  border-color: #3a5b8c;
}

.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}

.detail-content p {
  margin-bottom: 15px;
  text-indent: 2em;
}

.detail-content h2 {
  color: #3a5b8c;
  font-size: 22px;
  font-weight: bold;
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #3a5b8c;
}

.detail-content h3 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 12px 0;
}

.detail-content ul,
.detail-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.detail-content li {
  margin-bottom: 8px;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .detail-title {
    font-size: 24px;
  }

  .detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .detail-font-size {
    justify-content: center;
  }

  .detail-content {
    font-size: 15px;
  }

  .detail-content p {
    text-indent: 1em;
  }

  .detail-content h2 {
    font-size: 20px;
  }

  .detail-content h3 {
    font-size: 17px;
  }
}

@media (max-width: 576px) {
  .detail-title {
    font-size: 20px;
  }

  .detail-content {
    font-size: 14px;
  }

  .detail-content p {
    text-indent: 0;
  }
}

.page-btn {
  margin: 2px;
  padding: 6px 10px;
}

@media (max-width: 576px) {
  .news-title {
    font-size: 14px;
  }

  .news-date {
    font-size: 12px;
  }
}

/* 图片列表组件样式 */
.image-grid {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.image-grid {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
}

.image-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-item:hover img {
  transform: scale(1.05);
}

.image-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-info a {
  text-decoration: none;
  color: #fff;
}

.image-item:hover .image-info {
  transform: translateY(0);
}

.image-title {
  font-size: 14px;
  font-weight: normal;
}

@media (max-width: 1200px) {
  .image-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
}

@media (max-width: 576px) {
  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, 1fr);
  }
}

/* 新闻正文组件样式 */
.news-detail {
  margin-bottom: 30px;
}

.detail-title {
  color: #333;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.3;
  margin-bottom: 20px;
  text-align: center;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
  color: #666;
}

.detail-font-size {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
  gap: 10px;
  font-size: 14px;
  color: #666;
}

.font-size-btn {
  padding: 4px 8px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #666;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 12px;
}

.font-size-btn:hover {
  background-color: #f5f5f5;
  border-color: #3a5b8c;
}

.font-size-btn.active {
  background-color: #3a5b8c;
  color: #fff;
  border-color: #3a5b8c;
}

.detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 20px 0;
}

.detail-content p {
  margin-bottom: 15px;
  text-indent: 2em;
}

.detail-content h2 {
  color: #3a5b8c;
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.detail-content h3 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 15px 0;
}

.detail-content ul,
.detail-content ol {
  margin: 15px 0;
  padding-left: 40px;
}

.detail-content li {
  margin-bottom: 8px;
}

.detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.detail-content table th,
.detail-content table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.detail-content table th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #3a5b8c;
}

.detail-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .detail-title {
    font-size: 24px;
  }

  .detail-meta {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .detail-font-size {
    justify-content: center;
  }

  .detail-content h2 {
    font-size: 20px;
  }

  .detail-content h3 {
    font-size: 18px;
  }

  .detail-content {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .detail-title {
    font-size: 20px;
  }

  .detail-content {
    font-size: 14px;
  }

  .detail-content p {
    text-indent: 1em;
  }

  .detail-content table {
    font-size: 12px;
  }

  .detail-content table th,
  .detail-content table td {
    padding: 5px;
  }
}

.querybody .flex {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.querybody .flex header,
.querybody .flex .query {
  width: 100%;
}

.querybody .flex .query {
  flex: 1;
  background-image: url(../images/bg-large.png);
  background-size: 100% auto;
  background-position: bottom;
}
.querybody .flex .query footer {
  background-color: rgba(73, 93, 132, 0.7);
  position: absolute;
  bottom: 0;
  width: 100%;
  /* background-color: #3A5B8C; */
}

.apply-success {
  padding: 40px 20px;
  text-align: center;
}
.apply-success h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.apply-success p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.apply-success button {
  padding: 10px 20px;
  border: 1px solid #3a5b8c;
  background-color: #3a5b8c;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.3s ease;
}
.apply-success button:hover {
  background-color: #fff;
  color: #3a5b8c;
}

.image-grid2 .image-info {
  transform: translateY(0%) !important;
}

.wp_listcolumn .wp_column a {
  background: #f5f5f5 url(wp_column_menu_li_1.gif) no-repeat 13px 26px;
}

.w20_more,
.w10_more {
  text-decoration: none !important;
}

.possplit {
  background-size: auto 115%;
}
