:root {
  --primary-color: #0d6efd;
  --secondary-color: #8e2de2;
  --accent-color: #0d6efd;
  --primary-rgb: 13, 110, 253;
}
.color2 {
  color: #f36f21;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.btn-group .active a {
  color: #fff;
}
.navbar .container-fluid {
  max-width: 96%;
}
.navbar-expand-lg .navbar-nav .nav-link {
  margin: 0 10px;
}
@media screen and (max-width: 1350px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 5px;
  }
}
@media screen and (max-width: 992px) {
  .navbar-brand span {
    display: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 0 2px;
  }
}
.bg-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-accent {
  background-color: rgb(var(--primary-rgb));
  color: white;
  border: none;
}

.btn-accent:hover {
  background-color: #e05a1a;
  color: white;
}

.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 10px;
  /*overflow: hidden;*/
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.about-lanmu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.about-lanmu ul li i {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  font-size: 24px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
}
.about-lanmu ul li span {
  display: block;
  margin-top: 10px;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.journal-cover {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.journal-cover:hover {
  transform: scale(1.03);
}

.text-accent {
  color: var(--accent-color);
}

footer {
  background-color: #2a2a2a;
  color: white;
}

.quick-link {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.quick-link:hover {
  color: white;
}

.ai-section {
  border-left: 4px solid var(--accent-color);
}
/* 导航栏样式 - 鼠标悬停版本 */
.fixed-top {
  position: relative;
}
.navbar {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  position: fixed;
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.8rem;
}

.nav-link {
  font-weight: 500;
  padding: 8px 15px;
  margin: 0 5px;
  color: #333;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: all 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  width: calc(100% - 30px);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

/* 下拉菜单样式 */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  padding: 10px 0;
  margin: 0;
  border: none;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  padding: 8px 20px;
  font-weight: 500;
  color: #333;
  transition: all 0.2s;
  display: block;
  clear: both;
  white-space: nowrap;
}

.dropdown-item:hover {
  background-color: rgba(143, 45, 226, 0.1);
  color: var(--secondary-color);
  text-decoration: none;
}

.dropdown-divider {
  height: 1px;
  margin: 5px 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
}

/* 登录按钮样式 */
.btn-login {
  background-color: var(--accent-color);
  color: white;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s;
  border: none;
  margin-left: 15px;
}

.btn-login:hover {
  background-color: #e05a1a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 111, 33, 0.3);
}

/* 移动端样式 */
@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 15px;
  }

  .nav-link {
    padding: 10px 0;
    margin: 5px 0;
  }

  .nav-link::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 1;
    transform: none;
    display: none;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
    margin: 5px 0 5px 15px;
  }

  .btn-login {
    margin: 15px 0 0 0;
    width: 100%;
  }
}
.log-in {
  position: relative;
}
.log-in .drop-menu {
  position: absolute;
  top: 140%;
  left: 0px;
  background: #fff;
  width: 100px;
}
.log-in .button-group .user-head img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.log-in .button-group .user-head::after {
  color: #fff;
}
.log-in .button-group .drop-menu ul {
  padding: 10px 0;
  margin: 0;
  line-height: 30px;
}
/* 全屏Banner样式 */
.fullscreen-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: white;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 1;
}

.banner-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
  text-align: center;
  animation: floatIn 1s ease-out;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.banner-btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-btn-primary {
  background-color: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
}

.banner-btn-primary:hover {
  background-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.banner-btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.banner-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2.5rem;
  }

  .banner-subtitle {
    font-size: 1.2rem;
  }

  .banner-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .banner-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}
/* 登录模态框样式 */
.login-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.login-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.login-modal.show .login-container {
  transform: translateY(0);
  opacity: 1;
}

.login-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
}

.login-header h3 {
  margin: 0;
  font-weight: 600;
  font-size: 1.5rem;
}

.login-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.login-close:hover {
  transform: rotate(90deg);
}

.login-body {
  padding: 30px;
}

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

.login-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.login-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s;
}

.login-form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
  outline: none;
}

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

.remember-me {
  display: flex;
  align-items: center;
}

.remember-me input {
  margin-right: 8px;
}

.forgot-password {
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 0.9rem;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--accent-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 20px;
}

.login-btn:hover {
  background-color: #e05a1a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 111, 33, 0.3);
}

.social-login {
  text-align: center;
  margin-bottom: 20px;
}

.social-login p {
  color: #777;
  position: relative;
  margin-bottom: 20px;
}

.social-login p::before,
.social-login p::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background-color: #ddd;
}

.social-login p::before {
  left: 0;
}

.social-login p::after {
  right: 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.icon-wechat {
  background-color: #07c160;
}

.icon-weibo {
  background-color: #e6162d;
}

.icon-qq {
  background-color: #12b7f5;
}

.login-footer {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.login-footer a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.login-footer a:hover {
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 响应式调整 */
@media (max-width: 576px) {
  .login-container {
    margin: 0 15px;
  }

  .login-body {
    padding: 20px;
  }

  .social-login p::before,
  .social-login p::after {
    width: 25%;
  }
}
/* 杂志简介样式 */
.journal-intro {
  padding: 80px 0;
  background-color: #f9f9ff;
  position: relative;
  overflow: hidden;
}

.journal-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80')
    center/cover no-repeat;
  opacity: 0.03;
  z-index: 0;
}

.intro-container {
  position: relative;
  z-index: 1;
}

.intro-header {
  text-align: center;
  margin-bottom: 50px;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.intro-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
}

.intro-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

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

.intro-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--accent-color);
}

.intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.intro-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 0, 224, 0.03),
    rgba(142, 45, 226, 0.03)
  );
  z-index: -1;
}

.intro-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.intro-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.intro-card-content {
  color: #555;
  line-height: 1.8;
}

.intro-card-content ul {
  padding-left: 20px;
}

.intro-card-content li {
  margin-bottom: 8px;
  position: relative;
}

.intro-card-content li::before {
  content: '•';
  color: var(--accent-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.intro-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  min-width: 180px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .intro-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
  .journal-intro {
    padding: 60px 0;
  }

  .intro-title {
    font-size: 2rem;
  }

  .intro-subtitle {
    font-size: 1rem;
  }

  .intro-card {
    padding: 25px;
  }

  .stat-item {
    min-width: 150px;
    padding: 20px;
  }

  .stat-number {
    font-size: 2rem;
  }
}
.business-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 10;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.hero-overlay .container {
  position: relative;
  z-index: 20;
  text-align: center;
}
.business-hero > img {
  display: block;
  width: 100%;
}

.business-section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  display: block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto;
}

.business-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
  border-top: 3px solid var(--accent-color);
}

.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.business-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.business-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.business-card-content {
  color: #555;
  line-height: 1.8;
}

.contact-section {
  background: #f9f9ff url('../images/zixun-bg.jpg') center/cover no-repeat;
  padding: 100px 0;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0.5;
  z-index: 1;
}
.contact-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.contact-phone {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-phone:hover {
  color: white;
  background: #e05a1a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 111, 33, 0.3);
}

@media (max-width: 768px) {
  .business-hero {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-card {
    padding: 30px;
  }
}
/* 新增关于我们页面特有样式 */
.timeline {
  position: relative;
  padding-left: 50px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--secondary-color)
  );
}
.timeline-item {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--accent-color);
}
.team-member {
  text-align: center;
  margin-bottom: 30px;
}
.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
.about-two-section {
  background: url(../images/bg04.jpg) top center/cover no-repeat;
  padding: 100px 0;
}
.about-two-section .card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.line-big {
  line-height: 2;
}
.font-size-16 {
  font-size: 16px;
}
.font-size-18 {
  font-size: 18px;
}
.font-size-20 {
  font-size: 20px;
}
.font-size-24 {
  font-size: 24px;
}
.ellipsis-6-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 详情页特有样式 */
.news-detail-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 60px 0;
  margin-bottom: 40px;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.news-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.news-content blockquote {
  border-left: 4px solid var(--accent-color);
  padding-left: 20px;
  margin: 25px 0;
  font-style: italic;
  color: #555;
}
.news-content h2,
.news-content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.news-tag {
  background-color: rgba(143, 45, 226, 0.1);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.related-news-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.related-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.share-buttons {
  display: flex;
  gap: 10px;
}
.share-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s;
}
.share-button:hover {
  transform: scale(1.1);
}
/* 新闻公告页特有样式 */
.news-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.news-img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img {
  transform: scale(1.05);
}
.news-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}
.news-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}
.news-date {
  color: var(--accent-color);
  font-weight: 500;
}

.pagination li {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.pagination li {
  padding: 10px 18px;
}
.pagination li :not(:first-child) a {
  margin-left: -1px;
}
.pagination li .active a {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.submission-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 80px 0;
  position: relative;
}

.submission-section {
  padding: 60px 0;
}

.step-card {
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin-bottom: 30px;
  background-color: #f9f9ff;
  border-radius: 0 8px 8px 0;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateX(10px);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  margin-right: 15px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  vertical-align: middle;
}

.step-content {
  margin-top: 15px;
  color: #555;
  line-height: 1.8;
  padding-left: 55px;
}

.requirements-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.requirement-item {
  margin-bottom: 20px;
  position: relative;
  padding-left: 35px;
}

.requirement-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 25px;
  font-size: 0.9rem;
}

.email-section {
  background: url(../images/mailbg.jpg) center/cover no-repeat;
  padding: 60px 0;
  text-align: center;
}

.email-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
  display: inline-block;
}

.email-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.email-address {
  font-size: 1.3rem;
  background: #f0f0f0;
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-block;
  margin: 20px 0;
  word-break: break-all;
}

.email-format {
  text-align: left;
  background: #f5f5f5;
  padding: 15px;
  border-radius: 8px;
  font-family: monospace;
  margin-top: 20px;
}

.btn-submit {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s;
  margin-top: 20px;
}

.btn-submit:hover {
  background-color: #e05a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .submission-hero {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .email-card {
    padding: 30px;
  }
}
/* 注意事项特殊样式 */
.important-notes {
  background-color: #fff8f0;
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  margin: 40px 0;
  border-radius: 0 8px 8px 0;
}

.important-notes h4 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.note-item {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.note-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  border-radius: 50%;
  opacity: 0.2;
}

.note-icon {
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--accent-color);
  font-size: 0.9rem;
}
/* 替代方案CSS */
.important-notes-box {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--accent-color);
}

.note-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 1.3rem;
  font-weight: 600;
}

.note-header i {
  font-size: 1.8rem;
}

.note-content {
  padding-left: 20px;
}

.note-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  line-height: 1.7;
}

.note-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: rgba(243, 111, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}
/* 新增联系我们页面特有样式 */
.contact-info {
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
}
.contact-form .form-control {
  border-radius: 5px;
  padding: 12px 15px;
  border: 1px solid #eee;
}
.contact-form textarea.form-control {
  min-height: 150px;
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
