* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft Yahei", Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.8;
}

img {
    max-width: 100%;
}

/* 容器统一样式 */
.container {
    width: 1200px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
}

/* 导航菜单 锚点导航 */
.nav {
    background: #004793;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav li {
    list-style: none;
}

.nav a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding: 15px 25px;
    text-decoration: none;
    transition: 0.3s;
}

.nav a:hover {
    background: #e63946;
}

.friend-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

.friend-links .section-title {
    text-align: center;
    color: #ffffff;
    margin-top: 0;
}

/* 顶部Banner */
.top-banner {
    width: 100%;
    height: 320px;
    background: #004793;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.top-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.top-banner .sub-title {
    font-size: 22px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.top-banner .tag-line {
    font-size: 18px;
    background: #e63946;
    padding: 8px 20px;
    border-radius: 4px;
}

/* 通用板块标题 + 锚点ID对应 */
.section-title {
    text-align: center;
    font-size: 28px;
    color: #004793;
    margin: 30px 0 30px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #e63946;
    margin: 10px auto 0;
}

/* 企业简介 */
.about-box {
    padding: 0 60px 40px;
    font-size: 16px;
}

.about-box p {
    margin-bottom: 18px;
}

.about-box .img_box {
    text-align: center;
}

.about-box .contact-tip {
    font-size: 18px;
    color: #e63946;
    font-weight: bold;
    text-align: center;
    text-indent: 0;
    margin: 20px 0;
}

.idea {
    text-align: center;
    font-size: 17px;
    color: #004793;
    font-weight: 600;
    margin: 20px 0;
}

/* 核心优势 四列布局 */
.advantage-wrap {
    display: flex;
    padding: 0 40px 40px;
    gap: 20px;
}

.advantage-item {
    flex: 1;
    border: 1px solid #eee;
    padding: 25px 15px;
    text-align: center;
    transition: 0.3s;
}

.advantage-item:hover {
    border-color: #004793;
    box-shadow: 0 0 10px #ddd;
}

.advantage-item h3 {
    color: #004793;
    font-size: 20px;
    margin-bottom: 15px;
}

.advantage-item p {
    font-size: 15px;
    color: #555;
}

/* 产品系列 - 带图片布局 */
.product-wrap {
    padding: 0 40px 40px;
}

.product-group {
    margin-bottom: 40px;
}

.product-group h4 {
    color: #004793;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #ccc;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.product-item {
    width: 23.3%;
    border: 1px solid #eee;
    padding: 15px;
    text-align: center;
    transition: 0.3s;
}

.product-item:hover {
    box-shadow: 0 0 8px #ddd;
    border-color: #004793;
}

.product-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 12px;
    background: #f8f8f8;
}

.product-item p {
    font-size: 14px;
    color: #444;
}

.client-box,
.service-box,
.application-box {
    padding: 0 40px;
}

/* 企业实力 */
.power-box {
    padding: 0 60px 40px;
    font-size: 16px;
}

.power-box ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 40px;
    justify-content: center;
}

.power-box li {
    background: #f0f5fc;
    padding: 10px 20px;
    border-radius: 3px;
    color: #004793;
}

/* 底部联系栏 */
.footer {
    background: #004793;
    color: #fff;
    padding: 30px 15px;
    text-align: center;
    margin-top: 30px;
}

.footer p {
    font-size: 17px;
    margin: 10px 0;
}

.footer .hotline {
    font-size: 22px;
    color: #ffd700;
    font-weight: bold;
    margin: 15px 0;
}

.footer .copyright {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

/* 响应式适配 手机/平板 */
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }

    .product-item {
        width: 31.5%;
    }

    .product-item img {
        height: 200px;
    }

    .product-list {
        gap: 0;
    }

}

@media (max-width: 995px) {
    .product-item {
        width: 48%;
        margin-bottom: 25px;
    }

    .product-list {
        justify-content: space-between;
    }

}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav a {
        padding: 12px 10px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .top-banner .tag-line {
        font-size: 16px;
    }

    .top-banner h1 {
        font-size: 30px;
    }

    .product-wrap {
        padding: 0 20px;
    }

    .client-box,
    .service-box,
    .application-box {
        padding: 0 20px;
    }

    .top-banner .sub-title {
        font-size: 16px;
    }

    .advantage-wrap {
        flex-direction: column;
        padding: 20px;
    }

    .about-box,
    .power-box {
        padding: 0 20px;
    }

    .product-list .product-item {
        width: 48%;
    }

    .product-list .product-item img {
        height: 220px;
    }
}

@media (max-width: 468px) {
    .product-list .product-item{
        width: 100%;
    }
}




.tel {
    font-size: 22px;
    color: #ffd700;
    font-weight: bold;
    margin: 15px 0;
    text-decoration: none;
}

/* 移动端浮动电话按钮 */
.float-call {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 999;

}

.float-call a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #e63946;
    color: #fff;
    font-size: 28px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    animation: callPulse 2s infinite;



}



/* 文章详情 */

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img{
  max-width: 100%;
}

.section_news .mains .mains_fr_box ul {
  padding: 0;
}

.section_news {
  padding: 55px 0;
}

.phone_medile {
  display: none;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
  background-color: #0069e6;
  padding: 15px 20px;
  position: fixed;
  bottom: 26px;
  left: 50%;
  width: 80%;
  transform: translate(-50%, 10px);
  border-radius: 330px;
}

.phone_medile img {
  width: 20px;
  vertical-align: middle;
  margin-right: 5px;
}

.section_news .mains {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.section_news .mains .mains_fl_box {
  flex: 1;
  padding: 20px 25px;
  background-color: #ffffff;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section_news .mains .mains_fr_box {
  width: 25%;
}

.box_page_line {
  padding: 15px;
  background: #e5ebff;
  border-radius: 10px;
}

.box_page_line .line {
  color: #333333;
  line-height: 1.5;
  font-size: 14px;
}

.box_page_line .line img {
  width: 18px;
}

.section_news .main_box {
  padding: 20px 25px;
  background-color: #ffffff;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section_news .main_content {
  margin: 25px 0;
}

.main_content .title {
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
}


.custom-html-style table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
}

.custom-html-style table th {
    text-align: center !important;
    padding: 12px 14px;
    white-space: nowrap;
    background-color: #f5f5f5;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.custom-html-style table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
}


.custom-html-style ol,
.custom-html-style ul {
    line-height: 28px;
    padding: 0;
}

.custom-html-style li {
    margin-bottom: 8px;
    line-height: 1.7;
    text-indent: 30px;
    list-style: none;
}

.custom-html-style p strong,
.custom-html-style li strong {
    font-weight: 400;
}


.custom-html-style table tbody tr:nth-child(even) {
    background-color: #fafafa;
}


.custom-html-style table tbody tr:hover {
    background-color: #f0f7ff;
}

.custom-html-style table td strong {
    font-weight: 400;
}

.main_content .custom-html-style img {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.main_content .title h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
}

.main_content .title .time {
  color: #999;
  text-align: center;
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
}

.mains .mains_fr_box .box_detail_title {
  color: #204c41;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
  align-items: center;
  width: 100%;
  height: 36px;
  padding-left: 6px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  position: relative;
  margin-bottom: 10px;
}

.mains .mains_fr_box .box_detail_title::before {
  content: "";
  background-color: #204c41;
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.main_content .custom-html-style p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 2;
  text-indent: 30px;
}

.main_content .custom-html-style h1 {
  border: none;
  margin: 25px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.main_content .custom-html-style h2 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}

.main_content .custom-html-style h3 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}

.main_content .custom-html-style h4 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}


.main_content .custom-html-style h5 {
  border: none;
  margin: 20px 0;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-indent: 30px;
}

.main_content .custom-html-style em {
  font-style: normal;
}

.main_content .custom-html-style strong {
  font-weight: 400;
}

.main_content .custom-html-style p {
  margin: 10px 0;
  font-size: 16px;
  line-height: 2;
  text-indent: 30px;
}

@media (max-width: 768px) {
  .section_news .mains{
    flex-direction: column;
  }
  .section_news .mains .mains_fr_box{
    width: 100%;
  }
}