/* 全局样式重置与基础设置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

a {
  text-decoration: none !important;
  color: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  border-bottom: none;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
}

/* 自定义工具类 */
.bg-gradient-pri {
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
}

.card-shadow {
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
}

.card-hover {
  transition: all 0.35s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
}

/* 响应式字体大小工具 */
.text-clamp-hero {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.text-clamp-title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* 头部导航 */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  z-index: 50;
  height: 64px;
}

.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #165dff;
  cursor: pointer;
  width: 140px;
}

.logo img {
  vertical-align: unset;
}

nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 500;
}

@media (min-width: 768px) {
  nav {
    display: flex;
  }
}

nav a {
  text-decoration: none;
  color: #1e293b;
}

nav a.active {
  color: #165dff;
  font-weight: bold;
}

.btn-login {
  background-color: #165dff;
  color: white;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-login:hover {
  background-color: rgba(22, 93, 255, 0.9);
}

/* ====================== 手机端美化菜单（电脑端完全不变） ====================== */
.mobile-menu {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 10px;
  background: rgba(22, 93, 255, 0.05);
  color: #165dff;
  transition: all 0.2s ease;
}
.desktop-login {
  display: block;
}
.mobile-login-btn {
  display: none !important;
}

@media (max-width: 767px) {
  .mobile-menu {
    display: flex;
  }
  .desktop-login {
    display: none !important;
  }
  nav {
    display: none !important;
  }
  nav.active {
    display: flex !important;
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    background: #fff;
    flex-direction: column;
    padding: 28px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(22, 93, 255, 0.15);
    gap: 18px;
    animation: navFadeIn 0.3s ease forwards;
    z-index: 99;
  }
  .mobile-login-btn {
    display: block !important;
    margin-top: 10px !important;
    padding: 12px;
    background: #165dff !important;
    color: #fff !important;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
  }
  @keyframes navFadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  nav a {
    color: #334155 !important;
    font-weight: 500;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
  }
  nav a:hover {
    background: rgba(22, 93, 255, 0.06);
    color: #165dff !important;
  }
  nav a.active {
    color: #165dff !important;
    font-weight: 600;
    background: rgba(22, 93, 255, 0.08);
  }
}

/* 首屏区域 */
.hero {
  padding: 144px 0 96px;
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: white;
  text-align: center;
}

.hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-try {
  background-color: white;
  color: #165dff;
  padding: 12px 32px;
  border-radius: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.btn-consult {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: white;
  padding: 12px 32px;
  border-radius: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

/* 痛点区域 */
.pain {
  padding: 96px 0;
  background-color: white;
}

.pain-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title p {
  color: #64748b;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background-color: #fff1f2;
  padding: 28px;
  border-radius: 24px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
}

.pain-card h3 {
  color: #e11d48;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 14px;
}

/* 核心功能区域 */
.feature {
  padding: 96px 0;
  background-color: #f8fafc;
}

.feature-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
}

.feature-card i {
  color: #165dff;
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #64748b;
}

/* 选择理由区域 */
.show {
  padding: 96px 0;
  background-color: white;
}

.show-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.show-grid {
  max-width: 768px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 40px;
}

@media (min-width: 640px) {
  .show-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
}

.show-item i {
  color: #165dff;
  font-size: 32px;
  margin-top: 4px;
  flex-shrink: 0;
}

.show-item h3 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 4px;
}

.show-item p {
  font-size: 14px;
  color: #64748b;
}

/* 多校区方案区域 */
.multi {
  padding: 96px 0;
  background-color: rgba(22, 93, 255, 0.05);
}

.multi-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.multi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .multi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.multi-card {
  background-color: white;
  padding: 28px;
  border-radius: 24px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
}

.multi-card h3 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.multi-card p {
  font-size: 14px;
  color: #475569;
}

/* 预约表单区域 */
.contact {
  padding: 96px 0;
  background-color: white;
}

.contact-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px;
}

.form-card {
  background-color: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 16px;
}

.required {
  color: #ef4444;
}

.btn-submit {
  width: 100%;
  background-color: #165dff;
  color: white;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: rgba(22, 93, 255, 0.9);
}

/* 底部行动区域 */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: white;
  text-align: center;
}

.cta-inner {
  max-width: 576px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .cta h2 {
    font-size: 32px;
  }
}

.cta p {
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-try-big {
  background-color: white;
  color: #165dff;
  padding: 16px 40px;
  border-radius: 16px;
  font-weight: bold;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-try-big:hover {
  background-color: #f3f4f6;
}

/* 页脚 */
footer {
  padding: 40px 0;
  background-color: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 14px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: white;
}

.footer-divider {
  margin: 0 8px;
}

/* 关于我们开始 */
.about {
  padding: 90px 0 90px;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 50px;
  box-shadow: 0 8px 32px rgba(22, 93, 255, 0.07);
}

.about-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  margin-bottom: 30px;
}

.about-content {
  font-size: 16px;
  line-height: 1.9;
  color: #334155;
}

.about-content p {
  margin-bottom: 22px;
}

.about-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 36px 0 16px;
}

/* 优势模块 */
.advantage-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.advantage-item {
  background: rgba(22, 93, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
}

.advantage-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #165dff;
  margin-bottom: 8px;
}

.advantage-item p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* 联系方式 */
.contact-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-item {
  background: rgba(22, 93, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #165dff;
  margin-bottom: 12px;
}

.contact-item p {
  font-size: 15px;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-box {
    grid-template-columns: 1fr;
  }
  .advantage-box {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 48px 20px;
  }
  .about {
    padding: 90px 0 60px;
  }
  .news-item {
    padding: 36px 20px !important;
  }
  .news-card {
    padding: 48px 20px !important;
  }
}
/* 关于我们结束 */

/* 新闻列表开始 */
.news-list {
  padding: 120px 0 90px;
}

.news-list-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title p {
  color: #64748b;
  font-size: 16px;
}

.news-item {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(22, 93, 255, 0.07);
  transition: all 0.3s ease;
  overflow: hidden;
}

.news-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #165dff, #0fc6c2);
  opacity: 0;
  transition: opacity 0.3s;
}

.news-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 93, 255, 0.12);
}

.news-item:hover::before {
  opacity: 1;
}

.news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-date {
  display: inline-block;
  font-size: 14px;
  color: #165dff;
  background: rgba(22, 93, 255, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 500;
}

.news-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #165dff;
  text-decoration: none;
  padding: 8px 0;
}

.news-more span {
  transition: transform 0.2s;
}

.news-item:hover .news-more span {
  transform: translateX(6px);
}
/* 新闻列表结束 */

/* 新闻详情开始 */
.news-detail {
  padding: 120px 0 90px;
}

.news-detail-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.back-wrap {
  margin-bottom: 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.back-btn:hover {
  color: #165dff;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 50px;
  box-shadow: 0 8px 32px rgba(22, 93, 255, 0.07);
}

.news-detail-date {
  display: inline-block;
  font-size: 14px;
  color: #165dff;
  border-radius: 30px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-detail-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #1e293b;
  margin-bottom: 20px;
}

.news-content {
  font-size: 16px;
  line-height: 1.2;
  color: #334155;
}

.news-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin: 36px 0 16px;
}
/* 新闻详情结束 */
.kefu {
  position: fixed;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  z-index: 1000000;
  width: 150px;
  text-align: center;
}
.kefu_pc {
  bottom: 30%;
  right: 80px;
}
.kefu_mobile {
  bottom: 10%;
  right: 6px;
}
.kefu .kefu-body {
  position: relative;
}
.kefu .kf-img {
  position: absolute;
  display: none;
}
.kefu img {
  width: 100%;
}
.kefu .btm {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 10px;
  padding: 5px 10px;
  cursor: pointer;
}
.kefu .btm-a {
  background-color: #f03758;
  color: #fff;
  margin-top: 10px;
}
.kefu .btm:hover {
  opacity: 0.8;
}

/* icon控制开始 */
.feature-icon {
  margin-bottom: 10px;
}
.feature-icon .icon {
  height: 50px;
  width: 50px;
}

.show-icon {
  padding-top: 6px;
}
.show-icon .icon {
  height: 30px;
  width: 30px;
}

/* 价格页面顶部 Banner开始 */
.price-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #165dff 0%, #0fc6c2 100%);
  color: white;
  text-align: center;
}

.price-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.price-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
}

.price-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* 通用标题样式 */
.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  margin-bottom: 12px;
}

.section-title p {
  color: #64748b;
  font-size: 16px;
}

/* 价格套餐卡片 */
.pricing {
  padding: 80px 0;
  background-color: white;
}

.pricing-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 40px -5px rgba(22, 93, 255, 0.1);
  position: relative;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.hot {
  border: 2px solid #165dff;
  transform: scale(1.03);
}

.pricing-card.hot::before {
  content: "热销推荐";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #165dff;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
}

.pricing-card .title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

.pricing-card .price-original {
  text-align: center;
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pricing-card .price {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #165dff;
  margin-bottom: 8px;
}

.pricing-card .unit {
  text-align: center;
  color: #64748b;
  font-size: 14px;
  margin-bottom: 32px;
}

.pricing-card .feature-list {
  margin-bottom: 40px;
}

.pricing-card .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 15px;
}

.pricing-card .feature-item i {
  color: #165dff;
  font-size: 16px;
}

.pricing-card .btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: none;
}

.pricing-card .btn-normal {
  background: #f1f5f9;
  color: #1e293b;
}

.pricing-card .btn-primary {
  background: #165dff;
  color: white;
}

.pricing-card .btn:hover {
  opacity: 0.9;
}

/* 服务承诺 */
.service {
  padding: 80px 0;
  background: #f8fafc;
}

.service-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-item {
  text-align: center;
}

.service-item i {
  font-size: 36px;
  color: #165dff;
  margin-bottom: 16px;
}

.service-item h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.service-item p {
  color: #64748b;
  font-size: 14px;
}

/* 常见问题 */
.faq {
  padding: 80px 0;
  background: white;
}

.faq-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.faq-question {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
}

.pri-icon {
  padding-bottom: 12px;
}

.pri-icon .icon {
  height: 36px;
  width: 36px;
}

.pricing-icon {
  padding-top: 4px;
}

.pricing-icon .icon {
  height: 15px;
  width: 15px;
}
/* 价格页面顶部 Banner结束 */

.img-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

.img-viewer .close-btn {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  z-index: 10000;
}

.img-viewer img {
  max-width: 95%;
  max-height: 95vh;
  object-fit: contain;
  cursor: grab;
  transform-origin: center center;
  /* 去掉过渡，彻底不卡 */
  transition: none !important;
}

.news-content img {
  cursor: zoom-in;
  max-width: 100%;
  height: auto;
}
