:root {
  --main-color: #00B09C;
}

.w1400 {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.grid {
  display: grid;
  gap: 20px;
}

.picBox {
  overflow: hidden;
}
.picBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: ease-in-out 0.4s;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
}

.header {
  position: relative;
  z-index: 3;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.header .header_top {
  height: 42px;
  background: #EFEFEF;
  position: relative;
  z-index: 13;
}
.header .header_top .left {
  display: flex;
  align-items: center;
  gap: 0 27px;
}
.header .header_top .left span {
  font-size: 14px;
  color: #999;
}
.header .header_top .left span.icon-V {
  font-size: 18px;
  line-height: 14px;
}
.header .header_top .left a {
  font-size: 14px;
  color: #999;
  transition: ease-in-out 0.2s;
  -webkit-transition: ease-in-out 0.2s;
  -moz-transition: ease-in-out 0.2s;
  -ms-transition: ease-in-out 0.2s;
  -o-transition: ease-in-out 0.2s;
}
.header .header_top .left a:hover {
  color: var(--main-color);
}
.header .header_top .right {
  display: flex;
  align-self: center;
  gap: 0 20px;
}
.header .header_bottom {
  height: 100px;
  position: relative;
  z-index: 13;
}
.header .header_bottom > .flex,
.header .header_top > .flex {
  height: 100%;
  align-items: center;
}
.header .lanuage {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.header .lanuage span {
  font-size: 20px;
  color: #999;
}
.header .lanuage a {
  font-size: 14px;
  color: #666;
}
.header .lanuage a.active {
  color: var(--main-color);
  font-weight: bold;
}
.header .search_btn {
  cursor: pointer;
}
.header .search_btn span {
  font-size: 20px;
  color: #999;
  line-height: 1;
  display: block;
  margin-top: 2px;
}

nav.nav ul {
  display: flex;
  gap: 0 90px;
  align-items: center;
}
nav.nav ul li a {
  font-size: 18px;
  color: #666;
  font-weight: bold;
  text-transform: uppercase;
  transition: ease-in-out 0.32s;
  -webkit-transition: ease-in-out 0.32s;
  -moz-transition: ease-in-out 0.32s;
  -ms-transition: ease-in-out 0.32s;
  -o-transition: ease-in-out 0.32s;
  position: relative;
}
nav.nav ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--main-color);
  left: 0;
  z-index: 3;
  bottom: -37px;
}
nav.nav ul li a:hover {
  color: var(--main-color);
}
nav.nav ul li.act a {
  color: var(--main-color);
}
nav.nav ul li.act a::after {
  width: 100%;
}

.index_page1.flex {
  gap: 0 80px;
  justify-content: flex-start;
  align-items: center;
}
.index_page1.flex .figure {
  width: 36.4583333333%;
  flex-shrink: 0;
}
.index_page1.flex .figcaption {
  width: 100%;
  flex-shrink: 1;
  max-width: 740px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 80px;
}
.index_page1.flex .figcaption .h3 {
  font-size: 60px;
  font-weight: 800;
  color: #333333;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  line-height: 1;
}
.index_page1.flex .figcaption .h6 {
  font-size: 30px;
  color: #333333;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.index_page1.flex .figcaption .p {
  font-size: 18px;
  color: #666666;
  line-height: 2;
  margin: 25px 0 45px;
}

.more a {
  display: flex;
  align-items: center;
  gap: 0 70px;
  transition: ease-in-out 0.4s;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
  width: -moz-max-content;
  width: max-content;
  min-width: 210px;
}
.more a span {
  font-size: 16px;
  color: #333;
  font-weight: 800;
  text-transform: uppercase;
}
.more a .icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 2px solid var(--main-color);
  display: block;
  position: relative;
  z-index: 4;
  background: transparent;
}
.more a .icon::after {
  content: "";
  width: 55px;
  height: 0;
  border-top: 1px solid #333;
  position: absolute;
  right: 20px;
  top: 50%;
  z-index: -1;
  transition: ease-in-out 0.4s;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
}
.more a .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--main-color);
  left: 0;
  top: 0;
  z-index: 1;
  transform: scale(0);
  transition: ease-in-out 0.4s;
  -webkit-transition: ease-in-out 0.4s;
  -moz-transition: ease-in-out 0.4s;
  -ms-transition: ease-in-out 0.4s;
  -o-transition: ease-in-out 0.4s;
}
.more a:hover {
  gap: 0 30px;
}
.more a:hover .icon::after {
  width: 0%;
}
.more a:hover .icon::before {
  transition-delay: 0.1s;
  transform: scale(1);
}

.index_page2 {
  min-height: 892px;
  width: 100%;
  background: url(../images/index_page02.jpg) no-repeat left center;
}
.index_page2 .max_90 {
  width: 100%;
  max-width: 90vw;
  margin: 0 0 0 auto;
}
.index_page2 .title {
  padding-top: 40px;
}
.index_page2 .title h3 {
  font-size: 72px;
  font-weight: 800;
  color: #666666;
  text-transform: uppercase;
  line-height: 1.2;
}
.index_page2 .title h3 span {
  font-size: 36px;
  color: var(--main-color);
}
.index_page2 .indexPro {
  margin-bottom: 70px;
  margin-top: 45px;
  position: relative;
}
.index_page2 .indexPro .swiper-horizontal > .swiper-scrollbar,
.index_page2 .indexPro .swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 75%;
  bottom: -25px;
  right: 0;
  margin: 0 0 0 auto;
}
.index_page2 .indexPro .swiper-scrollbar-drag {
  background: var(--main-color);
}
.index_page2 .more {
  width: -moz-max-content;
  width: max-content;
  margin: 0 420px 0 auto;
}

.index_page3 {
  width: 100%;
  height: 600px;
  background: url(../images/index_page03.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.index_page3 .fontBox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.index_page3 .fontBox h3 {
  font-size: 72px;
  font-weight: 800;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1;
}
.index_page3 .fontBox span {
  font-size: 24px;
  color: #fff;
  display: block;
  margin: 36px 0 20px 0;
}
.index_page3 .fontBox p {
  font-size: 26px;
  color: #ffffff;
  line-height: 1;
}
.index_page3 .fontBox a {
  line-height: 18px;
  padding: 20px 38px;
  border-radius: 30px;
  background: #fff;
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
  font-weight: bold;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 36px;
}

.index_page4 {
  min-height: 900px;
  width: 100%;
  background: url(../images/index_page4.jpg) no-repeat center center;
}
.index_page4 .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0 40px 0;
}
.index_page4 .title h3 {
  font-size: 72px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
}
.index_page4 .title h3 span {
  font-size: 48px;
  display: block;
  margin-top: 5px;
}

.main_proSwiper {
  position: relative;
  max-width: 1090px;
  width: 92%;
  margin: 0 auto;
}
.main_proSwiper .box {
  display: grid;
  grid-template-columns: minmax(auto, 550px) minmax(auto, 520px);
  gap: 0;
  padding: 10px;
}
.main_proSwiper .box .fontBox {
  position: relative;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  height: 100%;
  background: #fff;
}
.main_proSwiper .box .fontBox > .name {
  font-size: 36px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  line-height: 1;
  padding-left: 60px;
  padding-top: 50px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}
.main_proSwiper .box .fontBox ul li {
  border-bottom: 1px solid #eee;
  height: 100px;
  padding-left: 60px;
  display: flex;
  align-items: center;
}
.main_proSwiper .box .fontBox ul li p {
  font-size: 18px;
  color: #333;
  line-height: 2;
}
.main_proSwiper .box .fontBox ul li p span {
  color: #999;
}
.main_proSwiper .box .fontBox ul li:last-child {
  border-bottom: none;
}
.main_proSwiper .swiper-button-prev,
.main_proSwiper .swiper-button-next {
  top: auto;
  bottom: -60px;
}
.main_proSwiper .swiper-button-prev::after,
.main_proSwiper .swiper-button-next::after {
  display: none;
}
.main_proSwiper .swiper-button-prev span,
.main_proSwiper .swiper-button-next span {
  font-size: 32px;
  color: #999;
  display: block;
}
.main_proSwiper .swiper-button-next {
  left: 75px;
}
.main_proSwiper .swiper-button-prev span {
  transform: rotateZ(180deg);
}

.footer {
  background: #333333;
}
.footer .footer_btm {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #595959;
}
.footer .footer_btm p {
  font-size: 14px;
  font-weight: 300;
  color: #999999;
}
.footer .footer_btm a {
  font-size: 14px;
  font-weight: 300;
  color: #999999;
}
.footer .footer_btm a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer .footer_top {
  padding: 58px 0 50px 0;
  display: flex;
  justify-content: space-between;
  gap: 0 20px;
}
.footer .footer_top .left .share {
  display: flex;
  align-items: center;
  gap: 0 18px;
  justify-content: center;
  margin-top: 55px;
}
.footer .footer_top .right {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 985px;
  justify-content: space-between;
  padding-right: 60px;
}
.footer .footer_top .right a {
  display: block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  color: #ccc;
  font-weight: 500;
}
.footer .footer_top .right h3 {
  font-size: 18px;
  font-weight: bold;
  color: #cccccc;
  margin-bottom: 20px;
}
.footer .footer_top .right p {
  font-size: 14px;
  color: #ccc;
  display: flex;
  align-items: flex-start;
  line-height: 20px;
  margin-bottom: 16px;
}
.footer .footer_top .right p span.iconfont {
  color: var(--main-color);
  margin-right: 6px;
}
.footer .footer_top .right p span.icon-V {
  font-size: 21px;
  line-height: 14px;
  margin-top: 3px;
}
.footer .footer_top .right p span.icon-dizhi2 {
  font-size: 21px;
  line-height: 14px;
  margin-top: 5px;
}

.inside_banner {
  position: relative;
}
.inside_banner .picBox {
  height: 450px;
}
.inside_banner .picBox img {
  -o-object-position: center center;
     object-position: center center;
}
.inside_banner .fontBox {
  position: absolute;
  left: 13.5416666667%;
  top: 50%;
  transform: translateY(-50%);
}
.inside_banner .fontBox h3 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.inside_banner .fontBox p {
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
}

.map {
  height: 650px;
}

.contact_page1 {
  min-height: 705px;
  background: url(../images/contact_bg01.jpg) no-repeat bottom right;
  padding: 60px 0;
}
.contact_page1 .message {
  width: 500px;
  height: 588px;
  background: var(--main-color);
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 45px 40px 0 40px;
}
.contact_page1 .message > h3 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.contact_page1 .message .form {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
}
.contact_page1 .message .form .input_box {
  position: relative;
}
.contact_page1 .message .form .input_box input {
  width: 100%;
  height: 42px;
  line-height: 40px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  padding: 0 22px;
  color: #fff;
}
.contact_page1 .message .form .input_box textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  padding: 10px 22px;
  color: #fff;
}
.contact_page1 .message .form .input_box label {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 22px;
  line-height: 40px;
  font-size: 14px;
  color: #ffffff;
  transition: opacity 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955), visibility 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  pointer-events: none;
}

.form [class*=input_box]:focus-within label {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(20px, 0, 0);
}

.submit {
  width: 100%;
  line-height: 42px;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  color: var(--main-color);
}

.contact_page1 .flex {
  align-items: center;
}
.contact_page1 .contact h3 {
  max-width: 740px;
  font-size: 36px;
  color: #666666;
  font-weight: 500;
  margin-bottom: 36px;
}
.contact_page1 .contact p {
  display: flex;
  align-items: flex-start;
  max-width: 645px;
}
.contact_page1 .contact p span:last-child {
  font-size: 30px;
  line-height: 1.6;
  color: #666666;
  margin-left: 12px;
}
.contact_page1 .contact p span.iconfont {
  color: var(--main-color);
  font-size: 24px;
  margin-top: 13px;
  display: block;
}
.contact_page1 .contact p span.iconfont.icon-youxiang {
  font-size: 18px;
  margin-top: 15px;
}

.inside_page {
  padding: 40px 0 80px;
  background: #EEEEEE;
}

.factory_list .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.factory_list .grid li {
  background: #fff;
  padding: 13px 13px 0 13px;
}
.factory_list .grid li:hover .picBox img {
  transform: scale(1.15);
}
.factory_list .grid .fontBox {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
.factory_list .grid .fontBox p {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}
.factory_list .grid .fontBox span {
  color: #999;
  font-size: 42px;
}

.about_page {
  width: 100%;
  min-height: 936px;
  background: url(../images/about_img02.jpg) no-repeat bottom left;
  background-size: cover;
  padding-top: 80px;
}
.about_page .about_Box {
  max-width: 980px;
  margin-left: 33.8541666667%;
  display: flex;
  align-items: flex-start;
  gap: 0 55px;
}
.about_page .about_Box > .tit {
  font-size: 60px;
  font-weight: 800;
  color: var(--main-color);
  writing-mode: vertical-rl;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 25px;
}
.about_page .about_Box .editor .h6 {
  font-size: 30px;
  color: #333333;
  line-height: 36px;
  max-width: 600px;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
}
.about_page .about_Box .editor .p {
  font-size: 18px;
  color: #666666;
  font-weight: 400;
  line-height: 2;
}

.inside_page2 {
  background: #fff;
  padding: 40px 0 80px;
}

.pro_content {
  grid-template-columns: minmax(auto, 270px) minmax(auto, 1090px);
  gap: 0 40px;
}

.pro_list .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 35px;
}
.pro_list .grid li {
  background: #fff;
  padding: 9px 9px 0 9px;
  border: 1px solid #ccc;
}
.pro_list .grid li:hover .picBox img {
  transform: scale(1.15);
}
.pro_list .grid .fontBox {
  display: flex;
  justify-content: space-between;
  height: 52px;
  align-items: center;
}
.pro_list .grid .fontBox p {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}
.pro_list .grid .fontBox span {
  color: #999;
  font-size: 32px;
}
.pro_list .type_name {
  line-height: 60px;
  height: 61px;
  border-bottom: 1px solid #ccc;
  font-size: 24px;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 30px;
}

.pro_nav {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  height: -moz-max-content;
  height: max-content;
}
.pro_nav ul li {
  height: 60px;
  border-bottom: 1px dashed #ccc;
}
.pro_nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 20px;
  font-size: 16px;
  color: #666666;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}
.pro_nav ul li a span {
  font-size: 8px;
  color: #666;
  margin-right: 8px;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}
.pro_nav ul li a:hover {
  color: var(--main-color);
}
.pro_nav ul li a:hover span {
  color: var(--main-color);
}
.pro_nav ul li:last-child {
  border-bottom: none;
}
.pro_nav ul li.active a {
  background: #02B19C;
  color: #fff;
}
.pro_nav ul li.active a span {
  color: #fff;
}

.product_deta {
  padding: 40px 0 80px;
}
.product_deta .deta_top .grid {
  grid-template-columns: minmax(auto, 570px) minmax(auto, 720px);
  gap: 0 40px;
}
.product_deta .deta_top .pro_picture {
  height: 570px;
  border: 1px solid #ccc;
  padding: 9px;
}
.product_deta .deta_top .pro_picture .swiper {
  width: 100%;
  height: 100%;
}
.product_deta .deta_top .pro_picture .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pro-inf {
  height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pro-inf .content_top h3 {
  font-size: 28px;
  color: var(--main-color);
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  line-height: 1;
  padding: 24px 0;
}
.pro-inf .content_top .editor {
  padding: 20px;
  line-height:2;
  color:#444;
  font-size: 18px;
}
.pro-inf .content_top .editor span {
 font-size: 18px;
 color:#999;
}
.pro-inf .control {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #CCCCCC;
}
.pro-inf .control a {
  height: 58px;
  border-right: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pro-inf .control a span {
  font-size: 27px;
  color: #999;
}
.pro-inf .control a:last-child {
  color: #fff;
  background: var(--main-color);
  border-right: none;
}
.pro-inf .control a:first-child span {
  display: block;
  transform: rotateZ(180deg);
}

.ht {
  height: 70px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-top: 30px;
}
.ht p {
  line-height: 68px;
  width: 230px;
  text-align: center;
  background: var(--main-color);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.deta_editor {
  padding: 40px 0 0;
}

.news_list .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.news_list .grid li {
  background: #fff;
  padding: 14px 13px 0 13px;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}
.news_list .grid li .time {
  height: 56px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_list .grid li .time span {
  color: #999;
  font-size: 16px;
}
.news_list .grid li .time span.iconfont {
  color: #AFAFAF;
  font-size: 42px;
}
.news_list .grid li .fontBox {
  padding-top: 18px;
}
.news_list .grid li .fontBox .tit {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  transition: ease-in-out 0.3s;
  -webkit-transition: ease-in-out 0.3s;
  -moz-transition: ease-in-out 0.3s;
  -ms-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
}
.news_list .grid li .fontBox .inf {
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.news_list .grid li:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.news_list .grid li:hover .fontBox .tit {
  color: var(--main-color);
}

.news_deta .w1400 {
  padding: 0 60px;
}

.news_tit p {
  font-size: 24px;
  color: #666666;
  text-align: center;
  margin-bottom: 10px;
}
.news_tit h3 {
  font-size: 30px;
  color: #666666;
  text-align: center;
  font-weight: 800;
}

.news_inf {
  font-size: 16px;
  color: #999999;
  line-height: 34px;
  padding: 30px 0 60px;
}

.news_control {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 27px;
  gap: 0 60px;
}
.news_control a:first-child span {
  transform: rotateZ(180deg);
}
.news_control a span {
  display: block;
  font-size: 48px;
  color: #999;
}

.search {
  position: absolute;
  left: 0;
  top: -200px;
  width: 100%;
  height: 200px;
  z-index: 9;
  opacity: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.search .search_box {
  width: 100%;
  max-width: 585px;
  border-bottom: 1px solid #97a2a7;
  display: flex;
  align-items: center;
}

.search .search_box img {
  cursor: pointer;
}

.search .search_box input {
  height: 56px;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.search .search_box span.iconfont {
  font-size: 28px;
  color: #999;
}

.search.act {
  border-top: 1px solid #ccc;
  top: 140px;
  opacity: 1;
}/*# sourceMappingURL=css.css.map */


/* 分页 */
.pageNav{font-family:Arial,Helvetica,sans-serif;padding-top:10px;text-align:right}
.pageNav a,
.pageNav span{margin:0 3px;width:28px;height:28px;line-height:28px;background:#e7e7e7;
display:inline-block;*display:inline;*zoom:1;text-align:center}
.pageNav span.info{background:none}
.pageNav a:hover,
.pageNav span.current{background:#ff534f;color:#fff}
.pageNavLeft{text-align:left}
.pageNavCenter{text-align:center}
.pageNavRight{text-align:right}

.notdata{line-height:35px;border:1px dashed #ccc;margin:20px 0;text-align:center}
.notdataw{color:#fff;padding:50px 0}

.loading-wrap{ margin-top:10px;bottom:50px;width:100%;text-align:center;display:none;}
.loading{ position:relative;display:inline-block;padding:5px 5px 5px 50px;line-height:28px;color:#333;font-size:14px;border-radius:5px;background:url(../../../../Public/images/loading.gif) 10px center no-repeat;}

/* 以上为通用样式 */