.banner-image::before {
	position:absolute;
	content:"";
	width:100%;
	height:100%;
	left:0;
	top:0;
	background:-webkit-gradient(linear,left top,left bottom,color-stop(80%,transparent),to(rgba(0,0,0,.5)));
	background:-webkit-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:-o-linear-gradient(top,transparent 80%,rgba(0,0,0,.8) 100%);
	background:linear-gradient(to bottom,transparent 20%,rgba(0,0,0,.8) 100%);
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
}
.banner-image img {
	width:100%;
	display:block;
	object-fit:cover;
}
 .container {
      max-width: 1600px;
      width: 100%;
      margin: 0 auto;
    }

 /* 聚焦鸿嘉利标题样式 */
    .main-title {
      text-align: center;
      margin: 30px 0;
      font-size: 3rem;
      color: #333;
    }

    /* 头条图文列表样式 */
    .headline-list {
      background-color: white;
      padding: 20px;
      margin: 20px 0;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .headline-item {
      display: flex;
      gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

    .headline-item:hover {
      background-color: #f9f9f9;
    }

    .headline-item:last-child {
      border-bottom: none;
    }

    .headline-img {
      flex: 1;
      min-width: 400px;
      max-width: 500px;
    }

    .headline-img img {
      width: 100%;
      height: auto;
      border-radius: 3px;
    }

    .headline-info {
      flex: 3;
    }

    .headline-tag {
      background-color: #93b3fc;
      color: white;
      padding: 3px 8px;
      margin-right: 10px;
      border-radius: 3px;
      font-size: 1.2em;
      display: inline-block;
    }

    .headline-title {
      margin: 0 0 10px 0;
      color: #333;
    }

    .headline-desc {
      color: #666;
      line-height: 1.6;
      margin-bottom: 10px;
      font-size: 1.2em;
    }

    .headline-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #999;
      font-size: 1.2em;
    }

    /* 新闻图文列表样式 */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

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

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

    .news-card .news-xwheader {
      padding: 15px;
      background-color: #f9f9f9;
      border-bottom: 1px solid #eee;
    }

    .news-card .news-xwheader h3 {
      margin: 0;
      color: #93b3fc;
      font-size: 1.4rem;
    }

    .news-content {
      padding: 15px;
    }

    .news-item {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      transition: background-color 0.3s ease;
    }

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

    .news-item:last-child {
      border-bottom: none;
    }

    .news-img {
      width: 180px;
      height: auto;
      flex-shrink: 0;
    }

    .news-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 3px;
    }

    .news-info {
      flex: 1;
    }

    .news-title {
      margin: 0 0 5px 0;
      font-size: 1.2em;
      color: #333;
    }

    .news-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #999;
      font-size: 1.1em;
      margin-right: 10px;
    }

    /* 按钮样式 */
    .more-btn {
      display: block;
      width: 200px;
      height: 60px;
      margin: 30px auto;
      background-color: #93b3fc;
      color: white;
      text-align: center;
      line-height: 40px;
      text-decoration: none;
      border-radius: 3px;
      padding:10px ;
      transition: background-color 0.3s ease;
      font-size: 1.4rem;
    }

    .more-btn:hover {
      background-color: #7aa7fc;
      color: #fff;
    }

    /* 响应式布局 */
    @media (max-width: 768px) {
      .xwheader-content {
        flex-direction: column;
      }

      .logopic {
        margin-bottom: 10px;
      }

      .headline-item {
        flex-direction: column;
      }

      .headline-img {
        max-width: 100%;
        margin-bottom: 15px;
      }
    }
    /*充电桩百科  */
    /* 新闻列表样式 */
  .news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(650px, 1fr));
  gap: 20px;
}
    .news-item {
      background-color: white;
      border-radius: 5px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      margin-bottom: 1rem;
    }
@media (max-width: 1200px) {
  .news-container {
    grid-template-columns: 1fr;
  }
}
    .news-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .news-content {
      padding: 15px;
    }

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

    .news-title {
      margin: 0;
      font-size: 18px;
      color: #333;
      transition: color 0.3s ease;
    }

    .news-item:hover .news-title {
      color: #93b3fc;
    }

    .news-date {
      color: #777;
      font-size: 14px;
    }

    .news-desc {
      margin: 0 0 10px 0;
      font-size: 16px;
      color: #666;
      line-height: 1.6;
    }

    .news-more {
      display: inline-block;
      color: #93b3fc;
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      position: relative;
      padding-right: 15px;
    }

    .news-more::after {
      content: '→';
      position: absolute;
      right: 0px;
      left:60px;
      transition: transform 0.3s ease;
      margin-left: 15px;
    }

    .news-more:hover::after {
      transform: translateX(3px);
    }


    /* 响应式布局 */
    @media (max-width: 768px) {
      .news-title {
        font-size: 16px;
      }

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

      .news-desc {
        font-size: 13px;
      }
    }
        /*常见问题  */
        .faq-item {
      background-color: white;
      border: 1px solid #e0e0e0;
      border-radius: 5px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px;
      background-color: #f9f9f9;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .faq-question h3 {
      margin: 0;
      font-size: 18px;
      color: #333;
    }

    .faq-question i {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .faq-answer {
      padding: 15px 15px 15px;
      display: block;
      line-height: 1.6;
      color: #666;
      font-size: 18px;
    }

    .faq-item.active .faq-answer {
      display: block;
      font-size: 18px;
      padding: 15px;
    }

    .faq-item.active .faq-question {
      background-color: #e8f0ff;
    }

    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }

    /* 响应式布局 */
    @media (max-width: 768px) {
      .faq-question h3 {
        font-size: 16px;
      }
    }