/*通用类*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
html {
  overflow-x: hidden;
}
body {
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
  font-family: "Microsoft Yahei";
  background: #fff;
  overflow-x: hidden;
  text-align: justify;
  color: #333;
}
.wb {
  background: #fff;
}
/*不同设备字体em基准
@media screen and (min-width: 320px) and (max-width: 360px){
  body{
  	font-size:13.5px;
  }
}
@media screen and (min-width: 360px) and (max-width: 480px){
  body{
  	font-size:15px;
  }
}
@media screen and (min-width: 480px) and (max-width: 700px){
  body{
  	font-size:22.5px;
  }
}
@media screen and (min-width: 700px) and (max-width: 1000px){
  body{
  	font-size:28px;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1200px){
  body{
  	font-size:32px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px){
  body{
  	font-size:40px;
  }
}
@media screen and (min-width: 1400px){
  body{
  	font-size:50px;
  }
}
*/
img {
  border: none;
}
h1,
h2,
h3 {
  font-weight: normal;
}
a {
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
input,
textarea,
select {
  font-family: "Microsoft Yahei";
  font-size: 1em;
  outline: none;
  margin: 0;
  padding: 0;
}
input::-webkit-input-placeholder {
  color: #979797 !important;
}
textarea::-webkit-input-placeholder {
  color: #979797 !important;
}
input[type='button'],
input[type='text'],
input[type='search'],
input[type='submit'],
input[type='reset'],
input[type='date'],
input[type='time'],
input[type='number'] {
  -webkit-appearance: none;
}
select {
  -webkit-appearance: none;
}
textarea {
  -webkit-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
ul,
ol {
  padding: 0;
  list-style-type: none;
}
em {
  font-style: normal;
}
.lt {
  float: left;
}
.rt {
  float: right;
}
input.sub,
label {
  border: none;
  cursor: pointer;
}
input,
textarea {
  font-family: "Microsoft Yahei";
  outline: none;
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
}
td,
th {
  padding: 0;
}
.clear::before {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.clear::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}
.warpin {
  width: 1500px;
  margin: 0 auto;
}
.contain {
  width: 100%;
  padding: 0 8vw;
}
.pulic_header_cont {
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: space-between;
}
.pulic_header_cont .logo {
  display: block;
  grid-column: 1 span;
}
.pulic_header_cont .logo img {
  height: auto;
}
.pulic_header_cont .r_cont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 4 span;
}
.pulic_header_cont .r_cont .nav_dl {
  display: flex;
  align-items: center;
}
.pulic_header_cont .r_cont .nav_dl .li {
  padding: 40px 15px;
  position: relative;
  font-size: 14px;
  color: #333333;
}
.pulic_header_cont .r_cont .nav_dl .li::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #a1d224;
  transition: all 0.6s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pulic_header_cont .r_cont .nav_dl .li:hover,
.pulic_header_cont .r_cont .nav_dl .li.active {
  color: #91c446;
}
.pulic_header_cont .r_cont .nav_dl .li:hover::after,
.pulic_header_cont .r_cont .nav_dl .li.active::after {
  width: 100%;
}
.pulic_header_cont .r_cont .tel_det {
  padding: 14px 20px;
  border-radius: 100px;
  background: #a1d224;
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
}
.pulic_header_cont .r_cont .tel_det img {
  width: 22px;
  margin-right: 10px;
}
.pulic_header_cont .r_cont .language_det {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
.pulic_header_cont .r_cont .language_det .i {
  width: 23px;
  margin-right: 6px;
}
.pulic_header_cont .r_cont .language_det select {
  font-size: 16px;
  color: #333333;
  border: none;
}
.pulic_header_cont .r_cont .language_det .arr {
  width: 14px;
  margin-left: 10px;
}
@-webkit-keyframes banmouse {
  0% {
    transform: translate(-50%);
    bottom: 80px;
    transition: all 1s ease-in-out;
  }
  50% {
    transform: translate(-50%);
    bottom: 90px;
    transition: all 1s ease-in-out;
  }
  100% {
    transform: translate(-50%);
    bottom: 80px;
    transition: all 1s ease-in-out;
  }
}
.index_baner_cont {
  position: relative;
  overflow: hidden;
}
.index_baner_cont .swiper-slide {
  position: relative;
}
.index_baner_cont .swiper-slide .i {
  display: block;
  width: 100%;
}
.index_baner_cont .swiper-slide .more_btn {
  position: absolute;
  bottom: 260px;
  left: 50%;
  transform: translateX(-50%);
}
.index_baner_cont .baner_house {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  -webkit-animation: banmouse 1s 0s infinite;
  animation: banmouse 1s 0s infinite;
  z-index: 11;
}
.index_baner_cont .index_page .swiper-pagination-bullet {
  width: 17px;
  height: 17px;
  background: #fff;
  opacity: 1;
}
.index_baner_cont .index_page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f0a315;
}
.more_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 218px;
  padding: 22px 0;
  border-radius: 100px;
  background: #a1d224;
  font-size: 18px;
  color: #fff;
  z-index: 11;
}
.more_btn .arr {
  margin-left: 22px;
  transition: all 0.6s;
}
.more_btn:hover .arr {
  transform: translateX(10px);
}
.index_pulic_title {
  position: relative;
  padding-top: 76px;
  margin-bottom: 42px;
}
.index_pulic_title h2 {
  font-size: 46px;
  letter-spacing: 4px;
  color: #91c446;
}
.index_pulic_title span {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 132px;
  font-weight: bold;
  text-transform: capitalize;
  color: #85955b;
  opacity: 0.07;
}
.index_case_1 {
  background: url(/static/addons/cms/images/index_case1_bg.png) no-repeat center;
  background-size: cover;
  padding: 110px 0 50px;
}
.index_case_1 .deta_cont {
  display: flex;
  align-items: flex-end;
  margin-bottom: 120px;
}
.index_case_1 .deta_cont .l_cont {
  width: 50%;
  padding-right: 10%;
}
.index_case_1 .deta_cont .l_cont .deta_content .title {
  margin-bottom: 30px;
}
.index_case_1 .deta_cont .l_cont .deta_content .title h2 {
  font-size: 38px;
  color: #333333;
  font-weight: bold;
}
.index_case_1 .deta_cont .l_cont .deta_content .title p {
  font-size: 24px;
  color: #333333;
}
.index_case_1 .deta_cont .l_cont .deta_content .deta_txt p {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}
.index_case_1 .deta_cont .l_cont .deta_content .more_btn {
  margin-top: 30px;
}
.index_case_1 .deta_cont .r_cont {
  width: 50%;
  padding-left: 2%;
}
.index_case_1 .deta_cont .r_cont img {
  max-width: 100%;
}
.index_case_1 .bit_cont {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.index_case_1 .bit_cont .list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.index_case_1 .bit_cont .list .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
}
.index_case_1 .bit_cont .list .i img {
  max-width: 100%;
}
.index_case_1 .bit_cont .list .txt {
  padding-left: 10px;
}
.index_case_1 .bit_cont .list .txt h2 {
  font-size: 22px;
  color: #91c446;
}
.index_case_1 .bit_cont .list .txt h2 span {
  display: inline-block;
  vertical-align: bottom;
  font-size: 56px;
  color: #91c446;
  line-height: 56px;
}
.index_case_1 .bit_cont .list .txt p {
  font-size: 17px;
  color: #333333;
}
.index_case_2 {
  padding: 100px 0;
  background: #fbfcf9;
}
.index_case_2 .tis_cont {
  padding: 0 50px;
  margin-bottom: 54px;
}
.index_case_2 .case2_nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.index_case_2 .case2_nav .li {
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.index_case_2 .case2_nav .li .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
}
.index_case_2 .case2_nav .li .i img {
  max-width: 100%;
}
.index_case_2 .case2_nav .li p {
  text-align: center;
  font-size: 22px;
  color: #414c30;
}
.index_case_2 .case2_nav .li:hover,
.index_case_2 .case2_nav .li.active {
  background: #91c446;
}
.index_case_2 .case2_nav .li:hover .i img,
.index_case_2 .case2_nav .li.active .i img {
  filter: brightness(6%) invert(0.9);
}
.index_case_2 .case2_nav .li:hover p,
.index_case_2 .case2_nav .li.active p {
  color: #fff;
}
.index_case_2 .case2_bit_cont .cont {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  gap: 24px;
}
.index_case_2 .case2_bit_cont .list {
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.index_case_2 .case2_bit_cont .list .pro {
  display: block;
  width: 100%;
  height: 268px;
}
.index_case_2 .case2_bit_cont .list .pro img {
  display: block;
  width: 100%;
  height: 100%;
}
.index_case_2 .case2_bit_cont .list .txt {
  width: 100%;
  padding: 30px 24px;
  background: #fff;
  position: relative;
  font-size: 18px;
  color: #333333;
}
.index_case_2 .case2_bit_cont .list .txt .arr {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.6s;
}
.index_case_2 .case2_bit_cont .list:hover .txt .arr {
  right: 18px;
}
.index_case_3 {
  position: relative;
  background: #000;
  overflow: hidden;
  padding: 64px 0 0;
}
.index_case_3 .tis_content {
  margin-bottom: 300px;
  position: relative;
  z-index: 2;
}
.index_case_3 .tis_content .txt {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}
.index_case_3 .index_pulic_title {
  text-align: center;
}
.index_case_3 .index_pulic_title span {
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
.index_case_3 .last_cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.index_case_3 .last_cont .list {
  text-align: center;
  height: 360px;
}
.index_case_3 .last_cont .list .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 150px;
}
.index_case_3 .last_cont .list .tis_i img {
  max-width: 100%;
}
.index_case_3 .last_cont .list .tle {
  font-size: 28px;
  color: #ffffff;
}
.index_case_3 .last_cont .list .det_cont {
  position: relative;
  z-index: 2;
  transition: all 0.67s;
  padding-bottom: 162px;
}
.index_case_3 .last_cont .list .bit_btn {
  height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: all 0.6s;
  overflow: hidden;
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 100%;
}
.index_case_3 .last_cont .list .bit_btn .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 60px;
  border-radius: 100px;
  background: #a1d224;
  font-size: 18px;
  color: #fff;
  margin: 0 auto;
  opacity: 0;
  transition: all 0.6s;
}
.index_case_3 .last_cont .list .bg_cont {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  height: 100%;
  width: 100vw;
}
.index_case_3 .last_cont .list .bg_cont .bg {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.43;
}
.index_case_3 .last_cont .list .bg_cont::after {
  content: "";
  display: none;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 33%;
  top: 0;
  background: rgba(255, 255, 255, 0.36);
}
.index_case_3 .last_cont .list .bg_cont::before {
  content: "";
  display: none;
  width: 1px;
  height: 100%;
  position: absolute;
  right: 33%;
  top: 0;
  background: rgba(255, 255, 255, 0.36);
}
.index_case_3 .last_cont .list.active .det_cont {
  transform: translateY(-158px);
  padding-bottom: 0;
}
.index_case_3 .last_cont .list.active .bit_btn {
  height: 162px;
  bottom: -162px;
}
.index_case_3 .last_cont .list.active .bit_btn .btn {
  opacity: 1;
}
.index_case_3 .last_cont .list.active .bg_cont {
  display: block;
}
.index_case_4 {
  padding: 76px 0 86px;
  background: url(/static/addons/cms/images/case4_bg.png) no-repeat center;
  background-size: cover;
}
.index_case_4 .tis_content {
  position: relative;
  margin-bottom: 30px;
}
.index_case_4 .index_case4_page {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.index_case_4 .index_case4_page .page_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 40px;
  color: #ffffff;
  background: #e6e9e0;
  margin-left: 18px;
}
.index_case_4 .index_case4_page .page_btn:hover {
  background: #a1d224;
}
.index_case_4 .deta_cont {
  display: flex;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.index_case_4 .deta_cont .l_nav {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}
.index_case_4 .deta_cont .l_nav .li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 31px 28px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
  font-size: 28px;
  color: #333333;
}
.index_case_4 .deta_cont .l_nav .li:last-child {
  border-bottom: 0;
}
.index_case_4 .deta_cont .l_nav .li .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 88px;
  border-radius: 5px;
  overflow: hidden;
  margin-right: 30px;
}
.index_case_4 .deta_cont .l_nav .li .i img {
  display: block;
  width: 100%;
  height: 100%;
}
.index_case_4 .deta_cont .l_nav .li:hover,
.index_case_4 .deta_cont .l_nav .li.active {
  background: linear-gradient(to right, #a1d224 80%, #fff);
  color: #fff;
}
.index_case_4 .deta_cont .r_cont {
  grid-column: 2 span;
  height: 100%;
}
.index_case_4 .deta_cont .r_cont .cont {
  height: 100%;
}
.index_case4_baner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.index_case4_baner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.index_case_5 {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.index_case_5 .list {
  position: relative;
  overflow: hidden;
  background: #000;
}
.index_case_5 .list .bg {
  display: block;
  width: 100%;
  transition: all 0.6s;
}
.index_case_5 .list .index_pulic_title {
  position: absolute;
  top: 100px;
  right: -20px;
  transition: all 0.6s;
  opacity: 0;
}
.index_case_5 .list .index_pulic_title span {
  color: #fff;
}
.index_case_5 .list .bit_tle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px 0;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
}
.index_case_5 .list .bit_tle span {
  position: relative;
  z-index: 2;
}
.index_case_5 .list .bit_tle::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: rgba(161, 210, 36, 0.85);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.6s;
}
.index_case_5 .list:hover .index_pulic_title,
.index_case_5 .list.active .index_pulic_title {
  right: 40px;
  opacity: 1;
}
.index_case_5 .list:hover .index_pulic_title span,
.index_case_5 .list.active .index_pulic_title span {
  opacity: 0.3;
}
.index_case_5 .list:hover .bg,
.index_case_5 .list.active .bg {
  opacity: 0.46;
}
.index_case_5 .list:hover .bit_tle::after,
.index_case_5 .list.active .bit_tle::after {
  height: 100%;
}
.index_case_6 {
  background: #f8f8f8 url(/static/addons/cms/images/case6_bg.png) no-repeat 90% 20%;
  background-size: inherit;
  padding: 104px 138px;
}
.index_case_6 .last_cont {
  margin: 55px auto;
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
  gap: 20px;
}
.index_case_6 .hot_news_list {
  display: block;
}
.index_case_6 .hot_news_list .tis_i {
  display: block;
  width: 100%;
  height: 316px;
}
.index_case_6 .hot_news_list .tis_i img {
  height: 100%;
  width: 100%;
}
.index_case_6 .hot_news_list .txt_cont {
  padding: 32px 26px;
  background: #fff;
}
.index_case_6 .hot_news_list .txt_cont p {
  font-size: 15px;
  color: #999999;
  margin-bottom: 30px;
}
.index_case_6 .hot_news_list .txt_cont h2 {
  font-size: 22px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index_case_6 .news_last {
  padding: 0 34px;
  background: #fff;
}
.index_case_6 .news_last .list {
  display: block;
  padding: 40px 0;
  border-bottom: 1px solid #f2f2f2;
}
.index_case_6 .news_last .list:last-child {
  border-bottom: 0px;
}
.index_case_6 .news_last .list p {
  font-size: 15px;
  color: #999999;
  margin-bottom: 24px;
}
.index_case_6 .news_last .list h2 {
  font-size: 22px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index_case_7 {
  padding: 50px 0;
}
.index_case_7 .warpin {
  display: grid;
  grid-template-columns: repeat(5, calc(100% / 5));
  gap: 20px;
}
.index_case_7 .warpin .li {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.index_case_7 .warpin .li img {
  display: block;
  width: 100%;
}
.index_case_8 {
  padding: 70px 0 50px;
  background: url(/static/addons/cms/images/case8_bg_1.png) no-repeat center;
}
.index_case_8 .title_head {
  text-align: center;
}
.index_case_8 .title_head h2 {
  font-size: 50px;
  color: #ffffff;
  margin-bottom: 22px;
}
.index_case_8 .title_head p {
  font-size: 20px;
  color: #ffffff;
}
.index_case_8 .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 50px;
  border-radius: 100px;
  margin: 34px auto 0;
  background: #fff;
  font-size: 17px;
  color: #91c446;
}
.pulic_foot_cont {
  background: #f7f7fa;
}
.pulic_foot_cont .tis_cont {
  padding: 100px 0 140px;
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
  justify-content: space-between;
}
.pulic_foot_cont .tis_cont .l_about .logo {
  display: block;
  margin-bottom: 44px;
}
.pulic_foot_cont .tis_cont .l_about .logo img {
  display: block;
}
.pulic_foot_cont .tis_cont .l_about .tel_cont {
  margin-bottom: 40px;
}
.pulic_foot_cont .tis_cont .l_about .tel_cont p {
  font-size: 24px;
  color: #666666;
}
.pulic_foot_cont .tis_cont .l_about .tel_cont h2 {
  font-size: 32px;
  color: #242424;
}
.pulic_foot_cont .tis_cont .l_about .link_dl {
  display: flex;
  flex-wrap: wrap;
}
.pulic_foot_cont .tis_cont .l_about .link_dl .li {
  display: block;
  width: 40px;
  margin-right: 10px;
}
.pulic_foot_cont .tis_cont .l_about .link_dl .li img {
  display: block;
  width: 100%;
}
.pulic_foot_cont .tis_cont .r_cont {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  grid-column: span 2;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl {
  margin: 0 20px;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl h2 {
  font-size: 22px;
  font-weight: bold;
  color: #383737;
  margin-bottom: 20px;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl .li {
  display: block;
  font-size: 16px;
  color: #737375;
  margin-bottom: 18px;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl .dd {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #737375;
  margin-bottom: 18px;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl .dd .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.pulic_foot_cont .tis_cont .r_cont .last_dl .dd .i img {
  max-width: 100%;
}
.pulic_foot_cont .copy_cont {
  padding: 40px 0;
  border-top: 1px solid #e1e1e3;
  font-size: 15px;
  color: #999999;
}
.pulic_baner_cont {
  position: relative;
  overflow: hidden;
}
.pulic_baner_cont .bg {
  display: block;
  width: 100%;
}
.pulic_baner_cont .warpin {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  align-items: center;
}
.pulic_baner_cont .title_head h2 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 28px;
}
.pulic_baner_cont .title_head .line {
  display: block;
  width: 48px;
  height: 5px;
  background: #a1d224;
}
.pulic_maps_cont {
  background: #74ab22;
}
.pulic_maps_cont .warpin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pulic_maps_cont .nav_dl {
  display: flex;
  align-items: center;
}
.pulic_maps_cont .nav_dl .li {
  display: block;
  width: 164px;
  text-align: center;
  padding: 30px 0;
  font-size: 17px;
  color: #ffffff;
}
.pulic_maps_cont .nav_dl .li:hover,
.pulic_maps_cont .nav_dl .li.active {
  background: #a1d224;
}
.pulic_maps_cont .maps {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  padding: 30px 0;
}
.pulic_maps_cont .maps a {
  color: #fff;
}
.pulic_maps_cont .maps img {
  margin-right: 6px;
}
.product_last_cont {
  padding: 70px 0;
  background: #f9faf7;
}
.product_last_cont .contain {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  gap: 24px;
}
.product_last_cont .product_list {
  display: block;
  border: 1px solid #fff;
  background: #fff;
  transition: all 0.4s;
}
.product_last_cont .product_list .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 28px 22px;
  background: #fff;
}
.product_last_cont .product_list .tis_i .i {
  width: 100%;
  height: 224px;
  overflow: hidden;
}
.product_last_cont .product_list .tis_i .i img {
  display: block;
  width: 100%;
  height: 100%;
}
.product_last_cont .product_list .bit_det {
  width: 100%;
  padding: 20px 22px;
  position: relative;
  font-size: 18px;
  color: #333333;
}
.product_last_cont .product_list .bit_det .arr {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  opacity: 0;
  transition: all 0.6s;
}
.product_last_cont .product_list:hover {
  border: 1px solid #a1d224;
  transform: translateY(-10px);
}
.product_last_cont .product_list:hover .bit_det {
  background: #a1d224;
  color: #fff;
}
.product_last_cont .product_list:hover .bit_det .arr {
  right: 20px;
  opacity: 1;
}
.product_detail_main {
  padding: 60px 0;
}
.product_detail_main .tis_content {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_detail_main .tis_content .l_img_cont {
  width: 46%;
}
.product_detail_main .tis_content .r_det_cont {
  width: 48%;
}
.product_detail_main .tis_content .r_det_cont .title_head {
  padding: 28px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 38px;
  font-weight: normal;
  color: #000000;
}
.product_detail_main .tis_content .r_det_cont .det_txt {
  padding: 50px 0;
}
.product_detail_main .tis_content .r_det_cont .det_txt p {
  font-size: 17px;
  line-height: 32px;
  color: #757677;
}
.product_detail_main .tis_content .r_det_cont .det_txt .tel_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 68px;
  border-radius: 100px;
  background: #a1d224;
  font-size: 16px;
  color: #ffffff;
  margin-top: 95px;
}
.product_detail_main .bit_detail_cont .title_head {
  background: #f5f5f5;
}
.product_detail_main .bit_detail_cont .title_head span {
  display: inline-block;
  padding: 24px 0;
  width: 270px;
  text-align: center;
  background: #fff;
  font-size: 24px;
  color: #333333;
  border-top: 4px solid #a1d224;
}
.product_detail_main .bit_detail_cont .detail_cont {
  display: flex;
  justify-content: space-between;
  padding: 40px 0;
}
.product_detail_main .bit_detail_cont .detail_cont .l_txt {
  width: 46%;
}
.product_detail_main .bit_detail_cont .detail_cont .l_txt p {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}
.product_detail_main .bit_detail_cont .detail_cont .r_img {
  width: 435px;
}
.product_detail_main .bit_detail_cont .detail_cont .r_img img {
  display: block;
  width: 100%;
}
.product_head_baner {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  width: 100%;
}
.product_head_baner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.product_head_baner .pro_prev {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 11;
  background: #859197;
  border-radius: 100%;
}
.product_head_baner .pro_prev:hover {
  background: #8ab618;
}
.product_head_baner .pro_next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  cursor: pointer;
  z-index: 11;
  background: #859197;
  border-radius: 100%;
}
.product_head_baner .pro_next:hover {
  background: #8ab618;
}
.product_bit_baner {
  position: relative;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.product_bit_baner .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.product_bit_baner .swiper-slide.swiper-slide-thumb-active {
  border: 2px solid #a1d224;
}
.cooper_client_cont .cooper_title {
  margin-bottom: 45px;
}
.cooper_client_cont .cooper_title h2 {
  font-size: 42px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 20px;
}
.cooper_client_cont .cooper_title .line {
  display: block;
  width: 45px;
  height: 3px;
  background: #a1d224;
}
.cooper_client_cont .last_cont {
  padding: 70px 0;
}
.cooper_client_cont .last_cont:nth-child(even) {
  background: #f5f5f5;
}
.cooper_client_cont .link_last {
  display: grid;
  grid-template-columns: repeat(6, calc(100% / 6));
  gap: 20px;
}
.cooper_client_cont .link_last .li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 112px;
  background: #fff;
  border: 1px solid #d5dae0;
  overflow: hidden;
}
.cooper_client_cont .link_last .li img {
  display: block;
  height: 100%;
}
.contact_case_1 {
  padding: 80px 0 70px;
}
.contact_case_1 .title_cont {
  margin-bottom: 70px;
}
.contact_case_1 .title_cont h2 {
  font-size: 40px;
  color: #212529;
}
.contact_case_1 .title_cont p {
  font-size: 18px;
  color: #333333;
}
.contact_case_1 .title_cont .line {
  display: block;
  width: 45px;
  height: 3px;
  background: #a1d224;
  margin-top: 30px;
}
.contact_case_1 .last_cont {
  display: grid;
  grid-template-columns: repeat(3, calc(100% / 3));
  gap: 20px;
}
.contact_case_1 .last_cont .list {
  width: 70%;
  padding: 26px 10px;
  border-bottom: 1px solid #e2e2e2;
}
.contact_case_1 .last_cont .list .tle {
  display: flex;
  align-items: center;
  font-size: 22px;
  color: #292828;
  margin-bottom: 10px;
}
.contact_case_1 .last_cont .list .tle .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 6px;
}
.contact_case_1 .last_cont .list .tle .i img {
  display: block;
  max-width: 100%;
}
.contact_case_1 .last_cont .list .txt {
  font-size: 26px;
  color: #292828;
}
.contact_case_2 {
  padding: 70px 0;
  background: #f9f9f8;
}
.contact_case_2 .title_cont {
  margin-bottom: 70px;
}
.contact_case_2 .title_cont h2 {
  font-size: 40px;
  color: #212529;
}
.contact_case_2 .title_cont .line {
  display: block;
  width: 45px;
  height: 3px;
  background: #a1d224;
  margin-top: 30px;
}
.contact_case_2 .form_content {
  display: flex;
  flex-wrap: wrap;
}
.contact_case_2 .form_content .int {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 0 12px;
}
.contact_case_2 .form_content .int:nth-child(2n) {
  margin-right: 0;
}
.contact_case_2 .form_content .int input {
  width: 100%;
  height: 44px;
  border: none;
  font-size: 17px;
  color: #999999;
}
.contact_case_2 .form_content .int select {
  width: 100%;
  height: 44px;
  border: none;
  font-size: 17px;
  color: #999999;
  -webkit-appearance: menulist-button;
}
.contact_case_2 .form_content textarea {
  width: 100%;
  height: 136px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  border: none;
}
.contact_case_2 .sub_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 134px;
  height: 70px;
  border-radius: 100px;
  background: #a1d224;
  margin: 50px auto;
  font-size: 16px;
  color: #f7f7f7;
  border: none;
}
.news_detail_cont {
  padding: 70px 0 40px;
  background: #f9f9f8;
}
.news_detail_cont .title_head {
  text-align: center;
  margin-bottom: 50px;
}
.news_detail_cont .title_head h2 {
  font-size: 40px;
  color: #000000;
  margin-bottom: 40px;
}
.news_detail_cont .title_head p {
  font-size: 15px;
  color: #999999;
}
.news_detail_cont .detail_cont {
  padding: 50px 56px;
  background: #fff;
  margin: 30px auto;
}
.news_detail_cont .detail_cont p {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}
.news_detail_cont .detail_cont img {
  display: block;
  max-width: 100%;
  margin: 30px auto;
}
.news_detail_cont .bit_page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: #fff;
}
.news_detail_cont .bit_page .btn {
  display: flex;
  align-items: center;
  width: 40%;
  font-size: 17px;
  color: #999999;
}
.news_detail_cont .bit_page .btn .tle {
  color: #999999;
  margin-left: 10px;
}
.news_detail_cont .bit_page .btn.next {
  justify-content: flex-end;
}
.news_detail_cont .bit_page .menu {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news_detail_cont .bit_page .menu img {
  max-width: 100%;
}
.yyly_case_1 {
  padding: 70px 0;
  background: url(/static/addons/cms/images/yyly_c1_bg.png) no-repeat center;
  background-size: inherit;
}
.yyly_case_1 .tis_det {
  text-align: center;
}
.yyly_case_1 .tis_det p {
  font-size: 17px;
  color: #212529;
}
.yyly_case_1 .tis_det p span {
  color: #fb7b2e;
}
.yyly_case_1 .last_cont {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  column-gap: 34px;
  row-gap: 20px;
  margin-top: 50px;
}
.yyly_case_1 .last_cont .list {
  width: 100%;
  border-radius: 10px;
  transition: all 0.6s;
  padding: 35px 36px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.yyly_case_1 .last_cont .list .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 88px;
}
.yyly_case_1 .last_cont .list .tis_i img {
  max-width: 100%;
}
.yyly_case_1 .last_cont .list .tle {
  padding: 20px 0 30px;
  text-align: center;
  font-size: 26px;
  color: #212529;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.yyly_case_1 .last_cont .list .txt {
  font-size: 16px;
  line-height: 24px;
  color: #757677;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px;
}
.yyly_case_1 .last_cont .list:hover {
  background: #91c446;
  transform: translateY(-10px);
}
.yyly_case_1 .last_cont .list:hover .tis_i img {
  filter: brightness(1000%);
}
.yyly_case_1 .last_cont .list:hover .tle {
  color: #fff;
}
.yyly_case_1 .last_cont .list:hover .txt {
  color: #fff;
}
.yyly_title {
  text-align: center;
  margin-bottom: 20px;
}
.yyly_title h2 {
  font-size: 42px;
  color: #212529;
  margin-bottom: 14px;
}
.yyly_title .line {
  display: block;
  width: 45px;
  height: 3px;
  background: #a1d224;
  margin: 0 auto;
}
.yyly_case_2 .detail_content {
  background: #f9faf7;
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.yyly_case_2 .detail_content .l_cont {
  width: 50%;
}
.yyly_case_2 .detail_content .r_cont {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 84px;
}
.yyly_case_2 .detail_content .r_cont h2 {
  font-size: 32px;
  color: #91c446;
  margin-bottom: 44px;
}
.yyly_case_2 .detail_content .r_cont p {
  font-size: 18px;
  color: #4f4f4f;
}
.yyly_case_2 .detail_content .r_cont .det_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 167px;
  height: 55px;
  border-radius: 100px;
  background: #fff;
  font-size: 15px;
  color: #535749;
  box-shadow: 0px 0px 10px rgba(14, 13, 13, 0.06);
  margin-top: 100px;
}
.yyly_case_2 .detail_content .r_cont .det_btn img {
  margin-right: 5px;
  width: 14px;
}
.yyly_case2_baner {
  position: relative;
  overflow: hidden;
}
.yyly_case2_baner .wiper-slide img {
  display: block;
  width: 100%;
}
.yyly_case2_baner .yyly_case2_prev {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 100%;
  cursor: pointer;
}
.yyly_case2_baner .yyly_case2_prev:hover {
  background: #a1d224;
}
.yyly_case2_baner .yyly_case2_next {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 100%;
  cursor: pointer;
}
.yyly_case2_baner .yyly_case2_next:hover {
  background: #a1d224;
}
.news_main_cont {
  padding: 56px 0;
  background: #f9f9f8;
}
.news_hot_main {
  display: flex;
  align-items: center;
  background: #fff;
  margin-bottom: 56px;
}
.news_hot_main .hot_deta_cont {
  width: 50%;
  padding: 0 46px;
}
.news_hot_main .hot_deta_cont .title_head {
  margin-bottom: 64px;
}
.news_hot_main .hot_deta_cont .title_head p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 14px;
}
.news_hot_main .hot_deta_cont .title_head h2 {
  font-size: 30px;
  color: #333333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news_hot_main .hot_deta_cont .txt {
  font-size: 14px;
  line-height: 26px;
  color: #757677;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_hot_main .hot_deta_cont .det_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 152px;
  height: 50px;
  border-radius: 100px;
  background: #a1d224;
  font-size: 14px;
  color: #ffffff;
  margin: 50px 0;
}
.news_hot_main .hot_deta_cont .news_hot_page {
  position: relative;
  display: flex;
  align-items: center;
}
.news_hot_main .hot_deta_cont .news_hot_page .swiper-pagination-bullet {
  border-radius: 0;
  width: 38px;
  height: 3px;
  background: #e4e6df;
  opacity: 1;
  transition: all 0.6s;
}
.news_hot_main .hot_deta_cont .news_hot_page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #a1d224;
  width: 70px;
}
.news_hot_baner {
  width: 50%;
  position: relative;
  overflow: hidden;
}
.news_hot_baner .swiper-slide img {
  display: block;
  width: 100%;
}
.news_last_main {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  column-gap: 22px;
  row-gap: 34px;
}
.news_last_main .news_list {
  background: #fff;
  transition: all 0.6s;
}
.news_last_main .news_list .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 236px;
  overflow: hidden;
}
.news_last_main .news_list .tis_i img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
}
.news_last_main .news_list .det_cont {
  width: 100%;
  padding: 20px 24px;
}
.news_last_main .news_list .det_cont .title {
  margin-bottom: 36px;
}
.news_last_main .news_list .det_cont .title p {
  font-size: 14px;
  color: #999999;
  margin-bottom: 6px;
}
.news_last_main .news_list .det_cont .title h2 {
  font-size: 20px;
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news_last_main .news_list .det_cont .news_more_btn {
  display: block;
  padding: 12px 5px;
  position: relative;
  border-top: 1px solid #e8e8e8;
  font-size: 14px;
  color: #666666;
}
.news_last_main .news_list .det_cont .news_more_btn .arr {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.news_last_main .news_list:hover {
  background: #a1d224;
  transform: translateY(-10px);
}
.news_last_main .news_list:hover .tis_i img {
  transform: scale(1.1, 1.1);
}
.news_last_main .news_list:hover .det_cont .title p {
  color: #fff;
}
.news_last_main .news_list:hover .det_cont .title h2 {
  color: #fff;
}
.news_last_main .news_list:hover .det_cont .news_more_btn {
  border-top: 1px solid #fff;
  color: #fff;
}
.news_last_main .news_list:hover .det_cont .news_more_btn .arr {
  filter: brightness(1000%);
}
.about_pulic_title {
  margin-bottom: 40px;
}
.about_pulic_title h2 {
  font-size: 40px;
  color: #212529;
  margin-bottom: 14px;
}
.about_pulic_title .line {
  display: block;
  width: 45px;
  height: 3px;
  background: #a1d224;
}
.about_case1_main {
  position: relative;
  padding: 50px 0;
}
.about_case1_main .bg_tle {
  position: absolute;
  left: 0;
  width: 100%;
  top: -60px;
  font-size: 350px;
  font-weight: bold;
  color: #85955b;
  opacity: 0.07;
  text-transform: uppercase;
  z-index: -1;
}
.about_case1_main .warpin {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about_case1_main .l_cont {
  width: 46%;
}
.about_case1_main .l_cont .det_txt {
  margin-top: 50px;
}
.about_case1_main .l_cont .det_txt h3 {
  font-size: 25px;
  color: #74ab22;
  margin-bottom: 20px;
}
.about_case1_main .l_cont .det_txt p {
  font-size: 16px;
  line-height: 32px;
  color: #757677;
}
.about_case1_main .r_cont {
  width: 48%;
}
.about_case1_main .r_cont img {
  display: block;
  width: 100%;
}
.about_case2_main {
  padding: 50px 0;
  background: #fbfcf9;
}
.about_case2_main .warpin {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
}
.about_case2_main .warpin .list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_case2_main .warpin .list .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
}
.about_case2_main .warpin .list .i img {
  max-width: 100%;
}
.about_case2_main .warpin .list .txt {
  padding-left: 10px;
}
.about_case2_main .warpin .list .txt h2 {
  font-size: 22px;
  color: #91c446;
}
.about_case2_main .warpin .list .txt h2 span {
  display: inline-block;
  vertical-align: bottom;
  font-size: 56px;
  color: #91c446;
  line-height: 56px;
}
.about_case2_main .warpin .list .txt p {
  font-size: 17px;
  color: #333333;
}
.about_case3_main {
  padding: 70px 0;
}
.about_case3_main .last_cont {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  gap: 34px;
}
.about_case3_main .last_cont .list .tis_i {
  width: 100%;
  height: 240px;
}
.about_case3_main .last_cont .list .tis_i img {
  display: block;
  width: 100%;
  height: 100%;
}
.about_case3_main .last_cont .list .txt {
  padding: 24px 0;
  text-align: center;
  background: #eeeeee;
  font-size: 20px;
  color: #000000;
}
.about_case4_main {
  padding: 80px 0;
}
.about_case4_main .tis_cont {
  margin-bottom: 50px;
}
.about_case4_main .tis_cont .txt {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}
.about_case4_baner {
  position: relative;
  overflow: hidden;
}
.about_case4_baner .about_case4_prev {
  position: absolute;
  left: 20px;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: #e6e9e0;
  cursor: pointer;
}
.about_case4_baner .about_case4_prev:hover {
  background: #a1d224;
}
.about_case4_baner .about_case4_next {
  position: absolute;
  right: 20px;
  top: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: #e6e9e0;
  cursor: pointer;
}
.about_case4_baner .about_case4_next:hover {
  background: #a1d224;
}
.about_case4_baner .tis_i {
  display: block;
}
.about_case4_baner .tis_i img {
  display: block;
  width: 100%;
}
.about_case4_baner p {
  padding: 18px 0;
  text-align: center;
  font-size: 16px;
  color: #333333;
}
.about_case5_main {
  padding: 70px 0;
  background: #fbfcf9;
}
.about_case5_main .last_cont {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  gap: 32px;
}
.about_case5_main .last_cont .list {
  width: 100%;
  background: #fff;
  transition: all 0.6s;
  border-radius: 5px;
  overflow: hidden;
}
.about_case5_main .last_cont .list .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 392px;
}
.about_case5_main .last_cont .list .tis_i img {
  max-width: 100%;
}
.about_case5_main .last_cont .list .bit_txt {
  padding: 14px 0;
  text-align: center;
  font-size: 18px;
  color: #333333;
}
.about_case5_main .last_cont .list:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}
.about_case6_main {
  padding: 90px 0 140px;
  background: #fff url(/static/addons/cms/images/about_c6_bg.png) no-repeat center bottom;
  background-size: inherit;
  overflow: hidden;
}
.about_case6_main .last_cont {
  display: flex;
  justify-content: space-between;
}
.about_case6_main .last_cont .list {
  width: 38%;
  transition: all 0.6s;
  padding: 64px 50px;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.about_case6_main .last_cont .list .bg {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.6s;
}
.about_case6_main .last_cont .list .tis_tle {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.about_case6_main .last_cont .list .tis_tle .i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.about_case6_main .last_cont .list .tis_tle .i img {
  max-width: 100%;
}
.about_case6_main .last_cont .list .tis_tle h2 {
  font-size: 25px;
  color: #666666;
}
.about_case6_main .last_cont .list .txt {
  font-size: 22px;
  color: #333333;
  position: relative;
  z-index: 2;
}
.about_case6_main .last_cont .list.active {
  width: calc(100% - (38% + 34px));
}
.about_case6_main .last_cont .list.active .bg {
  opacity: 1;
}
.about_case6_main .last_cont .list.active .tis_tle .i img {
  filter: invert(100%);
}
.about_case6_main .last_cont .list.active .tis_tle h2 {
  color: #fff;
}
.about_case6_main .last_cont .list.active .txt {
  color: #fff;
}
.about_case7_main {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #000;
}
.about_case7_main .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.87;
}
.about_case7_main .warpin {
  display: flex;
  align-items: center;
  position: relative;
}
.about_case7_main .about_pulic_title h2 {
  color: #fff;
}
.about_case7_main .about_pulic_title .line {
  background: #fff;
}
.about_case7_main .txt_cont {
  font-size: 22px;
  line-height: 42px;
  color: #fff;
  margin-top: 40px;
}
.about_case8_main {
  padding: 90px 0 120px;
}
.about_case8_main .last_cont {
  display: grid;
  grid-template-columns: repeat(4, calc(100% / 4));
  gap: 34px;
}
.about_case8_main .last_cont .tis_i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 456px;
  background: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.about_case8_main .last_cont .tis_i img {
  max-width: 100%;
}
.about_case8_main .last_cont .txt {
  padding: 10px 0;
  font-size: 18px;
  color: #333333;
  text-align: center;
}
.about_case8_main .last_cont .list {
  transition: all 0.6s;
}
.about_case8_main .last_cont .list:hover {
  transform: translateY(-10px);
}
/* 720 */
.phone_show {
  display: none;
}
@media (max-width: 800px) {
  .warpin {
    width: 100%;
    padding: 0 1vw;
  }
  .contain {
    padding: 0 1vw;
  }
  .pulic_header_cont {
    padding: 1rem 1vw;
    position: relative;
  }
  .pulic_header_cont .logo img {
    height: 6rem;
  }
  .pulic_header_cont .r_cont {
    display: none;
  }
  .phone_menu_btn {
    width: 3rem;
    height: 2rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .phone_menu_btn .line {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 100px;
    background: #a1d224;
    position: absolute;
    transition: all 0.8s;
  }
  .phone_menu_btn .line:nth-child(1) {
    top: 0;
    left: 0;
  }
  .phone_menu_btn .line:nth-child(2) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .phone_menu_btn .line:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .phone_menu_btn.active .line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-226deg);
  }
  .phone_menu_btn.active .line:nth-child(2) {
    width: 0;
  }
  .phone_menu_btn.active .line:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(226deg);
  }
  .phone_show {
    display: block;
  }
  .phone_mene_bg {
    display: block;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 14;
    transition: all 0.8s;
  }
  .phone_mene_bg.active {
    right: 0;
  }
  .phone_mene_cont {
    display: block;
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100vh;
    background: #fff;
    padding: 1rem;
    overflow-y: scroll;
    z-index: 15;
    transition: all 0.8s;
  }
  .phone_mene_cont .li {
    padding: 1rem;
  }
  .phone_mene_cont .li .tle {
    font-size: 1.4rem;
    color: #333;
    font-weight: bold;
  }
  .phone_mene_cont .tel_det {
    display: block;
    padding: 1rem 20px;
    border-radius: 100px;
    background: #a1d224;
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
    margin: 2rem auto;
  }
  .phone_mene_cont .language_det {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .phone_mene_cont .language_det .i {
    width: 1.6rem;
    margin-right: 6px;
  }
  .phone_mene_cont .language_det select {
    font-size: 1.4rem;
    color: #333333;
    border: none;
  }
  .phone_mene_cont .language_det .arr {
    width: 1rem;
    margin-left: 10px;
  }
  .phone_mene_cont.active {
    left: 0;
  }
  .index_baner_cont .baner_house {
    display: none;
  }
  .index_baner_cont .index_page .swiper-pagination-bullet {
    width: 1rem;
    height: 1rem;
  }
  .index_pulic_title {
    margin-bottom: 2rem;
    padding-top: 2rem;
  }
  .index_pulic_title h2 {
    font-size: 2rem;
  }
  .index_pulic_title span {
    font-size: 6rem;
  }
  .index_case_1 {
    padding: 2rem 0;
  }
  .index_case_1 .warpin {
    display: flex;
    flex-wrap: wrap;
  }
  .index_case_1 .deta_cont {
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .index_case_1 .deta_cont .l_cont {
    width: 100%;
    padding: 1rem 0;
  }
  .index_case_1 .deta_cont .l_cont .deta_content .title {
    margin-bottom: 1rem;
  }
  .index_case_1 .deta_cont .l_cont .deta_content .title h2 {
    font-size: 1.8rem;
  }
  .index_case_1 .deta_cont .l_cont .deta_content .title p {
    font-size: 1.4rem;
  }
  .index_case_1 .deta_cont .l_cont .deta_content .deta_txt p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .index_case_1 .deta_cont .l_cont .deta_content .deta_txt .more_btn {
    margin-top: 1rem;
  }
  .index_case_1 .deta_cont .r_cont {
    width: 100%;
    padding: 1rem 0;
  }
  .index_case_1 .bit_cont {
    width: 100%;
    grid-template-columns: repeat(2, calc(100% / 2));
  }
  .index_case_1 .bit_cont .list {
    padding: 1rem 0;
  }
  .index_case_1 .bit_cont .list .i {
    width: 4rem;
    height: 4rem;
  }
  .index_case_1 .bit_cont .list .txt {
    padding-left: 0.5rem;
  }
  .index_case_1 .bit_cont .list .txt h2 {
    font-size: 1.6rem;
  }
  .index_case_1 .bit_cont .list .txt h2 span {
    font-size: 2rem;
    line-height: 2rem;
  }
  .index_case_1 .bit_cont .list .txt p {
    font-size: 1.4rem;
  }
  .more_btn {
    width: 16rem;
    padding: 1.2rem 0;
    font-size: 1.4rem;
  }
  .index_case_2 {
    padding: 2rem 0;
  }
  .index_case_2 .tis_cont {
    padding: 1rem 0;
    margin-bottom: 2rem;
  }
  .index_case_2 .case2_nav {
    grid-template-columns: repeat(3, calc(100% / 3));
    gap: 10px;
    margin-bottom: 1rem;
  }
  .index_case_2 .case2_nav .li {
    padding: 1rem;
  }
  .index_case_2 .case2_nav .li .i {
    height: 3rem;
  }
  .index_case_2 .case2_nav .li .i img {
    height: 2.6rem;
  }
  .index_case_2 .case2_nav .li p {
    font-size: 1.4rem;
  }
  .index_case_2 .case2_bit_cont .cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 12px;
  }
  .index_case_2 .case2_bit_cont .list .pro {
    height: 14rem;
  }
  .index_case_2 .case2_bit_cont .list .txt {
    font-size: 1.4rem;
    padding: 1rem;
  }
  .index_case_3 {
    padding: 2rem 0;
  }
  .index_case_3 .tis_content {
    margin-bottom: 10rem;
  }
  .index_case_3 .tis_content .txt {
    font-size: 1.2rem;
  }
  .index_case_3 .last_cont .list {
    height: 14rem;
  }
  .index_case_3 .last_cont .list .det_cont {
    padding-bottom: 5rem;
  }
  .index_case_3 .last_cont .list .tis_i {
    height: 8rem;
  }
  .index_case_3 .last_cont .list .tis_i img {
    height: 6rem;
  }
  .index_case_3 .last_cont .list .tle {
    font-size: 1.4rem;
  }
  .index_case_3 .last_cont .list .bit_btn .btn {
    width: 90%;
    height: 4rem;
    font-size: 1.4rem;
  }
  .index_case_3 .last_cont .list.active .det_cont {
    transform: translateY(-6rem);
  }
  .index_case_3 .last_cont .list.active .bit_btn {
    height: 10rem;
    bottom: -6rem;
  }
  .index_case_4 {
    padding: 2rem 0;
  }
  .index_case_4 .index_case4_page .page_btn {
    width: 3rem;
    height: 3rem;
    font-size: 1.8rem;
  }
  .index_case_4 .deta_cont {
    display: flex;
    flex-wrap: wrap;
  }
  .index_case_4 .deta_cont .l_nav {
    width: 100%;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, calc(100% / 2));
    margin-bottom: 1rem;
  }
  .index_case_4 .deta_cont .l_nav .li {
    padding: 1rem;
    font-size: 1.4rem;
  }
  .index_case_4 .deta_cont .l_nav .li .i {
    display: none;
  }
  .index_case_4 .deta_cont .r_cont {
    width: 100%;
  }
  .index_case_5 {
    grid-template-columns: repeat(2, calc(100% / 2));
  }
  .index_case_5 .list .bit_tle {
    padding: 2rem 0;
    font-size: 1.2rem;
  }
  .index_case_6 {
    padding: 2rem 0;
  }
  .index_case_6 .last_cont {
    padding: 3rem 0;
    grid-template-columns: repeat(2, calc(100% / 2));
    margin: 1rem 0;
    gap: 10px;
  }
  .index_case_6 .hot_news_list {
    display: block;
  }
  .index_case_6 .hot_news_list .tis_i {
    height: 14rem;
  }
  .index_case_6 .news_last {
    grid-column: 2 span;
    padding: 0 1rem;
  }
  .index_case_6 .news_last .list {
    padding: 1rem 0;
  }
  .index_case_6 .news_last .list p {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .index_case_6 .news_last .list h2 {
    font-size: 1.8rem;
  }
  .index_case_7 {
    padding: 2rem 0;
  }
  .index_case_7 .warpin {
    grid-template-columns: repeat(3, calc(100% / 3));
  }
  .index_case_8 {
    padding: 2rem 0;
    background-color: #000;
  }
  .index_case_8 .title_head h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .index_case_8 .btn {
    width: 14rem;
    height: 4rem;
    margin: 2rem auto;
    font-size: 1.4rem;
  }
  .pulic_foot_cont .tis_cont {
    padding: 2rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
  .pulic_foot_cont .tis_cont .l_about .logo {
    margin-bottom: 2rem;
  }
  .pulic_foot_cont .tis_cont .l_about .logo img {
    margin: 1rem auto;
    width: 8rem;
  }
  .pulic_foot_cont .tis_cont .l_about .tel_cont {
    margin-bottom: 1rem;
  }
  .pulic_foot_cont .tis_cont .l_about .tel_cont p {
    font-size: 1.2rem;
  }
  .pulic_foot_cont .tis_cont .l_about .tel_cont h2 {
    font-size: 1.5rem;
  }
  .pulic_foot_cont .tis_cont .r_cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    display: grid;
    padding: 1rem 0;
    gap: 10px;
  }
  .pulic_foot_cont .tis_cont .r_cont .last_dl {
    margin: 0;
  }
  .pulic_foot_cont .tis_cont .r_cont .last_dl h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .pulic_foot_cont .tis_cont .r_cont .last_dl .li {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  .pulic_foot_cont .tis_cont .r_cont .last_dl .dd {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-align: left;
  }
  .pulic_foot_cont .copy_cont {
    padding: 1rem 0;
    font-size: 1.2rem;
  }
  .pulic_baner_cont .bg {
    height: 18rem;
  }
  .pulic_baner_cont .title_head h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .pulic_maps_cont .warpin {
    flex-wrap: wrap;
  }
  .pulic_maps_cont .nav_dl {
    width: 100%;
    flex-wrap: wrap;
  }
  .pulic_maps_cont .nav_dl .li {
    width: calc(100% / 4);
    font-size: 1.2rem;
    padding: 1rem 0;
  }
  .pulic_maps_cont .maps {
    padding: 1rem 0;
  }
  .about_case1_main {
    padding: 2rem 0;
  }
  .about_case1_main .bg_tle {
    display: none;
  }
  .about_case1_main .warpin {
    flex-wrap: wrap;
  }
  .about_case1_main .l_cont {
    width: 100%;
  }
  .about_case1_main .r_cont {
    width: 100%;
    padding: 1rem 0;
  }
  .about_case2_main {
    padding: 2rem 0;
  }
  .about_case2_main .warpin {
    grid-template-columns: repeat(2, calc(100% / 2));
  }
  .about_case2_main .warpin .list {
    padding: 1rem 0;
  }
  .about_case2_main .warpin .list .i {
    width: 4rem;
    height: 4rem;
  }
  .about_case2_main .warpin .list .i img {
    width: 3rem;
  }
  .about_case2_main .warpin .list .txt {
    padding-left: 0.4rem;
  }
  .about_case2_main .warpin .list .txt h2 {
    font-size: 1.5rem;
  }
  .about_case2_main .warpin .list .txt h2 span {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
  .about_case2_main .warpin .list .txt p {
    font-size: 1.5rem;
  }
  .about_case3_main {
    padding: 2rem 0;
  }
  .about_case3_main .last_cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 20px;
  }
  .about_case3_main .last_cont .list .tis_i {
    height: 14rem;
  }
  .about_case3_main .last_cont .list .txt {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
  .product_last_cont {
    padding: 2rem 0;
  }
  .product_last_cont .contain {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 15px;
  }
  .product_last_cont .product_list .tis_i {
    padding: 1rem;
  }
  .product_last_cont .product_list .tis_i .i {
    height: 14rem;
  }
  .product_last_cont .product_list .bit_det {
    padding: 1rem 0.5rem;
    font-size: 1.5rem;
  }
  .product_detail_main {
    padding: 2rem 0;
  }
  .product_detail_main .tis_content {
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }
  .product_detail_main .tis_content .l_img_cont {
    width: 100%;
  }
  .product_detail_main .tis_content .r_det_cont {
    width: 100%;
  }
  .product_detail_main .tis_content .r_det_cont .title_head {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .product_detail_main .tis_content .r_det_cont .title_head h2 {
    font-size: 1.6rem;
  }
  .product_detail_main .tis_content .r_det_cont .det_txt {
    padding: 1rem 0;
  }
  .product_detail_main .tis_content .r_det_cont .det_txt p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .product_detail_main .tis_content .r_det_cont .det_txt .tel_btn {
    width: 12rem;
    height: 4rem;
    margin-top: 3rem;
    font-size: 1.2rem;
  }
  .product_detail_main .bit_detail_cont .title_head span {
    padding: 1.5rem 0;
    width: 10rem;
    font-size: 1.2rem;
  }
  .product_detail_main .bit_detail_cont .detail_cont {
    padding: 1rem 0;
    flex-wrap: wrap;
  }
  .product_detail_main .bit_detail_cont .detail_cont .l_txt {
    width: 100%;
  }
  .product_detail_main .bit_detail_cont .detail_cont .r_img {
    width: 100%;
  }
  .product_head_baner .pro_prev {
    width: 3rem;
    height: 3rem;
  }
  .product_head_baner .pro_prev img {
    width: 1rem;
  }
  .product_head_baner .pro_next {
    width: 3rem;
    height: 3rem;
  }
  .product_head_baner .pro_next img {
    width: 1rem;
  }
  .product_bit_baner {
    height: 4rem;
  }
  .yyly_title h2 {
    font-size: 1.8rem;
  }
  .yyly_case_1 {
    padding: 2rem 0;
  }
  .yyly_case_1 .tis_det p {
    font-size: 1.4rem;
  }
  .yyly_case_1 .last_cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 12px;
    margin-top: 20px;
  }
  .yyly_case_1 .last_cont .list {
    padding: 1rem;
  }
  .yyly_case_1 .last_cont .list .tis_i {
    height: 6rem;
  }
  .yyly_case_1 .last_cont .list .tis_i img {
    width: 4rem;
  }
  .yyly_case_1 .last_cont .list .tle {
    padding: 1rem 0;
    font-size: 1.6rem;
  }
  .yyly_case_1 .last_cont .list .txt {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .yyly_case_2 .detail_content {
    flex-wrap: wrap;
  }
  .yyly_case_2 .detail_content .l_cont {
    width: 100%;
  }
  .yyly_case_2 .detail_content .r_cont {
    width: 100%;
    padding: 2rem;
  }
  .yyly_case_2 .detail_content .r_cont h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .yyly_case_2 .detail_content .r_cont p {
    font-size: 1.4rem;
  }
  .yyly_case_2 .detail_content .r_cont .det_btn {
    width: 14rem;
    height: 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
  }
  .yyly_case_2 .detail_content .r_cont .det_btn img {
    width: 1rem;
  }
  .yyly_case2_baner {
    height: 32rem;
  }
  .yyly_case2_baner .yyly_case2_prev {
    width: 3rem;
    height: 3rem;
  }
  .yyly_case2_baner .yyly_case2_prev img {
    width: 1rem;
  }
  .yyly_case2_baner .yyly_case2_next {
    width: 3rem;
    height: 3rem;
  }
  .yyly_case2_baner .yyly_case2_next img {
    width: 1rem;
  }
  .news_main_cont {
    padding: 2rem 0;
  }
  .news_hot_baner {
    width: 100%;
  }
  .news_hot_main {
    margin-bottom: 2rem;
    flex-wrap: wrap;
  }
  .news_hot_main .hot_deta_cont {
    width: 100%;
    padding: 1rem 0;
  }
  .news_hot_main .hot_deta_cont .title_head {
    margin-bottom: 1rem;
  }
  .news_hot_main .hot_deta_cont .title_head p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .news_hot_main .hot_deta_cont .title_head h2 {
    font-size: 1.5rem;
  }
  .news_hot_main .hot_deta_cont .txt {
    font-size: 1.2rem;
    line-height: 2.4rem;
  }
  .news_hot_main .hot_deta_cont .det_btn {
    width: 12rem;
    height: 3rem;
    font-size: 1.3rem;
    margin: 2rem 0;
  }
  .news_hot_main .hot_deta_cont .news_hot_page .swiper-pagination-bullet {
    width: 2rem;
  }
  .news_hot_main .hot_deta_cont .news_hot_page .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 2.4rem;
  }
  .news_last_main {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 14px;
  }
  .news_last_main .news_list .tis_i {
    height: 14rem;
  }
  .news_last_main .news_list .det_cont {
    padding: 1rem;
  }
  .news_last_main .news_list .det_cont .title {
    margin-bottom: 2rem;
  }
  .news_last_main .news_list .det_cont .title p {
    font-size: 1.4rem;
  }
  .news_last_main .news_list .det_cont .title h2 {
    font-size: 1.6rem;
  }
  .news_last_main .news_list .det_cont .news_more_btn {
    padding: 1rem 0.5rem;
    font-size: 1.4rem;
  }
  .cooper_client_cont .cooper_title {
    margin-bottom: 2rem;
  }
  .cooper_client_cont .cooper_title h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .cooper_client_cont .last_cont {
    padding: 2rem 0;
  }
  .cooper_client_cont .link_last {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 10px;
  }
  .cooper_client_cont .link_last .li {
    height: 5rem;
  }
  .contact_case_1 {
    padding: 2rem 0;
  }
  .contact_case_1 .title_cont {
    margin-bottom: 2rem;
  }
  .contact_case_1 .title_cont h2 {
    font-size: 1.6rem;
  }
  .contact_case_1 .title_cont p {
    font-size: 1.4rem;
  }
  .contact_case_1 .title_cont .line {
    width: 2rem;
    margin-top: 1rem;
  }
  .contact_case_1 .last_cont {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact_case_1 .last_cont .list {
    width: 100%;
    padding: 1rem 0;
  }
  .contact_case_1 .last_cont .list .tle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .contact_case_1 .last_cont .list .tle .i {
    width: 5rem;
    height: 5rem;
  }
  .contact_case_1 .last_cont .list .tle .i img {
    width: 3rem;
  }
  .contact_case_1 .last_cont .list .txt {
    font-size: 1.4rem;
  }
  .contact_case_2 {
    padding: 2rem 0;
  }
  .contact_case_2 .title_cont {
    margin-bottom: 2rem;
  }
  .contact_case_2 .title_cont h2 {
    font-size: 1.5rem;
  }
  .contact_case_2 .title_cont .line {
    width: 3rem;
    margin-top: 1rem;
  }
  .contact_case_2 .form_content .int {
    width: 100%;
    margin-right: 0;
    padding: 0 1rem;
  }
  .contact_case_2 .sub_btn {
    width: 14rem;
    height: 4rem;
    margin: 2rem auto;
    font-size: 1.6rem;
  }
  .about_case6_main {
    padding: 2rem 0 4rem;
  }
  .about_case6_main .last_cont {
    flex-wrap: wrap;
  }
  .about_case6_main .last_cont .list {
    width: 100%;
    padding: 3rem 2rem;
  }
  .about_case6_main .last_cont .list .bg {
    width: 100%;
    height: 100%;
  }
  .about_case6_main .last_cont .list .tis_tle {
    margin-bottom: 2rem;
  }
  .about_case6_main .last_cont .list .tis_tle .i {
    width: 5rem;
    height: 5rem;
  }
  .about_case6_main .last_cont .list .tis_tle .i img {
    width: 3.5rem;
  }
  .about_case6_main .last_cont .list .tis_tle h2 {
    font-size: 1.4rem;
  }
  .about_case6_main .last_cont .list .txt {
    font-size: 1.4rem;
  }
  .about_case6_main .last_cont .list.active {
    width: 100%;
  }
  .about_pulic_title h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .about_case7_main {
    padding: 3rem 0;
  }
  .about_case7_main .bg {
    height: 100%;
  }
  .about_case7_main .txt_cont {
    font-size: 1.4rem;
    line-height: 2.4rem;
    margin-top: 2rem;
  }
  .about_case8_main {
    padding: 2rem 0;
  }
  .about_case8_main .last_cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 14px;
  }
  .about_case8_main .last_cont .tis_i {
    height: 22rem;
  }
  .about_case8_main .last_cont .txt {
    padding: 1rem 0;
    font-size: 1.4rem;
  }
  .about_case4_main {
    padding: 2rem 0;
  }
  .about_case4_main .tis_cont {
    margin-bottom: 2rem;
  }
  .about_case4_main .tis_cont .txt {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .about_case4_baner .about_case4_prev {
    width: 3rem;
    height: 3rem;
    left: 1rem;
  }
  .about_case4_baner .about_case4_prev img {
    width: 1rem;
  }
  .about_case4_baner .about_case4_next {
    width: 3rem;
    height: 3rem;
    right: 1rem;
  }
  .about_case4_baner .about_case4_next img {
    width: 1rem;
  }
  .about_case4_baner p {
    font-size: 1.4rem;
    padding: 1rem 0;
  }
  .about_case5_main {
    padding: 2rem 0;
  }
  .about_case5_main .last_cont {
    grid-template-columns: repeat(2, calc(100% / 2));
    gap: 15px;
  }
  .about_case5_main .last_cont .list .tis_i {
    height: 16rem;
  }
  .about_case5_main .last_cont .list .bit_txt {
    padding: 1rem 0;
    font-size: 1.5rem;
  }
  .news_detail_cont {
    padding: 2rem 0;
  }
  .news_detail_cont .title_head {
    margin-bottom: 2rem;
  }
  .news_detail_cont .title_head h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .news_detail_cont .title_head p {
    font-size: 1.4rem;
  }
  .news_detail_cont .detail_cont {
    padding: 2rem 1rem;
    margin: 1rem auto;
  }
  .news_detail_cont .detail_cont p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .news_detail_cont .detail_cont img {
    margin: 1rem auto;
  }
  .news_detail_cont .bit_page {
    padding: 1rem;
  }
  .news_detail_cont .bit_page .btn {
    width: 50%;
    padding: 0 1rem;
    font-size: 1.4rem;
  }
  .news_detail_cont .bit_page .menu {
    display: none;
    width: 2rem;
    height: 2rem;
  }
}
