@charset "utf-8";
/* ====================公共样式========================= */
.clearfix:after{content:'\20';display:block;height:0;clear:both}
.clearfix{*zoom:1}

/* 图片比例 */
.picScale{ padding-bottom: 60%; overflow: hidden; position: relative; }
.picScale img{ max-width: 100%; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); transition: all 0.5s; }
.picScale img:hover{ transform: translate(-50%,-50%) scale(1.1); }

/* 标题公共样式 */
.index-comcont{width: 100%;text-align: center;display: flex;align-items: center;flex-direction: column;}
.index-comcont h2{font-size: 36px;color: #4EAC5E;position: relative;padding-bottom: 15px;line-height: 1; font-family:Arial, Helvetica, sans-serif;}
.index-comcont p{font-size: 24px;color: #000;line-height: 28px;max-width: 918px;margin-top: 0;padding-bottom: 15px;position: relative; }
/*.index-comcont P::after{content: '';width: 50px;height: 1px;background-color: #999;position: absolute;left:0;bottom: 0;right: 0;margin: auto;}*/
/* 标题公共样式 */
.index-comcont1{width: 100%;display: flex;flex-direction: column;}
.index-comcont1 h2{font-size: 36px;color: #4EAC5E;position: relative;padding-bottom: 15px;line-height: 1; font-family:Arial, Helvetica, sans-serif;}
.index-comcont1 p{font-size: 24px;color: #000;line-height: 28px;max-width: 918px;margin-top: 0;padding-bottom: 15px; position: relative;}
/*.index-comcont1 P::after{content: '';width: 50px;height: 1px;background-color: #999;position: absolute;left:0;bottom: 0;}*/
/* 头部 */
.Header-wrapper{width: 100%;position: fixed;left: 0;top: 0;z-index: 9999999;background-color: #ffffff;box-shadow: 0 0 12px rgba(0, 0, 0, 0.16);}
.Header-wrapper::after{content: '';display: none;width: 100%;height: 1px;background-color: #f0e7e7;position: absolute;left: 0;bottom: 0;}
/* logo */
.Header-logo{float: left;}
.Header-logo a{display: block;width: 100px;line-height: 120px;}
.Header-logo a img{width: 100%;object-fit: cover;}

/* 导航 */
.Header-navbar{float: right;margin-right: 66px;}
.Header-navbar ul li{display: inline-block;margin: 0 40px ;position: static;position: relative;}
.Header-navbar ul li:last-child{margin-right: 0;}
.Header-navbar ul li:first-child{margin-left: 0;}
.Header-navmenu{display: inline-block;font-size: 16px;color: #555555;height: 120px;line-height: 120px;transition: all .4s ease;position: relative;}
.Header-navmenu::after{content: ''; width: 0%;height:4px;background-color: #4EAC5E;position: absolute;right: 0;bottom: 0;transition: all .4s ease;}
.Header-navbar ul li.ontrue .Header-navmenu::after, .Header-navbar ul li:hover .Header-navmenu::after{width: 100%;right: auto;left: 0;}
.Header-navbar ul li.ontrue .Header-navmenu,.Header-navbar ul li:hover .Header-navmenu{color:#4EAC5E;}
.Header-navarr{display: none;}

/* 导航下拉 */
.Header-drop{display: none; width: 104%;width:auto;position: absolute;left: 0; height: 60px;top: 120px;/* box-shadow: 2px 0 2px rgba(0, 0, 0, 0.16);background: rgba(83,148,80,0.8); */z-index:3;overflow: visible !important;}
.Header-drop:after{content:"";position: absolute;left:50%;top:0;width: 200vw;height:100%;box-shadow: 2px 0 2px rgba(0, 0, 0, 0.16);background: rgba(83,148,80,0.8);z-index: -1;transform: translateX(-50%);}
.Header-drop .tt{display: inline-block;white-space: nowrap;}
.Header-drop a{display: inline-block;  padding: 0 20px; line-height:60px;font-size: 15px;color: #fff;text-align: center;transition: all .4s ease;}
.Header-drop a:hover{color: #1e3879;}
.Header-navbar ul li:nth-last-child(2){left:auto;right:0;}
.Header-navbar ul li:last-child .Header-drop{left:auto;right:0;}


/* 语言 */
.Header-lang{float: right;font-size: 0;display: flex;}
.Header-lang i{display:inline-block; width:24px;height:120px;line-height: 120px;background: url('../images/common/search1.png') no-repeat center / 100%;}
.Header-lang span{display: inline-block;font-size: 16px;color: #1e3879;margin-left: 6px;height:120px;line-height: 120px;}
/* 手机汉堡键 */
.Header-navclick{width: 24px;height: 120px;align-items: center;cursor: pointer;float: right;user-select: none;display: none;}
.Header-navclick span{width: 100%;height: 2px;background:#555555;display: block;position: relative;transition: all .2s linear;}
.Header-navclick span:before,.Header-navclick span:after{content: "";position: absolute;height: 2px;background:#555555;display: block;left: 0;width: 100%;transition: all .2s linear;}
.Header-navclick span:before{top: -8px;}
.Header-navclick span:after{top: 8px;}
.Header-navclick.active span{-moz-animation: buttonAnimation 0.3s ease forwards;-webkit-animation: buttonAnimation 0.3s ease forwards;animation: buttonAnimation 0.3s ease forwards;}
.Header-navclick.active span:before{-moz-animation: buttonAnimationBefore 0.3s ease forwards;-webkit-animation: buttonAnimationBefore 0.3s ease forwards;animation: buttonAnimationBefore 0.3s ease forwards; }
.Header-navclick.active span:after{-moz-animation: buttonAnimationAfter 0.3s ease forwards;-webkit-animation: buttonAnimationAfter 0.3s ease forwards;animation: buttonAnimationAfter 0.3s ease forwards;}
@-moz-keyframes buttonAnimationBefore {
    0% {-moz-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0); }
    50% {-moz-transform: translateY(8px) rotate(0);transform: translateY(8px) rotate(0); }
    100% {-moz-transform: translateY(8px) rotate(45deg);transform: translateY(8px) rotate(45deg); }
}
@-webkit-keyframes buttonAnimationBefore {
    0% {-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0); }
    50% {-webkit-transform: translateY(8px) rotate(0);transform: translateY(8px) rotate(0); }
    100% {-webkit-transform: translateY(8px) rotate(45deg);transform: translateY(8px) rotate(45deg); }
}
@keyframes buttonAnimationBefore {
    0% {-moz-transform: translateY(0px) rotate(0);-ms-transform: translateY(0px) rotate(0);-webkit-transform: translateY(0px) rotate(0);transform: translateY(0px) rotate(0); }
    50% {-moz-transform: translateY(8px) rotate(0);-ms-transform: translateY(8px) rotate(0);-webkit-transform: translateY(8px) rotate(0);transform: translateY(8px) rotate(0); }
    100% {-moz-transform: translateY(8px) rotate(45deg);-ms-transform: translateY(8px) rotate(45deg);-webkit-transform: translateY(8px) rotate(45deg);transform: translateY(8px) rotate(45deg); } }
@-moz-keyframes buttonAnimationAfter {
    0% {-moz-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0); }
    50% {-moz-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0); }
    100% {-moz-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) rotate(-45deg); }
}
@-webkit-keyframes buttonAnimationAfter {
    0% {-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0); }
    50% {-webkit-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0); }
    100% {-webkit-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) rotate(-45deg); }
}
@keyframes buttonAnimationAfter {
    0% {-moz-transform: translateY(0) rotate(0);-ms-transform: translateY(0) rotate(0);-webkit-transform: translateY(0) rotate(0);transform: translateY(0) rotate(0); }
    50% {-moz-transform: translateY(-8px) rotate(0);-ms-transform: translateY(-8px) rotate(0);-webkit-transform: translateY(-8px) rotate(0);transform: translateY(-8px) rotate(0); }
    100% {-moz-transform: translateY(-8px) rotate(-45deg);-ms-transform: translateY(-8px) rotate(-45deg);-webkit-transform: translateY(-8px) rotate(-45deg);transform: translateY(-8px) rotate(-45deg); }
}
@-moz-keyframes buttonAnimation {
    0% {background: transparent; }
    50% {background: rgba(255, 255, 255, 0); }
    100% {background: rgba(255, 255, 255, 0); }
}
@-webkit-keyframes buttonAnimation {
    0% {background: transparent; }
    50% {background: rgba(255, 255, 255, 0); }
    100% {background: rgba(255, 255, 255, 0); }
}
@keyframes buttonAnimation {
    0% {background: transparent; }
    50% {background: rgba(255, 255, 255, 0); }
    100% {background: rgba(255, 255, 255, 0); }
}



.search{ position: fixed; left: 0; top: 0; z-index: 9999999; width: 100%; height: 100%; background-color: rgba(0,0,0,.8); display: none; }
.search .close{ font-weight: normal; font-size: 50px; font-family: ; color: #FFFFFF; cursor: pointer; user-select: none; width: 30px; position: absolute; right: 10%; top: 5%; }
.search .close img{ max-width: 100%; }
.search .form{ position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 90%; max-width: 600px; }
.search .form .input{ padding-bottom: 15px; border-bottom: 2px solid #FFFFFF; display: flex;flex-wrap: wrap;justify-content: space-between; align-items: stretch; width: 100%; }
.search .form .input input{ font-size: 30px; font-weight: 300; padding-left: 10px; background-color: transparent; color: #FFFFFF; height: 50px; line-height: 50px; width: calc(100% - 50px); }
.search .form .input input::placeholder { color: #FFFFFF; }
.search .form .input button{ width: 50px; height: 50px; background-color: transparent; background: url(../images/common/search_icon.png) no-repeat center / 80%; }
@media (max-width: 960px) {
  .search .close{width: 20px;}
  .search .form .input{padding-bottom: 10px; }
  .search .form .input input{font-size: 24px;}
  .search .form .input button{width: 40px;}
}
@media (max-width: 480px) {
  .search .close{right: 6%; top: 2%;}
}



/* 底部 */
.Footer-wrapper{width: 100%; background: url(../images/common/footerbg.png)no-repeat left top/100% 100%;}
.Footer-navbaritem{width: 100%;display: flex;justify-content: space-between;}
.Footer-navbar{width:78%;overflow: hidden;border-right: 1px solid #494f56;padding: 56px 0 76px;}
.Footer-navbar ul li{float: left;width: 14.28%;font-size: 0;}
.Footer-menu{ font-size: 16px;color: #ffffff;margin-bottom: 16px;}
.Footer-link{width: 100%;}
.Footer-link a{display:block;font-size: 14px;color: #969da6;line-height: 30px;transition: all .4s ease;}
.Footer-link a:hover{color:#dd5d60;}
.Footer-ewmitem{float:right;overflow: hidden;padding: 56px 0 76px;width: 22%;display: flex;flex-direction: column;padding-left: 26px;}
.Footer-ewmul{display: flex;justify-content: space-between;flex-wrap: wrap;}
.Footer-wechat{width: 118px;height: 128px;padding: 0px 0 10px;margin-bottom: 10px;background: #ffffff;border-radius: 8px;display: flex;flex-direction: column;justify-content: center;align-items: center;position: relative;}
.Footer-wechat img{max-width: 88%;max-height: 88%; object-fit: cover;}
.Footer-wechat span{font-size: 13px;color: #000000;display: inline-block;text-align:center; position: absolute;left: 0;right: 0;bottom: 0;margin: 0 auto;}
.Footer-contact{font-size: 20px;color: #ffffff;margin-top: 4px;font-family: Arial;font-weight: 700;}
.Footer-contact i{display: inline-block; width: 18px;height: 18px;background: url('../images/common/phoneicon.png')no-repeat center;margin-right: 4px;}
.Footer-copy{width: 100%;border-top: 1px solid #494f56;height: 77px;}
.Footer-copy .contain{display: flex;justify-content: space-between;align-items: center;height: 100%;}
.Footer-recorditem{color:#969da6;}
.Footer-recorditem span{font-size: 12px;}
.Footer-copyaddress p{font-size: 14px;color:#969da6}
/* 中间+共用部分 */
.Container-wrapper{width: 100%;margin-top: 120px;}
.incontain{width: 1400px;margin: 0 auto;}
.contain{width: 1300px;margin: 0 auto;}



/* -------------------------PC端--------------------------- */
@media all and (max-width:1700px) {
    /* 1600 × (900) */
}

@media all and (max-width:1599px) {
    /* 1440 × (700)  */
    .incontain{width: 1200px;}
    .contain{width: 1200px;}
    .Header-navbar ul li {margin: 0 36px;}
    .Footer-wechat {width: 100px;height: 116px;}
    .index-comcont h2 {font-size: 34px;}
	.index-comcont1 h2 {font-size: 34px;}
}

@media all and (max-width:1439px) {
    /* 1360 */
}

@media all and (max-width:1359px) {
    /* 1280 */
}

@media all and (max-width:1279px) {
    /* 1152 × (700) */
    .incontain{width: 980px;}
    .contain{width: 900px;}
    .Header-navbar {margin-right: 18px;}
    .Header-navbar ul li {margin: 0 20px;}
    .Header-drop {width: 158px;left: -52px;}
    .Footer-navbar{width:76%;}
    .Footer-ewmitem{width: 24%;}
    .Footer-wechat {width: 88px;height: 106px;}
    .Footer-wechat span {font-size: 12px;}
    .index-comcont h2 {font-size: 28px;}
	.index-comcont1 h2 {font-size: 28px;}
}

@media all and (max-width:1151px) {
    /* 1024 */
}


/* ------------------------手机端-------------------------- */
@media all and (max-width:1000px) {
    .index-comcont p {max-width: 748px;}
	.index-comcont1 p {max-width: 748px;}
    /* 平板设备 720 适配 */
    .incontain{width: 92%;}
    .contain{width: 92%;}
    .Header-wrapper::after{display: block;}
    .Header-logo a {width: 50px;line-height: 60px;}
    .Header-navclick{display:flex;margin-left:24px;height: 60px;}
    .Header-lang i {height: 60px;}
    .Header-lang span{height:60px;line-height: 60px;}
    .Header-navbar{display: none; width: 100%;background-color: #ffffff; position: absolute;left: 0;top: 60px; height: calc(100vh - 60px); padding-top: 10px;}
    .Header-navbar ul{width: 100%; display: flex;flex-direction: column;padding: 0 4%;}
    .Header-navbar ul li{width: 100%; margin: 0;position: relative;margin-bottom: 8px;}
    .Header-navmenu{width: 100%; height: 32px;line-height: 32px;}
    .Header-navmenu::after{display: none;}
    .Header-navarr{display: block;width:24px;height: 32px;background: url('../images/common/dropArrH.svg')no-repeat center/18px auto;position: absolute;right: 0;top: 0px;transition: all .4s ease;}
    .Header-navarr.active{transform: rotate(180deg);}
    .Header-drop{width: 100%;position: static;box-shadow: none;height: auto !important;padding: 0 6px;}
    .Header-drop a{text-align: left;height: 32px;line-height: 32px;font-size: 14px;display:block;color:#000;}
	.Header-drop .tt{display:block;}
    .Footer-wrapper{background-size: 100% 100%;}
    .Footer-navbaritem{flex-direction: column;}  
    .Footer-navbar{width: 100%;border: none;padding: 56px 0 0px;}
    .Footer-navbar ul{width: 100%;display: flex;flex-direction: column;}
    .Footer-navbar ul li {width: 100%;margin-bottom: 14px;}
    .Footer-menu{width: 100%; position: relative;margin-bottom: 10px;}
    .Footer-menu::after{content: '';width: 24px;height: 32px;background:url('../images/common/dropArr.svg')no-repeat center/18px auto;position: absolute;right: 0;top:0px;}
    .Footer-menu.active::after{transform: rotate(180deg);}
    .Footer-link{display: none;padding: 12px 0;}
    .Footer-link a{line-height: 24px;}
    .Footer-ewmitem {width:100%;align-items: center;justify-content: center;padding: 38px 0 76px;}
    .Footer-wechat {width: 100px;height: 116px;margin-right: 10px;}
    .Footer-copy .contain {flex-direction: column-reverse;justify-content: center;}
    .Footer-copyaddress{margin-bottom: 4px;}

    .Container-wrapper{margin-top: 60px;}
}
@media all and (max-width:640px) {
    /* 移动终端以上 360 适配 */
    .index-comcont h2 {font-size: 24px;padding-bottom: 16px;}
    .index-comcont p {max-width: 338px;line-height: 24px;font-size: 14px;margin-top: 18px;}
	.index-comcont1 h2 {font-size: 24px;padding-bottom: 16px;}
    .index-comcont1 p {max-width: 338px;line-height: 24px;font-size: 14px;margin-top: 18px;}
    .Header-navbar ul li {margin-bottom: 0;}
    .Header-navmenu{height: 56px;line-height: 56px;}
    .Footer-navbar ul li {margin-bottom: 6px;}
    .Header-navarr{ width:24px;height: 52px; }
    .Footer-navbar {padding: 40px 0 0px;}
    .Footer-menu {margin-bottom: 0;}
    .Footer-ewmitem {padding: 28px 0 38px;}
    .Footer-wechat {width: 100px;height: 116px;}
    .Footer-contact {font-size: 18px;margin-top: 10px;}
    .Footer-wechat span {line-height: 18px;}
    .Footer-copyaddress p {font-size: 12px;}
    .Footer-recorditem {display: flex;flex-direction: column;text-align: center;}
}





#footer{color:#fff;background-color:#539450;overflow:hidden}
.footer_1{text-align:center;border-bottom:0px #aaa solid;padding: 0; width: 130px;}
.footer_1 img{ width: 100%;}
.footer_2{margin:5em 0 3em;position:relative;padding-right:320px}
.footer_2_right{position:absolute;right:0;top:0}
.footer_2_left{float:left;width:35.29411764705882%;display: flex;flex-wrap: wrap; }
.footer_2_mid{float:right;width:64.70588235294118%}
.footer_2_mid_mid ul li{float:left;width:20%}
.footer_2_left_mid{padding-right:5%;width: calc(100% - 130px); padding-left: 15px;}
.footer_2_left_mid_2{line-height:1.8;margin-top:1.375em;color:#eee;margin-bottom:2.25em}
.footer_2_left_mid_1{font-size:1.5em}
.footer_t{font-size:1.125em;margin-bottom:1em}
.footer_2_right_mid_1 dl dd{padding-left:16px;margin-bottom:.875em;color:#eee;position:relative}
.footer_2_right_mid_2{margin-top:1.75em 0;border-top:1px #aaa solid;padding-top:2em}
.footer_2_right_mid_2 dl{width:100%}
.footer_2_right_mid_2 dl dd{float:left;text-align:center;width:32%;margin-right: 2%;}
.footer_2_right_mid_2 dl dd:nth-child(3){margin-right:0%;}
.footer_2_right_mid_2 dl dd img{width:100%}
.footer_2_right_mid_1 dl dd:before{top:5px;content:'';position:absolute;left:0;width:12px;height:14px;background-position:center;background-repeat:no-repeat;background-size:cover}
.footer_2_right_mid_1 dl dd:nth-child(1):before{background-image:url(../images/footer/img8.png)}
.footer_2_right_mid_1 dl dd:nth-child(2):before{background-image:url(../images/footer/img9.png)}
.footer_2_mid_mid ul li a{color:#eee;transition:all .5s cubic-bezier(0.215,0.61,0.355,1) 0s}
.footer_2_mid_mid ul li a:hover{color:#fff}
.footer_2_mid_mid{border-left:1px #aaa solid;border-right:1px #aaa solid;overflow:hidden;min-height:320px;padding-left:9%}
.footer_2_right_mid{width:250px}
.wmid{margin:0 auto;max-width:83.07291666666667%}
.footer_2_left_mid_3 a{transition:all .5s cubic-bezier(0.215,0.61,0.355,1) 0s;margin-right:9px;display:inline-block;background-position:center;background-repeat:no-repeat;width:38px;height:38px;border:1px #fff solid;border-radius:100%}
.footer_2_left_mid_3 a:hover{background-color:#fff}
.i1{background-image:url(../images/footer/img2.png)}
.i1:hover{background-image:url(../images/footer/img2on.png)}
.i2{background-image:url(../images/footer/img3.png)}
.i2:hover{background-image:url(../images/footer/img3on.png)}
.i3{background-image:url(../images/footer/img4.png)}
.i3:hover{background-image:url(../images/footer/img4on.png)}
.i4{background-image:url(../images/footer/img5.png)}
.i4:hover{background-image:url(../images/footer/img5on.png)}
.footer_2_right_mid_2_2{font-size:.875em;color:#eee;margin-top:8px}
.footer_2_mid_mid ul li dl dd{margin-bottom:.875em}
.footer_2_mid_mid_mid{padding-right:1em}
.footer_cp{padding:1.5em 0;border-top:1px #aaa solid;overflow:hidden;color:#eee}
.footer_cp a{color:#eee;transition:all .5s cubic-bezier(0.215,0.61,0.355,1) 0s}
.footer_cp a:hover{color:#fff}
.footer_cp_left{float:left;}
.footer_cp_right{float:right;}
@media screen and (max-width:1700px){
  .footer_2_left_mid{padding-right:1em}
  .footer_2{padding-right:270px}
}
@media screen and (max-width:1200px){
  .footer_1{ margin-bottom: 20px; }
  .footer_2_left{justify-content: ; }
  .footer_2_left_mid{ width: 100%; padding-left: 0; }
  .footer_2_left_mid_1{ font-size:1.25em; }
  .footer_t{ font-size:1em; }
}
@media screen and (max-width:1024px){
.footer_2_mid_mid{padding-left:1.5em; }
.footer_2_mid_mid{border-right:0; }
.footer_2{padding-right:0;}

.footer_2_right{position: relative;right:auto;top:auto;}
}
@media screen and (max-width:810px){
  .footer_2_left_mid_2{margin-top:1.5em;margin-bottom:1.5em}
  .footer_2_left_mid_3 a{margin-right:0;transform:scale(.8,.8)}
  /* .footer_1{padding:1.25em 0} */
  .footer_2{margin:2em 0}
  .footer_cp_left,.footer_cp_right{text-align:center;width:100%;float:none}
  .footer_cp_left{margin-bottom:5px}
  .footer_2_left{width:100%}
  .footer_2_mid{display:none}
}
@media screen and (max-width:768px){
  .footer_1{width: 100%;}
  .footer_1 img{ width: 100px;}
}
@media screen and (max-width:640px){
  .footer_2_left_mid_1{font-size:1.125em; display:none;}
  
    .footer_2_left_mid_2{ display:none;}
}


/* 营养价值 */
.index_jiazhi{ padding: 100px 0 70px; }
.index_jiazhi .pic{ padding-top: 30px; text-align: center; }
.index_jiazhi .pic img{ max-width: 100%; }
.index_jiazhi .pic ul{ display: flex; flex-wrap: wrap; justify-content: space-between; align-items: stretch; }
.index_jiazhi .pic ul li{ width: 32%; }
.index_jiazhi .pic ul li img{ max-width: 100%; border: 5px solid #F3F3F3; }
.index_jiazhi .text{ margin-top: 50px; }
.index_jiazhi .text h3{ font-size: 24px; color: #1e3879; margin-bottom: 20px; }
.index_jiazhi .text p{ font-size: 16px; line-height: 30px;text-indent: 2em; }
.index_jiazhi .Chart{display: flex;flex-wrap: wrap; justify-content: space-between; align-items: stretch; justify-content: space-between; margin-top: 50px;}
.index_jiazhi .Chart .img{ width: 40%; }
.index_jiazhi .Chart .img img{ max-width: 100%; }
.index_jiazhi .Chart .txt{ width: 55%; }
.index_jiazhi .Chart .txt .row{ margin-bottom: 40px;}
.index_jiazhi .Chart .txt .row:last-child{ margin-bottom: 0px;}
.index_jiazhi .Chart .txt h3{ font-size: 24px; color: #1e3879; margin-bottom: 20px;  }
.index_jiazhi .Chart .txt p{font-size: 16px;  line-height: 30px;text-indent: 2em;}
.index_jiazhi .jiazhi_fl{ margin-top: 50px;  }
.index_jiazhi .jiazhi_fl ul{ display: flex;flex-wrap: wrap; justify-content: space-between; align-items: stretch; }
.index_jiazhi .jiazhi_fl ul li{ width: 33.333%; background: no-repeat center / cover; text-align: center; position:relative; }



.index_jiazhi .jiazhi_fl ul li .pic1{width: 100%; overflow:hidden;}
.index_jiazhi .jiazhi_fl ul li .pic1 img{transition: all .3s linear; width: 100%;}

.index_jiazhi .jiazhi_fl ul li:hover .pic1 img{transform: scale(1.2);}


.index_jiazhi .jiazhi_fl ul li .fudong{ left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);}
.index_jiazhi .jiazhi_fl ul li i{ display: inline-block; width: 60px; margin-bottom: 20px; }
.index_jiazhi .jiazhi_fl ul li i img{ max-width: 100%; }
.index_jiazhi .jiazhi_fl ul li h3{ font-size: 30px; color: #333; padding-bottom: 20px;position: relative; }
.index_jiazhi .jiazhi_fl ul li h3::after{ display: block; content: ''; width: 30px; height: 2px; background-color: #333; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);}
.index_jiazhi .jiazhi_fl ul li h4{ font-size: 26px; color: #333; font-weight: bold; }
.index_jiazhi .jiazhi_fl ul li span{  color: #333; display: inline-block; font-size: 16px; padding: 5px 20px; margin-top: 30px; border: 1px solid #333; }
@media only screen and (max-width:1260px){
  .index_jiazhi{ padding: 80px 0 60px; }
  .index_jiazhi .pic{ padding-top: 20px; }
  .index_jiazhi .text h3{ font-size: 20px; }
  .index_jiazhi .Chart .txt h3{ font-size: 20px;  }
}
@media only screen and (max-width:1080px){
  .index_jiazhi{ padding: 60px 0 60px; }
  .index_jiazhi .text h3{ margin-bottom: 10px;}
  .index_jiazhi .text p{ font-size: 14px;}
  .index_jiazhi .Chart{ margin-top: 30px;}
  .index_jiazhi .Chart .img{ width: 100%; }
  .index_jiazhi .Chart .txt{ width: 100%; margin-top: 30px; }
  .index_jiazhi .Chart .txt .row{ margin-bottom: 20px; }
  .index_jiazhi .Chart .txt h3{ font-size: 16px;margin-bottom: 5px;}
  .index_jiazhi .Chart .txt p{ font-size: 14px; line-height: 26px;}
  .index_jiazhi .jiazhi_fl ul li h3{font-size: 24px;}
  .index_jiazhi .jiazhi_fl ul li i{width: 50px;}
}
@media only screen and (max-width:850px){
  .index_jiazhi{ padding: 50px 0 40px; }
  .index_jiazhi .pic{ padding-top: 10px;}
  .index_jiazhi .text{ margin-top: 30px;}
  .index_jiazhi .jiazhi_fl ul li a{padding: 50px 0;}
  .index_jiazhi .jiazhi_fl ul li span{font-size: 14px;}
}
@media only screen and (max-width:520px){
  .index_jiazhi .pic ul li img{ border-width: 2px;}
  .index_jiazhi .jiazhi_fl{margin-top: 30px;}
  .index_jiazhi .jiazhi_fl ul li h3{font-size: 18px;}
  .index_jiazhi .jiazhi_fl ul li i{width: 40px;}
  .index_jiazhi .jiazhi_fl ul li span{font-size: 12px; padding: 3px 15px;}
}



.webright{position:fixed;right:20px;z-index:100;-webkit-transform:translateY(-50%);transform:translateY(-50%);top:50%;width:42px}
.webright ul li{position:relative;margin-top:.5em}
.webright ul li:nth-child(1){margin-top:0}
.webright ul li a{position:relative;z-index:10;background-color:#b4b4b4;border-radius:100%;display:block;background-position:center;background-repeat:no-repeat;height:42px}
.webright ul li a.wqq{background-image:url(../images/right/img1.png)}
.webright ul li a.wwechat{background-image:url(../images/right/img2.png)}
.webright ul li a.wphone{background-image:url(../images/right/img3.png)}
.webright ul li a.wgoup{background-image:url(../images/right/img4.png)}
.webright ul li img{display:none;position:absolute;right:57px;top:-21px;max-width:none;width: 140px;}
.webright ul li:hover img{display:block}
.webright ul li span{top:0;display:none;position:absolute;right:21px;width:265px;background-color:#b4b4b4;height:42px;line-height:42px;text-align:center;color:#fff}
.webright ul li:hover span{display:block}
.webright ul li:hover a{background-color:#4EAC5E}
@media screen and (max-width:640px){
  .webright{display:none}
}
@media screen and (max-width:480px){
.footer_2_right_mid{width:90%; margin:0 auto;}
.footer_2_right_mid_2 dl dd img{width:100%; max-width:120px;}
.index_jiazhi .jiazhi_fl ul li{ width: 100%; background: no-repeat center / cover; text-align: center; margin-bottom:20px;}
}