/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:"微软雅黑", 'Microsoft YaHei', sans-serif;
}

body {
  background-color: #ccc;
  color: #333;
  line-height: 1.6;
  padding:0px;
  margin:0px;
  min-width:1002px;
  
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* 头部样式 */
.header {

   width: 1002px; background:url(../images/topbj.jpg) top center no-repeat; margin:0 auto; background-size:100%;
 
}
.links-container a{ margin-left:10px;}
.header-banner {
 
  background-size: contain;
  height: 150px;
  display: flex;
  max-width:1920px;
  align-items: center;
  padding: 0 70px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
	max-width:100%;
  object-fit: cover;
  width:700px;
  
}

.company-name {
  color: #d81e06;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* 导航栏样式 */
.navigation {
	background:url(../images/dhbj.jpg);
  width: 100%;
  height: 52px;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  height: 100%;
}

.nav-item {
  display: flex;
  align-items: center;
  color: white;
  padding: 0 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size:16px;
  background:url(../images/dhline.png) right no-repeat;
}
.line{ height:14px; width:100%; background:url(../images/dhbbj.png) repeat-x;}

.nav-item:hover {
  background-color: #7a1e0e;
}

/* 主要内容样式 */
.main-content {
  display: flex;
  padding: 10px;
  max-width:1002px;
  margin: 0 auto;
  padding-bottom:0px;
  background:#FFF;
}

.sidebar {
  width: 230px;
  margin-right: 10px;
}

.content-area {
  flex: 1;
  width:750px;
}

/* 侧边栏样式 */
.sidebar-box {
  border: 1px solid #f2bf64;
  margin-bottom: 10px;
  background:#fefaee;
  border-radius:5px 5px 0 0;
}

.sidebar-title {
  background-color: #c91c1c;
  color: white;
  padding: 10px;
  font-size: 18px;
  text-align:center;
  border-radius:5px;
  display:flex;
  flex-wrap: wrap;
    align-items: center;
	gap:10px;
}

.sidebar-content {
  padding: 10px;
  padding-bottom:0px;
 
}
.sidebar-title img{ height:30px; }
.aboutus{ line-height:30px; height:269px; background:url(../images/aboutbj.jpg) bottom no-repeat;}

.product-category-list li {
  border-bottom: 1px dashed #ddd;
  padding: 5.5px 0;
}

.product-category-list li:before {
  content: "• ";
  color: #c91c1c;
}

/* 滑块样式 */
.slider {
  width: 100%;
  height: 320px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slider-image {
  position: absolute;
  width: 100%;

  opacity: 0;
  transition: opacity 0.6s ease;
}

.slider-image.active {
  opacity: 1;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #c91c1c;
  width:25px;
  height:10px;
  border-radius: 5px;
}
/* 内容区块样式 */
.section {
  margin-bottom: 0px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  padding-bottom:6px;

  border-bottom: 5px solid #c20114;
  background:url(../images/ttbj.png) 5px 5px no-repeat #faebc0;
}

.section-title {
  color: #c91c1c;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-left:30px;
  margin-top:10px;
}

.more-link {
  color: #999;
  font-size: 14px;
  margin-top:10px;
 
}
.more-link img{ width:50px;}

.section-content {
  padding: 15px;
  border: 1px solid #f5bb69;
  border-top: none;
  background:#fefaee;
}
.section-content p{ text-align:center;}

/* 新闻列表样式 */
.newsbox{ display:flex; gap:10px;}
.newsbox .section{ width:370px;}
.news-list li {

  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  overflow:hidden;

}

.news-list li:before {
  content: "• ";
  color: #c91c1c;
  float:left;
  margin-right:5px;
}
.news-list li span{
	display:block;
	float:left;
	 width: 250px; /* 容器宽度 */
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏溢出的内容 */
  text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
  font-size:14px;
	}

.news-list li span.news-date {
  color: #999;
  float:right;
  width:auto;
  font-size:12px;
}

/* 服务流程 */
.process-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.process-step {
  width: 120px;
  text-align: center;
  margin-bottom: 15px;
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.process-text {
  margin-top: 8px;
  font-size: 14px;
}
.xxkh{ margin-bottom:0px;}

/* 客户展示 */
.customer-grid {
  display: flex;
  flex-wrap: wrap;
}
.xxkh h3,.xskh h3{    display: flex;
    justify-content: center;
    align-items: center;}

.customer-item {
  width: 46px;

  margin: 5px;
  margin-right:18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-icon {
  max-width: 100%;
  max-height: 100%;
}
.mrt15{ margin-top:10px;}
.dztp .sidebar-title img{ margin-bottom:0px;}
.dztp{ padding-bottom:15px;}
.dztp img{ margin-bottom:0px; max-width:100%; line-height:0px;}
.dztp h4{ text-align:center; margin-bottom:10px;}
.dztp p{ font-size:16px; margin-top:9px;}
/* 页脚样式 */
.footer {
  background-color: #f5f5f5;
  width:1002px;
  margin:0 auto;

}

.footer-links {
	display:flex;
  justify-content: center;
  padding: 15px 15px;
  border-bottom: 1px solid #ddd;
  background:#a32f00;
  color:#FFF;
  font-size:14px;
  width:100%;
  position:relative;
}
.more{ position:absolute; right:0; top:15px; right:20px; cursor:pointer;}
.morelink{ display:none;}


.morelink.active {
  display: block; /* 显示时使用block或其他合适值 */
}
.footer-title {
    display: inline-flex;
	float:left;
	 justify-content: center;
	margin-right:8px;
    vertical-align: middle; /* 保证外层span在父容器中的垂直对齐 */
	width:100px;
	align-items: center;
}
.linkgundong{ width:800px; overflow:hidden;}

.footer-title img {
    width: 20px;  /* 统一图标尺寸 */
    height: 20px;
	margin-right:8px;
    object-fit: contain;  /* 保持图标比例 */
}

.footer-link {
  margin: 0 15px;
  font-size: 14px;
  color: #fff;
}

.footer-info {
  max-width: 100%;
  margin: 0px auto;
  display: flex;

  align-items: center;
  background:url(../images/footbj.jpg);
  justify-content: center;
  padding:30px 0;
  border-bottom:2px solid #c5b1a7;
  background-size:100%;
  gap:30px;
}
.fname,.ftel,.company-info,.contact-info{ align-items: center;}
.fname{ margin-left:10px;}
.fname img{ width:300px;}
.ftitle img{ width:30px;}
.ftel h3{ font-size:36px; font-style:italic; font-weight:bold; color:#000;}
.company-info {
  font-size: 12px;
  color: #000;
}

.contact-info {
  display: flex;
  align-items: center;
  text-align:center;
}
.contact-info p{ margin-right:10px; font-size:12px;}
.ftitle{ color:#c91c1c; font-weight:bold; font-size:18px; display:flex; align-items: center; gap:10px;}
.qr-code {
  width: 80px;
  height: 80px;

}

.copyright {
  text-align: center;
  font-size: 14px;
  color: #000000;
  padding: 20px 0;


}
.copyright p,.copyright p a{ display:flex;     justify-content: center; gap:15px;
    align-items: center;}
.copyright p a{gap:5px;}
.copyright p img{ width:15px;}

/* 横幅图片 */
.banner-image {
  width: 100%;
  margin: 10px 0;
  margin-bottom:3px;
}

/* 定制服务横幅 */
.custom-service-banner {
  width: 100%;
  height: 60px;
  background-color: #fbecc1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #c91c1c;
  letter-spacing:10px;
  font-size: 20px;
  font-weight:bold;

  border-bottom:5px solid #c91c1c;
}
.custom-service-banner img{ height:30px;}

.service-table {
  width: 100%;
  border-collapse: collapse;
  display:flex;
  margin-top:15px;
}
.service-table img{ max-width:100%;}
.service-table .ywfw{ width:50%; border-right:2px dashed #589d4a;}
.service-table .ywfw h3{ text-align:center; color:#c91c1c; margin-bottom:5px;}
.service-table .ywfw ul li{ float:left; width:33.333%; text-align:center;  margin-bottom:3px; background:url(../images/ywbj.jpg) center center no-repeat; background-size:100%;}
.service-table .sclc{ width:50%; text-align:center;}
.service-table .sclc h3{ text-align:center; color:#c91c1c; margin-bottom:5px;}
.service-table .sclc img{ max-width:96%;}

.service-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

.vertical-line {
  width: 1px;
  background-color: #ddd;
  height: 100%;
}

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.flow-step {
  width: 120px;
  text-align: center;
}

.flow-arrow {
  width: 30px;
  height: 30px;
  background-image: url('images/arrow-right.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

 .float-service {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: none;
            transition: 0.3s;
			background:url(../images/kfbj.png);
			background-size:cover;
			width:120px; height:531px;
			padding-top:120px;
        }
 .float-service hr{ width:80%;  border-top:1px solid #5f1013; margin:0 auto;}
        .float-service.show {
            display: block;
        }

        /* 客服选项容器 */
        .service-item {
            position: relative;
            width: 90%;
			text-align:center;
			margin:8px auto;
            cursor: pointer;
		
			
            align-items: center;
            justify-content: center;
            transition: 0.3s;
			
        }

        .service-item:hover {
          
            transform: translateX(-5px);
        }

        /* 悬浮提示框 */
        .service-tip {
            position: absolute;
            left: -160px;
            top: 50%;
            transform: translateY(-50%);
            width: 180px;
            padding: 15px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .service-item:hover .service-tip {
            opacity: 1;
            visibility: visible;
            left: -190px;
        }

        /* 二维码样式 */
        .qrcode {
            width: 100%;
            height: auto;
            margin-bottom: 0px;
        }

        /* 电话号码 */
        .phone-number {
            font-size: 16px;
            color: #333;
            text-align: center;
            white-space: nowrap;
        }

        /* 文字竖排 */
        .vertical-text {
       
  
            font-size: 14px;
            color: #333;
			text-align:center;
        }

        /* 图标样式 */
        .service-item i {
            font-size: 20px;
            margin: 8px 0;
            color: #666;
			width:35px;
			display:flex;
			justify-content: center;
			margin:0 auto;
        }
		.service-item i img{ width:100%;}

        /* 返回顶部 */
        .back-top {
            width: 100px;
            height:75px;
			margin:0 auto;
			margin-top:40px;   
            cursor: pointer;
			text-align:center;
        }
		.back-top i{width:35px;
			display:flex;
			justify-content: center;
			margin:0 auto;}
		.back-top i img{ width:100%;}
		.slider-container {
  position: relative;
  max-width: 800px;
  margin: 0rem auto;
  margin-left:30px;
}

.slider-viewport {
  overflow: hidden;
}

.slider-items {
  display: flex;
  transition: transform 0.3s ease;
  gap: 0px;
}

.slider-item {
  flex: 0 0 calc(16.666% - 0px);
  padding: px;
  text-align: center;

  border-radius: 4px;
  text-decoration: none;
  color: #fff;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.2);
  color: white;
  border: none;
  width:30px;
  height:30px;
  text-align:center;
  line-height:30px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: -35px; }
.next { right: -35px; }

/*品牌文化*/
.location{ background:#f8efdc; color:#f8efdc; border:1px solid #dfbf7a; color:#333333; padding:5px 0; font-size:12px;}
.location span{font-weight:bold; margin-left:15px;}
.content{ padding:5px; padding-bottom:20px;}
.content h2{ border-left:4px solid #dfbf7a; padding-left:5px; margin-bottom:20px; margin-top:20px; font-size:20px;}
.content h3{ margin-top:15px; font-size:18px;}

/*联系我们*/
.contact h3,.contact p{ display:flex; align-items: center; gap:5px; margin-bottom:15px;}
.contact h3 img,.contact p img{ width:30px;}