/* 公司简介区域样式 */
.s_jj_bg {
  background: url(../images/img2.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
  margin-top: 30px;
  position: relative;
}

.s_jj_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.s_jj_box {
  max-width: var(--view-width);
  width: 90%;
  height: auto;
  background-color: rgba(36, 134, 212, 0.8);
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

.s_jj_box .s_jj_p1 {
  font-size: 28px;
  color: white;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 0;
}

.s_jj_box .s_faq-content {
  width: 100%;
  margin: 0 auto;
}

.s_jj_box .s_faq-content p {
  font-size: var(--main-font-size);
  color: white;
  line-height: 30px;
  text-align: justify;
}

.s_jj_box .s_faq-content p a {
  color: white !important;
}

.s_jj_box .s_jj_p2 {
  font-size: var(--main-font-size);
  color: white;
  text-align: right;
  padding-top: 15px;
  margin-top: 15px;
  display: block;
  margin-right: 20px;
}

.s_jj_box .s_jj_p2 a {
  color: white !important;
  font-weight: bold;
}

/* 产品更多按钮样式 */
.s_pro_more {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.s_pro_more p {
  margin: 0;
  padding: 5px;
  border: 2px solid var(--first-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.s_pro_more p a {
  display: inline-block;
  padding: 10px 50px;
  background-color: var(--first-color);
  color: white !important;
  font-weight: bold;
  transition: all 0.3s ease;
}

.s_pro_more p:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(36, 134, 212, 0.3);
  animation: pulse 0.6s ease-in-out;
}

.s_pro_more p:hover a {
  background-color: var(--second-color);
}

@keyframes pulse {
  0% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
  100% {
    transform: translateY(-2px) scale(1);
  }
}

/* 博客区域样式 */
.s_xw_box {
  max-width: var(--view-width);
  width: 90%;
  margin: 30px auto 0;
  padding: 40px 20px;
}

.s_xw_box .s_xw_p1 {
  font-size: var(--product-title-font-size);
  color: var(--first-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  padding: 0;
}

.news-box {
  width: 100%;
}

.news-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey-color);
  padding: 20px 0;
  transition: all 0.3s ease;
}

.news-item:hover {
  background-color: #f8f9fa;
}

.news-item img {
  width: 90px;
  height: 50px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--first-color);
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 0;
}

.s_xw_tip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 70px);
}

.s_xw_nr {
  flex: 1;
}

.s_xw_nr .s_xw_p2 {
  font-size: var(--product-subtitle-font-size);
  color: black;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 0;
}

.s_xw_nr .s_xw_p3 {
  font-size: var(--main-font-size);
  color: var(--content-font-grey-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.s_xw_time {
  text-align: right;
  min-width: 100px;
}

.s_xw_time .s_xw_p4,
.s_xw_time .s_xw_p5 {
  text-align: center;
  font-size: 16px;
  color: var(--content-font-grey-color);
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.s_xw_line2 {
  width: 40px;
  height: 2px;
  background-color: var(--first-color);
  margin: 5px auto;
}

.s_xw_more {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.s_xw_more p {
  margin: 0;
  padding: 5px;
  border: 2px solid var(--first-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.s_xw_more p a {
  display: inline-block;
  padding: 10px 50px;
  background-color: var(--first-color);
  color: white !important;
  font-weight: bold;
  transition: all 0.3s ease;
}

.s_xw_more p:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(36, 134, 212, 0.3);
  animation: pulse 0.6s ease-in-out;
}

.s_xw_more p:hover a {
  background-color: var(--second-color);
}

/* 响应式布局 - 789px 公司简介和博客区域 */
@media (max-width: 789px) {
  .s_jj_bg {
    padding: 40px 0;
    margin-top: 20px;
  }

  .s_jj_box {
    padding: 20px 15px;
  }

  /* 博客区域响应式 - 789px */
  .s_xw_box {
    padding: 20px 15px;
  }

  .s_xw_box .s_xw_p1 {
    font-size: 24px; /* 调整为适合移动设备的标题大小 */
    margin-bottom: 20px;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 0;
  }

  .news-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 18px;
  }

  .s_xw_tip {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .s_xw_nr .s_xw_p2 {
    font-size: 18px;
  }

  .s_xw_time {
    text-align: left;
    margin-top: 10px;
    min-width: auto;
  }

  .s_xw_line2 {
    display: none;
  }

  .s_xw_more p a {
    padding: 8px 30px;
  }

  /* 公司承诺区域响应式 - 789px */
  .s_gg_bg {
    padding: 40px 0;
    margin-top: 20px;
  }

  .s_gg_box {
    padding: 20px 15px;
  }

  .s_gg_p1 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .s_gg_p3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .s_gg_p4 {
    font-size: 14px;
    line-height: 24px;
  }

  /* 联系我们区域响应式 - 789px */
  .s_lx_box {
    flex-direction: column;
    padding: 20px 15px;
  }

  .s_lx_left {
    flex: 1;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .s_lx_right {
    width: 100%;
  }

  .s_lx_right h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  .contact_us_block {
    padding: 20px;
  }

  .contact_us_title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
  }

  .contact_us_row {
    flex-direction: column;
  }

  .contact_us_row .label {
    flex: 1;
    margin-bottom: 5px;
  }

  .contact_us_row .value {
    padding-left: 0;
  }

  .s_jj_box .s_jj_p1 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .s_jj_box .s_faq-content p {
    font-size: 14px;
    line-height: 26px;
  }
}

/* 公司承诺区域样式 */
.s_gg_bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 80px 0;
  margin-top: 30px;
  position: relative;
}

.s_gg_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

.s_gg_box {
  max-width: var(--view-width);
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.s_gg_p1 {
  font-size: 55px;
  color: white !important;
  font-weight: bold;
  margin-bottom: 15px;
}

.s_gg_p3 {
  font-size: 30px;
  color: white !important;
  margin-bottom: 15px;
}

.s_gg_p4 {
  font-size: 22px;
  color: white !important;
  text-align: left;
}

/* 联系我们区域样式 */
.s_lx_box {
  background-color: white;
  max-width: var(--view-width);
  width: 90%;
  margin: 30px auto 80px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}

.s_lx_left {
  flex: 0 0 35%;
  margin-right: 40px;
}

.s_lx_pic {
  width: auto;
  height: auto;
  border-radius: 8px;
}

.s_lx_right {
  flex: 1;
}

.s_lx_right h1 {
  font-size: var(--product-title-font-size);
  color: var(--first-color);
  margin-bottom: 25px;
  font-weight: bold;
}

.contact_us_box.index_contact_us_box {
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.contact_us_block {
  background-color: var(--page-common-bg-color);
  padding: 30px;
  border-radius: 8px;
}

.contact_us_title {
  font-size: var(--product-subtitle-font-size);
  color: var(--first-color);
  font-weight: bold;
  margin-bottom: 20px;
}

.contact_info_lists {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact_us_row {
  display: flex;
  align-items: flex-start;
}

.contact_us_row .label {
  flex: 0 0 20%;
  font-weight: bold;
  color: var(--content-font-grey-color);
}

.contact_us_row .value {
  flex: 1;
  color: black;
  font-size: var(--main-font-size);
}

.contact_us_row a {
  color: var(--first-color) !important;
  transition: color 0.3s ease;
}

.contact_us_row a:hover {
  color: var(--second-color) !important;
  text-decoration: underline;
}

/* 响应式布局 - 790px-1366px 公司简介和博客区域 */
@media (min-width: 790px) and (max-width: 1366px) {
  .s_jj_box {
    width: 95%;
  }

  /* 博客区域响应式 - 790px-1366px */
  .s_xw_box {
    width: 95%;
  }

  .s_xw_box .s_xw_p1 {
    font-size: 28px; /* 调整为适合平板设备的标题大小 */
  }

  .news-item img {
    width: 45px;
    height: 45px;
  }

  .s_xw_nr .s_xw_p2 {
    font-size: 20px;
  }

  /* 公司承诺区域响应式 - 790px-1366px */
  .s_gg_box {
    width: 95%;
  }

  .s_gg_p1 {
    font-size: 28px;
  }

  .s_gg_p3 {
    font-size: 20px;
  }

  /* 联系我们区域响应式 - 790px-1366px */
  .s_lx_box {
    width: 95%;
  }

  .s_lx_left {
    margin-right: 30px;
  }

  .s_lx_right h1 {
    font-size: 28px;
  }

  .contact_us_title {
    font-size: 20px;
  }
}
