/* 顶部导航栏样式 */
.main-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.navbar-menu-item {
  position: relative;
}

.navbar-menu-item>a {
  /* text-decoration: none;
      color: #182848;
      font-weight: 600;
      font-size: 16px;
      padding: 10px 15px; */
  /* border-radius: 6px; */
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.navbar-menu-item>a:hover {
  /*background-color: rgba(255, 26, 61, 0.1);*/
  font-weight: 600;
  color: #FF1A3D;
}

/* 下拉菜单样式 */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

.navbar-menu-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.dropdown-menu a:hover {
  background: #f8f9fa;
  color: #FF1A3D;
  padding-left: 25px;
}

/* 三级菜单样式 */
.has-submenu {
  position: relative;
}

.submenu-level-2 {
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  min-width: 350px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.has-submenu:hover .submenu-level-2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 重新设计Resources大菜单样式 - 类似gmagarnet.com */
.resources-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 12px 12px;
  padding: 40px 0;
  display: none;
  z-index: 999;
}

.resources-mega-menu.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}

.resources-mega-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

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

.resources-column h4 {
  font-size: 1.2rem;
  color: #182848;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FF1A3D;
}

.resources-column ul {
  list-style: none;
  padding: 0;
}

.resources-column ul li {
  margin-bottom: 12px;
}

.resources-column ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.resources-column ul li a:hover {
  color: #FF1A3D;
}

.resources-column ul li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  color: #FF1A3D;
}

.resources-featured {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resources-featured h4 {
  font-size: 1.2rem;
  color: #182848;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FF1A3D;
}

.featured-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dee2e6;
}

.featured-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.featured-item h5 {
  font-size: 1rem;
  color: #182848;
  margin-bottom: 8px;
}

.featured-item p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.featured-item a {
  font-size: 0.85rem;
  color: #FF1A3D;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.featured-item a i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.featured-item a:hover i {
  transform: translateX(3px);
}

/*xiala end*/
@media (min-width: 1601px) {
  .onea {
    font-size: 1.15rem;
  }

  .onetitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-align: center;
  }

  .largestoga {
    font-size: 1.18rem;
    margin-bottom: 12px;
  }

  .largestogb {
    font-size: 1.18rem;
    margin-bottom: 0;
  }

  .largesttitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: left;
  }

  .largestogbb {
    font-size: 1.18rem;
    margin-top: 24px;
    margin-bottom: 0;
  }

}

@media screen and (min-width:1450px) and (max-width:1600px) {
  .onea {
    font-size: 1.2rem;
  }

  .onetitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-align: center;
  }

  .largestoga {
    font-size: 1.0em;
    margin-bottom: 12px;
  }

  .largestogb {
    font-size: 1.0rem;
    margin-bottom: 0;
  }

  .largesttitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: left;
  }

  .largestogbb {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 0;
  }

}

@media screen and (min-width:1260px) and (max-width:1449px) {
  .onea {
    font-size: 1rem;
  }

  .onetitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-align: center;
  }

  .largestoga {
    font-size: 0.8em;
    margin-bottom: 12px;
  }

  .largestogb {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .largesttitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: left;
  }

  .largestogbb {
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 0;
  }

}

@media (max-width: 1259px) {
  .onea {
    font-size: 0.8rem;
  }

  .onetitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    text-align: center;
  }

  .largestoga {
    font-size: 0.7em;
    margin-bottom: 12px;
  }

  .largestogb {
    font-size: 0.7rem;
    margin-bottom: 0;
  }

  .largesttitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    text-align: left;
  }

  .largestogbb {
    font-size: 0.8rem;
    margin-top: 24px;
    margin-bottom: 0;
  }

}

@media (max-width: 1199px) {
}

@media (max-width: 1350px) {
}

@media (max-width: 767px) {
  .main-navbar {
    display: none;
  }

}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 导航栏样式 */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
  color: #ffd43b;
}

/* 汉堡菜单 */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #d60132;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle span::after {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* 导航菜单 */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
  padding-top: 80px;
  transition: all 0.4s ease;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

.nav-menu.active {
  right: 0;
}

.nav-menu ul {
  list-style: none;
  padding: 0 20px;
}

.nav-menu ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 15px 0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #ffd43b;
}

.nav-menu ul li a i {
  transition: transform 0.3s ease;
}

/* 下拉菜单 */
.sub-menu {
  max-height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 5px 0;
  transition: max-height 0.4s ease;
}

.sub-menu.active {
  max-height: 500px;
}

.sub-menu li {
  border-bottom: none !important;
}

.sub-menu li a {
  padding: 12px 20px !important;
  font-size: 1rem !important;
  opacity: 0.9;
}

.sub-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* 内容区域 */
.content {
  padding: 20px;
}

.section {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section h2 {
  color: #182848;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #4b6cb7;
}

.section p {
  line-height: 1.8;
  margin-bottom: 15px;
}

/* 响应式设计 */
@media (min-width: 768px) {
  .navbar {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
    box-shadow: none;
  }

  .nav-menu ul {
    display: flex;
    padding: 0;
  }

  .nav-menu ul li {
    position: relative;
    border-bottom: none;
    margin-left: 20px;
  }

  .nav-menu ul li a {
    padding: 5px 10px;
  }

  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #182848;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .sub-menu li a {
    padding: 12px 15px !important;
  }

}

/* 激活状态 */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #FFF;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  background: #FFF;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #FFF;
}

.dropdown-arrow.active i {
  transform: rotate(180deg);
}

/* 页面内容样式 */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(75, 108, 183, 0.2);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: #4b6cb7;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #182848;
  margin-bottom: 10px;
}

footer {
  padding: 30px;
  margin-top: 50px;
  background: rgba(24, 40, 72, 0.9);
  color: white;
  border-radius: 15px 15px 0 0;
}

.language-selector {
  position: relative;
  display: inline-block;
  z-index: 100;
}

.selected-language {
  background: linear-gradient(135deg, #005bea 0%, #3ec6e0 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(67, 97, 238, 0.3);
}

.selected-language:hover {
  background: #3a56d4;
  transform: translateY(-2px);
}

.language-list {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  width: 220px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
}

.language-list.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: #f8f9ff;
}

.language-option.active {
  background: #eef2ff;
  color: #4361ee;
  font-weight: 500;
}

.language-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/*xiala end*/
.gradient-quote-card {
  background: #f8f9fa;
  padding: 24px 24px 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  margin: 0;
}

.gradient-quote-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 6px;
  border-radius: 4px;
  background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
  display: block;
}

.model {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  justify-content: center;
  align-items: center;
}

.modela {
  display: flex;
  position: fixed;
  z-index: 9999;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.35);
  justify-content: center;
  align-items: center;
}

.ermail {
  width: 100%;
  margin-top: 18px;
  background: #ccc;
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: not-allowed;
  transition: background 0.2s;
}

.rgmail {
  width: 100%;
  margin-top: 18px;
  background: linear-gradient(135deg, rgb(33, 150, 243) 0%, rgb(21, 101, 192) 100%);
  color: white;
  border: none;
  padding: 14px 0px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.loading {
  display: none;
  text-align: center;
  margin: 20px 0;
}

.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

/*xiala end*/
.pagination a.cur {
  border: 1px #d60132 solid;
  background: #d60132;
  color: #fff;
}

/* 二级栏目Categories样式 */
.categories-section {
  padding: 40px 0 20px;
  background: #f7f9fb;
}

.categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.categories-header {
  margin-bottom: 20px;
}

.categories-header h2 {
  font-size: 1.8rem;
  color: #222;
  display: flex;
  align-items: center;
}

.categories-header h2:after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ddd;
  margin-left: 20px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.category-item {
  padding: 12px 24px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-item:hover {
  border-color: #FF1A3D;
  color: #FF1A3D;
}

.category-item.active {
  background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
  /*border-color: transparent;*/
  color: white;
  box-shadow: 0 5px 15px rgba(255, 26, 61, 0.3);
  transform: translateY(-2px);
}

.category-items {
  padding: 12px 12px;
  border: 2px solid #ddd;
  /*border-radius: 30px;*/
  font-weight: 600;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-items:hover {
  border-color: #FF1A3D;
  color: #FF1A3D;
}

.category-items.active {
  background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
  /*border-color: transparent;*/
  color: white;
  box-shadow: 0 5px 15px rgba(255, 26, 61, 0.3);
  transform: translateY(-2px);
}

/* 新增新闻列表样式 */
.news-section {
  /* padding: 60px 0; */
  background: #f7f9fb;
}

.news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.news-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
  height: 220px;
  overflow: hidden;
}

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

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

.news-content {
  padding: 24px;
}

.news-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.news-date i {
  margin-right: 8px;
  color: #FF1A3D;
}

.news-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-title2 {
				font-size: 2.2rem;
				line-height: 1.3;
				margin-bottom: 20px;
			}
.news-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: #FF1A3D;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #A00020;
}

.read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-item {
  margin: 0 6px;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: white;
  color: #222;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.pagination-link:hover, .pagination-link.active {
  background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
  color: white;
}

.pagination-link.active {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-header h2 {
    font-size: 2rem;
  }

  .news-header p {
    font-size: 1.1rem;
  }

}

/* 新增新闻列表样式 */
.news-detail-section {
  padding: 60px 0;
  background: #f7f9fb;
}

.news-detail-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.news-detail-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid #eee;
}

.news-meta {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

.news-author {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.news-author img {
  /*width: 32px;*/
  height: 32px;
  /*border-radius: 50%;*/
  margin-right: 10px;
}

.news-category {
  background: #f0f5ff;
  color: #1A56DB;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.news-detail-image {
  width: 100%;
  /*height: 450px;*/
  overflow: hidden;
}

.news-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-content {
  padding: 40px;
}

.news-detail-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.news-detail-content h3 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #222;
}

.news-detail-content blockquote {
  background: #f8f9fa;
  padding: 24px 24px 24px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.2rem;
}

.news-detail-content blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 6px;
  border-radius: 4px;
  background: linear-gradient(135deg, #4CAF50 0%, #1B5E20 100%);
  display: block;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}

.news-tag {
  background: #f0f5ff;
  color: #1A56DB;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
}

.news-share {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.news-share span {
  font-weight: 600;
  margin-right: 15px;
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f5ff;
  color: #1A56DB;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.share-button:hover {
  background: #1A56DB;
  color: white;
}

.news-navigation {
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  border-top: 1px solid #eee;
}

.nav-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #f0f5ff;
  color: #1A56DB;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background: #1A56DB;
  color: white;
}

.nav-button i {
  margin: 0 8px;
}

/* 响应式样式 */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

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

  .news-detail-image {
    height: 300px;
  }

  .news-detail-header, .news-detail-content {
    padding: 25px;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-author {
    margin-bottom: 10px;
  }

  .news-navigation {
    flex-direction: column;
  }

}

/*xiala end*/
/* 筛选和搜索 */
.downloads-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.search-box {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-box input:focus {
  outline: none;
  border-color: #FF1A3D;
  box-shadow: 0 0 0 3px rgba(255, 26, 61, 0.1);
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.sort-dropdown {
  position: relative;
}

.sort-button {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-button:hover {
  border-color: #FF1A3D;
}

.sort-button i {
  margin-left: 8px;
}

/* PDF下载列表样式 */
.downloads-section {
  padding: 20px 0 60px;
  background: #f7f9fb;
}

.downloads-container {
  max-width: 1200px;
  margin: 0 auto;
}

.downloads-header {
  text-align: center;
  margin-bottom: 40px;
}

.downloads-header h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 15px;
}

.downloads-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.downloads-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.download-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.download-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF1A3D 0%, #A00020 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  flex-shrink: 0;
}

.download-icon i {
  font-size: 24px;
  color: white;
}

.download-content {
  flex: 1;
}

.download-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.download-description {
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.download-meta {
  display: flex;
  align-items: center;
  color: #888;
  font-size: 0.9rem;
}

.download-meta span {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.download-meta i {
  margin-right: 6px;
}

.download-button {
  background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.download-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
}

.download-button i {
  margin-left: 8px;
}
