@import url("//at.alicdn.com/t/font_3439955_dp4vcf1js7k.css");
@import url("public.css");
/*公共部分-begin*********/
body {
  background: #f4f4f4;
  min-width: 320px;
}
.pc_header_kong {
  height: 95px;
  width: 100%;
  background: #fff;
}
.pc_header {
  width: 100%;
  height: 95px;
  background: #fff;
  padding: 0 30px;
  position: relative;
  z-index: 99;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0);
  transition: 0.2s all ease-in;
}
.pc_header .pc_header_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #11baa4;
  animation: line_move 1s ease-in;
}
@keyframes line_move {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.pc_header .pc_header_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.pc_header .pc_header_main .mlogo {
  width: 190px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_header .pc_header_main .mlogo img {
  width: 100%;
}
.pc_header .pc_header_main ul {
  width: 60%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.pc_header .pc_header_main ul li {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_header .pc_header_main ul li .header_link {
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: 0.2s all ease-in;
  position: relative;
  z-index: 50;
  height: 100%;
}
.pc_header .pc_header_main ul li .header_link p {
  white-space: nowrap;
}
.pc_header .pc_header_main ul li .header_link i {
  margin-left: 4px;
  transition: 0.2s all ease-in;
}
.pc_header .pc_header_main ul li .header_pop {
  position: absolute;
  width: 100%;
  left: 0;
  top: 95px;
  background: #fff;
  border-top: 1px solid #11baa4;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease-in;
  z-index: 30;
  box-shadow: 0 6px 13px -5px rgba(18, 188, 167, 0.3);
}
.pc_header .pc_header_main ul li .header_pop a {
  display: flex;
  align-items: center;
  margin: 0 30px;
  transition: 0.2s all ease-in;
}
.pc_header .pc_header_main ul li .header_pop i {
  color: #333;
  display: block;
  margin-right: 6px;
  font-size: 15px;
  transition: color 0.2s ease-in;
}
.pc_header .pc_header_main ul li .header_pop span {
  font-size: 15px;
  color: #333;
  transition: color 0.2s ease-in;
}
.pc_header .pc_header_main ul li .header_pop a:hover {
  transform: translateY(-3px);
}
.pc_header .pc_header_main ul li .header_pop a:hover i {
  color: #11baa4;
}
.pc_header .pc_header_main ul li .header_pop a:hover span {
  color: #11baa4;
}
.pc_header .pc_header_main ul li:hover .header_link {
  transform: translateY(-2px);
  color: #11baa4;
}
.pc_header .pc_header_main ul li:hover .header_link i {
  transform: rotate(180deg);
}
.pc_header .pc_header_main ul li:hover .header_pop {
  height: 80px;
  visibility: visible;
  opacity: 1;
}
/* 首页单独导航样式 */
.pc_index_header_ul {
  width: 60%;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  z-index: 10;
}
.pc_index_header_ul li {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_index_header_ul li .header_link {
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: 0.2s all ease-in;
  position: relative;
  z-index: 50;
  height: 100%;
}
.pc_index_header_ul li .header_link p {
  white-space: nowrap;
}
.pc_index_header_ul li .header_link i {
  margin-left: 4px;
  transition: 0.2s all ease-in;
}
.pc_index_header_ul li .header_pop {
  position: absolute;
  width: 100%;
  left: 0;
  top: 55px;
  background: #fff;
  border-top: 1px solid #11baa4;
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all ease-in;
  z-index: 30;
  box-shadow: 0 6px 13px -5px rgba(18, 188, 167, 0.3);
}
.pc_index_header_ul li .header_pop a {
  display: flex;
  align-items: center;
  margin: 0 30px;
  transition: 0.2s all ease-in;
}
.pc_index_header_ul li .header_pop i {
  color: #333;
  display: block;
  margin-right: 6px;
  font-size: 15px;
  transition: color 0.2s ease-in;
}
.pc_index_header_ul li .header_pop span {
  font-size: 15px;
  color: #333;
  transition: color 0.2s ease-in;
}
.pc_index_header_ul li .header_pop a:hover {
  transform: translateY(-3px);
}
.pc_index_header_ul li .header_pop a:hover i {
  color: #11baa4;
}
.pc_index_header_ul li .header_pop a:hover span {
  color: #11baa4;
}
.pc_index_header_ul li:hover .header_link {
  transform: translateY(-2px);
  color: #11baa4;
}
.pc_index_header_ul li:hover .header_link i {
  transform: rotate(180deg);
}
.pc_index_header_ul li:hover .header_pop {
  height: 80px;
  visibility: visible;
  opacity: 1;
}


.pc_header .pc_header_main .header_btn {
  display: flex;
  align-items: center;
  height: 100%;
}
.pc_header .pc_header_main .header_btn a {
  width: 100px;
  height: 40px;
  border-radius: 3px;
  box-shadow: 0 0 0 rgba(18, 188, 167, 0.3);
  transition: 0.2s all ease-in;
}

.pc_header .pc_header_main .header_btn a:last-child {
  background: #fff;
  border: 1px solid #11baa4;
  color: #11baa4;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.pc_header .pc_header_main .header_btn a:first-child {
  font-size: 16px;
  color: #fff;
  background: #11baa4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_header .pc_header_main .header_btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 13px rgba(18, 188, 167, 0.3);
}
.pc_header.curr {
  height: 80px;
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.3);
}
.pc_header.curr .header_pop {
  top: 80px!important;
}
.pc_footer {
  background: #000;
  width: 100%;
  padding: 45px 30px 0 30px;
}
.pc_footer .pc_footer_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.pc_footer .pc_footer_top {
  display: flex;
  margin-bottom: 50px;
}
.pc_footer .pc_footer_top img {
  height: 54px;
  width: auto;
}
.pc_footer .pc_footer_top img:first-child {
  margin-right: 35px;
}
.pc_footer .pc_footer_mid {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pc_footer .pc_footer_mid ul {
  display: flex;
  width: 56%;
  justify-content: space-between;
}
.pc_footer .pc_footer_mid ul li h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 23px;
}
.pc_footer .pc_footer_mid ul li a {
  font-size: 14px;
  color: #bfbfbf;
  display: block;
  margin-bottom: 16px;
  transition: 0.2s all ease-in;
}
.pc_footer .pc_footer_mid ul li a:hover {
  color: #7a7a7a;
}
.pc_footer .pc_footer_mid .footer_contact h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 25px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_code_list {
  display: flex;
  align-items: center;
}
.pc_footer .pc_footer_mid .footer_contact .footer_code_list img {
  margin-right: 15px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_code_list img:last-child {
  margin-right: 0;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom {
  display: flex;
  align-items: center;
  margin-top: 28px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom .mleft {
  margin-right: 25px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom .mleft p {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #bfbfbf;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom .mleft p span {
  font-size: 12px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom .mleft h4 {
  color: #11baa4;
  font-size: 28px;
  font-weight: bold;
  margin-top: 3px;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom a {
  padding: 10px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: #11baa4;
  transition: 0.2s all ease-in;
}
.pc_footer .pc_footer_mid .footer_contact .footer_contact_mbom a:hover {
  background: #098d79;
}
.pc_footer .pc_footer_img {
  display: flex;
  align-items: center;
}
.pc_footer .pc_footer_img .mimg {
  width: 103;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 29px;
}
/* 2022-9-1 修改 */
.pc_footer .pc_footer_img .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(100%); */
  transition: 0.2s all ease-in;
  /* opacity: .6; */
}
.pc_footer .pc_footer_img .mimg img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.pc_footer .pc_footer_bom {
  margin-top: 20px;
  border-top: 1px solid #999;
  width: 100%;
  padding: 15px 0 12px 0;
}
.pc_footer .pc_footer_bom .friend_link {
  display: flex;
}
.pc_footer .pc_footer_bom .friend_link span {
  color: #7a7a7a;
  font-size: 13px;
  flex-shrink: 0;
}
.pc_footer .pc_footer_bom .friend_link .mmain {
  display: flex;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
  overflow: hidden;
  height: 22px;
}
.pc_footer .pc_footer_bom .friend_link a {
  display: inline-block;
  margin-right: 20px;
  color: #7a7a7a;
  transition: 0.2s all ease-in;
}
.pc_footer .pc_footer_bom .friend_link a:hover {
  color: #bfbfbf;
}
.pc_footer .footer_icp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px;
}
.pc_footer .footer_icp p {
  color: #7a7a7a;
}
.pc_footer .footer_icp a {
  display: flex;
  align-items: center;
  margin-right: 15px;
  color: #7a7a7a;
}
.pc_footer .footer_icp a:last-child {
  margin-right: 0;
}
.pc_footer .footer_icp img {
  margin-right: 5px;
}
.xhsider {
  background: #fff;
  position: fixed;
  top: 50%;
  right: 10px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  transition: 0.2s all ease-in;
  transform: translateX(100px);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.xhsider ul {
  width: 100%;
}
.xhsider li {
  width: 100%;
  position: relative;
}
.xhsider a {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: ;
  padding: 15px 8px;
  border-bottom: 1px solid #efefef;
  transition: 0.2s all ease-in;
}
.xhsider a i {
  color: #11baa4;
  margin-bottom: 10px;
  font-size: 18px;
  transition: color 0.2s ease-in;
}
.xhsider a p {
  font-size: 13px;
  color: #666;
  transition: color 0.2s ease-in;
}
.xhsider li:hover a {
  background: #11baa4;
  transition: 0.2s all ease-in;
  transform: translateY(-2px);
}
.xhsider li:hover a i {
  color: #fff;
}
.xhsider li:hover a p {
  color: #fff;
}
.xhsider li:hover .sider_pop {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  z-index: 2;
}
.xhsider .sider_pop {
  position: absolute;
  top: 0;
  right: 75px;
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  flex-direction: column;
  width: auto;
  transition: 0.2s all ease-in;
  transform: translateX(-30px);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.xhsider .sider_pop h3 {
  font-size: 22px;
  font-weight: bold;
  color: #11baa4;
  white-space: nowrap;
  margin-bottom: 5px;
}
.xhsider .sider_pop p {
  white-space: nowrap;
  font-size: 14px;
  text-align: center;
  color: #333;
  margin-bottom: 5px;
}
.xhsider .sider_pop span {
  text-align: center;
  font-size: 13px;
  color: #666;
  white-space: nowrap;
}
.xhsider .sider_pop img {
  width: 100%;
}
.xhsider li:first-child a {
  border-radius: 5px 5px 0 0;
}
.xhsider li:last-child a {
  border-radius: 0 0 5px 5px;
}
.xhsider.curr {
  transform: translateX(0);
  opacity: 1;
  z-index: 99;
  visibility: visible;
}
.product_list {
  width: calc(100% - 280px);
}
.product_list li {
  width: 100%;
  margin-bottom: 10px;
}
.product_list a {
  transition: 0.2s all ease-in;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}
.product_list a .mmain {
  width: 80%;
}
.product_list a .mmain .minfo {
  width: 100%;
}
.product_list a .mmain .mtop {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 11px;
}
.product_list a .mmain .mtop p {
  font-size: 17px;
  font-weight: bold;
  color: #11baa4;
  white-space: nowrap;
}
.product_list a .mmain .mtop h3 {
  transition: color 0.2s ease-in;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.product_list a .mmain .mbom {
  flex: 1;
}
.product_list a .mmain .mbom dl {
  display: flex;
  align-items: center;
}
.product_list a .mmain .mbom dd {
  color: #999;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid #efefef;
}
.product_list a .mmain .mbom i {
  margin-right: 5px;
}
.product_list a .mmain .mbom span {
  color: #ff7e19;
  font-size: 14px;
  font-weight: bold;
}
.product_list a .mmain .mfont {
  padding: 8px 15px;
  font-size: 13px;
  color: #666;
  background: #F9F9F9;
  margin-top: 10px;
  width: 100%;
  border-radius: 5px;
}
.product_list a .mmain .mfont p {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}
.product_list a .mright {
  width: 20%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product_list a .mright img {
  width: 90px;
  transform: rotate(-20deg);
}
.product_list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 20px -6px rgba(127, 127, 127, 0.2);
}
.product_list a:hover .mmain .mtop h3 {
  color: #11baa4;
}
.product_page_main_list {
  width: calc(100% - 280px);
  overflow: hidden;
}
.product_page_main_list .product_list {
  width: 100%;
}
/*公共部分-over*********/
/*首页-begin*********/
.ind_banner {
  width: 100%;
  position: relative;
  background: #fff;
  padding-top: 5px;
}
.ind_banner .ind_banner_top {
  height: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind_banner .ind_banner_top .ind_banner_mobile {
  display: flex;
  align-items: center;
  transform: translateY(-5px);
}
.ind_banner .ind_banner_top .ind_banner_mobile .mleft {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 11px;
  background: #11baa4;
}
.ind_banner .ind_banner_top .ind_banner_mobile .mleft i {
  color: #fff;
  font-size: 30px;
}
.ind_banner .ind_banner_top .ind_banner_mobile .mright p {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}
.ind_banner .ind_banner_top .ind_banner_mobile .mright h2 {
  font-size: 18px;
  font-weight: bold;
  color: #11baa4;
}
.ind_banner .ind_banner_swi {
  height: 400px;
  width: 100%;
}
.ind_banner .ind_banner_swi .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.ind_banner .ind_banner_swi .swiper-slide {
  width: 100%;
  height: 100%;
}
.ind_banner .ind_banner_swi .swiper-pagination-bullet {
  background: #fff;
  width: 8px;
  height: 8px;
  transition: 0.2s all ease-in;
  opacity: .9;
}
.ind_banner .ind_banner_swi .swiper-pagination-bullet-active {
  background: #fff;
  width: 22px;
  border-radius: 8px;
}
.ind_banner .ind_banner_swi .swiper-pagination {
  bottom: 20px;
}
.ind_banner .ind_banner_swi a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ind_banner .ind_banner_swi a .mmain {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.ind_banner .ind_banner_swi a .mmain .mfont {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding-left: 60px;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ind_banner .ind_banner_swi a .mmain .mtop {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
.ind_banner .ind_banner_swi a .mmain .mtop p {
  margin-bottom: 10px;
}
.ind_banner .ind_banner_swi a .mmain h1 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
}
.ind_banner .ind_banner_swi a .mmain .mbom {
  background: url(/images/bannericon01.png) no-repeat 100% 100%;
  width: 462px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.ind_banner .ind_banner_swi a .mmain .mbom p {
  text-align: center;
  font-size: 22px;
  color: #0962ed;
}
.ind_banner .ind_banner_swi a .mimg {
  width: 100%;
  height: 100%;
}
.ind_banner .ind_banner_swi a .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind_banner .ind_banner_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 30;
  display: flex;
}
.ind_banner .ind_banner_main .ind_project {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
  width: 235px;
  flex-shrink: 0;
}
.ind_banner .ind_banner_main .ind_project .ind_project_title {
  height: 50px;
  background: #11baa4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  width: 100%;
}
.ind_banner .ind_banner_main .ind_project .ind_project_main {
  width: 100%;
  background: #fff;
  height: 390px;
}
.ind_banner .ind_banner_main .ind_project ul {
  width: 100%;
}
.ind_banner .ind_banner_main .ind_project li {
  padding: 11px 12px 0 12px;
  transition: 0.2s all ease-in;
}
.ind_banner .ind_banner_main .ind_project li .mtop {
  display: flex;
  align-items: center;
  margin-bottom: 6.2px;
}
.ind_banner .ind_banner_main .ind_project li .mtop a {
  font-size: 16px;
  color: #333;
  transition: 0.2s all ease-in;
  font-weight: bold;
  color: #11baa4;
  white-space: nowrap;
}
.ind_banner .ind_banner_main .ind_project li .mtop i {
  font-size: 15px;
  color: #666;
  margin-left: 5px;
}
.ind_banner .ind_banner_main .ind_project li .mbom {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 11px;
  overflow: hidden;
}
.ind_banner .ind_banner_main .ind_project li .mbom a {
  font-size: 14px;
  color: #666;
  transition: 0.2s all ease-in;
  white-space: nowrap;
}
.ind_banner .ind_banner_main .ind_project li .mbom span {
  display: block;
  width: 1px;
  height: 14px;
  flex-shrink: 0;
  background: #999;
  margin: 0 9px;
}
.ind_banner .ind_banner_main .ind_project li:hover {
  box-shadow: 0 0 12px rgba(12, 127, 112, 0.6);
}
.ind_banner .ind_banner_main .ind_project li:hover .mtop a {
  color: #0ea38f!important;
}
.ind_banner .ind_banner_main .ind_project .ind_project_more {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}
.ind_banner .ind_banner_main .ind_project .ind_project_more a {
  color: #333;
  transition: 0.2s all ease-in;
}
.ind_banner .ind_banner_main .ind_project .ind_project_more i {
  font-size: 14px;
  color: #666;
  margin-left: 5px;
  transition: 0.2s all ease-in;
}
.ind_banner .ind_banner_main .ind_project .ind_project_more:hover a {
  color: #11baa4;
}
.ind_banner .ind_banner_main .ind_project .ind_project_more:hover i {
  color: #11baa4;
}
.ind_banner .ind_banner_main .ind_project a:hover {
  color: #11baa4 !important;
}
.ind_banner .ind_banner_main .ind_project_list {
  position: absolute;
  left: 194px;
  top: 0;
  background: #fff;
  width: calc(100% - 194px);
  z-index: 82;
  padding: 15px;
  box-shadow: 0 0 5px rgba(12, 127, 112, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in 0.2s;
}
.ind_banner .ind_banner_main .ind_project_list ul {
  width: 100%;
  column-count: 4;
  max-height: 85vh;
  min-height: 600px;
  overflow: hidden;
}
.ind_banner .ind_banner_main .ind_project_list li {
  width: 100%;
  margin-bottom: 20px;
  height: auto;
  display: inline-block;
}
.ind_banner .ind_banner_main .ind_project_list li .mtitle {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.ind_banner .ind_banner_main .ind_project_list li .mtitle i {
  display: block;
  margin-right: 5px;
  width: 7px;
  height: 18px;
  border-radius: 1px;
  background: #11baa4;
}
.ind_banner .ind_banner_main .ind_project_list li .mtitle p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.ind_banner .ind_banner_main .ind_project_list li .mmain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.ind_banner .ind_banner_main .ind_project_list li .mmain a {
  font-size: 12px;
  color: #666;
  margin: 0 8px 9px 0;
  transition: color ease-in 0.2s;
}
.ind_banner .ind_banner_main .ind_project_list li .mmain a:hover {
  color: #11baa4;
}
.ind_banner .ind_banner_main:hover .ind_project_list {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1260px) {
  .ind_banner .ind_banner_main .ind_project {
    left: 30px;
  }
  .ind_banner .ind_banner_top {
    padding-right: 30px;
  }
}
.ind_navlist {
  width: 100%;
  padding: 30px;
}
.ind_navlist ul {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ind_navlist li {
  width: 24%;
}
.ind_navlist li a {
  display: block;
  height: 145px;
  padding: 30px 0 0 30px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: 0.2s all ease-in;
}
.ind_navlist li .mfont {
  width: 100%;
  position: relative;
  z-index: 2;
}
.ind_navlist li .mfont h3 {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
}
.ind_navlist li .mfont span {
  transition: 0.2s all ease-in;
  display: block;
  height: 2px;
  width: 23px;
  background: #fff;
  margin: 9px 0 23px 0;
}
.ind_navlist li .mfont p {
  font-size: 15px;
  color: #fff;
}
.ind_navlist li .mimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ind_navlist li .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s all ease-in;
}
.ind_navlist a:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 10px -6px rgba(127, 127, 127, 0.3);
}
.ind_navlist a:hover .mfont span {
  width: 10px;
}
.ind_navlist a:hover .mimg img {
  transform: scale(1.05);
}
@media screen and (max-width: 1260px) {
  .ind_navlist li a {
    padding: 30px 0 0 20px;
  }
  .ind_navlist li .mfont p {
    font-size: 14px;
  }
  .ind_navlist li {
    width: 24.5%;
  }
}
.ind_title {
  width: 100%;
}
.ind_title h2 {
  text-align: center;
  font-weight: bold;
  color: #333;
  font-size: 33px;
}
.ind_title p {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin: 12px 0 15px 0;
}
.ind_product {
  width: 100%;
  padding: 0px 30px;
}
.ind_product .ind_product_part {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.ind_product .ind_product_part .look_more {
  display: flex;
  align-items: center;
  float: right;
  margin-bottom: 15px;
}
.ind_product .ind_product_part .look_more p {
  font-size: 14px;
  color: #999;
  transition: 0.2s all ease-in;
}
.ind_product .ind_product_part .look_more i {
  color: #999;
  font-size: 14px;
  margin-left: 5px;
  transition: 0.2s all ease-in;
}
.ind_product .ind_product_part .look_more:hover p {
  color: #11baa4;
}
.ind_product .ind_product_part .look_more:hover i {
  color: #11baa4;
  transform: translateX(4px);
}
.ind_product .ind_product_part:last-child .ind_product_link {
  background: url(/images/img06.jpg) no-repeat center center;
  background-size: 100% 100%;
}
.ind_product .ind_product_main {
  display: flex;
  height: 497px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.ind_product .ind_product_main .ind_product_link {
  width: 280px;
  height: 100%;
  margin-right: 6px;
  border-radius: 5px;
  overflow: hidden;
  background: url(/images/img05.jpg) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.2s all ease-in;
}
.ind_product .ind_product_main .ind_product_link .mtop {
  padding: 40px 0 0 30px;
}
.ind_product .ind_product_main .ind_product_link .mtop h3 {
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 12px;
}
.ind_product .ind_product_main .ind_product_link .mtop p {
  color: #fff;
  font-size: 14px;
}
.ind_product .ind_product_main .ind_product_link .mbom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  padding: 0 30px;
  transition: 0.2s all ease-in;
}
.ind_product .ind_product_main .ind_product_link .mbom p {
  color: #fff;
}
.ind_product .ind_product_main .ind_product_link .mbom img {
  transition: 0.3s all ease-in;
}
.ind_product .ind_product_main .ind_product_link:hover {
  background-size: 103% 103%;
}
.ind_product .ind_product_main .ind_product_link:hover .mbom {
  background: rgba(0, 0, 0, 0.35);
}
.ind_product .ind_product_main .ind_product_link:hover .mbom img {
  transform: translateX(10px);
}
.ind_news {
  width: 100%;
  padding: 0px 30px 40px 30px;
}
.ind_news .ind_title {
  margin-bottom: 15px;
}
.ind_news .ind_news_main {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.ind_news .ind_news_left {
  width: 280px;
  flex-shrink: 0;
  position: relative;
  height: 491px;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.ind_news .ind_news_left .mimg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.ind_news .ind_news_left .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s all ease-in;
}
.ind_news .ind_news_left .mbom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  width: 100%;
  background: rgba(0, 0, 0, 0.15);
  padding: 0 30px;
  transition: 0.2s all ease-in;
  position: relative;
  z-index: 10;
}
.ind_news .ind_news_left .mbom p {
  color: #fff;
}
.ind_news .ind_news_left .mbom img {
  transition: 0.3s all ease-in;
}
.ind_news .ind_news_left:hover .mimg img {
  transform: scale(1.03);
}
.ind_news .ind_news_left:hover .mbom {
  background: rgba(0, 0, 0, 0.35);
}
.ind_news .ind_news_left:hover .mbom img {
  transform: translateX(10px);
}
.ind_news .ind_news_list {
  background: #fff;
  padding: 0px;
  border-radius: 0 5px 5px 0;
  /*width: 54.5%;*/
}
.ind_news .ind_news_list .ind_news_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  border-bottom: 1px dashed #ddd;
  background: #fff;
  border-radius: 5px;
  transition: 0.2s all ease-in;
}
.ind_news .ind_news_list .ind_news_item .mleft {
  width: 85%;
}
.ind_news .ind_news_list .ind_news_item .mleft h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
  transition: color 0.2s ease-in;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ind_news .ind_news_list .ind_news_item .mleft p {
  color: #666;
  font-size: 13px;
  height: 46px;
  line-height: 22px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.ind_news .ind_news_list .ind_news_item .mright {
  width: 13%;
  flex-direction: column;
  display: flex;
  align-items: flex-end;
}
.ind_news .ind_news_list .ind_news_item .mright span {
  display: block;
  white-space: nowrap;
  color: #999;
  font-size: 13px;
  margin-bottom: 36px;
}
.ind_news .ind_news_list .ind_news_item .mright p {
  color: #11baa4;
  font-size: 14px;
}
.ind_news .ind_news_list .ind_news_item:last-child {
  border-bottom: none;
  padding: 20px 18px 20 18px;
}
.ind_news .ind_news_list .ind_news_item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 8px -2px rgba(18, 166, 175, 0.5);
}
.ind_news .ind_news_list .ind_news_item:hover .mleft h3 {
  color: #11baa4;
}
.ind_news .ind_news_right {
  width: 250px;
  margin-left: 15px;
}
.ind_news .ind_news_right .ind_news_right_item {
  width: 100%;
  height: 237px;
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 17px;
}
.ind_news .ind_news_right .ind_news_right_item:last-child {
  margin-bottom: 0;
}
.ind_news .ind_news_right .mtop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 14px;
}
.ind_news .ind_news_right .mtop h3 {
  padding: 8px 15px;
  background: #11baa4;
  color: #fff;
  font-size: 16px;
  border-radius: 5px 0 0 0;
}
.ind_news .ind_news_right .mtop a {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 14px;
}
.ind_news .ind_news_right .mlist {
  width: 100%;
  padding: 25px 14px 0 14px;
}
.ind_news .ind_news_right .mlist a {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  transition: 0.2s all ease-in;
}
.ind_news .ind_news_right .mlist span {
  width: 18px;
  height: 18px;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 6px;
}
.ind_news .ind_news_right .mlist h4 {
  font-size: 13px;
  color: #333;
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: color ease-in 0.2s;
}
.ind_news .ind_news_right .mlist a:nth-child(1) span {
  background: #12bca7;
  color: #fff;
}
.ind_news .ind_news_right .mlist a:nth-child(2) span {
  background: rgba(18, 188, 167, 0.8);
  color: #fff;
}
.ind_news .ind_news_right .mlist a:nth-child(3) span {
  background: rgba(18, 188, 167, 0.5);
  color: #fff;
}
.ind_news .ind_news_right .mlist a:hover {
  transform: translateY(-2px);
}
.ind_news .ind_news_right .mlist a:hover h4 {
  color: #11baa4;
}
@media screen and (max-width: 1200px) {
  .ind_news .ind_news_right {
    display: none;
  }
  .ind_news .ind_news_list {
    width: calc(100% - 280px);
  }
}
.ind_good {
  width: 100%;
  position: relative;
  background: #fff;
}
.ind_good .ind_good_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 373px;
}
.ind_good .ind_good_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ind_good .ind_good_main {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1260px;
  padding: 65px 30px;
  margin: 0 auto;
}
.ind_good .ind_good_main h2 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.ind_good .ind_good_main > p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  width: 68%;
}
.ind_good .ind_good_main ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 42px;
}
.ind_good .ind_good_main ul li {
  width: 32.5%;
  background: #fff;
  border-radius: 5px;
  height: 195px;
  padding: 20px;
  box-shadow: 0 3px 10px -4px rgba(0, 0, 0, 0.15);
  transition: 0.2s all ease-in;
}
.ind_good .ind_good_main ul li > p {
  font-size: 14px;
  color: #666;
  line-height: 28px;
  padding: 0;
}
.ind_good .ind_good_main ul .mtop {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.ind_good .ind_good_main ul .mtop span {
  width: 56px;
  height: 56px;
  background: #11baa4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
}
.ind_good .ind_good_main ul .mtop i {
  color: #fff;
  font-size: 28px;
}
.ind_good .ind_good_main ul .mtop h3 {
  font-size: 18px;
  color: #333;
  transition: 0.2s all ease-in;
}
.ind_good .ind_good_main ul li:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -3px rgba(18, 188, 167, 0.2);
}
.ind_good .ind_good_main ul li:hover h3 {
  font-weight: bold;
  color: #11baa4;
}
.ind_keyword {
  width: 100%;
  padding: 0px 30px 60px 30px;
  background: url(/images/bg02.jpg);
}
.ind_keyword .ind_keyword_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.ind_keyword .ind_keyword_top {
  width: 100%;
}
.ind_keyword .ind_keyword_top .mtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
  max-width: 713px;
  margin-bottom: 18px;
}
.ind_keyword .ind_keyword_top .mtop h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin: 0 70px;
}
.ind_keyword .ind_keyword_top > p {
  text-align: center;
  font-size: 18px;
  color: #666;
}
.ind_keyword .ind_keyword_num {
  width: 100%;
  padding-top: 80px;
}
.ind_keyword .ind_keyword_num ul {
  width: 100%;
  display: flex;
  align-items: center;
  padding-left: 10%;
}
.ind_keyword .ind_keyword_num ul li {
  width: 25%;
}
.ind_keyword .ind_keyword_num ul li .mtop {
  display: flex;
  align-items: flex-end;
}
.ind_keyword .ind_keyword_num ul li .mtop h5 {
  font-size: 45px;
  color: #333;
  font-weight: bold;
  margin-right: 5px;
}
.ind_keyword .ind_keyword_num ul li .mtop span {
  font-size: 14px;
  color: #333;
  transform: translateY(-10px);
}
.ind_keyword .ind_keyword_num ul li p {
  font-size: 15px;
  color: #666;
  margin-top: 15px;
  padding-left: 5px;
}
/*首页-over*********/
/*项目广场-begin*********/
.product_search {
  width: 100%;
  padding: 20px 30px;
  background: #fff;
}
.product_search .product_search_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_search .mmain {
  display: flex;
  align-items: center;
}
.product_search .mmain .xhsearch {
  width: 373px;
  margin-right: 15px;
  border: 1px solid #11baa4;
  border-radius: 3px;
  background: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
.product_search .mmain .xhsearch .mleft {
  width: 90px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 5px;
}
.product_search .mmain .xhsearch .mleft p {
  font-size: 13px;
  color: #11baa4;
  margin-right: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.product_search .mmain .xhsearch .mleft i {
  font-size: 12px;
  color: #11baa4;
}
.product_search .mmain .xhsearch > span {
  width: 1px;
  height: 16px;
  background: #efefef;
  flex-shrink: 0;
}
.product_search .mmain .xhsearch input {
  font-size: 14px;
  color: #333;
  border: none;
  padding: 13px;
  flex: 1;
}
.product_search .mmain .xhsearch_money {
  width: 405px;
  margin-right: 15px;
  border: 1px solid #11baa4;
  border-radius: 3px;
  background: #fff;
  padding: 0 14px;
  display: flex;
  align-items: center;
}
.product_search .mmain .xhsearch_money .mleft {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 5px;
}
.product_search .mmain .xhsearch_money .mleft p {
  font-size: 13px;
  color: #11baa4;
  margin-right: 5px;
}
.product_search .mmain .xhsearch_money .mleft i {
  font-size: 12px;
  color: #11baa4;
}
.product_search .mmain .xhsearch_money > i {
  width: 16px;
  height: 1px;
  background: #666;
  flex-shrink: 0;
}
.product_search .mmain .xhsearch_money > span {
  font-size: 14px;
  color: #666;
  flex-shrink: 0;
}
.product_search .mmain .xhsearch_money input {
  font-size: 14px;
  color: #333;
  border: none;
  padding: 13px;
  flex: 1;
  width: 100px;
}
.product_search .mmain .xhsearch_btn {
  padding: 13px 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  background: #11baa4;
  transition: 0.2s all ease-in;
  white-space: nowrap;
}
.product_search .mmain .xhsearch_btn:hover {
  background: #098d79;
}
.product_search .ind_banner_top {
  height: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_search .ind_banner_top .ind_banner_mobile {
  display: flex;
  align-items: center;
}
.product_search .ind_banner_top .ind_banner_mobile .mleft {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 11px;
  background: #11baa4;
}
.product_search .ind_banner_top .ind_banner_mobile .mleft i {
  color: #fff;
  font-size: 30px;
}
.product_search .ind_banner_top .ind_banner_mobile .mright p {
  font-size: 12px;
  color: #666;
  margin-bottom: 2px;
}
.product_search .ind_banner_top .ind_banner_mobile .mright h2 {
  font-size: 18px;
  font-weight: bold;
  color: #11baa4;
}
.product_select {
  background: #fff;
  padding: 0 30px 20px 30px;
}
.product_select .product_select_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.product_select .product_select_top {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.product_select .product_select_top .pro_title {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.product_select .product_select_top .pro_title i {
  width: 5px;
  height: 20px;
  background: #11baa4;
  border-radius: 1px;
  margin-right: 5px;
}
.product_select .product_select_top .pro_title h2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.product_select .product_select_top a {
  display: flex;
  align-items: center;
}
.product_select .product_select_top a span {
  color: #333;
  font-size: 14px;
  margin-right: 2px;
  transition: 0.2s all ease-in;
}
.product_select .product_select_top a i {
  color: #333;
  font-size: 14px;
  transform: translateY(2px);
  transition: 0.2s all ease-in;
}
.product_select .product_select_top a:hover span {
  color: #11baa4;
}
.product_select .product_select_top a:hover i {
  color: #11baa4;
}
.product_select .product_select_top a.xhshow i {
  transform: rotate(180deg);
}
.product_select .product_select_item,
.product_select .product_select_item_min {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.2s all ease-in;
  overflow: hidden;
  height: 40px;
}
.product_select .product_select_item a,
.product_select .product_select_item_min a {
  padding: 0px 10px;
  height: 30px;
  margin-bottom: 5px;
  border-radius: 3px;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: #fff;
  transition: 0.2s all ease-in;
}
.product_select .product_select_item a.curr,
.product_select .product_select_item_min a.curr {
  background: #11baa4;
  color: #fff;
}
.product_select .product_select_item.xhshow,
.product_select .product_select_item_min.xhshow {
  height: auto;
}
.product_sort {
  width: 100%;
  padding: 20px 30px;
  border-top: 1px solid #EFEFEF;
  background: #fff;
}
.product_sort .product_sort_main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.product_sort .mleft {
  display: flex;
  align-items: center;
}
.product_sort .mleft .mitem {
  position: relative;
  margin-right: 40px;
}
.product_sort .mleft .mitem > a {
  display: flex;
  align-items: center;
}
.product_sort .mleft .mitem > a.curr i {
  transform: rotate(180deg);
}
.product_sort .mleft .mitem > a:hover p {
  color: #11baa4;
}
.product_sort .mleft .mitem > a:hover i {
  color: #11baa4;
}
.product_sort .mleft .mitem p {
  font-size: 14px;
  color: #666;
  margin-right: 8px;
  transition: 0.2s all ease-in;
}
.product_sort .mleft .mitem i {
  font-size: 10px;
  color: #999;
  display: block;
  transition: 0.2s all ease-in;
}
.product_sort .mleft .mitem .mitem_pop {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  height: 0px;
  overflow: hidden;
  transition: 0.2s all ease-in;
  background: #fff;
  padding: 10px 0;
  border-radius: 0 0 5px 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.product_sort .mleft .mitem .mitem_pop a {
  font-size: 14px;
  color: #666;
  transition: 0.2s all ease-in;
}
.product_sort .mleft .mitem .mitem_pop a:hover {
  color: #11baa4;
}
.product_sort .mleft .mitem .mitem_pop.curr {
  opacity: 1;
  z-index: 30;
  visibility: visible;
  height: 120px;
}
.product_sort .mright a {
  color: #666;
  font-size: 14px;
}
.product_page {
  width: 100%;
  padding: 15px 30px 60px 30px;
}
.product_page .product_page_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.product_page_right {
  width: 280px;
  padding-left: 10px;
  flex-shrink: 0;
}
.product_page_right .user_login {
  padding: 25px;
  border-radius: 5px;
  background: #11baa4;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.product_page_right .user_login .mimg {
  background: #fff;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_page_right .user_login .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_page_right .user_login > p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 18px 0 35px 0;
}
.product_page_right .user_login .user_login_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.product_page_right .user_login .user_login_btn a {
  width: 100px;
  height: 39px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease-in;
}
.product_page_right .user_login .user_login_btn .login_btn {
  color: #11baa4;
  background: #fff;
  font-size: 14px;
}
.product_page_right .user_login .user_login_btn .register_btn {
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
}
.product_page_right .user_login .user_login_btn a:hover {
  transform: translateY(-3px);
}
.product_page_right .user_login > span {
  color: #fff;
  margin-top: 38px;
}
.product_page_right .user_loginok {
  padding: 25px;
  border-radius: 5px;
  background: #11baa4;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.product_page_right .user_loginok .mimg {
  background: #fff;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_page_right .user_loginok .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_page_right .user_loginok > p {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin: 18px 0 35px 0;
}
.product_page_right .user_loginok .signout {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 13px;
}
.product_page_right .user_loginok .user_login_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.product_page_right .user_loginok .user_login_btn a {
  width: 100px;
  height: 39px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease-in;
  color: #fff;
}
.product_page_right .user_loginok .user_login_btn i {
  margin-right: 5px;
}
.product_page_right .user_loginok .user_login_btn a:hover {
  transform: translateY(-3px);
}
.product_page_right .sider_img_href {
  width: 100%;
}
.product_page_right .sider_img_href a {
  display: block;
  width: 100%;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 5px;
}
.product_page_right .sider_img_href img {
  width: 100%;
  transition: 0.3s all ease-in;
  border-radius: 5px;
}
.product_page_right .sider_img_href a:hover img {
  transform: scale(1.08);
}
@media screen and (max-width: 1200px) {
  .product_search .ind_banner_top {
    display: none;
  }
}
/*项目广场-over*********/
/*项目详情-begin*********/
.product_top {
  width: 100%;
  background: url(../images/bg03.jpg) no-repeat;
  background-size: cover;
  height: 262px;
}
.product_top .product_top_main {
  padding: 35px 30px 0 30px;
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}
.product_top h4 {
  font-size: 14px;
  color: #f0f0f0;
  margin-bottom: 15px;
}
.product_top .mtop {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.product_top .mtop h2 {
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  margin-right: 35px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.product_top .mtop span {
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  flex-shrink: 0;
}
.product_top .mtop span.xhwait {
  background: #ff7e19;
}
.product_top .mtop span.xhok {
  background: #149eff;
}
.product_top .mtop span.xhover {
  background: #11baa4;
}
.product_top .mbom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_top .mbom .mleft {
  display: flex;
  align-items: center;
}
.product_top .mbom .mleft i {
  color: #11baa4;
  font-size: 16px;
  margin-right: 8px;
}
.product_top .mbom .mleft p {
  color: #fff;
  margin-right: 45px;
  font-size: 15px;
}
.product_top .mbom a {
  background: #11baa4;
  border-radius: 5px;
  width: 133px;
  height: 45px;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s all ease-in;
}
.product_top .mbom a:hover {
  transform: translateY(-3px);
  background: #098D79;
}
.product_page_left {
  width: 100%;
  padding-top: 15px;
}
.product_page_left .product_show_item_title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.product_page_left .product_show_item_title i {
  width: 7px;
  height: 20px;
  background: #11baa4;
  border-radius: 1px;
  margin-right: 10px;
}
.product_page_left .product_show_item_title h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.product_page_left .product_show_item {
  width: 100%;
  margin-bottom: 60px;
}
.product_page_left .product_show_item ul {
  width: 100%;
}
.product_page_left .product_show_item li {
  display: flex;
  padding: 6px 0;
  line-height: 32px;
  padding-left: 20px;
}
.product_page_left .product_show_item span {
  font-size: 14px;
  white-space: nowrap;
}
.product_page_left .product_show_item P {
  font-size: 14px;
}
.product_page_left .product_show_people {
  width: 100%;
}
.product_page_left .product_show_people p {
  font-size: 15px;
}
.product_page_left .product_show_people span {
  color: #11baa4;
}
.product_page_left .product_show_people .table_box {
  width: 100%;
  margin-top: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_page_left .product_show_people .table_box p {
  padding: 15px 30px;
  background: #dedede;
  color: #ff7e19;
  position: absolute;
  z-index: 20;
}
.product_page_left .product_show_people .table_box table {
  width: 100%;
  border-collapse: collapse;
  filter: blur(5px);
  text-align: center;
  border: 1px solid #11baa4;
}
.product_page_left .product_show_people .table_box table th,
.product_page_left .product_show_people .table_box table td {
  padding: 15px 0;
  user-select: none;
}
.product_page_left .product_show_people .table_box table th {
  background: rgba(18, 188, 167, 0.2);
  font-size: 15px;
}
/*项目详情-over*********/
/*关于我们-begin*********/
.about_banner {
  width: 100%;
  height: 450px;
  background: url(/images/aboutbanner02.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
.about_banner .about_banner_foot {
  height: 52px;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.about_banner .about_banner_main {
  position: relative;
  z-index: 20;
  height: 100%;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about_banner .about_banner_main .mfont {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.about_banner .about_banner_main .mfont h2 {
  font-size: 45px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.about_banner .about_banner_main .mfont p {
  color: #fff;
  font-size: 22px;
}
.about_banner .about_banner_main ul {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52px;
  display: flex;
  align-items: center;
}
.about_banner .about_banner_main ul li {
  width: 20%;
  height: 100%;
}
.about_banner .about_banner_main ul a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.2s all ease-in;
}
.about_banner .about_banner_main ul li.curr a {
  background: #11baa4;
}
.about_banner .about_banner_main ul li:hover a {
  background: #11baa4;
}
.about_title h3 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}
.about_title p {
  font-size: 16px;
  color: #999;
}
.aboutus01 {
  width: 100%;
  padding: 60px 30px;
}
.aboutus01 .aboutus01_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.aboutus01 .mfont {
  margin-top: 60px;
}
.aboutus01 .mfont p {
  font-size: 14px;
  line-height: 21px;
  color: #666;
  margin-bottom: 15px;
}
.aboutus01 .mbom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.aboutus01 .mbom .mbom_box {
  width: 49%;
}
.aboutus01 .mbom .mbom_box .mimg {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.aboutus01 .mbom .mbom_box .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s all ease-in;
}
.aboutus01 .mbom .mbom_box .mimg img:hover {
  transform: scale(1.05);
}
.aboutus01 .mbom .mbom_box > img {
  width: 162px;
  margin-top: 15px;
}
.aboutus02 {
  width: 100%;
  height: 350px;
  background: url(/images/about05.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus02 .aboutus02_main {
  height: 100%;
  width: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.aboutus02 .aboutus02_main h4 {
  font-size: 40px;
  font-weight: bold;
  color: #15F9DD;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.aboutus02 .aboutus02_main h3 {
  font-size: 25px;
  font-weight: bold;
  color: #fff;
}
.aboutus02 .aboutus02_main i {
  width: 279px;
  height: 1px;
  display: block;
  flex-shrink: 0;
  background: #49C1CE;
  margin: 31px 0 22px 0;
}
.aboutus02 .aboutus02_main p {
  font-size: 14px;
  color: #fff;
  line-height: 26px;
  text-align: center;
}
.aboutus03 {
  width: 100%;
  padding: 60px 30px 20px 30px;
}
.aboutus03 .aboutus03_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.aboutus03 .mitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 80px;
}
.aboutus03 .mitem .yuan_bg {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #E5F5F1;
  position: absolute;
  top: 25px;
  left: 10px;
}
.aboutus03 .mitem .mright {
  position: relative;
  z-index: 15;
  width: 46.6%;
}
.aboutus03 .mitem .mright .mimg {
  width: 100%;
  overflow: hidden;
  height: 373px;
}
.aboutus03 .mitem .mright img {
  transition: 0.5s all ease-in;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutus03 .mitem .mright img:hover {
  transform: scale(1.05);
}
.aboutus03 .mitem .mleft {
  position: relative;
  z-index: 15;
  padding: 30px;
  width: 53%;
}
.aboutus03 .mitem .mleft p {
  font-size: 14px;
  color: #666;
  line-height: 28px;
  margin-bottom: 50px;
}
.aboutus03 .mitem .mleft ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.aboutus03 .mitem .mleft ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.2s all ease-in;
}
.aboutus03 .mitem .mleft ul li img {
  width: 47px;
  margin-bottom: 10px;
  transition: 0.3s all ease-in;
}
.aboutus03 .mitem .mleft ul li span {
  color: #666;
  font-size: 14px;
}
.aboutus03 .mitem .mleft ul li:hover {
  transform: translateY(-3px);
}
.aboutus03 .mitem .mleft ul li:hover img {
  transform: rotateY(180deg);
}
.aboutus03 .mitem:nth-child(3) {
  flex-direction: row-reverse;
}
.aboutus03 .mitem:nth-child(3) .yuan_bg {
  left: auto;
  right: 10px;
}
.aboutus03 .mitem:nth-child(3) .mleft h4 {
  font-size: 50px;
  font-weight: bold;
  color: rgba(18, 188, 168, 0.2);
  text-transform: uppercase;
}
.aboutus04 {
  background: url(/images/bg04.jpg) no-repeat center center;
  padding: 40px 30px 100px 30px;
  background-size: cover;
}
.aboutus04 .aboutus04_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.aboutus04 .aboutus04_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
.aboutus04 .aboutus04_top .aboutus04_top_font {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
}
.aboutus04 .swiper_button {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.aboutus04 .swiper_button > div {
  position: absolute;
  top: -200px;
  width: 100%;
}
.aboutus04 .swiper_button i {
  font-size: 30px;
  color: #fff;
  transition: 0.2s all ease-in;
  display: block;
}
.aboutus04 .swiper_button i:hover {
  transition: 0.2s all ease-in;
  transform: translateY(-2px);
  color: #D6D6D6;
}
.aboutus04 .swiper-container {
  width: 100%;
}
.aboutus04 .swiper-slide {
  position: relative;
  overflow: hidden;
}
.aboutus04 .mfont {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.24) 100%);
  height: 74px;
  width: 100%;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutus04 .mfont p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding-top: 15px;
}
.aboutus04 .mimg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.aboutus04 .mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in;
  transform: scale(1);
}
.aboutus04 .mimg:hover img {
  transform: scale(1.03);
}
.aboutus04 .swiper-slide-active,
.aboutus04 .swiper-slide-duplicate-active {
  transform: scale(1);
  opacity: 1;
  z-index: 30;
}
/*关于我们-over*********/
/*业务介绍-begin*********/
.about_business {
  width: 100%;
}
.about_business .mitem {
  width: 100%;
  height: 445px;
  padding: 0 30px;
}
.about_business .mitem .mmain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.about_business .mitem .mleft {
  width: 320px;
  flex-shrink: 0;
}
.about_business .mitem .mleft h3 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  margin-bottom: 5px;
}
.about_business .mitem .mleft span {
  display: block;
  width: 67px;
  height: 5px;
  background: #11baa4;
  border-radius: 1px;
  margin: 10px 0 37px 0;
}
.about_business .mitem .mleft p {
  font-size: 14px;
  color: #666;
  line-height: 28px;
}
.about_business .mitem .mright {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.about_business .mitem .mright img {
  max-width: 100%;
}
.about_business .mitem:nth-child(2n) .mmain {
  flex-direction: row-reverse;
}
.about_business .mitem:nth-child(2n) .mleft {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
.about_business .mitem:nth-child(2n) .mright {
  justify-content: flex-start;
}
.about_business .mitem:nth-child(1) {
  background: url(/images/bg05.png) no-repeat #ffffff;
  background-size: 100% 100%;
}
.about_business .mitem:nth-child(2) {
  background: url(/images/bg06.png) no-repeat #fcfcfc;
  background-size: 100% 100%;
}
.about_business .mitem:nth-child(4) {
  background: url(/images/bg08.png) no-repeat #fcfcfc;
  background-size: 100% 100%;
}
/*业务介绍-over*********/
/*联系我们-begin*********/
.contact_page {
  width: 100%;
  padding: 80px 30px;
}
.contact_page .contact_page_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.contact_page h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.contact_page span {
  width: 152px;
  height: 7px;
  background: #11baa4;
  margin: 8px 0 37px 0;
}
.contact_page .mfont {
  font-size: 14px;
  color: #666;
}
.contact_page .mfont p {
  padding: 3px 0;
  text-align: center;
}
.contact_page ul {
  width: 100%;
  max-width: 900px;
  margin-top: 50px;
  padding-left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_page ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.2s all ease-in;
}
.contact_page ul li i {
  font-size: 30px;
  color: #333;
  transition: 0.2s all ease-in;
}
.contact_page ul li p {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-top: 15px;
  transition: 0.2s all ease-in;
}
.contact_page ul li:hover {
  transform: translateY(-4px);
}
.contact_page ul li:hover i {
  color: #11baa4;
}
.contact_page ul li:hover p {
  color: #11baa4;
}
.contact_map {
  width: 100%;
  padding: 20px 30px;
  background: #f4f4f4;
}
.contact_map .contact_map_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
}
.contact_map .contact_map_main h2 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
}
.contact_map .contact_map_main span {
  width: 80px;
  height: 10px;
  border-radius: 1px;
  background: #11baa4;
  margin-bottom: 25px;
  display: block;
}
.contact_map .contact_map_main .xhmap {
  width: 100%;
}
.contact_map .contact_map_main #map_box {
  width: 100%;
}
/*联系我们-over*********/
/*合作伙伴-begin*********/
.xhfriend {
  width: 100%;
  padding: 60px 30px;
}
.xhfriend .xhfriend_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.xhfriend ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.xhfriend ul li {
  width: 25%;
  padding: 1.2%;
}
.xhfriend ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.2);
  transition: 0.2s all ease-in;
}
.xhfriend ul a img {
  width: 70%;
  transition: 0.2s all ease-in;
}
.xhfriend ul a:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
.xhfriend ul a:hover img {
  transform: scale(1.1);
}
/*合作伙伴-over*********/
/*新闻列表-begin*********/
.news_list {
  width: 100%;
  padding: 0 30px 60px 30px;
}
.news_list .news_list_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
.news_list .news_sider {
  width: 165px;
  flex-shrink: 0;
  margin-bottom: 100px;
  padding-top: 20px;
}
.news_list .news_sider ul {
  width: 100%;
}
.news_list .news_sider li {
  width: 100%;
  margin-bottom: 15px;
}
.news_list .news_sider a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
  border-radius: 5px;
  width: 121px;
  transition: 0.2s all ease-in;
}
.news_list .news_sider i {
  color: #333;
  font-size: 18px;
  margin-right: 5px;
  transition: 0.2s all ease-in;
}
.news_list .news_sider p {
  font-size: 16px;
  color: #333;
  transition: 0.2s all ease-in;
}
.news_list .news_sider a.curr {
  background: #11baa4;
}
.news_list .news_sider a.curr i {
  color: #fff;
}
.news_list .news_sider a.curr p {
  color: #fff;
}
.news_list .news_sider a:hover {
  background: #11baa4;
}
.news_list .news_sider a:hover i {
  color: #fff;
}
.news_list .news_sider a:hover p {
  color: #fff;
}
.news_list .news_list_item {
  width: calc(100% - 165px);
}
.news_list .news_list_item > ul {
  width: 100%;
}
.news_list .news_list_item > ul li {
  width: 100%;
  border-bottom: 1px solid #EFEFEF;
  padding-bottom: 28px;
  padding-top: 28px;
}
.news_list .news_list_item > ul li:last-child {
  border-bottom: none;
}
.news_list .news_list_item > ul a {
  display: block;
  width: 100%;
  transition: 0.2s all ease-in;
}
.news_list .news_list_item > ul .mtop {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_list .news_list_item > ul .mtop h3 {
  transition: 0.2s all ease-in;
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_list .news_list_item > ul .mtop span {
  font-size: 13px;
  color: #999;
  white-space: nowrap;
}
.news_list .news_list_item > ul .mfont {
  height: 52px;
}
.news_list .news_list_item > ul .mfont p {
  font-size: 13px;
  line-height: 26px;
  color: #666;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
}
.news_list .news_list_item > ul .mbom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.news_list .news_list_item > ul .mbom span {
  font-size: 13px;
  color: #999;
}
.news_list .news_list_item > ul .mbom i {
  font-size: 13px;
  color: #999;
  transform: translateY(2px);
}
.news_list .news_list_item > ul .mbom p {
  display: flex;
  align-items: center;
}
.news_list .news_list_item > ul a:hover {
  transform: translateY(-5px);
}
.news_list .news_list_item > ul a:hover h3 {
  font-weight: bold;
  color: #11baa4;
}
.news_list .news_list_item > ul a:hover .mbom p span {
  color: #11baa4;
}
.news_list .news_list_item > ul a:hover .mbom p i {
  color: #11baa4;
}
.news_show_main {
  width: calc(100% - 165px);
}
.news_show_main .nshowWarp {
  width: 100%;
  margin-top: 7.5px;
}
.news_show_main .nshowWarp .nshowBox {
  background-color: #fff;
  padding: 30px;
  width: 100%;
  margin: 0 auto;
}
.news_show_main .nshowWarp .nshowBox .nshowTitle {
  font-size: 30px;
  line-height: 50px;
}
.news_show_main .nshowWarp .nshowBox .nshowTag {
  height: 50px;
  padding: 15px 0;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
}
.news_show_main .nshowWarp .nshowBox .nshowTag p {
  line-height: 20px;
  margin-right: 40px;
  color: #999;
}
.news_show_main .nshowWarp .nshowBox .nshowInfo {
  margin: 40px 0;
}
.news_show_main .nshowWarp .nshowBox .nshowInfo p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 10px;
  text-indent: 2em;
}
.news_show_main .nshowWarp .nshowBox .nshowInfo img {
  max-width: 90%;
  width: 100%;
  display: block;
  margin: 0 auto;
}
.news_show_main .nshowWarp .nshowBox .nshowOther {
  height: 60px;
  padding: 10px;
  border-radius: 30px;
  background-color: #F2F2F2;
  display: flex;
  justify-content: space-between;
  line-height: 40px;
}
.news_show_main .nshowWarp .nshowBox .nshowBack {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  background-color: #fff;
  text-align: center;
  color: #11baa4;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  transition: 0.2s all ease-in;
}
.news_show_main .nshowWarp .nshowBox .nshowBack:hover {
  background: #11baa4;
  color: #fff;
  transition: 0.2s all ease-in;
}
.news_show_main .nshowWarp .nshowBox .nshowNext {
  display: flex;
  color: #666;
}
.news_show_main .nshowWarp .nshowBox .nshowNext i {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 10px 0 0;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
  text-align: center;
  line-height: 40px;
  color: #11baa4;
  font-size: 20px;
  transition: 0.2s all ease-in;
}
.news_show_main .nshowWarp .nshowBox .nshowNext i:hover {
  background: #11baa4;
  color: #fff;
  transition: 0.2s all ease-in;
}
.news_show_main .nshowWarp .nshowBox .nshowNext span {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.news_show_main .nshowWarp .nshowBox .nshowNext:last-of-type {
  flex-direction: row-reverse;
}
.news_show_main .nshowWarp .nshowBox .nshowNext:last-of-type i {
  margin: 0 0 0 10px;
}
.news_show_main .nshowWarp .nshowBox .nshowOther a:first-child {
  width: 40%;
}
.news_show_main .nshowWarp .nshowBox .nshowOther a:last-child {
  width: 40%;
}
@media screen and (max-width: 1025px) {
  .news_show_main .nshowWarp {
    width: 100%;
  }
}
/*新闻列表-over*********/
/*注册登录-begin*********/
.logForm {
  padding: 30px;
  width: 100%;
}
.logForm .logFormTit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logForm .logFormTit h2 {
  line-height: 24px;
  font-size: 20px;
  color: #11baa4;
  font-weight: bold;
}
.logForm .logFormTit a {
  color: .cl3;
}
.logForm .logFormItem {
  margin-top: 15px;
}
.logForm .logFormItem dt {
  font-size: 13px;
  line-height: 26px;
}
.logForm .logFormItem dd {
  width: 100%;
  height: 40px;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  background-color: #FAFAFA;
}
.logForm .logFormItem p {
  width: 100%;
  padding-right: 15px;
  flex-shrink: 1;
}
.logForm .logFormItem a {
  flex-shrink: 0;
}
.logForm .logFormItem input {
  width: 100%;
  height: 30px;
  border: 0px;
  background-color: #FAFAFA;
  line-height: 30px;
  font-size: 14px;
}
.logForm .logFormAgree {
  margin-top: 20px;
  display: flex;
  align-items: center;
  color: #333;
}
.logForm .logFormAgree i {
  margin-right: 5px;
  cursor: pointer;
}
.logForm .logFormAgree i.curr {
  color: #11baa4;
}
.logForm .logFormAgree a {
  color: #11baa4;
}
.logForm .logFormBtn {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 20px;
}
.logForm .logFormBtn input[type='submit'],
.logForm .logFormBtn a {
  display: block;
  width: 100%;
  height: 100%;
  background: #11baa4;
  border: 0px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #fff;
  transition: 0.2s all ease-in;
}
.logForm .logFormBtn a:hover {
  background: #0a8270;
}
.logForm .logFormHref {
  margin-top: 20px;
  text-align: center;
  color: #333;
}
.logForm .logFormHref a {
  margin-right: 15px;
  color: #11baa4;
}
.logForm .logFormHref a:last-of-type {
  margin-right: 0;
}
.login_page .pc_header,
.fancybox-content .pc_header {
  display: none;
}
.login_page .pc_header_kong,
.fancybox-content .pc_header_kong {
  display: none;
}
.login_page .logFormTit a,
.fancybox-content .logFormTit a {
  display: block!important;
}
.login_page .logFormBtn,
.fancybox-content .logFormBtn {
  margin-top: 20px!important;
}
.login_page .logFormBtn input[type='submit'],
.fancybox-content .logFormBtn input[type='submit'],
.login_page .logFormBtn a,
.fancybox-content .logFormBtn a {
  line-height: 50px!important;
}
.fancybox-content .md_header,
.fancybox-content .mdfooter,
.fancybox-content .mdfooter_kong {
  display: none!important;
}
.login_pop .logForm .logFormBtn {
  margin-top: 40px!important;
}
.login_pop .logForm .logFormItem {
  margin-top: 30px!important;
}
.login_pop .logForm .logFormAgree {
  margin-top: 28px;
}
/*注册登录-over*********/
.md_header,
.md_indbanner,
.mdind_navlist,
.mdfooter,
.mdfooter_kong {
  display: none;
}
/*医药单页-begin*********/
.drug_title_w {
  margin-bottom: 55px;
}
.drug_title_w h3 {
  font-size: 35px;
  color: #fff;
}
.drug_title_w span {
  display: block;
  width: 49px;
  height: 6px;
  background: #11baa4;
  margin-top: 12px;
}
.drug_title_b {
  margin-bottom: 35px;
}
.drug_title_b h3 {
  font-size: 35px;
  color: #333;
}
.drug_title_b span {
  display: block;
  width: 49px;
  height: 6px;
  background: #11baa4;
  margin-top: 12px;
}
.drug_title_c {
  margin-bottom: 35px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.drug_title_c h3 {
  font-size: 35px;
  color: #333;
  text-align: center;
}
.drug_title_c span {
  text-align: center;
  display: block;
  width: 49px;
  height: 6px;
  background: #11baa4;
  margin-top: 12px;
}
.drug_title_c_w {
  margin-bottom: 35px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.drug_title_c_w h3 {
  font-size: 35px;
  color: #fff;
  text-align: center;
}
.drug_title_c_w span {
  text-align: center;
  display: block;
  width: 49px;
  height: 6px;
  background: #11baa4;
  margin-top: 12px;
}
.drug_banner {
  width: 100%;
  padding: 0 30px;
  height: 600px;
  background: url(/images/drugbanner.jpg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
.drug_banner .drug_banner_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.drug_banner .drug_banner_main .mfont {
  max-width: 680px;
  width: 100%;
}
.drug_banner .drug_banner_main .mfont p {
  text-indent: 30px;
  color: #fff;
  font-size: 18px;
  line-height: 32px;
}
.drug02 {
  width: 100%;
  padding: 60px 30px;
  background: #fff;
}
.drug02 .drug02_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drug02 .mleft {
  max-width: 510px;
  width: 100%;
}
.drug02 .mleft .mfont {
  font-size: 16px;
  color: #666;
  line-height: 28px;
}
.drug02 .mleft ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  width: 100%;
}
.drug02 .mleft ul li {
  display: flex;
  align-items: center;
  transition: 0.2s all ease-in;
}
.drug02 .mleft ul li i {
  font-size: 28px;
  color: #11baa4;
  margin-right: 5px;
}
.drug02 .mleft ul li span {
  color: #333;
  font-size: 15px;
  transition: 0.2s all ease-in;
}
.drug02 .mleft ul li:hover {
  transform: translateY(-3px);
}
.drug02 .mleft ul li:hover span {
  color: #11baa4;
}
.drug02 .mright {
  flex: 1;
  padding-left: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drug02 .mright img {
  width: 90%;
}
.drug03 {
  background: #fff;
  padding: 60px 30px;
}
.drug03 .drug03_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.drug03 ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px 0 0px;
}
.drug03 li {
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: 0.2s all ease-in;
  padding: 30px 40px;
  border-radius: 10px;
}
.drug03 li img {
  width: 81px;
  height: auto;
  transition: 0.2s all ease-in;
}
.drug03 li h4 {
  font-size: 20px;
  color: #333;
  margin: 28px 0 29px 0;
  transition: 0.2s all ease-in;
}
.drug03 li p {
  font-size: 16px;
  color: #666;
  line-height: 32px;
  text-align: center;
  max-width: 200px;
  transition: 0.2s all ease-in;
}
.drug03 li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px -5px rgba(18, 188, 168, 0.35);
}
.drug03 li:hover h4 {
  font-weight: bold;
  color: #11baa4;
}
.drug04 {
  width: 100%;
  padding: 80px 0px;
  background: url(/images/drugbg03.svg) no-repeat #12617a;
  background-size: cover;
}
.drug04 .drug04_top_main {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.drug04 .drug04_top_main ul {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}
.drug04 .drug04_top_main li {
  width: 49.9%;
  height: 100%;
  transition: 0.3s all ease-in;
}
.drug04 .drug04_top_main li:nth-child(1) {
  background: url(/images/drugbg01.jpg) no-repeat;
  background-size: cover;
}
.drug04 .drug04_top_main li:nth-child(2) {
  background: url(/images/drugbg02.jpg) no-repeat;
  background-size: cover;
}
.drug04 .drug04_top_main a {
  background: #11baa4;
  transition: 0.3s all ease-in;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drug04 .drug04_top_main a img {
  width: 84px;
  margin-bottom: 12px;
}
.drug04 .drug04_top_main a p {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.drug04 .drug04_top_main i {
  display: block;
  position: absolute;
  overflow: hidden;
  background-image: url(/images/linerbg.svg);
  background-repeat: no-repeat;
  transition: all .8s;
  width: 0;
  height: 0;
  opacity: 0;
}
.drug04 .drug04_top_main li:hover a {
  background: rgba(18, 188, 167, 0);
}
.drug04 .drug04_top_main li:hover i {
  opacity: 1;
}
.drug04 .drug04_top_main i.xh_t {
  width: 0;
  height: 0;
  overflow: hidden;
  background-position: 0 top;
  background-size: 100%;
  top: 0;
  left: 0;
}
.drug04 .drug04_top_main li:hover i.xh_t {
  width: 100%;
  height: 3px;
}
.drug04 .drug04_top_main i.xh_r {
  width: 0;
  height: 0;
  background-position: right 0;
  background-size: auto 100%;
  right: 0;
  top: 0;
}
.drug04 .drug04_top_main li:hover i.xh_r {
  height: 100%;
  width: 3px;
}
.drug04 .drug04_top_main i.xh_b {
  width: 0;
  height: 0;
  background-position: 0 bottom;
  background-size: 100%;
  bottom: 0;
  right: 0;
}
.drug04 .drug04_top_main li:hover i.xh_b {
  width: 100%;
  height: 3px;
}
.drug04 .drug04_top_main i.xh_l {
  width: 0;
  height: 0;
  background-position: left 0;
  background-size: auto 100%;
  left: 0;
  bottom: 0;
}
.drug04 .drug04_top_main li:hover i.xh_l {
  height: 100%;
  width: 3px;
}
.drug04 .drug04_bom_main {
  width: 100%;
  position: relative;
  padding: 120px 30px 40px 30px;
}
.drug04 .drug04_bom_main .drug04_bom_main_box {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.drug04 .drug04_bom_main .drug04_bom_main_box .mtop {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.drug04 .drug04_bom_main .drug04_bom_main_box .mtop h3 {
  font-size: 35px;
  font-weight: bold;
  color: #fff;
}
.drug04 .drug04_bom_main .drug04_bom_main_box .mtop i {
  font-size: 45px;
  color: #11baa4;
  margin: 0 25px;
  transform: translateY(3px);
}
.drug04 .drug04_bom_main .drug04_bom_main_box .mbom p {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.drug04 .drug04_bom_main .drug04_bom_line {
  width: 100%;
  position: absolute;
  top: 145px;
  left: 0;
  right: 0;
}
.drug04 .drug04_bom_main .drug04_bom_line i {
  width: 350px;
  height: 2px;
  background: #217494;
  display: block;
  position: absolute;
  top: 0;
}
.drug04 .drug04_bom_main .drug04_bom_line i:nth-child(1) {
  left: 0;
}
.drug04 .drug04_bom_main .drug04_bom_line i:nth-child(2) {
  right: 0;
}
.drug05 {
  width: 100%;
  padding: 0px 30px 60px 30px;
  background: #12617A;
}
.drug05 .drug05_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drug05 .mleft {
  max-width: 510px;
  width: 100%;
}
.drug05 .mleft .mfont {
  font-size: 16px;
  color: #fff;
  line-height: 28px;
}
.drug05 .mright {
  flex: 1;
  padding-left: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drug05 .mright img {
  width: 80%;
}
.drug06 {
  background: #fff;
  width: 100%;
  padding: 50px 30px 20px 30px;
}
.drug06 .drug06_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drug06 .mleft li {
  margin-bottom: 20px;
  transition: 0.2s all ease-in;
}
.drug06 .mleft li .mtop {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.drug06 .mleft li .mtop i {
  color: #11baa4;
  font-size: 25px;
  margin-right: 10px;
}
.drug06 .mleft li .mtop h4 {
  font-size: 18px;
  color: #333;
  transition: 0.2s all ease-in;
}
.drug06 .mleft li p {
  font-size: 15px;
  color: #666;
  text-indent: 35px;
}
.drug06 .mleft li:hover {
  transform: translateY(-3px);
}
.drug06 .mleft li:hover .mtop h4 {
  font-weight: bold;
  color: #11baa4;
}
.drug06 .mright {
  flex: 1;
  padding-left: 35px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.drug06 .mright img {
  width: 80%;
}
.drug07 {
  width: 100%;
  padding: 0px 30px 60px 30px;
  background: #fff;
}
.drug07 .drug07_main {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drug07 .mright {
  max-width: 510px;
  width: 100%;
}
.drug07 .mright .mfont {
  font-size: 16px;
  color: #666;
  line-height: 28px;
}
.drug07 .mleft {
  flex: 1;
  padding-left: 35px;
  display: flex;
  align-items: center;
}
.drug07 .mleft img {
  width: 80%;
}
.drug_msg {
  width: 100%;
  padding: 40px 30px;
  background: url(/images/drugbg04.jpg) no-repeat center center;
  background-size: cover;
}
.drug_msg .drug_msg_main {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.drug_msg .drug_msg_main h3 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}
.drug_msg .mmain {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.drug_msg .mfrom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 857px;
  width: 100%;
}
.drug_msg .mfrom .mitem {
  flex: 1;
}
.drug_msg .mfrom .mitem p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.drug_msg .mfrom .mitem input {
  max-width: 248px;
  width: 100%;
  background: #fff;
  padding: 11px 20px;
  font-size: 14px;
  border: none;
}
.drug_msg .from_submit a {
  position: relative;
  overflow: hidden;
  transition: 0.2s all ease-in;
  width: 132px;
  font-size: 16px;
  padding: 7px 0px;
  text-align: center;
  border: 2px solid #fff;
  color: #fff;
  display: block;
}
.drug_msg .from_submit a:hover {
  transform: translateY(0px);
  background: #fff;
  color: #11baa4;
}
.drug_msg .from_submit a::before {
  content: '';
  display: block;
  width: 15px;
  height: 80px;
  filter: blur(5px);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.15) 0%, #ffffff 50%, rgba(255, 255, 255, 0.15) 100%);
  position: absolute;
  top: -20px;
  left: -40px;
  transform: rotate(45deg);
  animation: drug_line_move 1.5s ease-in infinite;
}
@keyframes drug_line_move {
  0% {
    left: -40px;
  }
  100% {
    left: 180px;
  }
}
.drug_msg_pos {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 30px;
  transition: 0.3s all ease-in;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  z-index: 98;
}
.drug_msg_pos .xhclose {
  position: absolute;
  top: 5px;
  right: 0;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.drug_msg_pos .xhclose:hover {
  transform: rotate(180deg);
  transition: 0.2s all ease-in;
}
.drug_msg_pos .drug_msg_main {
  position: relative;
}
.drug_msg_pos .drug_msg_main h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.drug_msg_pos .mfrom .mitem p {
  margin-bottom: 5px;
}
.drug_msg_pos.xhhide {
  transform: translateY(100%);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
/*医药单页-over*********/
/*手机端样式处理-begin*********/
@media screen and (max-width: 1025px) {
  .xhsider {
    right: 0;
    top: 45%;
  }
  .xhsider a {
    padding: .2rem;
  }
  .xhsider a p {
    display: none;
  }
  .xhsider a i {
    margin-bottom: 0;
    font-size: .35rem;
  }
  .xhsider li:hover a {
    transform: translateY(0);
  }
  .xhsider .sider_pop {
    right: 1rem;
  }
  .pc_header {
    display: none;
  }
  .pc_header_kong {
    display: none;
  }
  .md_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .2rem;
    background: #fff;
  }
  .md_header > a {
    width: auto;
    height: .8rem;
  }
  .md_header > a img {
    width: auto;
    height: 100%;
  }
  .md_header .ind_banner_mobile {
    display: flex;
    align-items: center;
    transform: translateY(0px);
  }
  .md_header .ind_banner_mobile .mleft {
    width: .65rem;
    height: .65rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 11px;
    background: #11baa4;
  }
  .md_header .ind_banner_mobile .mleft i {
    color: #fff;
    font-size: .33rem;
  }
  .md_header .ind_banner_mobile .mright p {
    font-size: .22rem;
    color: #666;
    margin-bottom: 2px;
  }
  .md_header .ind_banner_mobile .mright h2 {
    font-size: .28rem;
    font-weight: bold;
    color: #11baa4;
  }
  .pc_footer {
    display: none;
  }
  .mdfooter_kong {
    height: 1.1rem;
    display: block!important;
    background: #fff;
  }
  .mdfooter {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: block!important;
    height: 1.1rem;
    background: #fff;
    box-shadow: 0 0px 7px -3px rgba(0, 0, 0, 0.3);
  }
  .mdfooter ul {
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .mdfooter li {
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mdfooter a {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .mdfooter i {
    font-size: .5rem;
    color: #B3B6BD;
    margin-bottom: .05rem;
  }
  .mdfooter p {
    font-size: .26rem;
    color: #B3B6BD;
  }
  .mdfooter li.curr p {
    color: #11baa4;
  }
  .mdfooter li.curr i {
    color: #11baa4;
  }
  .ind_banner {
    display: none;
  }
  .md_indbanner {
    background: #fff;
    display: block;
    width: 100%;
    height: 4.5rem;
    padding: .05rem .2rem .2rem .2rem;
    border-radius: .2rem;
    overflow: hidden;
  }
  .md_indbanner .mdind_banner_swi {
    width: 100%;
    height: 100%;
  }
  .md_indbanner .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .md_indbanner .swiper-slide {
    width: 100%;
    height: 100%;
    border-radius: .2rem;
    overflow: hidden;
  }
  .md_indbanner .swiper-pagination-bullet {
    background: #fff;
    width: .1rem;
    height: .1rem;
    transition: 0.2s all ease-in;
    opacity: .9;
  }
  .md_indbanner .swiper-pagination-bullet-active {
    background: #fff;
    width: .2rem;
    border-radius: .1rem;
  }
  .md_indbanner .swiper-pagination {
    bottom: .2rem;
  }
  .md_indbanner a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    user-select: none;
  }
  .md_indbanner a .mmain {
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
  .md_indbanner a .mmain .mfont {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    padding-top: .15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .md_indbanner a .mmain .mtop {
    color: #fff;
    font-size: .28rem;
    text-align: center;
    margin-bottom: .15rem;
  }
  .md_indbanner a .mmain .mtop p {
    margin-bottom: .1rem;
  }
  .md_indbanner a .mmain h1 {
    font-size: .5rem;
    color: #fff;
    font-weight: bold;
  }
  .md_indbanner a .mmain .mbom {
    background: #73eead;
    border-radius: .1rem;
    width: 4.5rem;
    height: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .3rem;
  }
  .md_indbanner a .mmain .mbom p {
    text-align: center;
    font-size: .24rem;
    color: #0962ed;
  }
  .md_indbanner a .mimg {
    width: 100%;
    height: 100%;
  }
  .md_indbanner a .mimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ind_navlist {
    display: none;
  }
  .mdind_navlist {
    width: 100%;
    background: #fff;
    padding: 0;
    display: block;
  }
  .mdind_navlist ul {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .mdind_navlist li {
    width: 20%;
    padding: .2rem 0 .4rem 0;
  }
  .mdind_navlist a {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .mdind_navlist span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    margin-bottom: .15rem;
  }
  .mdind_navlist span i {
    color: #fff;
    font-size: .5rem;
  }
  .mdind_navlist p {
    font-size: .24rem;
    color: #333;
  }
  .mdind_navlist li:nth-child(1) span {
    background: linear-gradient(180deg, #32ddc8 0%, #0caa97 100%);
  }
  .mdind_navlist li:nth-child(2) span {
    background: linear-gradient(180deg, #79a5ff 0%, #1f6bff 100%);
  }
  .mdind_navlist li:nth-child(3) span {
    background: linear-gradient(180deg, #ed746e 0%, #ff918b 0.01%, #eb4b43 100%);
  }
  .mdind_navlist li:nth-child(5) span {
    background: linear-gradient(180deg, #ffad19 0%, #fe7028 100%);
  }
  .mdind_navlist li:nth-child(4) span {
    background: linear-gradient(180deg, #32ddc8 0%, #0caa97 100%);
  }
  .ind_product {
    padding: .4rem .2rem;
  }
  .ind_title {
    width: 70%;
    margin: 0 auto;
  }
  .ind_title h2 {
    font-size: .5rem;
  }
  .ind_title p {
    font-size: .25rem;
    line-height: .45rem;
    margin: .15rem 0 .3rem 0;
  }
  .ind_product .ind_product_part .look_more {
    display: none;
  }
  .ind_product .ind_product_main {
    flex-direction: column;
  }
  .ind_product .ind_product_main .ind_product_link {
    width: 100%;
    height: 1.8rem;
    margin-bottom: .2rem;
    background: url(/images/img13.jpg) no-repeat;
    background-size: cover;
  }
  .ind_product .ind_product_part:last-child .ind_product_link {
    width: 100%;
    height: 1.8rem;
    margin-bottom: .2rem;
    background: url(/images/img14.jpg) no-repeat;
    background-size: cover;
  }
  .ind_product .ind_product_main .ind_product_link .mtop {
    padding: .25rem 0 0 .2rem;
  }
  .ind_product .ind_product_main .ind_product_link .mtop h3 {
    font-size: .35rem;
  }
  .ind_product .ind_product_main .ind_product_link .mbom {
    display: none;
  }
  .ind_product .ind_product_part {
    margin-bottom: .3rem;
  }
  .product_page_main_list {
    width: 100%;
  }
  .product_list {
    width: 100%;
  }
  .product_list a .mmain {
    position: relative;
    padding: 0rem;
    width: 100%;
  }
  .ind_product .ind_product_main {
    height: auto;
  }
  .product_list a .mright {
    position: absolute;
    top: .1rem;
    right: .2rem;
    height: auto;
    width: auto;
  }
  .product_list a .mright img {
    width: 1rem;
  }
  .product_list a .mmain .mleft {
    width: 100%;
  }
  .product_list a .mmain .mtop {
    display: block;
  }
  .product_list a .mmain .mtop p {
    margin-bottom: .2rem;
    padding: 0rem 0 .1rem 0;
    border-bottom: 1px solid #efefef;
    font-size: .3rem;
  }
  .product_list a .mmain .mtop h3 {
    padding: 0rem;
    font-size: .3rem;
  }
  .product_list a .mmain .mbom dd {
    margin-bottom: .15rem;
    border: none;
    padding: 0;
  }
  .product_list a .mmain .mbom dl dd:nth-child(2n-1) {
    width: 70%;
  }
  .product_list a .mmain .mbom dl dd:nth-child(2n) {
    justify-content: flex-end;
    width: 30%;
  }
  .product_list a .mmain .mbom dl {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product_list a .mmain .mfont {
    padding: .1rem .2rem;
    margin-top: .1rem;
  }
  .product_list a .mfont p {
    overflow: auto;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
  }
  .ind_news {
    padding: 0 .2rem;
  }
  .ind_news .ind_news_left {
    display: none;
  }
  .ind_news .ind_news_list {
    width: 100%;
  }
  .ind_news .ind_title {
    margin-bottom: .2rem;
  }
  .ind_news .ind_news_list .ind_news_item {
    padding: .2rem;
  }
  .ind_news .ind_news_list .ind_news_item .mright {
    width: 17%;
  }
  .ind_news .ind_news_list .ind_news_item .mright span {
    white-space: nowrap;
    font-size: .22rem;
  }
  .ind_news .ind_news_list .ind_news_item .mright p {
    white-space: nowrap;
    font-size: .22rem;
  }
  .ind_news .ind_news_list .ind_news_item .mleft {
    width: 83%;
  }
  .ind_news .ind_news_list .ind_news_item .mleft h3 {
    font-size: .28rem;
    margin-bottom: .2rem;
  }
  .ind_news .ind_news_list .ind_news_item .mleft p {
    font-size: .25rem;
  }
  .ind_news .ind_news_right {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-top: .3rem;
  }
  .ind_news .ind_news_main {
    flex-direction: column;
  }
  .ind_good {
    margin-top: .6rem;
  }
  .ind_good .ind_good_main {
    width: 100%;
    padding: .8rem .2rem .5rem .2rem;
  }
  .ind_good .ind_good_img {
    height: 100%;
  }
  .ind_good .ind_good_main > p {
    width: 100%;
    font-size: .26rem;
    line-height: .4rem;
  }
  .ind_good .ind_good_main h2 {
    font-size: .5rem;
    margin-bottom: .2rem;
  }
  .ind_good .ind_good_main ul {
    display: block;
    margin-top: .5rem;
  }
  .ind_good .ind_good_main ul li {
    padding: .2rem;
    height: auto;
    width: 100%;
    margin-bottom: .2rem;
  }
  .ind_good .ind_good_main ul .mtop {
    margin-bottom: .2rem;
  }
  .ind_good .ind_good_main ul .mtop span {
    width: .8rem;
    height: .8rem;
  }
  .ind_good .ind_good_main ul .mtop i {
    font-size: .4rem;
  }
  .ind_good .ind_good_main ul .mtop h3 {
    font-size: .33rem;
  }
  .ind_keyword {
    padding: .4rem .2rem;
  }
  .ind_keyword .ind_keyword_top .mtop h2 {
    font-size: .38rem;
    margin: 0 .2rem;
  }
  .ind_keyword .ind_keyword_top > p {
    font-size: .3rem;
  }
  .ind_keyword .ind_keyword_num {
    padding-top: .6rem;
  }
  .ind_keyword .ind_keyword_num ul {
    padding-left: 0;
    flex-wrap: wrap;
  }
  .ind_keyword .ind_keyword_num ul li {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: .5rem;
  }
  .ind_keyword .ind_keyword_num ul li p {
    font-size: .28rem;
    margin-top: .15rem;
  }
  .ind_keyword .ind_keyword_num ul li .mtop h5 {
    font-size: .6rem;
  }
  .ind_keyword .ind_keyword_num ul li .mtop span {
    transform: translateY(-6px);
  }
  .product_search {
    padding: .3rem .2rem;
  }
  .product_search .mmain {
    width: 100%;
    display: block;
  }
  .product_search .mmain .xhsearch {
    width: 100%;
    margin-right: 0;
    margin-bottom: .2rem;
  }
  .product_search .mmain .xhsearch_money {
    width: 100%;
    margin-right: 0;
    margin-bottom: .2rem;
  }
  .product_select {
    padding: 0 .1rem .3rem .2rem;
  }
  .product_select .product_select_top {
    justify-content: space-between;
  }
  .product_select .product_select_item a,
  .product_select .product_select_item_min a {
    font-size: .24rem;
    margin-bottom: .02rem;
    margin-right: .03rem;
    height: .5rem;
    padding: 0 .1rem;
  }
  .product_select .product_select_item,
  .product_select .product_select_item_min {
    height: .6rem;
  }
  .product_select .product_select_top .pro_title h2 {
    font-size: .33rem;
  }
  .product_sort {
    padding: .2rem;
  }
  .product_sort .product_sort_main .right {
    flex-shrink: 0;
    margin-left: .3rem;
  }
  .product_sort .product_sort_main .right a {
    white-space: nowrap;
    font-size: .24rem;
  }
  .product_sort .mleft .mitem {
    margin-right: 0;
  }
  .product_sort .mleft {
    flex: 1;
    justify-content: space-between;
  }
  .product_sort .mleft .mitem p {
    font-size: .25rem;
    margin-right: 0.05rem;
  }
  .product_page_right {
    display: none;
  }
  .product_page {
    padding: .3rem .2rem;
  }
  .product_top .product_top_main {
    padding: .6rem .2rem;
    position: relative;
  }
  .product_top .mtop span {
    position: absolute;
    top: .5rem;
    right: .2rem;
    padding: .08rem .4rem;
    font-size: .24rem;
  }
  .product_top .mtop h2 {
    font-size: .45rem;
    margin-right: 0;
  }
  .product_top .mtop {
    margin-bottom: .35rem;
  }
  .product_top {
    height: auto;
  }
  .product_top .mbom {
    display: block;
  }
  .product_top .mbom .mleft {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product_top .mbom .mleft p {
    margin-right: 0;
    margin-bottom: .3rem;
  }
  .product_top .mbom a {
    margin: .5rem auto .0rem auto;
  }
  .product_page_left .product_show_item {
    margin-bottom: .6rem;
  }
  .product_page_left .product_show_item li {
    padding: 0 0 0 .3rem;
  }
  .product_page_left .product_show_item_title h3 {
    font-size: .32rem;
  }
  .product_page_left .product_show_people .table_box {
    margin-bottom: .4rem;
  }
  .about_banner {
    height: 4.5rem;
  }
  .about_banner .about_banner_main .mfont {
    margin-top: -0.5rem;
  }
  .about_banner .about_banner_main .mfont h2 {
    font-size: .36rem;
    margin-bottom: .2rem;
  }
  .about_banner .about_banner_main .mfont p {
    width: 65%;
    text-align: center;
    font-size: .24rem;
  }
  .about_banner .about_banner_main ul a {
    font-size: .27rem;
  }
  .aboutus01 {
    padding: .4rem .2rem;
  }
  .about_title h3 {
    font-size: .45rem;
  }
  .aboutus01 .mfont {
    margin-top: .4rem;
  }
  .aboutus01 .mbom .mbom_box > img {
    max-width: 60%;
  }
  .aboutus02 {
    height: auto;
    padding: .8rem .2rem;
  }
  .aboutus02 .aboutus02_main {
    width: 100%;
  }
  .aboutus02 .aboutus02_main h4 {
    font-size: .6rem;
  }
  .aboutus02 .aboutus02_main i {
    margin: .3rem .2rem;
  }
  .aboutus02 .aboutus02_main p {
    font-size: .26rem;
  }
  .aboutus03 {
    padding: .4rem .2rem;
  }
  .aboutus03 .mitem {
    flex-direction: column;
    margin-bottom: .5rem;
  }
  .aboutus03 .mitem .mleft {
    width: 100%;
    padding: .4rem .2rem .2rem .2rem;
  }
  .aboutus03 .mitem .mright {
    width: 100%;
    height: auto;
  }
  .aboutus03 .mitem .mright .mimg {
    height: auto;
  }
  .aboutus03 .mitem .mleft p {
    margin-bottom: .5rem;
  }
  .aboutus03 .mitem:nth-child(3) {
    flex-direction: column;
  }
  .aboutus04 {
    padding: .2rem;
  }
  .aboutus04 .aboutus04_top .aboutus04_top_font {
    display: none;
  }
  .aboutus04 .aboutus04_top {
    margin-bottom: .5rem;
  }
  .aboutus04 .swiper_button {
    display: none;
  }
  .aboutus04 .mfont p {
    font-size: .32rem;
    font-weight: normal;
  }
  .contact_page {
    padding: .7rem .2rem;
  }
  .contact_page h2 {
    font-size: .45rem;
  }
  .contact_page span {
    width: 1.5rem;
    height: 5px;
    margin: .15rem 0 .3rem 0;
  }
  .contact_page ul {
    padding: 0;
    align-items: flex-start;
  }
  .contact_page ul li {
    width: 32%;
  }
  .contact_page ul li p {
    font-size: .24rem;
  }
  .contact_map {
    padding: .2rem .1rem;
  }
  .contact_map .contact_map_main h2 {
    font-size: .45rem;
  }
  .contact_map .contact_map_main span {
    width: 1.5rem;
    height: 5px;
    margin: .15rem 0 .3rem 0;
  }
  .contact_map .contact_map_main {
    padding: .5rem .2rem;
  }
  .contact_map .contact_map_main #map_box {
    height: 5rem!important;
  }
  .news_list {
    padding: 0 .2rem .5rem .2rem;
  }
  .news_list .news_list_main {
    flex-direction: column;
  }
  .news_list .news_sider {
    width: 100%;
    margin-bottom: .2rem;
    border-bottom: 1px solid #efefef;
  }
  .news_list .news_sider ul {
    display: flex;
    align-items: center;
  }
  .news_list .news_sider p {
    font-size: .28rem;
  }
  .news_list .news_sider li {
    padding: 0 .1rem;
  }
  .news_list .news_sider a {
    width: 100%;
  }
  .news_list .news_list_item {
    width: 100%;
  }
  .news_list .news_list_item > ul li {
    padding: .3rem 0;
  }
  .nshowWarp .nshowBox {
    padding: .4rem .2rem;
  }
  .news_show_main {
    padding: 0 0 .2rem 0;
    flex-direction: column-reverse;
  }
  .news_show_sider {
    margin-left: 0;
    max-width: 100%;
    padding-top: 0;
  }
  .news_show_main {
    width: 100%;
  }
  .news_show_main .nshowWarp .nshowBox {
    width: auto;
    padding: 0;
  }
  .news_show_main .nshowWarp .nshowBox .nshowTitle {
    font-size: .34rem;
    line-height: .45rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowTag {
    height: auto;
    padding: .2rem 0;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    font-size: .25rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowTag p {
    line-height: .4rem;
    margin-right: .3rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowInfo {
    margin: .3rem 0;
  }
  .news_show_main .nshowWarp .nshowBox .nshowInfo p {
    font-size: .26rem;
    line-height: .4rem;
    margin-bottom: .2rem;
    text-indent: 0.2em;
  }
  .news_show_main .nshowWarp .nshowBox .nshowInfo img {
    width: 100%;
  }
  .news_show_main .nshowWarp .nshowBox .nshowOther {
    height: auto;
    padding: .2rem;
    border-radius: 1rem;
    justify-content: space-between;
    line-height: .4rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowBack {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: .8rem;
    border-radius: .8rem;
    font-size: .26rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowNext i {
    width: .8rem;
    height: .8rem;
    margin: 0;
    border-radius: .8rem;
    line-height: .8rem;
    font-size: .26rem;
  }
  .news_show_main .nshowWarp .nshowBox .nshowNext span {
    display: none;
  }
  .news_show_main .nshowWarp .nshowBox .nshowNext:last-of-type i {
    margin: 0;
  }
  .xhfriend {
    padding: .5rem .2rem;
  }
  .xhfriend ul li {
    width: 50%;
    padding: .2rem;
  }
  .login_page .logForm .logFormBtn {
    margin-top: 2rem;
  }
  .login_page .logForm .logFormBtn input[type='submit'],
  .login_page .logForm .logFormBtn a {
    line-height: 1rem!important;
  }
  .drug_title_w {
    margin-bottom: .6rem;
  }
  .drug_title_w h3 {
    font-size: .4rem;
    color: #fff;
  }
  .drug_title_w span {
    width: .49rem;
    height: .06rem;
    margin-top: .15rem;
  }
  .drug_title_b {
    margin-bottom: .6rem;
  }
  .drug_title_b h3 {
    font-size: .4rem;
    color: #333;
  }
  .drug_title_b span {
    width: .49rem;
    height: .06rem;
    margin-top: .15rem;
  }
  .drug_title_c {
    margin-bottom: .6rem;
  }
  .drug_title_c h3 {
    font-size: .4rem;
  }
  .drug_title_c span {
    width: .49rem;
    height: .06rem;
    margin-top: .15rem;
  }
  .drug_title_c_w {
    margin-bottom: .6rem;
  }
  .drug_title_c_w h3 {
    font-size: .4rem;
  }
  .drug_title_c_w span {
    width: .49rem;
    height: .06rem;
    margin-top: .15rem;
  }
  .drug_banner {
    height: auto;
    padding: .8rem .3rem;
  }
  .drug_banner .drug_banner_main .mfont p {
    font-size: .28rem;
    line-height: .48rem;
  }
  .drug02 {
    padding: .6rem .3rem;
  }
  .drug02 .drug02_main {
    justify-content: flex-start;
    flex-direction: column;
  }
  .drug02 .mleft {
    max-width: 100%;
  }
  .drug02 .mleft .mfont {
    font-size: .28rem;
  }
  .drug02 .mleft ul {
    margin-top: .3rem;
  }
  .drug02 .mleft ul li {
    flex: 1;
  }
  .drug02 .mleft ul li i {
    font-size: .4rem;
    margin-right: .01rem;
  }
  .drug02 .mleft ul li span {
    font-size: .26rem;
    white-space: nowrap;
  }
  .drug02 .mright {
    padding-left: 0;
    justify-content: center;
    padding-top: .6rem;
  }
  .drug03 {
    padding: .6rem 0rem;
  }
  .drug03 ul {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .drug03 li {
    padding: .3rem;
    flex-direction: row;
    width: 100%;
  }
  .drug03 li img {
    width: .8rem;
  }
  .drug03 li h4 {
    margin: 0 .3rem 0 .15rem;
    white-space: nowrap;
    font-size: .3rem;
  }
  .drug03 li p {
    font-size: .25rem;
    flex: 1;
    max-width: 100%;
    text-align: left;
  }
  .drug04 {
    padding: .6rem .3rem;
  }
  .drug04 .drug04_top_main {
    padding: 0;
  }
  .drug04 .drug04_top_main ul {
    margin-top: .4rem;
    height: 3.5rem;
  }
  .drug04 .drug04_top_main a img {
    width: 1rem;
    margin-bottom: .12rem;
  }
  .drug04 .drug04_top_main a p {
    font-size: .33rem;
  }
  .drug04 .drug04_bom_main {
    padding: .6rem .3rem .3rem .3rem;
  }
  .drug04 .drug04_bom_main .drug04_bom_main_box .mtop {
    margin-bottom: .4rem;
  }
  .drug04 .drug04_bom_main .drug04_bom_main_box .mtop h3 {
    font-size: .35rem;
  }
  .drug04 .drug04_bom_main .drug04_bom_main_box .mbom p {
    font-size: .26rem;
    width: 65%;
    margin: 0 auto;
  }
  .drug04 .drug04_bom_main .drug04_bom_line {
    top: 3rem;
  }
  .drug05 {
    padding: 0 .3rem .6rem .3rem;
  }
  .drug05 .drug05_main {
    flex-direction: column-reverse;
  }
  .drug05 .mright {
    padding: 0;
    justify-content: center;
    margin-bottom: .5rem;
  }
  .drug05 .mleft {
    max-width: 100%;
  }
  .drug05 .mleft .mfont {
    font-size: .28rem;
  }
  .drug06 {
    padding: .5rem .3rem;
  }
  .drug06 .drug06_main {
    flex-direction: column;
    max-width: 100%;
  }
  .drug06 .drug06_main .mleft {
    width: 100%;
  }
  .drug06 .mleft li {
    margin-bottom: .25rem;
  }
  .drug06 .mleft li .mtop {
    margin-bottom: .1rem;
  }
  .drug06 .mleft li .mtop h4 {
    font-size: .3rem;
  }
  .drug06 .mleft li p {
    font-size: .28rem;
  }
  .drug06 .mright {
    padding: 0;
    justify-content: center;
  }
  .drug07 {
    padding: .8rem .3rem 0 .3rem;
  }
  .drug07 .drug07_main {
    flex-direction: column-reverse;
  }
  .drug07 .mright {
    max-width: 100%;
  }
  .drug07 .mright .mfont {
    font-size: .28rem;
  }
  .drug07 .mleft {
    padding: 0;
    justify-content: center;
  }
  .drug_msg {
    padding: .4rem .3rem .8rem .3rem;
  }
  .drug_msg .drug_msg_main h3 {
    font-size: .32rem;
    margin-bottom: .35rem;
  }
  .drug_msg .mmain {
    padding: 0;
    flex-direction: column;
    width: 100%;
  }
  .drug_msg .mfrom {
    display: block;
  }
  .drug_msg .mmain .mitem {
    width: 100%;
    margin-bottom: .3rem;
  }
  .drug_msg .mfrom .mitem input {
    max-width: 100%;
  }
  .drug_msg .from_submit {
    width: 100%;
    margin-top: .3rem;
  }
  .drug_msg .from_submit a {
    width: 100%;
  }
  @keyframes drug_line_move {
    0% {
      left: -40px;
    }
    100% {
      left: 120%;
    }
  }
  .drug_msg_pos {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  .about_business .mitem {
    padding: .4rem .2rem;
    margin-bottom: .5rem;
    height: auto;
  }
  .about_business .mitem .mmain {
    flex-direction: column;
    height: auto;
  }
  .about_business .mitem:nth-child(2n) .mmain {
    flex-direction: column;
  }
  .about_business .mitem .mleft {
    width: 100%;
  }
  .about_business .mitem .mleft h3 {
    font-size: .4rem;
  }
  .about_business .mitem .mleft span {
    margin: .2rem 0 .5rem 0;
  }
  .about_business .mitem .mright {
    margin-top: .5rem;
    flex: auto;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .about_business .mitem .mright img {
    max-width: 80%;
  }
  .md_indbanner {
    height: 4rem;
  }
}
/*手机端样式处理-over*********/
.xhpaging {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 1025px) {
  .xhpaging {
    margin: .5rem 0;
  }
}

.index-searchBox {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.index-searchBox .search-input {
  width: 620px;
  flex: 1;
  padding: 10px 26px;
  border: 2px solid #11baa4;
  border-right: none;
  outline: none;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 6px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.index-searchBox .search-icon {
  background: transparent;
  position: absolute;
  top: 12px;
  left: 8px;
  font-size: 20px;
}
.index-searchBox .search-button {
  background-color: #11baa4;
  color: white;
  border: none;
  padding: 10px 36px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.index-searchBox span {
  font-size: 14px;
  color: #666;
  margin-left: 16px;
  line-height: 50px;
}
/* 服务商模块相关 */
.taskBox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-flow: row;
  width: 1200px;
}
.taskBox .taskBox-task {
  width: 100%;height: 320px;background: #fff;
  border-radius: 10px;box-sizing: border-box;overflow: hidden;
  .taskBox-task__img {
    width: 100%;height: 140px;background: #11baa4;padding: 16px;position: relative;
    display: flex;flex-direction: column;justify-content: center;align-items: center;
    row-gap: 14px;margin-bottom: 10px;
    p {
      font-size: 20px;font-weight: 600;color: #fff;text-align: center;
    }
    img {
      width: 65px;
      position: absolute;
      right: 14px;
      top: 20px;
      opacity: 0.4;
    }
  }
  .taskBox-task__title {
    padding: 12px;color: #333;font-weight: 600;font-size: 20px;
    white-space: nowrap; /* 确保文本不会换行 */
    overflow: hidden; /* 隐藏溢出的文本 */
    text-overflow: ellipsis; cursor: pointer;
  }
  .taskBox-task__account {
    padding: 0 12px;color: #999;font-size: 14px;
  }
  .taskBox-task__name {
    padding: 12px;color: #666;font-size: 14px;display: flex;align-items: center;column-gap: 6px;justify-content: space-between;
    img {
      width: 18px;
    }
    div {
      display: flex;justify-content: flex-start;align-items: center;column-gap: 4px;
    }
  }
  .taskBox-task__introduction {
    padding: 0 12px;box-sizing: border-box;display: flex;column-gap: 10px;
    span {
      color: #333;font-size: 14px;font-weight: 600;
    }
    img {
      width: 16px;flex-shrink: 0;height: 16px;
    }
    div {
      display: flex;align-items: center;
    }
  }
}

.popBox-bj {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  display: none;
}

.popBox {
  width: 600px;
  height: 440px;
  border-radius: 10px;
  border: 1px solid #efefef;
  background: linear-gradient(#11baa4, #fff);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9999;
  box-sizing: border-box;
  padding: 26px;
  /* display: none; */
  h1 {
    font-size: 32px;font-weight: 600;color: #fff;margin-bottom: 10px;
  }
  h3 {
    font-size: 28px;font-weight: 600;color: #fff;
  }
  .popBox-check {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-top: 16px;
    span {
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 16px;color: #333;
      background: #fff;padding: 10px 20px;
      border-radius: 20px;
      column-gap: 6px;
      img {
        width: 16px;flex-shrink: 0;
      }
    }
  }
  .popBox-form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    input {
      width: 100%;
      height: 40px;
      border-radius: 6px;
      border: 1px solid #fff;
      margin-top: 16px;
      padding: 0 16px;
      box-sizing: border-box;
      font-size: 16px;
      color: #333;
      background: fff;
    }
    button {
      width: 100%;
      height: 46px;
      border-radius: 6px;
      border: 1px solid #fff;
      margin-top: 16px;
      padding: 0 16px;
      box-sizing: border-box;
      font-size: 16px;
      color: #fff;
      background: #11baa4;
      cursor: pointer;
    }
  }
  .popBox-tip {
    /* margin-top: 26px; */
    text-align: right;
    a {
      color: #11baa4;
      text-decoration: underline;
    }
  }
}

.popBox-close {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #ffffff;
    color: #333;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    top: 2px;
    right: 2px;
    cursor: pointer;
}
.toast_msg {
  background: rgba(0,0,0, 0.8);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 99999;
  color: #fff;
  font-size: 14px;
  padding: 10px 20px;
}

/* 登录二维码模块 */
.popErCode {
  width: 400px;
  height: 400px;
  border-radius: 10px;
  border: 1px solid #0a8270;
  background: linear-gradient(#11baa4, #11baa4);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  h3 {
    color: #fff;
  }
  .popErCode-border {
    margin-top: 20px;
    width: 260px;
    height: 260px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 16px;
    border-radius: 6px;
    img {
      width: 100%;
      height: 100%;
    }
  }
  .popErCode-close {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    font-size: 28px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;
  }
}