body {
  margin: 0;
  font-family: 'Microsoft YaHei', Arial, sans-serif;
  /* background: #fff; */
  color: #222;
}
a{
     text-decoration: none; /* 去除下划线 */
  color: inherit;        /* 继承父元素的颜色 */
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.border-red {
    border:1px solid red !important;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  width: 165px;
  height: 40px;
}

nav {
  flex: 1;
}

.nav-list {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #222;
  text-decoration: none;
  padding: 0 32px;
  line-height: 72px;
  font-size: 13px;
  /* position: relative; */
  display: inline-block;
  
}

.nav-link.active,
.nav-link:hover {
  color: #D52729FF;
}

.dropdown {
  /* position: relative; */
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  width: 100vw;
  transform: none;
  background: #fff;
  /* box-shadow: 0 2px 16px rgba(0,0,0,0.10); */
  /* border-radius: 0 0 12px 12px; */
  z-index: 10;
  display: flex;
  padding-bottom: 25px;
}

.dropdown-menu-left {
  /* flex: 1; */
}

.dropdown-menu-right {
  margin-left: 48.8vw;
}

.dropdown-menu-title {
  font-weight: bold;
  font-size: 16px;
}

.dropdown-menu-list {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
}

.dropdown-menu .title {
  font-weight: bold;
  font-size: 18px;
}

.dropdown-menu li {
  border: none;
  background: none;
  padding: 0;
  list-style: none;
}

.dropdown-menu a {
  background: #f7f8fa;
  color: #222;
  display: block;
  width: 160px;
  min-height: 90px;
  border-radius: 8px;
  padding: 18px 16px 12px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  /* position: relative; */
}

.dropdown-menu a .desc {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: 400;
  margin-top: 8px;
}

.dropdown-menu a:hover {
  background: #D52729FF;
  color: #fff;
}

.dropdown-menu a:hover .desc {
  color: #fff;
}

.nav-user {
  margin-left: 16px;
  font-size: 22px;
}

.touxiang {
  width: 20px;
  height: 20px;
}

.icon-user::before {
  content: '\1F464';
  font-size: 22px;
}

.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  margin-right: 13px;
}

.hero {
  position: relative;
  height: 650px;
  background: #000;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  color: #fff;
  text-align: left;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.35);
  padding: 32px 36px;
  border-radius: 8px;
}

.hero-content h2 {
  font-size: 24px;
  margin: 0 0 12px 0;
  font-weight: 400;
}

.hero-content .highlight {
  font-size: 36px;
  color: #D52729FF;
  margin: 0 0 16px 0;
  font-weight: 700;
}

.hero-content p {
  font-size: 18px;
  margin: 0;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.slider-dots span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s, background 0.3s;
}

.slider-dots span.active {
  background: #fff;
  opacity: 1;
}

.services {
  background: #f7f7f7;
  padding: 48px 0 32px 0;
}

.services .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
  /* Center align titles */
}

.services h2 {
  font-size: 28px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #222;
}

.services h3 {
  font-size: 18px;
  color: #888;
  margin-bottom: 32px;
  font-weight: 400;
}

.service-list {
  display: flex;
  justify-content: center;
  /* Center the products cards */
  gap: 24px;
  margin-bottom: 24px;
  /* Space below the card */
}

.service-item-card {
  background: #fff;
  box-shadow: -4px 10px 12px 0px rgba(0, 0, 0, 0.02);
  display: flex;
  /* Use flexbox for layouts */
  /*align-items: center;*/
  padding: 48px 54px;
  /* Adjust padding */
  max-width: 1200px;
  /* Limit card width */
}

.service-item-content {
    /*margin-top: 36px;*/
  flex: 1;
  padding-right: 24px;
  /* Space between text and image */
  text-align: left;
  /* Align text to the left */
}

.service-item-content .h4 {
  font-weight: bold;
  font-size: 36px;
  color: #5484FE;
  margin-bottom: 20px;
}

.service-item-content .service-item-content-text {
  margin-bottom: 20px;
  font-size: 18px;
  color: #666666FF;
}

.service-more-btn {
  width: 155px;
  height: 46px;
  border-radius: 7px 7px 7px 7px;
  border: 1px solid #2F353C;
  display: inline-block;
  font-size: 18px;
  color: #2F353C;
  text-decoration: none;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 62px;
}

.service-more-btn:hover {
  background: #ddd;
  /* Darker gray on hover */
}

.service-item-image {
  width: 325px;
  /* Image container width */
  height: 302px;
  /* Image container height */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #ccc;
  /* Add dashed border */
  box-sizing: border-box;
  /* Include border in element's total width and height */
  padding: 10px;
  /* Add some padding inside the border */
}

.service-item-image img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  /* Remove extra space below image */
}

.service-slider-dots {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.service-slider-dots span {
  display: block;
  width: 25px;
  /* Width for line */
  height: 3px;
  /* Height for line */
  border-radius: 2px;
  /* Rounded corners for line */
  background: #ccc;
  /* Gray color for inactive lines */
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-slider-dots span.active {
  background: #D52729FF;
  /* Red color for active line */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-item-content .h4{
    font-size: 18px;
    margin-bottom: 12px;
  }
  .service-item-content .service-item-content-text{
    font-size: 14px;
  }
  .service-more-btn{
    width: 122px;
height: 38px;
font-size: 14px;
  }
  .service-item-card {
    flex-direction: column;
    /* Stack content and image vertically */
    text-align: center;
    /* Center content */
    max-width: 95%;
    padding: 24px 16px 0 16px;
  }

  .service-item-content {
    padding-right: 0;
  }

  .service-item-content h4 {
    font-size: 20px;
  }

  .service-item-content p {
    font-size: 14px;
  }

  .service-item-image {
    width: 200px;
    height: 188px;
    margin-bottom: 84px;
  }

  .service-slider-dots {
    margin-top: 12px;
  }

  .service-slider-dots span {
    width: 8px;
    height: 8px;
  }
}

footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 24px 0 12px 0;
  font-size: 15px;
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
    /* Hide the desktop navigation on mobile */
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-user {
    margin-left: 8px;
  }

  .nav-container {
    height: 56px;
  }

  .logo {
    width: 99px;
    height: 24px;
  }

  .hero {
    height: 260px;
  }

  .hero-content {
    padding: 18px 12px;
    max-width: 95vw;
  }

  .services {
    padding: 28px 0 0px 0;
  }

  .service-list {
    gap: 12px;
  }

  .service-item {
    min-width: 90vw;
    max-width: 100vw;
    padding: 16px 10px;
  }
}

/* 页脚优化 */
.footer {
  background: #f7f7f7;
  border-top: none;
  padding: 68px 0 0 0;
  color: #444;
  font-size: 15px;
}

.footer_icon {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid #D9D9D9FF;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding: 40px 0 0 0;
  position: relative;
}

.footer-logo {
  height: 64px;
  /* margin: 0 auto 24px auto; */
  display: block;
}

.footer-nav {
  display: flex;
  flex: 1;
  justify-content: space-between;
  gap: 80px;
}

.footer-col {
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.footer-title {
  font-weight: bold;
  color: #222;
  margin-bottom: 8px;
  display: inline-block;
  padding-bottom: 2px;
  font-size: 20px;
}

.xiahuaxian {
  /* width: 40px; */
  height: 10px;

  background: #D52729;
  border-radius: 5px 5px 5px 5px;
  margin-top: 5px;

}

.footer-col a {
  color: #999999FF;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #D52729FF;
}

.footer-bottom {
  text-align: center;
  color: #bbb;
  font-size: 15px;
  padding: 32px 0 8px 0;
  margin-top: 18px;
  border-top: 1px solid #eee;
  background: #f7f7f7;
}

.footer-bottom-line {
  width: 100%;
  height: 4px;
  background: #D52729FF;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .footer-top {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 24px 0 0 0;
  }

  .footer_icon {
    display: none;
  }

  .footer-logo {
    margin: 0 auto 18px auto;
    height: 48px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0;
    align-items: center;
    width: 100%;
  }

  .footer-col {
    align-items: center;
    margin-bottom: 18px;
  }

  .footer-title {
    font-size: 17px;
    margin-bottom: 6px;
    border-bottom-width: 3px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .footer-icon {
    position: static;
    margin: 12px auto 0 auto;
    display: flex;
    justify-content: center;
  }

  .footer-icon img {
    height: 32px;
    width: 32px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 18px 0 8px 0;
    margin-top: 0;
    /* position: absolute;
    bottom: 10px; */
  }

  .footer-bottom-line {
    height: 3px;
  }
}

.dropdown>.nav-link::after {
  content: '⌵';
  font-size: 14px;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.2s;
  /* position: relative; */
}

.dropdown:hover>.nav-link::after {
  transform: rotate(-180deg);
  transform-origin: center center;
}

/* Mobile Navigation Styles */
/* 移动端导航样式 */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 999;
  display: none;
  /* 默认隐藏 */
}

.mobile-nav-menu {
  position: fixed;
  top: -100vh;
  /* 默认隐藏，位于视口上方 */
  left: 0;
  /* 左对齐 */
  width: 100%;
  /* 全宽度 */
  height: auto;
  /* 高度由内容决定 */
  background: #fff;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
  /* 动画顶部属性 */
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.5);
  /* 调整阴影 */
  padding-top: 42px;
  /* 为关闭按钮留出空间 */
  box-sizing: border-box;
}

.mobile-nav-menu.open {
  top: 48px;
  /* 打开时向下滑动 */
}

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

.mobile-nav-list li {
  border-bottom: 1px solid #eee;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}

.mobile-nav-link .dropdown-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  font-size: 12px;
  /* Adjust size for Font Awesome icon */
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.mobile-dropdown-menu.open {
  display: block;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  background: #F4F4F4FF;
  transition: background 0.3s ease;
  /* 添加过渡 */
}

.mobile-dropdown-menu li a:hover {
  background: #D52729FF !important;
  color: #fff !important;
}

.close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #333;
  z-index: 1001;
  /* 确保关闭按钮位于菜单内容上方 */
}

@media (min-width: 769px) {

  .mobile-nav-overlay,
  .mobile-nav-menu,
  .nav-toggle {
    display: none;
    /* 在较大屏幕上隐藏移动端元素 */
  }

  .nav-list {
    display: flex;
    /* 确保桌面导航是 flex 布局 */
  }

  .nav-user {
    display: block;
    /* 确保用户图标在桌面端可见 */
  }
}

/* Mobile specific adjustments */
/* 移动端特定调整 */
@media (max-width: 430px) {
  .register-card {
    max-width: 74vw;
    padding: 0px 8vw 17px 8vw;
    margin: -21vh auto 0 auto;
    height: auto;
    /* 允许高度自适应 */
  }

  .register-card .h2 {
    font-size: 25px;
    font-weight: 700;
    color: #222;
    margin-bottom: 17px;
    text-align: center;
    margin-top: 24px;
  }

  .register-step .circle {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }

  .register-steps {
    margin-top: 24px;
  }

  .register-step .label {
    font-size: 13px;
  }

  .password-input-wrapper {
    margin-bottom: 12px;
    /* 调整外边距 */
  }
}

/* "走进公司名称"部分样式 */
.about-company {
  height: 520px;
  background-color: #D82D36FF;
  /* 红色背景 */
  padding-top: 72px;
  text-align: center;
  color: #fff;
  position: relative;
  margin-bottom: 124px;
}

.about-company .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.about-company .about-company-title {
  font-weight: bold;
  font-size: 36px;
  color: #FAFAFAFF;
  text-align: center;
  margin-bottom: 48px;
}

.about-company .about-company-text {
  font-size: 18px;
  color: #FAFAFA;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-company .view-more-button {
  width: 144px;
  height: 42px;
  background: #FAFAFA;
  font-size: 18px;
  color: #D52729;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.about-company .view-more-button:hover {
  background-color: #f0f0f0;
}

.about-company .company-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: absolute;
  bottom: -300px;
  max-width: 1200px;
}

.about-company .company-image-item {
  width: 444px;
  height: 248px;
  background-color: #eee;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-company .company-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-company .add-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .about-company{
    padding-top: 36px;
    height: 404px;
  }
  .about-company .about-company-title{
    font-weight: bold;
font-size: 25px;
margin-bottom: 18px;
  }
  .about-company .view-more-button{
    width: 104px;
height: 30px;
font-size: 14px;
  }
  .about-company .about-company-text{
    font-size: 14px;
  }
  .about-company h2 {
    font-size: 28px;
  }

  .about-company p {
    font-size: 14px;
  }

  .about-company .company-images {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .about-company .company-image-item {
    width: 80%;
    height: auto;
  }
}

/* "合作伙伴"部分样式 */
.partners {
  padding: 60px 0 0 0;
  /* background-color: #ffffff; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* border: 1px solid blue; */
}

.partners .container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 72px;
}

.partners .partners-title {
  font-size: 36px;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
}



.partners .partners-subtitle {
  font-weight: bold;
  font-size: 24px;
  color: #666666;
  margin-bottom: 30px;
  text-transform: uppercase;
  /*letter-spacing: 2px;*/
  width: 100%;
  text-align: left;
}

.partners .partners-scroll-container {
  position: relative;
  width: 100%;
  padding: 0 50px;
  margin-top: 20px;
}

.partners .partner-list {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 30px 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* border: 1px solid red; */
}

.partners .partner-list::-webkit-scrollbar {
  display: none;
}

.partners .partner-item {
  flex: 0 0 auto;
  width: 328px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: all 0.3s ease;
}

.partners .partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.partners .partner-item.bordered {
  border: 1px solid #eaeaea;
}

.partners .partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.4s ease;
}

.partners .partner-item:hover img {
  filter: grayscale(0);
}

.partners .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: none;
  color: #d52729;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.partners .scroll-btn:hover {
  background: #d52729;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.partners .scroll-left {
  left: -15px;
}

.partners .scroll-right {
  right: 0;
}

.partners .indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.partners .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0e0e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.partners .indicator.active {
  background: #d52729;
  transform: scale(1.2);
}


.partners .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.partners .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.partners input:checked+.slider {
  background-color: #d52729;
}

.partners input:checked+.slider:before {
  transform: translateX(26px);
}
.partner-list-mini{
  display: none;
}
.news-container-card-time{
    margin-top: 7px;
}
@media (max-width: 768px) {
  .partner-list-mini{
  display: flex;
  /* justify-content: space-around; */
  gap: 5%;
}
  .partners {
    padding: 40px 0;
  }

 .about-company{
  margin-bottom: 0;
 }
 .partners .container2{
  width: 100%;
  padding: 0 16px;
 }
  .partners .partners-title {
    font-size: 25px;
    margin-bottom: 2px;
    /* margin-left: 32px; */
  }

  .partners .partners-subtitle {
   font-size: 20px;
    margin-bottom: 18px;
    /* margin-left: 32px; */
  }

  .partners .partners-scroll-container {
    padding: 0 40px;
  }

  .partners .partner-list {
    display: none;
  }

  .partners .partner-item {
    width: 49%;
    height: 86px;
  }
  .partners .partner-item img{
    width: 100%;
    height: 100%;
  }

  .partners .scroll-btn {
    display: none;
  }
}

@media (max-width: 480px) {
    .partners .scroll-btn {
    display: none;
  }
  .partners .partners-scroll-container {
    /* padding: 0 35px; */
  }

}

/* 新闻 */
.news-box{
  padding-bottom: 72px;
  width: 100%;background-color: #fff;padding-top: 72px;
}
.news-container {
  max-width: 1200px !important;
  margin: 0 auto;
}

.news-container-title {
  font-weight: bold;
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;

}

.news-container-subtitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}

.news-container-subtitle-left {
  font-weight: bold;
  font-size: 24px;
  color: #666666;
}

.news-container-subtitle-right {
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  border-bottom: 4px solid #666666;
}

.news-container-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  /* 每行两个，自动换行 */
  gap: 16px;
  /* 元素之间的间距 */
}

.news-container-card {
  display: flex;
  padding: 39px 25px;
  background-color: #F4F4F4FF;
  color: #666666FF;
}

.news-container-card:hover {
  background-color: #D52729FF !important;
  color: #fff !important;
}

.news-container-card-left {
  width: 222px;
  height: 160px;
  margin-right: 8px;
  overflow: hidden;
}

.news-container-card-right {
  width: calc(100% - 222px);
}

.news-container-card-left img {
  width: 100%;
}

.news-container-card-title {
  width: 100%;
  font-weight: bold;
  white-space: nowrap;
  /* 禁止换行 */
  overflow: hidden;
  /* 隐藏溢出内容 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}

.news-container-card-time {
  font-size: 16px;
  margin-top:7px;

}

.news-container-card-text {
  font-size: 16px;
  line-height: 32px;
  margin-top: 19px;
}
@media (max-width: 768px) {
  .news-box{
    padding-top: 24px;
  }
  .news-container{
    padding: 0 16px;
  }
  .news-container-title{
    font-size: 25px;
  }
  .news-container-subtitle{
    margin-bottom: 18px;
  }
  .news-container-subtitle-left{
    font-size: 20px;
  }
  .news-container-subtitle-right{
    display: none;
  }
  .news-container-card{
    padding: 14px 12px;
  }
  .news-container-card-left{
    width: 136px;
    height:110px ;
  }
  .news-container-card-title{
    font-size: 16px;
  }
  .news-container-card-time{
    font-size: 13px;
  }
  .news-container-card-text{
    font-size: 14px;
line-height: 22px;
  }
  .news-container-card-right{
        width: calc(100% - 136px);
  }
  .footer{
    margin-bottom: 100px;
  }
}

