
 /* 分享小图标 */
 
         /* 共享图标容器样式 */
        .share_icon_container {
            display: flex;
            justify-content: flex-start;
            gap: 10px;
            padding: 20px 0px 0px 0px;

        }

        /* 图标项样式 */
        .share_icon_item {
            flex: 0 0 auto;
            transition: transform 0.3s ease;
        }

        .share_icon_item img {
            width: 40px; /* 默认图标大小 */
            height: auto;
            transition: all 0.3s ease;
            filter: brightness(1);
        }

        /* 桌面端悬停效果 */
        @media (hover: hover) {
            .share_icon_item:hover img {
                transform: scale(1.1);
                filter: brightness(0.9);
            }
        }

        /* 移动端适配 */
        @media (max-width: 768px) {
            .share_icon_container {
                gap: 15px;
                padding: 20px 0px 20px 0px;
            }
            .share_icon_item img {
                width: 35px; /* 移动端稍小 */
            }
        }
 
 
 
 

 /* 底部版权 */
 .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: 18px;
		  padding-bottom:20px;
        }
        .index_foot__phone {
            font-size: 16px;
            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;
			font-size:18px;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }
        .index_foot__share a:hover {
			color: #fff;
            transform: scale(1.1);
			background: #195d34;
        }
        /* 下半部分 */
        .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;
            }
        }