header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: transparent;
  transition: all 0.5s ease;
}
header.on {
  background: #fff;
}
header.on .container .header_menu li > a {
  color: #212529;
}
header .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
header .container .header_logo {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
header .container .header_logo img {
  height: 70px;
  width: auto;
}
header .container .header_menu {
  display: flex;
  align-items: center;
}
header .container .header_menu li {
  margin-bottom: 0;
  position: relative;
}
header .container .header_menu li > a {
  display: block;
  font-size: 18px;
  text-align: center;
  line-height: 80px;
  padding: 0 18px;
  transition: color 0.5s, border-color 0.5s;
  position: relative;
  color: #fff;
}
header .container .header_menu li > a span {
  position: relative;
  z-index: 2;
}
header .container .header_menu li > a::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  transition: all 0.5s ease;
  background: var(--on-color2);
  z-index: 1;
}
header .container .header_menu li > a:hover {
  color: #fff;
}
header .container .header_menu li > a:hover::before {
  height: 100%;
}
header .container .header_menu li .submenu {
  display: none;
  background: #fff;
  width: 2.7rem;
  padding: 10px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 100%;
  left: 0;
}
header .container .header_menu li .submenu > div {
  position: relative;
}
header .container .header_menu li .submenu > div a {
  color: #333333;
  display: block;
  text-align: left;
  line-height: 20px;
  width: 100%;
  padding: 15px 20px;
  transition: all 0.3s ease;
  background: transparent;
}
header .container .header_menu li .submenu > div a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container .header_menu li .submenu > div a:hover {
  background: var(--on-color2);
  color: #fff;
}
header .container .header_menu li .submenu > div > .submenu2 {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  width: 2.7rem;
  padding: 10px 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.m-header {
  background: #fff;
  display: none;
  position: relative;
  z-index: 999;
  position: fixed;
}
.m-header .m-header_con {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  justify-content: space-between;
  height: 70px;
  padding: 0 15px;
  align-items: center;
  background: #fff;
}
.m-header .img {
  height: 100%;
  background-color: #fff;
}
.m-header .img img {
  height: 100%;
  width: auto;
}
.m-header .btns {
  display: flex;
  flex-direction: column;
}
.m-header .btns span {
  display: block;
  width: 30px;
  background: var(--on-color);
  height: 2px;
  margin: 5px 0;
  transition: all 0.5s;
}
.m-header .btns.on span:nth-child(1) {
  transform: rotate(45deg) translateX(27%);
}
.m-header .btns.on span:nth-child(2) {
  display: none;
}
.m-header .btns.on span:nth-child(3) {
  transform: rotate(-45deg) translateX(27%);
}
.m-header .menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 69px;
  left: 0;
  background: #f2f2f2;
  padding: 0 20px;
  height: calc(100vh - 69px);
  overflow-y: auto;
}
.m-header .menu .item a {
  display: block;
  line-height: 65px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 100%;
  color: #212529;
}
.m-header .menu .item a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-header .menu .item a span i {
  transition: all 0.5s ease;
  font-size: 20px;
}
.m-header .menu .item a.on span i {
  transform: rotate(90deg);
}
.m-header .menu .item .m_submenu {
  padding-left: 30px;
  display: none;
}
.m-header .menu .item .m_submenu a {
  color: #666;
}
.m-header .menu .item .m_submenu .m_submenu2 {
  display: none;
  padding-left: 30px;
}
footer {
  background: #22272d;
  padding-top: 4%;
  border-top: 6px solid var(--on-color3);
}
footer .container .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2f3439;
  padding-bottom: 15px;
}
footer .container .top .left img {
  height: 80px;
  width: auto;
  margin: 0;
}
footer .container .top .right {
  text-align: right;
  color: #fff;
}
footer .container .center {
  margin: 3% 0 7%;
  display: flex;
}
footer .container .center .center_left {
  flex: 0 0 25%;
  padding-right: 20px;
  border-right: 1px solid #2f3439;
}
footer .container .center .center_left p {
  color: #fff;
}
footer .container .center .center_left h3 {
  color: var(--on-color);
  margin: 10px 0 25px;
}
footer .container .center .center_center {
  padding-left: 50px;
  flex: 0 0 60%;
  display: flex;
}
footer .container .center .center_center .list {
  padding: 0 1rem 0 10px;
}
footer .container .center .center_center .list h4 {
  color: #fff;
  line-height: 40px;
  margin-bottom: 10px;
}
footer .container .center .center_center .list p {
  color: #6e6f70;
  line-height: 2;
}
footer .container .center .center_right {
  flex: 1;
}
footer .container .center .center_right h4 {
  color: #fff;
  line-height: 40px;
  margin-bottom: 10px;
  text-align: center;
}
footer .container .center .center_right p img {
  width: 100%;
  max-width: 130px;
}
footer .bottom {
  color: #fff;
  opacity: 0.7;
  padding: 10px 0px;
  border-top: 1px solid #32363b;
  text-align: center;
  font-size: 12px;
}
footer .bottom a {
  color: #fff;
}
/* index */
.banner .swiper-slide img{
    width: 100%;
}
.banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.banner .swiper-pagination-bullet-active {
  background: var(--on-color);
}
.move_line span {
  display: inline-block;
  margin: 0 6px 0 0;
  height: 5px;
  border-radius: 6px;
}
.move_line span:nth-child(1) {
  width: 6px;
  background: var(--on-color3);
  animation: move_line1 1.2s linear infinite alternate;
}
.move_line span:nth-child(2) {
  width: 6px;
  background: var(--on-color3);
  animation: move_line2 1.2s linear infinite alternate;
}
.more {
  width: 200px;
  padding: 8px;
  border-radius: 30px;
  line-height: 35px;
  border: 1px solid #ccc;
  margin-top: 35px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.more a {
  text-align: center;
  display: block;
  font-size: 14px;
  line-height: 2.5;
  color: #333;
}
.more a:hover {
  color: #333;
}
.more::before {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.more:hover::before {
  animation: diffusion 0.75s;
  z-index: 1;
}
.index_title h3 {
  line-height: 1.5;
  color: #000000;
  margin-top: 20px;
  font-weight: bold;
}
.index_title .title_desc {
  line-height: 1.5;
  color: #444444;
  margin-top: 10px;
}
.index1 {
  padding: 5% 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.index1 .img {
  flex: 1;
  margin-right: 5%;
}
.index1 .img img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.index1 .text {
  flex: 1;
}
.index1 .text .desc {
  color: #666;
  line-height: 2;
  margin-top: 30px;
  width: 85%;
  -webkit-line-clamp: 8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}
.index1 .text .con {
  margin-top: 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.index1 .text .con .item p {
  color: var(--on-color);
  font-weight: bold;
}
.index1 .text .con .item p span {
  height: 60px;
  line-height: 60px;
  margin-right: 10px;
}
.index1 .text .con .item div {
  color: #333;
}
.index1 .text ul {
  width: 85%;
  margin-top: 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.index1 .text ul li {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px 20px;
}
.index1 .text ul li img {
  width: 50px;
  height: auto;
  object-fit: cover;
  margin: 0;
}
.index1 .text ul li p {
  margin-left: 20px;
  color: #333;
}
.index2 {
  position: relative;
}
.index2 .slideBox {
  position: relative;
  margin-top: 40px;
}
.index2 .slideBox .hd {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
}
.index2 .slideBox .hd ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.index2 .slideBox .hd ul li {
  cursor: pointer;
  padding: 0.5rem 0.58rem 0.6rem 0.58rem;
  backdrop-filter: blur(9px);
  height: 100%;
  color: #fff;
}
.index2 .slideBox .hd ul li.on {
  border: 2px solid #f2f2f2;
  border-bottom: 0;
}
.index2 .slideBox .bd ul li {
  position: relative;
}
.index2 .slideBox .bd ul li .text {
  width: 63%;
  max-width: 1540px;
  left: 50%;
  position: absolute;
  top: 30%;
  transform: translate(-50%, -50%);
}
.index2 .slideBox .bd ul li .text h4 {
  color: #fff;
  line-height: 2;
}
.index2 .slideBox .bd ul li .text p {
  color: #fff;
  line-height: 2;
}
.index3 {
  padding: 5% 0;
}
.index3 .index_list {
  padding: 0.9rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.index3 .index_list .item {
  padding: 0 0.15rem;
  margin: 0.2rem;
}
.index3 .index_list .item .data {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
  text-shadow: 0px 5px 5px rgba(238, 115, 2, 0.4);
}
.index3 .index_list .item h3 {
  color: #333;
  height: 75px;
  overflow: hidden;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-weight: 400;
}
.index3 .index_list .item p {
  color: #555;
}
.index3 .index_list .item .img {
  margin-top: 0.3rem;
  border-radius: 6px;
  overflow: hidden;
}
.index3 .index_list .item .img img {
  transition: all 0.5s ease;
}
.index3 .index_list .item:hover h3 {
  color: var(--on-color);
}
.index3 .index_list .item:hover .img img {
  transform: scale(1.05);
}
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5%;
}
.pagination li {
  margin: 5px;
}
.pagination li a {
  padding: 7px 15px;
  border: 1px solid var(--on-color);
  color: var(--on-color);
  display: block;
}
.pagination li.active a {
  background-color: var(--on-color);
  color: #fff;
}
.list_con {
  padding: 5% 0;
}
.list_con .list_nav {
  padding-bottom: 40px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
.list_con .list_nav .item {
  border: 1px solid #ccc;
  /*margin: 0 5px;*/
  border-radius: 10px;
  overflow: hidden;
}
.list_con .list_nav .item a {
  display: block;
  line-height: 55px;
  text-align: center;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}
.list_con .list_nav .item:hover {
  border-color: var(--on-color);
}
.list_con .list_nav .item:hover a {
  color: #fff;
  background: var(--on-color);
}
.list_con .list_box {
  display: flex;
  margin: 3% 0 5%;
}
.list_con .list_box .left {
  width: 20%;
}
.list_con .list_box .left ul {
  position: sticky;
  top: 120px;
}
.list_con .list_box .left ul li a {
  display: block;
  line-height: 50px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0 15px;
  transition: all 0.3s ease;
}
.list_con .list_box .left ul li.active a,
.list_con .list_box .left ul li:hover a {
  border-color: var(--on-color);
  background-color: var(--on-color);
  color: #fff;
}
.list_con .list_box .right {
  flex: 1;
  margin-left: 3%;
}
.list_con .list_box .right .right_con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.list_con .list_box .right .right_con .item {
  border: 1px solid #ccc;
  display: block;
}
.list_con .list_box .right .right_con .item .img {
  overflow: hidden;
}
.list_con .list_box .right .right_con .item .img img {
  transition: all 0.5s ease;
}
.list_con .list_box .right .right_con .item .text {
  position: relative;
  text-align: center;
  padding: 20px;
}
.list_con .list_box .right .right_con .item .text h4 {
  font-weight: 400;
}
.list_con .list_box .right .right_con .item .text p {
  line-height: 1.5;
  color: #333;
  opacity: 0;
  transition: all 0.5s ease;
}
.list_con .list_box .right .right_con .item .text::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  background: transparent;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
  z-index: 2;
}
.list_con .list_box .right .right_con .item:hover .img img {
  transform: scale(1.05);
}
.list_con .list_box .right .right_con .item:hover .text p {
  opacity: 1;
}
.list_con .list_box .right .right_con .item:hover .text::before {
  background: var(--on-color);
}
.list_con .list_show .list_show_top {
  margin: 5% 0;
  display: flex;
}
.list_con .list_show .list_show_top .left {
  width: 40%;
  border-radius: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.list_con .list_show .list_show_top .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_con .list_show .list_show_top .right {
  flex: 1;
  margin-left: 3%;
  padding: 30px 25px;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.list_con .list_show .list_show_top .right .title {
  border-bottom: 1px solid #eee;
  color: #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.list_con .list_show .list_show_top .right .desc {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #555;
}
.list_con .list_show .list_show_top .right .tel {
  margin-bottom: 20px;
  color: var(--on-color);
}
.list_con .list_show .list_show_top .right .tel span {
  color: #555;
}
.list_con .list_show .list_show_top .right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.list_con .list_show .list_show_top .right ul li span {
  display: inline-block;
  padding: 10px 15px;
  background: var(--on-color);
  color: #fff;
  margin-right: 10px;
}
.list_con .list_show .list_show_top .right a {
  display: inline-block;
  width: 40%;
  margin-bottom: 60px;
  background: var(--on-color);
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  color: #fff;
}
.list_con .list_show .list_show_bottom .top {
  position: relative;
}
.list_con .list_show .list_show_bottom .top p {
  display: inline-block;
  color: #fff;
  background: var(--on-color);
  padding: 10px 15px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-bottom: 5px;
}
.list_con .list_show .list_show_bottom .top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--on-color);
  bottom: 0;
  left: 0;
}
.list_con .news_list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #ccc;
}
.list_con .news_list .item .text {
  flex: 1;
}
.list_con .news_list .item .text .data {
  font-weight: bold;
  min-height: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  color: var(--on-color);
}
.list_con .news_list .item .text .title {
  width: 80%;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  font-weight: 600;
  color: #333;
}
.list_con .news_list .item .text .title::before {
  content: '';
  position: absolute;
  width: 5%;
  height: 2px;
  background: var(--on-color);
  bottom: 0;
  left: 0;
  transition: all 0.5s ease;
}
.list_con .news_list .item .text .desc {
  width: 80%;
  color: #555;
}
.list_con .news_list .item .img {
  width: calc(30% - 0.5rem);
  overflow: hidden;
  border-top-left-radius: 0.5rem;
}
.list_con .news_list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}
.list_con .news_list .item:hover .text .title::before {
  width: 115%;
}
.list_con .news_list .item:hover .img img {
  transform: scale(1.05);
}
.list_con .video_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 5%;
}
.list_con .video_list .item {
  position: relative;
}
.list_con .video_list .item p {
  margin-top: 15px;
  color: #333;
  text-align: center;
}
.list_con .video_list .item .img {
  position: relative;
  overflow: hidden;
}
.list_con .video_list .item .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  opacity: 0;
  transition: all 0.5s ease;
}
.list_con .video_list .item .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/video.png) no-repeat center center;
  background-size: 100px;
  z-index: 3;
  opacity: 0;
  transition: all 0.5s ease;
}
.list_con .video_list .item:hover .img::before {
  opacity: 1;
}
.list_con .video_list .item:hover .img::after {
  opacity: 1;
}
.list_con .video_list .item .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news_show {
  padding: 5% 0;
  background: #fafafa;
}
.news_show .container {
  display: flex;
  justify-content: space-between;
}
.news_show .container .left {
  background: #fff;
  width: 70%;
  padding: 30px;
  border-radius: 15px;
}
.news_show .container .left .title {
  color: #333;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 10px;
}
.news_show .container .left .data {
  line-height: 2;
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}
.news_show .container .left .prevnext {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.news_show .container .left .prevnext li a {
  font-size: 14px;
  color: #555;
}
.news_show .container .right {
  width: calc(30% - 30px);
}
.news_show .container .right .right_con {
  padding: 30px;
  background: #fff;
  position: sticky;
  top: 120px;
}
.news_show .container .right .right_con .title {
  color: #333;
  line-height: 2;
}
.news_show .container .right .right_con ul li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f5f5f5;
  font-size: 14px;
}
.news_show .container .right .right_con ul li a {
  display: block;
}
.news_show .container .right .right_con ul li a div {
  color: #000;
  line-height: 2;
  margin-bottom: 10px;
  font-weight: 500;
}
.news_show .container .right .right_con ul li a p {
  font-weight: 400;
  color: #a5a5a5;
}
.about1 {
  padding: 5% 0;
}
.about1 .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.about1 .container .img {
  flex: 1;
}
.about1 .container .img img {
  border-radius: 15px;
}
.about1 .container .text {
  flex: 1;
  padding-right: 5%;
}
.about1 .container .text .desc {
  color: #666;
  line-height: 2;
  margin-top: 30px;
  width: 100%;
  margin-bottom: 10px;
}
.about1 .container .text .con {
  margin-top: 5%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.about1 .container .text .con .item p {
  color: var(--on-color);
  font-weight: bold;
}
.about1 .container .text .con .item p span {
  height: 60px;
  line-height: 60px;
  margin-right: 10px;
}
.about1 .container .text .con .item div {
  color: #333;
}
.about2 {
  padding: 5% 0;
}
.about2 .container ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0.5rem;
}
.about2 .container ul li {
  border-radius: 10px;
  overflow: hidden;
}
.about3 {
  padding: 5% 0;
}
.about3 .container .service_con {
  padding-top: 5%;
  display: flex;
  align-items: center;
}
.about3 .container .service_con .img {
  width: 35%;
  border-radius: 20px;
  overflow: hidden;
}
.about3 .container .service_con .text {
  padding-left: 5%;
  flex: 1;
}
.about3 .container .service_con .text h4 {
  margin-bottom: 20px;
}
.about3 .container .service_con .text p {
  line-height: 2;
}
.about3 .container .service_con .text div {
  font-weight: 500;
  margin-top: 20px;
}
.contact1 {
  padding: 5% 0;
}
.contact1 .container .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3%;
  gap: 20px;
}
.contact1 .container .content .item {
  border-radius: 20px;
  border: 1px solid #ccc;
  padding: 40px 20px;
}
.contact1 .container .content .item img {
  margin: 0 0 20px;
}
.contact1 .container .content .item h4 {
  color: #333;
  line-height: 2;
}
.contact1 .container .content .item p {
  color: #666;
  line-height: 2;
}
.contact2 {
  padding: 5% 0;
}
.contact2 .container .content {
  margin-top: 3%;
}
.contact2 .container .content form section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}
.contact2 .container .content form label {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.contact2 .container .content form label p {
  color: #999;
}
.contact2 .container .content form label input,
.contact2 .container .content form label textarea {
  margin-top: 10px;
  border: none;
  background: transparent;
}
.contact2 .container .content form label input:focus,
.contact2 .container .content form label textarea:focus {
  box-shadow: none;
  border: none;
  outline: none;
}
.contact2 .container .content form > label {
  margin-top: 2%;
}
.contact2 .container .content form button {
  margin-top: 2%;
  background: var(--on-color);
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  line-height: 2;
}
@media screen and (max-width: 1520px) {
  header .container {
    justify-content: end;
  }
}
@media screen and (max-width: 1200px) {
  header {
    display: none;
  }
  .m-header {
    display: flex;
  }
  .list_banner{
      margin-top: 70px;
  }
  .banner {
    margin-top: 70px;
  }
  .list_con .list_box .right .right_con {
    grid-template-columns: repeat(2, 1fr);
  }
  .list_con .news_list .item .text .title {
    width: 90%;
  }
  .list_con .news_list .item .text .desc {
    width: 90%;
  }
  .about1 .container {
    flex-direction: column;
  }
  .about1 .container .text {
    padding-right: 0;
    margin-bottom: 3%;
  }
  .about2 .container ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .about3 .container .service_con {
    flex-direction: column;
  }
  .about3 .container .service_con .text {
    flex: 1;
    margin-top: 3%;
    padding-left: 0;
  }
  .about3 .container .service_con .img {
    width: 100%;
  }
  .about3 .container .service_con .img img {
    width: 100%;
  }
  .contact1 .container .content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991px) {
  footer .container {
    display: none;
  }
  .index1 {
    flex-direction: column;
  }
  .index1 .img {
    margin-right: 0;
  }
  .index1 .img img {
    border-radius: 0;
  }
  .index1 .text {
    padding: 0 20px;
  }
  .index1 .text .desc {
    width: 100%;
  }
  .index1 .text .con .item {
    text-align: center;
  }
  .index1 .text ul {
    width: 100%;
    margin-top: 5%;
  }
  .index3 .index_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .list_con .list_box .left {
    display: none;
  }
  .list_con .list_box .right {
    flex: 1;
    margin-left: 0;
  }
  .list_con .list_show .list_show_top {
    flex-direction: column;
  }
  .list_con .list_show .list_show_top .left {
    width: 100%;
  }
  .list_con .list_show .list_show_top .right {
    margin-left: 0;
    margin-top: 2%;
  }
  .list_con .list_show .list_show_top .right ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .list_con .news_list .item .text .title {
    width: 90%;
  }
  .list_con .news_list .item .text .desc {
    width: 90%;
  }
  .list_con .news_list .item .img {
    width: 35%;
  }
  .list_con .news_list .item:hover .text .title::before {
    width: 100%;
  }
  .list_con .video_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .news_show .container .left {
    flex: 1;
  }
  .news_show .container .right {
    display: none;
  }
  .index2 .slideBox .bd ul li .text{
      display: none;
  }
}
@media screen and (max-width: 768px) {
  .index2 .slideBox .hd {
    position: static;
  }
  .index2 .slideBox .hd ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .index2 .slideBox .hd ul li {
    padding: 0.2rem;
    background-color: rgba(54, 169, 0, 0.1);
    color: #333;
    text-align: center;
    border-width: 2px solid transparent;
  }
  .index2 .slideBox .hd ul li p:nth-child(2){
      display: none;
  }
  .index2 .slideBox .bd ul li {
    overflow: hidden;
  }
  .index2 .slideBox .bd ul li img {
    height: auto;
    width: auto;
    object-fit: cover;
  }
  .index2 .slideBox .bd ul li .text {
    top: 50%;
  }
  .index3 .index_list {
    grid-template-columns: repeat(1, 1fr);
  }
  .index3 .index_list .item {
    margin: 0.2rem 0;
    padding: 0;
  }
  .list_con .list_nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .list_con .list_nav .item {
    margin: 0;
  }
  .list_con .list_box .right .right_con .item .text {
    padding: 10px;
  }
  .list_con .list_box .right .right_con .item .text p {
    display: none;
  }
  .list_con .news_list .item {
    flex-direction: column;
  }
  .list_con .news_list .item .text .title {
    width: 100%;
  }
  .list_con .news_list .item .text .desc {
    width: 100%;
  }
  .list_con .news_list .item .img {
    width: 100%;
    margin-top: 20px;
  }
  .contact1 .container .content {
    grid-template-columns: repeat(1, 1fr);
  }
  .contact2 .container .content form section {
    display: flex;
    flex-direction: column;
  }
  .contact2 .container .content form section label {
    margin-bottom: 2%;
  }
  .contact2 .container .content form > label {
    margin-top: 0;
  }
}
