﻿
     @media screen and (min-width: 800px){
        .g-head .g-nav>ul>li .list-solution{
            min-height: 4.58rem;
        }
         .g-head .g-nav>ul>li .list-solution li dl{
             width: 2.8rem;
         }

        .g-head .g-nav>ul>li .list2{width: 6.2rem;}
        .g-head .g-nav>ul>li .list2 li>a{width: 3.3rem;}
        .g-head .g-nav>ul>li .list2 li dl{left: 3.3rem;}
    }
    .g-head .g-nav a.name:hover{color:#3577b3;}
	
	
	
	.img-item {
  margin : 15px 0px 15px 15px;	
	}

		.img-item1 {
			
  margin : 15px 0px 15px 15px;	
  transform: translateX(80px);/
	}
	
.zoomImg img {
	 width: 170px;
    height: 85px;
}
.zoomImg {
    width: 100px;
    height: 80px;
    overflow: hidden;
    position: relative;
    display: block;
     border: 1px solid #e0e0e0;    /* 灰色边框 */
  border-radius: 8px;           /* 圆角大小 */
  box-sizing: border-box;       /* 防止边框撑大容器 */
  display: block;               /* 消除图片底部间隙 */
  width: 100%;   
}

.zoomImg:before {
    position: absolute;
    top: 0;
    left: -90%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.zoomImg:hover:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

.zoomImg:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

a:hover .zoomImg:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

a:hover .zoomImg img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

img {
    vertical-align: middle;
    max-width: 100%;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100px;
}



body.show {
    opacity: 1;
}

a {
    color: #333;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    color: #3577b3;
    outline: none;
}

ul.hezuo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

li {
    list-style: outside none;
}

.index-client .list-wrapper:before {
    left: 0;
    background: -webkit-linear-gradient(left, #FAFAFA, rgba(0, 0, 0, 0));
    background: linear-gradient(to right, #FAFAFA, rgba(0, 0, 0, 0));
}

.index-client .list-wrapper:after {
    right: 0;
    background: -webkit-linear-gradient(right, #FAFAFA, rgba(0, 0, 0, 0));
    background: linear-gradient(to left, #FAFAFA, rgba(0, 0, 0, 0));
}
	
	
	


.feather-effect {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

/* 左右羽化层 */
.feather-effect::before,
.feather-effect::after {
  content: '';
  position: absolute;
  top: 0;
  width: 30%;  /* 控制羽化区域宽度 */
  height: 100%;
  z-index: 2;
}

/* 左侧渐变 */
.feather-effect::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,1) 0%,    /* 纯白起始 */
    rgba(255,255,255,0) 100%   /* 完全透明结束 */
  );
}

/* 右侧渐变 */
.feather-effect::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 100%
  );
}


