@charset "utf-8";

/* ————————————————————————————首页标题样式———————————————————————————— */
.title_name {
  position: relative;
  height0: 45px;
}
.title_name h2 {
  position: relative;
  font-size: 38px;
  font-weight: normal;
  color: #333;
   padding-bottom: 12px;
}
.title_name h3 {
  padding-top: 4px;
  font-size: 18px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
.title_name a.more-btn {
  margin-bottom: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right0: 20px;
  width: 160px;
  height: 50px;
  border: 1px solid #dddddd;
  border-radius: 22px;
  box-sizing: border-box;
  background: none;
  background-: url("../img/arrow.png") no-repeat right 32px center #f8f8f8;
  color: #000;
  line-height: 45px;
  text-align: center;
}
.title_name a:hover.more-btn {
  color: #fff;
  background: #015bac;
  border: 1px solid #dedede;
}
@media(max-width:768px) {
.title_name h2 {
  position: relative;
  font-size: 25px;
  font-weight: normal;
  color: #333;
   padding-bottom: 0px;
}
.title_name h3 {
  padding-top: 4px;
  font-size: 12px;
  font-weight: normal;
  color: #999;
  text-transform: uppercase;
}
}
.index_tit {
  position: relative;
}
.index_tit h2 {
  font-size: 15px;
  font-weight: normal;
  color: #999999;
  text-transform: uppercase;
  padding-left:3px;
}
.index_tit h3 {
  position: relative;
  padding: 0px 0 0px;
  font-size: 28px;
  color: #2e9c09;
}
.index_tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 0px;
  background: #2e9c09;
  content: "";

}
.index_tit a.more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px 15px 8px 15px;
  border: 1px solid #cccccc;
  border-radius: 50px;
  font-size: 16px;
  color: #2e9c09;
}
.index_tit a:hover.more-btn {
  border: 1px solid #2e9c09;
  color: #2e9c09;
}
@media only screen and (max-width: 1024px) {

  .index_tit h2 {
    font-size: 12px;
  }
  .index_tit h3 {
    padding: 4px 0 0px;
    font-size: 24px;
  }
  .index_tit h3:after {
    width: 80px;
    height: 0px;
  }
  .index_tit a.more-btn {
    padding: 6px 6px 6px 12px;
  }
 
   }
/* ————————————————————————————首页查看更多按钮通用———————————————————————————— */
        .index_more_w {
            margin: 0;
            display: flex;
			text-align:center;
            justify-content: center;
            align-items: center;
			 background: #f8f8f8;
    
        }
            .index_more {
            text-align:center;
            padding: 12px 30px;
            border-radius: 50px;
			margin: 20px 0px 40px 0px;  
            border: 1px solid #015bac;
            background: transparent;
            color: #015bac;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            
            /* 移动端适配 */
            font-size: clamp(17px, 3vw, 16px);
            white-space: nowrap;
        }

        /* 悬停动画效果 */
        .index_more:hover {
            background: #015bac;
            border-color: #015bac;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
        }


        /* 移动端优化 */
        @media (max-width: 480px) {
            .index_more {
                padding: 8px 24px;
                border-radius: 24px;
            }
        }

        /* 点击效果 */
        .index_more:active {
            transform: translateY(1px);
            transition-duration: 0.1s;
        }
/* ————————————————————————————首页优势3个部分———————————————————————————— */
        .ind_advantage-container {
            margin: 0 auto;
            padding: 50px 0px 50px 0px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .ind_advantage-item {
            flex: 1 1 300px;
            background: #f5f5f5;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .ind_advantage-item img {
            width: 80px;
            height:80px;
            margin-bottom: 15px;
        }

        .ind_advantage-item h3 {
            color: #000;
            font-size: 32px;
            margin: 10px 0;
        }
        .ind_advantage-item h3 a{
            color: #000;
            font-size: 25px;
            margin: 20px 0;
        }
        .ind_advantage-item p {
            color: #333;
            font-size: 16px;
            line-height: 1.8;
        }

        .ind_advantage-hover-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0px;
            background: rgba(0,0,0,0.8);
            color: white;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .ind_advantage-hover-btn {
            display: inline-block;
            padding: 10px 20px;
            background: #4CAF50;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 25%;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .ind_advantage-item:hover .ind_advantage-hover-content {
            opacity: 1; color: white;
        }

        .ind_advantage-item:hover .ind_advantage-hover-btn {
            transform: translateY(0); color: white;background: #2e9c09;
            opacity: 1;
        }

        @media (max-width: 768px) {
			.ind_advantage-container {
            margin: 0 auto;
            padding: 30px 0px 30px 0px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
            .ind_advantage-item {
                flex: 1 1 100%;
            }
        }
		
/* ————————————————————————————首页产品滚动———————————————————————————— */

        .index_pro_roll-container {
  
            margin: 0 auto;
            padding: 0px 0px;
            position: relative;
        }

        /* 轮播主体 */
        .index_pro_roll-slider {
            overflow: hidden;
            position: relative;
            border-radius: 12px;
        }

        /* 箭头样式 */
        .index_pro_roll-arrow {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }

        .index_pro_roll-arrow:hover {
            background: rgba(255,255,255,1);
            transform: translateY(-50%) scale(1.1);
        }

        .index_pro_roll-prev {
            left: 25px;
        }

        .index_pro_roll-next {
            right: 25px;
        }

        .index_pro_roll-arrow::after {
            content: '';
            width: 12px;
            height: 12px;
            border: 5px solid #2e9c09;
            border-width: 2px 2px 0 0;
        }

        .index_pro_roll-prev::after {
            transform: rotate(-135deg);
            margin-left: 3px;
        }

        .index_pro_roll-next::after {
            transform: rotate(45deg);
            margin-right: 3px;
        }

        /* 轮播内容 */
        .index_pro_roll-slide-list {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .index_pro_roll-slide-item {
            flex: 0 0 25%;border: solid 1px #eeeeee;
            padding: 12px;
            box-sizing: border-box;
            position: relative;
        }

        /* 图片容器 */
        .index_pro_roll-image-box {
            position: relative;
            overflow: hidden;
            border-radius: 2px;
            aspect-ratio: 1/1;
        }

        .index_pro_roll-image-link {
            display: block;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .index_pro_roll-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        /* 悬停效果 */
        .index_pro_roll-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            color: white;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            pointer-events: none;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-hover {
            display: flex;
            animation: index_pro_roll_shine 0.8s;
        }

        .index_pro_roll-image-box:hover .index_pro_roll-image {
            transform: scale(1.08);
        }

        @keyframes index_pro_roll_shine {
            0% { opacity: 0; }
            50% { opacity: 1; }
            100% { opacity: 0; }
        }

        /* 标题样式 */
        .index_pro_roll-title {
            background: #f8f8f8;
            padding: 15px 10px;
            text-align: center;
            margin-top: -4px;
            transition: all 0.3s ease;
            border-radius: 0 0 8px 8px;
        }

        .index_pro_roll-title a {
            color: #333;
            text-decoration: none;
            font-size: 16px;
            line-height: 1.4;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title {
            background: #2e9c09;
        }

        .index_pro_roll-slide-item:hover .index_pro_roll-title a {
            color: white;
        }

        /* 导航圆点 */
        .index_pro_roll-dots {
            display: flex;
            justify-content: center;
            padding: 25px 0 15px;
            gap: 10px;
        }

        .index_pro_roll-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .index_pro_roll-dot.active {
            background: #2e9c09;
            transform: scale(1.2);
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .index_pro_roll-slide-item {
                flex: 0 0 100%;
            }
            
            .index_pro_roll-arrow {
                display: none;
            }
            
            .index_pro_roll-container {
                padding: 20px 15px;
            }
        }


/* ————————————————————————————首页关于我们和实力数字———————————————————————————— */

        .index_about_container {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),url('../img/bg_about.jpg') center/cover fixed;
            padding: 0px 0px;
            min-height: 80vh;
            display: flex;
            flex-wrap: wrap;
            font-family: 'Arial', sans-serif;
        }

        .index_about_left {
            width: 65%;
			padding-top: 5%;
			padding-left: 5%;
            padding-right: 30px;
            box-sizing: border-box;
        }

        .index_about_right {
			padding-top: 5%;
			padding-bottom: 5%;
            width: 35%;
			padding-right: 5%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .index_about_title {
            font-size: 36px;
            color: #fff;
			font-weight: bold;
            margin-bottom: 20px;
        }

        .index_about_divider {
            border: 0;
			width: 100px;
            height: 2px;
            background: #fff;
            margin: 20px 0;
        }

        .index_about_desc {
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 30px;
        }

        .index_about_button {
            padding: 12px 35px;
            background: #2e9c09;
            color: white;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .index_about_button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .index_about_item {
            background: rgba(76, 175, 80, 0.7);
            padding: 25px;
            border-radius: 10px;
            color: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 150px;
        }

        .index_about_item i {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .index_about_number {
            font-size: 3em;
            font-weight: bold;
            position: relative;
            margin: 10px 0;
        }

        .index_about_item h3 {
            font-size: 24px;
            color: white;
			 font-weight: normal;
        }
        .index_about_unit {
            font-size: 0.5em;
            vertical-align: super;
			 font-weight: normal;
            margin-left: 10px;
        }

        @media (max-width: 768px) {
            .index_about_left {
                width: 100%;
				padding-top: 30px;
                padding-right: 5%;
            }
            .index_about_right {
                width: 100%;
                padding-right: 0;
            }
            .index_about_right {
                grid-template-columns: 1fr;
                margin-top: 30px;
            }

            .index_about_title {
                font-size: 2em;
            }
        }





/* ————————————————————————————首页新闻左1右4———————————————————————————— */

.index_news-head .am-title{ float:left;}
.index_news-head .hd{ float:right; padding-top:50px;}
.index_news-head .hd ul li{ display:inline-block; padding:0 15px;}
.index_news-head .hd ul li a{ display:block; padding:8px 30px; border-radius:30px; border:1px solid #eee;}
.index_news-head .hd ul li a:hover,.index_news-head .hd ul li.on a{ border-color:#2e9c09; color:#2e9c09;}
.index_news-head .more{ float:right; margin-left:17%; padding-top:50px;}
.index_news-head .more a{ display:inline-block; padding:8px 0; color:#333;}
.index_news-head .more a img{ margin-right:8px; transition:all .3s linear; }
.index_news-head .more a:hover img{ transform:translateX(6px)}

.index_news .bd{ margin-top:40px;}
.index_news .bd .inews-left{ width:50%; float:left;}
.index_news .bd .inews-left a{ display:block;}
.index_news .bd .inews-left a .img{ position:relative; border-radius:10px; overflow:hidden;}
.index_news .bd .inews-left a .img i{ display:block; height:350px; background-position:center; background-repeat:no-repeat; background-position:center; transition:all .3s linear;}
.index_news .bd .inews-left a:hover .img i{ transform:scale(1.05)}
.index_news .bd .inews-left a .img .date{ position:absolute; right:0; bottom:0; z-index:11; background:#2e9c09; color:#fff; padding:6px 20px; font-size:24px; border-radius:10px 0 0 0;font-family: Bahnschrift,Arial, Helvetica, sans-serif;}
.index_news .bd .inews-left a .tit{ font-size:20px; font-weight:bold; color:#333; margin:15px 0 10px 0;}
.index_news .bd .inews-left a .note{text-align: justify;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;overflow: hidden; font-size:14px; color:#666; line-height:1.8; margin-bottom:10px;}
.index_news .bd .inews-left a .more { color:#2e9c09; font-size:14px;}
.index_news .bd .inews-left a .more i{ width:24px; height:24px; line-height:22px; text-indent:1px; text-align:center; display:inline-block; border-radius:50%; border:1px solid #8d8d8d; color:#8d8d8d; margin-right:10px;}

.index_news .bd .inews-right{ width:46%; float:right;}
.index_news .bd .inews-right ul li{ border-bottom:1px solid #e5e5e5;}
.index_news .bd .inews-right ul li:first-child{ border-top:1px solid #e5e5e5;}
.index_news .bd .inews-right ul li a{ display:block; padding:26px 0; position:relative; padding-right:60px;}
.index_news .bd .inews-right ul li a i{width:24px; height:24px; line-height:22px; text-indent:1px; text-align:center; display:inline-block; border-radius:50%; border:1px solid #8d8d8d; color:#8d8d8d; position:absolute; right:20px; top:50%; transform:translateY(-50%); transition:all .3s linear;}
.index_news .bd .inews-right ul li a:hover i{ right:0;}
.index_news .bd .inews-right ul li a .date{ font-size:18px; color:#a6a6a6;font-family: Bahnschrift,Arial, Helvetica, sans-serif;}
.index_news .bd .inews-right ul li a .tit{overflow: hidden;text-overflow:ellipsis;white-space: nowrap; margin-top:18px;}
@media screen and (max-width:1024px){
.index_news-head .am-title{ float:none;}
.index_news-head .more{ display:none;}
.index_news-head .hd{ float:none; padding-top:20px; text-align:center;}
.index_news-head .hd ul li a{ padding:6px 20px; font-size:14px;}
.index_news-head .hd ul li{ padding:0 5px;}
.index_news .bd .inews-left{ width:100%; float:none;}
.index_news .bd .inews-right{ width:100%; float:none; margin-top:15px;}
.index_news .bd .inews-left a .img i{ height:200px;}
.index_news .bd{ margin-top:20px;}
.index_news .bd .inews-left a .img .date{ font-size:14px;}
.index_news .bd .inews-left a .tit{ font-size:14px; margin:8px 0;}
.index_news .bd .inews-left a .note{ font-size:12px;}
.index_news .bd .inews-right ul li a{ padding:10px 0; padding-right:30px;}
.index_news .bd .inews-right ul li a .tit{ font-size:14px; margin-top:6px;}
.index_news .bd .inews-right ul li a .date{ font-size:14px;}
.index_news .bd .inews-right ul li a i{ right:0; opacity:.5; transform: translateY(-50%) scale(.6)}
}
/* ————————————————————————————首页底部版权———————————————————————————— */

        .index_foot {
            background: #333;
            color: #fff;
        }

        .index_foot a {
            color: #fff;
            text-decoration: none;
            transition: opacity 0.3s;
        }
		
        .index_foot a:hover {
            opacity: 0.8;
        }

        /* 上半部分 */
        .index_foot__top {
            display: flex;
            padding: 50px 0%;
            gap: 30px;
        }

        /* 左侧样式 */
        .index_foot__left {
            flex: 3;
        } 
.index_foot__left ul{word-break: break-word;}
.index_foot__left li {line-height:33px}
.index_foot__left li a {line-height:33px}
.index_foot__left li a:hover{color: #fff;}
 
		 .index_foot_name{
          color: #fff;
          font-size: 24px;
		  padding-bottom:20px;
        }
        .index_foot__phone {
            font-size: 25px;
            font-weight: bold;
        }
        .index_foot__address {
            margin-top: 5px;
            word-break: break-word;
        }

        /* 中间部分 */
		 .index_foot_title{
          color: #fff;
          font-size: 18px;
		  padding-bottom:10px;
        }
        .index_foot__middle {
            flex: 3;
            display: flex;
            gap: 30px;
        }
        .index_foot__category,
        .index_foot__links {
            flex: 1;
        }
        .index_foot__category a,
        .index_foot__links a {
            display: block;
            margin: 8px 0;
            word-break: break-word;
        }
		 .index_foot__category a:hover{
			color: #fff;
            word-break: break-word;
        }
        .index_foot__links a:hover{
			color: #fff;
            word-break: break-word;
        }
        /* 右侧样式 */
        .index_foot__right {
            flex: 2;
        }
        .index_foot__qrcode-box {
            display: flex;
            gap: 20px;
            margin: 15px 0;
        }
        .index_foot__qrcode {
            text-align: center;
        }
        .index_foot__qrcode img {
            width: 150px;       
        }
		 .index_foot__qrcode_title{
          color: #fff;
          font-size: 14px;
		  padding-top:8px;
        }
        .index_foot__share {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }
        .index_foot__share a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #666666;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }
        .index_foot__share a:hover {
			color: #fff;
            transform: scale(1.1);
			background: #015bac;
        }
        /* 下半部分 */
        .index_foot__bottom {
            border-top: 1px solid #666666;
            padding: 20px 0%;
            display: flex;
            justify-content: space-between;
        }
       .index_foot__bottom a:hover{
          color: #fff;
        }
        /* 移动端样式 */
        @media (max-width: 768px) {
            .index_foot__top {
                flex-direction: column;
                text-align: center;
            }
            .index_foot__middle {
                display: none;
            }
            .index_foot__qrcode-box {
                justify-content: center;
            }
            .index_foot__share {
                justify-content: center;
            }
            .index_foot__bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
        }