header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.5s ease;
}
header .container {
  max-width: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
header .container .header_logo {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
}
header .container .header_logo img {
  height: 60px;
  width: auto;
}
header .container .header_menu {
  display: flex;
  align-items: center;
  margin-left: 10%;
}
header .container .header_menu li {
  margin-bottom: 0;
  padding: 0 20px;
}
header .container .header_menu li > a {
  display: block;
  font-size: 16px;
  text-align: center;
  line-height: 80px;
  transition: all 0.5s ease;
  border-bottom: 2px solid transparent;
}
header .container .header_menu li .submenu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 100%;
  padding: 0.4rem 0;
  display: none;
}
header .container .header_menu li .submenu div {
  display: flex;
  justify-content: center;
  gap: 2%;
  position: relative;
  z-index: 2;
}
header .container .header_menu li .submenu div a {
  padding: 8px 0.4rem;
  border-radius: 10px;
  color: #333;
  transition: all 0.5s ease;
}
header .container .header_menu li .submenu div a:hover {
  background: var(--on-color-opacity);
}
header .container .header_menu li .submenu::before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), transparent 30%);
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1;
}
header .container .header_menu li:hover > a {
  color: var(--on-color);
  border-color: var(--on-color);
  font-weight: bold;
}
header .container .header_menu li:hover .submenu::before {
  opacity: 1;
}
header:hover,
header.on {
  background: #fff;
}
.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;
}
footer {
  background: #fff;
  padding: 0.5rem 0px 0;
}
footer .container {
  display: flex;
}
footer .container .left {
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
  border-right: 1px solid rgba(144, 144, 144, 0.2);
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 30%;
}
footer .container .left img {
  height: 80px;
  margin: 0;
  object-fit: contain;
}
footer .container .left .con {
  max-width: 600px;
  width: 100%;
  padding-right: 0.45rem;
  margin-top: 0.3rem;
  line-height: 2;
}
footer .container .right {
  flex: 1;
}
footer .container .right ul {
  display: flex;
  gap: 5%;
}
footer .container .right ul li {
  flex: 1;
}
footer .container .right ul li > p {
  font-weight: 700;
  color: #000;
  margin-bottom: 0.2rem;
  font-size: 18px;
}
footer .container .right ul li div a {
  font-size: 16px;
  display: block;
  color: rgba(29, 29, 31, 0.6);
  line-height: 2;
  font-weight: 500;
}
footer .container .right ul li div p {
  display: flex;
  flex-direction: column;
}
footer .container .right ul li div p img {
  margin: 0;
  width: 20px;
  height: auto;
  object-fit: contain;
  align-items: start;
  margin-right: 5px;
}
footer .container .right ul li div p span {
  width: 100%;
  display: flex;
  align-items: center;
  color: rgba(29, 29, 31, 0.6);
  line-height: 2;
}
footer .container .right ul li div p span b {
  color: rgba(29, 29, 31, 0.6);
}
footer .container .right ul li div p span:last-child {
  padding-left: 25px;
  color: rgba(29, 29, 31);
}
footer .container .right ul li:first-child {
  margin-left: 5%;
}
footer .container .right ul li:last-child {
  flex: none;
}
footer > .bottom {
  color: #333;
  margin-top: 15px;
  padding: 15px 0px;
  border-top: 1px solid rgba(144, 144, 144, 0.2);
  text-align: center;
  font-size: 14px;
}
/* index */
.banner {
  z-index: 1;
  position: relative;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.banner .swiper-pagination-bullet-active {
  background: var(--on-color);
}
.move_line {
  display: flex;
  align-items: center;
  padding: 0.12rem 0;
}
.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-color);
  animation: move_line1 1.2s linear infinite alternate;
}
.move_line span:nth-child(2) {
  width: 6px;
  background: var(--on-color);
  animation: move_line2 1.2s linear infinite alternate;
}
.more {
  display: flex;
}
.more a,
.more p {
  display: flex;
  align-items: center;
  border-radius: 40px;
  border: 1px solid var(--on-color);
  padding: 10px;
  transition: all 0.4s ease;
  height: 0.6rem;
}
.more a img,
.more p img {
  background: var(--on-color);
  border-radius: 50%;
  padding: 0.1rem;
  width: 0.45rem;
  margin: 0;
  transition: all 0.4s ease;
}
.more a span,
.more p span {
  display: block;
  margin: 0 20px 0 20px;
}
.more a:hover,
.more p:hover {
  background: var(--on-color) !important;
  color: #fff;
}
.more a:hover img,
.more p:hover img {
  transform: rotate(-45deg);
}
.more.bg2 a {
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
  border-color: #fff;
}
.more.bg2 a:hover {
  border-color: var(--on-color);
}
.index_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index1 {
  background: #fff;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}
.index1 .container .index1_con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0.5rem;
}
.index1 .container .index1_con .item {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.index1 .container .index1_con .item .img {
  overflow: hidden;
}
.index1 .container .index1_con .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.index1 .container .index1_con .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.6rem 0.6rem 0.4rem;
  background: transparent;
  width: 100%;
  transition: all 0.4s ease;
  transform: translateY(0.3rem);
}
.index1 .container .index1_con .item .text h4 {
  color: #000;
  transition: all 0.4s ease;
}
.index1 .container .index1_con .item .text p {
  margin-top: 14px;
  transition: all 0.4s ease;
}
.index1 .container .index1_con .item .text span {
  display: inline-block;
  background: #fff;
  opacity: 0;
  width: 34px;
  height: 2px;
  transition: all 0.4s ease;
}
.index1 .container .index1_con .item:hover .img img {
  transform: scale(1.08);
}
.index1 .container .index1_con .item:hover .text {
  background: linear-gradient(to top, #2f67d2, rgba(47, 103, 210, 0));
  transform: translateY(0);
}
.index1 .container .index1_con .item:hover .text h4 {
  color: #fff;
}
.index1 .container .index1_con .item:hover .text p {
  color: #fff;
}
.index1 .container .index1_con .item:hover .text span {
  opacity: 1;
}
.index2 {
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 1rem 0;
}
.index2 .container {
  position: relative;
  z-index: 3;
}
.index2 .container .index_title .left h3 {
  color: #fff;
}
.index2 .container .index_title .left div {
  color: #fff;
}
.index2 .container .more a {
  color: #fff;
}
.index2 .container .index2_con {
  position: relative;
}
.index2 .container .index2_con .swiper {
  margin-top: 2rem;
}
.index2 .container .index2_con .swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.index2 .container .index2_con .swiper .swiper-slide .img {
  width: 100%;
  aspect-ratio: 1/0.5;
}
.index2 .container .index2_con .swiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index2 .container .index2_con .swiper .swiper-slide .text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}
.index2 .container .index2_con .swiper .swiper-slide .text h4 {
  color: #fff;
}
.index2 .container .index2_con .swiper .swiper-slide .text p {
  color: #fff;
  line-height: 1.5;
  margin-top: 10px;
}
.index2 .container .index2_con .swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.index2 .container .index2_con .swiper-button-next,
.index2 .container .index2_con .swiper-button-prev {
  color: #fff;
  z-index: 3;
}
.index2 .container .index2_con .swiper-button-next {
  right: -4%;
}
.index2 .container .index2_con .swiper-button-prev {
  left: -4%;
}
.index2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.index3 {
  background: #fff;
  position: relative;
  z-index: 4;
  padding: 1rem 0;
}
.index3 .container .index3_content {
  margin-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.index3 .container .index3_content .left {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.index3 .container .index3_content .left .img {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.75;
  overflow: hidden;
}
.index3 .container .index3_content .left .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.index3 .container .index3_content .left .text {
  flex: 1;
  background: #f6f7f9;
  padding: 0.3rem 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.index3 .container .index3_content .left .text .desc p {
  display: flex;
  gap: 20px;
  color: #333;
}
.index3 .container .index3_content .left .text .desc h4 {
  margin-top: 0.2rem;
  color: #000;
  line-height: 1.5;
}
.index3 .container .index3_content .left .text .more {
  justify-content: end;
}
.index3 .container .index3_content .left:hover .img img {
  transform: scale(1.05);
}
.index3 .container .index3_content .left:hover .text .desc h4 {
  color: var(--on-color);
}
.index3 .container .index3_content .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.index3 .container .index3_content .right .top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.index3 .container .index3_content .right .top .item {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}
.index3 .container .index3_content .right .top .item .img {
  width: 100%;
  aspect-ratio: 1/0.75;
  overflow: hidden;
}
.index3 .container .index3_content .right .top .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.index3 .container .index3_content .right .top .item .text {
  flex: 1;
  padding: 0.3rem 0.4rem;
  background: #f6f7f9;
  display: flex;
  flex-direction: column;
}
.index3 .container .index3_content .right .top .item .text .desc p {
  display: flex;
  gap: 20px;
  color: #333;
}
.index3 .container .index3_content .right .top .item .text .desc h4 {
  margin-top: 0.2rem;
  line-height: 1.5;
  color: #000;
}
.index3 .container .index3_content .right .top .item:hover .img img {
  transform: scale(1.05);
}
.index3 .container .index3_content .right .top .item:hover .text .desc h4 {
  color: var(--on-color);
}
.index3 .container .index3_content .right .bottom {
  background: #f6f7f9;
  border-radius: 10px;
  overflow: hidden;
  padding: 0.3rem 0.4rem;
}
.index3 .container .index3_content .right .bottom .item {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.index3 .container .index3_content .right .bottom .item p {
  flex: 1;
  color: #000;
}
.index3 .container .index3_content .right .bottom .item span {
  display: block;
  width: 100px;
  color: #333;
}
.index3 .container .index3_content .right .bottom .item::before {
  content: "";
  width: 0%;
  height: 2px;
  background: var(--on-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
}
.index3 .container .index3_content .right .bottom .item:hover p {
  color: var(--on-color);
}
.index3 .container .index3_content .right .bottom .item:hover::before {
  width: 100%;
}
.index3 .container .index3_content .right .bottom .item:last-child {
  margin-bottom: 0;
}
.index4 {
  background: url(../images/about.webp) no-repeat center center / cover;
  padding: 1rem 0;
  position: relative;
}
.index4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.index4 .container {
  position: relative;
  z-index: 3;
}
.index4 .container h3 {
  color: #fff;
}
.index4 .container .desc {
  margin: 0.4rem 0 0.8rem;
  color: #fff;
  width: 100%;
  max-width: 600px;
}
.index4 .container .more a {
  color: #fff;
}
.index4 .container ul {
  margin-top: 0.8rem;
  display: flex;
  gap: 2%;
  justify-content: space-between;
}
.index4 .container ul li {
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  padding: 0.1rem 0.4rem 0.3rem;
  border-radius: 10px;
  flex: 1;
  cursor: pointer;
  transition: all 0.4s ease;
}
.index4 .container ul li h4 {
  color: #000;
  font-size: 16px;
  transition: all 0.4s ease;
}
.index4 .container ul li h4 span {
  color: var(--on-color);
  display: inline-block;
  padding-right: 5px;
  transition: all 0.4s ease;
}
.index4 .container ul li p {
  margin-top: 0.3rem;
  color: #000;
  text-align: right;
  transition: all 0.4s ease;
}
.index4 .container ul li:hover {
  background: rgba(47, 103, 210, 0.8);
}
.index4 .container ul li:hover h4 {
  color: #fff;
}
.index4 .container ul li:hover h4 span {
  color: #fff;
}
.index4 .container ul li:hover p {
  color: #fff;
}
.index5 {
  background: #fafafa;
  padding: 1rem 0;
  position: relative;
}
.index5 .container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
.index5 .container .left h3 {
  margin-top: 0.2rem;
}
.list_banner {
  position: relative;
}
.list_banner .text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}
.list_banner .text h2 {
  color: #fff;
}
.list_banner .text form {
  width: 100%;
  display: flex;
  justify-content: center;
}
.list_banner .text form .input {
  margin-top: 20px;
  display: flex;
  border: 1px solid #fff;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  padding: 0.1rem 0.2rem;
}
.list_banner .text form .input input {
  border: none;
  background: transparent!important;
  outline: none;
  padding: 5px;
  margin: 0;
  font-size: 16px;
}
.list_banner .text form .input input:focus {
  outline: none;
}
.list_banner .text form .input button {
  background: transparent;
  padding: 0;
  width: 50px;
}
.inner-position {
  padding: 0.4rem 0;
  border-bottom: 1px solid #ccc;
}
.inner-position .container {
  display: flex;
  gap: 10px;
}
.inner-position .container strong {
  color: #666;
}
.inner-position .container strong i {
  display: inline-block;
  margin-right: 5px;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.3rem 0;
}
.pagination li {
  margin: 5px;
}
.pagination li a {
  display: block;
  padding: 7px 15px;
  border: 1px solid var(--on-color);
  color: var(--on-color);
}
.pagination li.active a,
.pagination li:hover a {
  background: var(--on-color);
  color: #fff;
}
.prevnext {
  display: flex;
  flex-direction: column;
  line-height: 2;
}
.prevnext li {
  padding: 10px;
}
.prevnext li a {
  color: #333;
}
.prevnext li:hover a span {
  color: var(--on-color);
}
.category {
  padding: 0.8rem 0 1rem;
}
.category .container {
  display: flex;
  justify-content: space-between;
}
.category .container .left {
  position: relative;
  width: 20%;
}
.category .container .left .left_con {
  position: sticky;
  top: 100px;
}
.category .container .left .left_con .item {
  display: flex;
  justify-content: space-between;
  padding: 0 0.3rem 0.2rem 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid var(--on-color);
  color: #333;
  transform: all 0.4s ease;
  gap: 10px;
}
.category .container .left .left_con .item i {
  font-size: 24px;
}
.category .container .left .left_con .item:hover {
  color: var(--on-color);
}
.category .container .right {
  flex: 1;
  margin-left: 5%;
}
.category .container .right .right_con .item .title {
  font-weight: 500;
  color: #000;
  padding: 5px 0 5px 0.4rem;
  border-radius: 5px;
  border-left: 5px solid #ccc;
  line-height: 0.5rem;
  margin-bottom: 0.2rem;
}
.category .container .right .right_con .item ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category .container .right .right_con .item ul li {
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  overflow: hidden;
}
.category .container .right .right_con .item ul li a .img {
  width: 100%;
  aspect-ratio: 1/0.75;
  overflow: hidden;
}
.category .container .right .right_con .item ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.category .container .right .right_con .item ul li a .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.3rem;
}
.category .container .right .right_con .item ul li a .text p {
  color: #333;
  transition: all 0.4s ease;
}
.category .container .right .right_con .item ul li a .text svg path {
  fill: #333;
  transition: all 0.4s ease;
}
.category .container .right .right_con .item ul li a:hover .img img {
  transform: scale(1.05);
}
.category .container .right .right_con .item ul li a:hover .text p {
  color: var(--on-color);
}
.category .container .right .right_con .item ul li a:hover .text svg path {
  fill: var(--on-color);
}
.show {
  padding: 1rem 0;
}
.show .list_show .list_show_top {
  margin: 5% 0;
  display: flex;
}
.show .list_show .list_show_top .left {
  width: 40%;
  border-radius: 20px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.show .list_show .list_show_top .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show .list_show .list_show_top .right {
  flex: 1;
  margin-left: 3%;
  padding: 30px 25px;
  border: 1px solid #ccc;
  border-radius: 20px;
}
.show .list_show .list_show_top .right .title {
  border-bottom: 1px solid #eee;
  color: #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.show .list_show .list_show_top .right .desc {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #555;
}
.show .list_show .list_show_top .right ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.show .list_show .list_show_top .right ul li {
  display: flex;
  align-items: center;
}
.show .list_show .list_show_top .right ul li span {
  display: inline-block;
  padding: 10px 15px;
  background: var(--on-color);
  color: #fff;
  margin-right: 10px;
  width: 110px;
}
.show .list_show .list_show_top .right ul li b {
  flex: 1;
  font-weight: 400;
}
.show .list_show .list_show_top .right a {
  display: inline-block;
  width: 40%;
  margin-bottom: 0.6rem;
  background: var(--on-color);
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  color: #fff;
}
.show .list_show .list_show_bottom .top {
  position: relative;
}
.show .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;
}
.show .list_show .list_show_bottom .top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--on-color);
  bottom: 0;
  left: 0;
}
.news {
  background: #f8faff;
  padding: 1rem 0;
}
.news .container .list_nav {
  padding-bottom: 0.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.news .container .list_nav .item {
  border: 1px solid #ccc;
  margin: 0 5px;
  border-radius: 10px;
  overflow: hidden;
}
.news .container .list_nav .item a {
  display: block;
  line-height: 55px;
  text-align: center;
  color: #333;
  background-color: #fff;
  transition: all 0.3s ease;
}
.news .container .list_nav .item:hover {
  border-color: var(--on-color);
}
.news .container .list_nav .item:hover a {
  color: #fff;
  background: var(--on-color);
}
.news .container .news_con {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news .container .news_con .item {
  background: #fff;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.news .container .news_con .item .img {
  width: 100%;
  overflow: hidden;
}
.news .container .news_con .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.news .container .news_con .item .text {
  flex: 1;
  height: 100%;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
}
.news .container .news_con .item .text .title {
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}
.news .container .news_con .item .text .info {
  margin-top: 0.2rem;
  color: #333;
}
.news .container .news_con .item .text .desc {
  flex: 1;
  display: flex;
  align-items: end;
}
.news .container .news_con .item .text .desc .desc_con {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
}
.news .container .news_con .item .text .desc .desc_con .more p {
  zoom: 0.85;
}
.news .container .news_con .item .text {
  padding: 0.3rem 0.4rem;
  margin: 0;
  height: auto;
}
.news .container .news_con .item .text .desc {
  margin-top: 0.2rem;
}
.news .container .news_con .item .text .desc .more p {
  padding: 0;
  border: 0;
  height: auto;
}
.news .container .news_con .item .text .desc .more p:hover {
  background: transparent!important;
  color: #333;
}
.news .container .news_con .item:first-child {
  padding: 0.3rem 1rem 0.3rem 0.2rem;
  display: flex;
  grid-column: 1 / -1;
  border-radius: 10px;
}
.news .container .news_con .item:first-child .img {
  width: 45%;
}
.news .container .news_con .item:first-child .text {
  flex: 1;
  height: 100%;
  margin-left: 5%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
}
.news .container .news_con .item:first-child .text .title {
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}
.news .container .news_con .item:first-child .text .info {
  margin-top: 0.2rem;
  color: #333;
  -webkit-line-clamp: 3!important;
}
.news .container .news_con .item:first-child .text .desc {
  flex: 1;
  display: flex;
  align-items: end;
}
.news .container .news_con .item:first-child .text .desc .desc_con {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333;
}
.news .container .news_con .item:first-child .text .desc .desc_con .more p {
  border: 1px solid var(--on-color);
  padding: 10px;
  height: 0.6rem;
}
.news .container .news_con .item:first-child .text .desc .desc_con .more p:hover {
  background: var(--on-color) !important;
  color: #fff;
}
.news .container .news_con .item:hover .img img {
  transform: scale(1.05);
}
.news .container .news_con .item:hover .right .title,
.news .container .news_con .item:hover .text .title {
  color: var(--on-color);
}
.news_show {
  padding: 1rem 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: 1rem 0;
}
.about1 .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}
.about1 .container .left {
  width: 55%;
}
.about1 .container .left h3 {
  color: #000;
}
.about1 .container .left .move_line {
  margin: 0.2rem 0;
}
.about1 .container .left .desc p {
  color: #333;
  line-height: 1.8;
  text-indent: 2em;
}
.about1 .container .img {
  flex: 1;
}
.about1 .container .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about2 {
  display: flex;
}
.about2 .item {
  position: relative;
  width: 16.666%;
  transition: all 0.5s ease;
  cursor: pointer;
}
.about2 .item img {
  width: 100%;
  height: 5rem;
  object-fit: cover;
  object-position: center;
}
.about2 .item::before {
  content: "";
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.about2 .item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.2rem 0.3rem;
  z-index: 3;
}
.about2 .item .text h3 {
  color: #fff;
}
.about2 .item .text p {
  color: #fff;
  height: 40px;
  opacity: 0;
  transition: all 0.4s ease;
}
.about2 .item:hover {
  width: 25%;
}
.about2 .item:hover .text p {
  opacity: 1;
}
.about3 {
  padding: 1rem 0;
}
.about3 .container .title {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
.about3 .container .title .move_line {
  margin: 0.2rem 0;
}
.about3 .container .swiper_factory {
  position: relative;
  margin-top: 0.3rem;
}
.about3 .container .swiper_factory .swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.about3 .container .swiper_factory .swiper-slide {
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 300ms;
  transform: scale(0.8);
}
.about3 .container .swiper_factory .swiper-slide-active,
.about3 .container .swiper_factory .swiper-slide-duplicate-active {
  transform: scale(1);
}
.about4 {
  padding-bottom: 1rem;
}
.about4 .container .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}
.about4 .container .slideBox2 .bd,
.about4 .container .slideBox .bd {
  overflow: hidden;
}
.about4 .container .slideBox2 .bd li,
.about4 .container .slideBox .bd li {
  width: 20%;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #ccc;
  margin: 10px;
  position: relative;
}
.about4 .container .slideBox2 .bd li img,
.about4 .container .slideBox .bd li img {
  width: 100%;
  transition: all 0.4s ease;
}
.about4 .container .slideBox2 .bd li::before,
.about4 .container .slideBox .bd li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;
  border-top: 2px solid var(--on-color);
  border-left: 2px solid var(--on-color);
  opacity: 0;
  transition: all 0.4s ease;
  background: transparent;
}
.about4 .container .slideBox2 .bd li::after,
.about4 .container .slideBox .bd li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 0%;
  border-bottom: 2px solid var(--on-color);
  border-right: 2px solid var(--on-color);
  opacity: 0;
  transition: all 0.4s ease;
  background: transparent;
}
.about4 .container .slideBox2 .bd li:hover img,
.about4 .container .slideBox .bd li:hover img {
  transform: scale(1.1);
}
.about4 .container .slideBox2 .bd li:hover::before,
.about4 .container .slideBox .bd li:hover::before,
.about4 .container .slideBox2 .bd li:hover::after,
.about4 .container .slideBox .bd li:hover::after {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.contact {
  background: url(../images/contact_bg.webp) no-repeat center center / cover;
  padding: 0 0 1rem;
  position: relative;
  z-index: 10;
}
.contact > .container {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}
.contact > .container .left {
  width: 50%;
  padding: 0.5rem 0;
}
.contact > .container .left h3 {
  color: #000;
  font-weight: 700;
}
.contact > .container .left .move_line {
  margin: 0.3rem 0;
}
.contact > .container .left h4 {
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.contact > .container .left div {
  color: #333;
  display: flex;
  align-items: center;
  margin: 5px 0;
  line-height: 2;
}
.contact > .container .left div img {
  margin: 0;
  width: auto;
  height: 100%;
  object-fit: cover;
}
.contact > .container .left div p {
  margin-left: 5px;
}
.contact > .container .right {
  width: 40%;
}
.contact > .container .right form {
  background: linear-gradient(to bottom right, #fff 0%, #e1ecff 100%);
  padding: 0.7rem 0.6rem;
  border-radius: 10px;
}
.contact > .container .right form p {
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.contact > .container .right form input,
.contact > .container .right form textarea {
  margin-bottom: 0.2rem;
  outline: none;
  line-height: 2;
  border-radius: 5px;
  overflow: hidden;
}
.contact > .container .right form input:focus,
.contact > .container .right form textarea:focus {
  outline: none;
}
.service {
  padding: 1rem 0;
}
.service .container .title {
  font-weight: 500;
  border-left: 6px solid var(--on-color);
  background: #d4e3ff;
  line-height: 0.7rem;
  padding-left: 0.2rem;
}
.service .container .service1 {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding-bottom: 1rem;
}
.service .container .service1 .item {
  border: 1px solid #ccc;
  padding: 0.2rem 0.3rem;
  border-radius: 5px;
  cursor: pointer;
}
.service .container .service1 .item i {
  font-size: 0.38rem;
  color: #b2b2b2;
}
.service .container .service1 .item h5 {
  margin-top: 0.2rem;
}
.service .container .service1 .item p {
  margin-top: 10px;
}
.service .container .service1 .item span {
  margin-top: 0.4rem;
  display: flex;
  flex: 1;
  justify-content: end;
  font-weight: 800;
  color: #d3e7ff;
}
.service .container .service2 {
  padding-top: 0.5rem;
  width: 100%;
  line-height: 2;
}
@media screen and (max-width: 1350px) {
  .index3 .container .index3_content {
    flex-direction: column;
  }
}
@media screen and (max-width: 1200px) {
  header {
    display: none;
  }
  .m-header {
    display: flex;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container .left {
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
  }
  footer .container .left .con {
    padding: 0;
  }
  footer .container .right {
    margin-top: 3%;
  }
  footer .container .right ul li {
    flex: 1!important;
  }
  footer .container .right ul li:first-child {
    margin-left: 0;
  }
  .banner,
  .list_banner {
    margin-top: 70px;
  }
  .category .container .right .right_con .item ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .show .list_show .list_show_top {
    flex-direction: column;
    gap: 20px;
  }
  .show .list_show .list_show_top .left {
    width: 100%;
  }
  .show .list_show .list_show_top .right {
    margin-left: 0;
  }
  .service .container .service1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
    .inner-position .container{
        flex-wrap: wrap;
    }
  .show .list_show .list_show_top {
    flex-direction: column;
  }
  .show .list_show .list_show_top .left {
    width: 100%;
  }
  .show .list_show .list_show_top .right {
    margin-left: 0;
    margin-top: 2%;
  }
  .show .list_show .list_show_top .right ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .show .list_show .list_show_top .right ul li span {
    width: auto;
  }
  .index1 .container .index1_con {
    grid-template-columns: repeat(2, 1fr);
  }
  .index4 .container ul li {
    padding: 0.1rem 0.2rem;
  }
  .category .container .left {
    display: none;
  }
  .category .container .right {
    margin-left: 0;
  }
  .news .container .news_con {
    grid-template-columns: repeat(2, 1fr);
  }
  .news_show .container .left {
    width: 100%;
  }
  .news_show .container .right {
    display: none;
  }
  .about1 .container {
    flex-direction: column;
    gap: 20px;
  }
  .about1 .container .left {
    width: 100%;
  }
  .about2 {
    flex-wrap: wrap;
  }
  .about2 .item {
    width: 33.33%;
  }
  .about2 .item .text p {
    opacity: 1;
  }
  .about2 .item:hover {
    width: 33.33%;
  }
  .about4 .container .slideBox2 .bd li,
  .about4 .container .slideBox .bd li {
    width: 33%;
  }
  .contact>.container {
    flex-direction: column;
  }
  .contact>.container .left {
    width: 100%;
  }
  .contact>.container .right {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer .container .right {
    display: none;
  }
  .index_title .right {
    display: none;
  }
  .index1 .container .index1_con .item .text {
    padding: 0.2rem;
  }
  .index1 .container .index1_con .item .text p {
    display: none;
  }
  .index3 .container .index3_content .right .top {
    flex-direction: column;
  }
  .index4 .container ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .index5 .container {
    flex-direction: column;
  }
  .index5 .container .right {
    margin-top: 0.3rem;
    display: flex;
    flex: 1;
    justify-content: end;
  }
  .news .container .news_con {
    grid-template-columns: repeat(1, 1fr);
  }
  .news .container .news_con .item:first-child {
    flex-direction: column;
    padding: 0;
    border-radius: 0;
  }
  .news .container .news_con .item:first-child .left {
    width: 100%;
  }
  .news .container .news_con .item:first-child .text,
  .news .container .news_con .item:first-child .right {
    margin: 0;
    padding: 0.3rem 0.4rem;
  }
  .news .container .news_con .item:first-child .text .desc,
  .news .container .news_con .item:first-child .right .desc {
    margin-top: 0.2rem;
  }
  .news .container .news_con .item:first-child .text .desc .desc_con .more p,
  .news .container .news_con .item:first-child .right .desc .desc_con .more p {
    zoom: 1;
    padding: 0;
    border: 0;
    height: auto;
  }
  .news .container .news_con .item .text {
    margin: 0;
    padding: 0.3rem 0.4rem;
  }
  .news .container .news_con .item .text .desc {
    margin-top: 0.2rem;
  }
  .news .container .news_con .item .text .desc .desc_con .more p {
    zoom: 1;
    padding: 0;
    border: 0;
    height: auto;
  }
  .about2 {
    flex-wrap: wrap;
  }
  .about2 .item {
    width: 50%;
  }
  .about2 .item .text p {
    opacity: 1;
  }
  .about2 .item:hover {
    width: 50%;
  }
  .about4 .container .slideBox2 .bd li,
  .about4 .container .slideBox .bd li {
    width: 50%;
  }
  .service .container .service1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
