body {
  overflow-x: hidden;
}
.after {
  content: '';
  display: inline-block;
}
.after_a {
  content: '';
  position: absolute;
}
.flex,
.flex_js,
.flex_jc,
.flex_ac,
.flex_js_ac,
.flex_jc_ac,
.flex_js_fe {
  display: flex;
}
.flex_js,
.flex_js_fe {
  justify-content: space-between;
}
.flex_jc {
  justify-content: center;
}
.flex_ac {
  align-items: center;
}
.flex_js_fe {
  align-items: flex-end;
}
.flex_js_ac {
  justify-content: space-between;
  align-items: center;
}
.flex_jc_ac {
  justify-content: center;
  align-items: center;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 2em;
}
.f14 {
  font-size: calc(14 / 10 * 1rem);
}
.f16 {
  font-size: calc(16 / 10 * 1rem);
}
.f17 {
  font-size: calc(17 / 10 * 1rem);
}
.f18 {
  font-size: calc(18 / 10 * 1rem);
}
.f20 {
  font-size: calc(20 / 10 * 1rem);
}
.f22 {
  font-size: calc(22 / 10 * 1rem);
}
.f24 {
  font-size: calc(24 / 10 * 1rem);
}
.f26 {
  font-size: calc(26 / 10 * 1rem);
}
.f28 {
  font-size: calc(28 / 10 * 1rem);
}
.f30 {
  font-size: calc(30 / 10 * 1rem);
}
.f32 {
  font-size: calc(32 / 10 * 1rem);
}
.f34 {
  font-size: calc(34 / 10 * 1rem);
}
.f36 {
  font-size: calc(36 / 10 * 1rem);
}
.f38 {
  font-size: calc(38 / 10 * 1rem);
}
.f40 {
  font-size: calc(40 / 10 * 1rem);
}
.f48 {
  font-size: calc(48 / 10 * 1rem);
}
.f60 {
  font-size: calc(60 / 10 * 1rem);
}
.f72 {
  font-size: calc(72 / 10 * 1rem);
}
.w1400 {
  max-width: 140rem;
  margin: 0 auto;
  width: 90%;
}
@media (max-width: 1400px) {
  .w1400 {
    max-width: 100%;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: calc(100vw / 192);
  }
}
@media (max-width: 1745px) {
  html {
    font-size: calc(100vw / 192);
  }
}
@media (max-width: 1200px) {
  html {
    font-size: calc(100vw / 192);
  }
}
@media (max-width: 640px) {
  html {
    font-size: calc(100vw / 76.8);
  }
}
.hidden {
  overflow: hidden;
}
.ani {
  transition: all 0.5s;
}
a:hover .ani {
  transform: scale(1.15);
}
.pt150 {
  padding-top: 15rem;
}
.pb150 {
  padding-bottom: 15rem;
}
.topH {
  height: 6rem;
}
.header .w1400 {
  max-width: none;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.header.hover{
    background-color: #fff;
    -moz-box-shadow: 0px 0px 21px rgba(0,0,0,0.05);
    -webkit-box-shadow: 0px 0px 21px rgba(0,0,0,0.05);
    box-shadow: 0px 0px 21px rgba(0,0,0,0.05);
}
.header .bg {
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  border-top: 1px solid #d4d4d4;
  display: none;
  width: 100%;
}
.header .logo {
  flex: 0 0 auto;
  margin-right: calc(20 / 16 * 1em);
  display: inline-flex;
}

.header.hover .logo img{
  height: calc(21 / 16 * 1em);
}
.header .left {
  display: inline-flex;
  align-items: center;
}
.header .lang {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}
.header .lang span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  line-height: 6rem;
    transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.header.hover .lang span {
  line-height: 4rem;
}
.header .lang span::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border: solid #333333;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -3px;
}
.header .lang .box {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 13rem;
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
  -moz-transform: translate3d(-50%, -10px, 0);
  -o-transform: translate3d(-50%, -10px, 0);
  -ms-transform: translate3d(-50%, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.1s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
}
.header .lang .box a {
  display: block;
  margin: 3rem 0;
}
.header .lang.hover .box {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
.header .menuIcon {
  display: none;
}
.header .search {
  margin-left: 2%;
  margin-right: 7%;
  position: relative;
}
.header .search .open_search {
  width: 1.5rem;
  height: 1.5rem;
  background: url(../images/search.svg) no-repeat center;
  background-size: contain;
  display: block;
  cursor: pointer;
}
.header .search .open_search.on {
  background: none;
  position: relative;
}
.header .search .open_search.on:before,
.header .search .open_search.on:after {
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
  height: 2px;
  top: 50%;
  margin-top: -1.5px;
  background: #333;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.header .search .open_search.on:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.header .search .top_search {
  width: 55rem;
  position: absolute;
  right: -100%;
  opacity: 0;
  top: 300%;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  pointer-events: none;
}
.header .search .top_search .btn {
  background: url(../images/search.svg) no-repeat center;
  width: 3rem;
  background-size: 2rem;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header .search .top_search .text {
  width: 100%;
  height: 4.2rem;
  line-height: 4rem;
  background-color: #fff;
  padding: 0 1rem 0 4rem;
  border: none;
  border-bottom: 1px solid #d4d4d4;
}
.header .search.search_show .top_search {
  opacity: 1;
  right: 0%;
  pointer-events: auto;
}
.header .navTop {
  margin-left: 9%;
  position: relative;
  z-index: 2;
}
.header .navTop .ul {
  gap: 8rem;
}
.header .navTop li {
  position: relative;
}
.header .navTop span a {
  line-height: 6rem;
  display: block;
    transition: all 0.5s ease-in-out;
  transition: all 0.5s;    font-weight: bold;
}
.header.hover .navTop span a {
  line-height: 8rem;
}
.header .navTop .sub {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12rem;
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -10px, 0);
  -webkit-transform: translate3d(-50%, -10px, 0);
  -moz-transform: translate3d(-50%, -10px, 0);
  -o-transform: translate3d(-50%, -10px, 0);
  -ms-transform: translate3d(-50%, -10px, 0);
  backface-visibility: hidden;
  transition: opacity 0.1s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
}
.header .navTop .sub>div{/* position: relative; */}
.header .navTop .sub>div{/* position: relative; */}
.header .navTop .sub>div .subb{
  position: absolute;
  left: 100%;
  top: 1px;
  width: 20rem;
  text-align: left;
  backface-visibility: hidden;
  transition: opacity 0.1s ease-in-out, transform 0.5s ease-in-out;
  opacity: 0;
  background: #f9f9f9;
  height:calc(100% - 3px);
}
.header .navTop .sub>div .subb a{padding:1.95rem 2.5rem; margin: 0; background: #f9f9f9;}
.header .navTop .sub>div .subb a+a{border-top: 1px solid #eaeaea;}

.header .navTop .sub>div:hover .subb{display: block!important;opacity: 1;}
.header .navTop .sub a {
  display: block;
  padding:2rem 0;
  color: #666666;
}
.header .navTop .sub a:hover{
  color: #ff8039;
}
.header .navTop .hover .sub {
  opacity: 1;
  transform: translate3d(-50%, 0px, 0);
  -webkit-transform: translate3d(-50%, 0px, 0);
  -moz-transform: translate3d(-50%, 0px, 0);
  -o-transform: translate3d(-50%, 0px, 0);
  -ms-transform: translate3d(-50%, 0px, 0);
  backface-visibility: hidden;
  pointer-events: auto;
}
.header.headerHbox {
  background-color: transparent;
}
.header.headerHbox .lang span {
  color: #fff;
}
.header.headerHbox .lang span::after {
  border-color: #fff;
}
.header.headerHbox .navTop span a {
  color: #fff;
}
.header.headerHbox .logo img,
.header.headerHbox .open_search {
  filter: brightness(0) invert(1);
}
@media (max-width: 1200px) {
  .header .search {
    margin: 0 5%;
  }
}
@media (max-width: 1024px) {
  .header .w1400 {
    justify-content: center;
    position: relative;
  }
  .header .logo {
    padding: 2rem 0;
  }
    .header .logo img{
      height: calc(40 / 16 * 1em);
    }
  .header .menuIcon,
  .header .lang {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .header .lang {
    left: 0;
  }
  .header .menuIcon {
    display: inline-block;
    right: 0;
    z-index: 11;
  }
  .header #open_menu {
    z-index: 100;
    width: 25px;
    height: 25px;
    cursor: pointer;
    display: block;
    position: relative;
  }
  .header #open_menu i {
    display: inline-block;
    width: 90%;
    height: 2px;
    border-radius: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #333;
    position: absolute;
    left: 0;
    top: 50%;
  }
  .header #open_menu::before,
  .header #open_menu::after {
    display: block;
    content: '';
    width: 90%;
    height: 2px;
    background-color: #333;
    border-radius: 4px;
    position: absolute;
    left: 0;
  }
  .header #open_menu::before {
    top: 5px;
  }
  .header #open_menu::after {
    bottom: 5px;
    top: auto;
  }
  .header #open_menu.open_menu_on i {
    opacity: 0;
  }
  .header #open_menu.open_menu_on::before,
  .header #open_menu.open_menu_on::after {
    background-color: #000;
  }
  .header #open_menu.open_menu_on:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 15px;
  }
  .header #open_menu.open_menu_on:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: auto;
    top: 15px;
  }
  .header .search {
    display: none;
  }
  .header .navTop {
    display: none;
    -webkit-overflow-scrolling: touch;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-y: auto;
    visibility: hidden;
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.8);
    line-height: 40px;
    margin-left: 0;
    display: block;
    padding: 0;
    transition: all 0.5s;
    opacity: 0;
    background-image: none;
    margin-right: 0;
  }
  .header .navTop.show {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  .header .navTop .ul {
    display: block;
    padding-top: 70px;
    position: relative;
    height: 100%;
    width: 250px;
    float: right;
    background-color: #fff;
  }
  .header .navTop li {
    display: block;
    float: none;
    margin: 10px 0!important;
    padding: 0 10%;
    font-size: 16px;
  }
  .header .navTop li span {
    display: block;
  }
  .header .navTop li span > a {
    font-weight: normal;
    text-align: left;
    line-height: 40px;
  }
  .header .navTop .sub {
    display: none!important;
  }
  .header.headerHbox #open_menu i,
  .header.headerHbox #open_menu::before,
  .header.headerHbox #open_menu::after {
    background-color: #fff;
  }
}
.Hbanner {
  position: relative;
}
.Hbanner figure img {
  width: 100%;
  transition: all 1.5s ease-in-out;
  height: 100vh;
  object-fit: cover;
}
.Hbanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.Hbanner .textwarp .w1400 {
  display: flex;
  height: 100%;
  align-items: center;
}
.Hbanner .textwarp .title,
.Hbanner .textwarp .des {
  margin: 2rem 0;
}
.Hbanner .textwarp .ani {
  opacity: 0;
  transition-duration: 0.7s;
  transform: translateY(10px);
}
.Hbanner .textwarp .ani:nth-child(2) {
  transition-delay: 0.3s;
}
.Hbanner .textwarp .ani:nth-child(3) {
  transition-delay: 0.6s;
}
.Hbanner .ani_show .textwarp .ani {
  opacity: 1;
  transform: translateY(0);
}
.Hbanner .ani_show figure img {
  animation: picImg 10s linear infinite alternate;
}
@media (max-width: 640px) {
  .Hbanner .f72 {
    font-size: 5rem;
  }
}
@-webkit-keyframes picImg {
  0% {
    -webkit-transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes picImg {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.Htitle {
  color: #000;
  margin-bottom: 6.5rem;
}
.Htitle .des {
  margin-top: 3.2rem;
}
.Hbox {
  padding-top: 15rem;
}
@media (max-width: 640px) {
  .Hbox {
    padding-top: 8rem;
  }
}
.Habout .about_con {
  position: relative;
}
.Habout .about_con .pic {
  width: 120%;
  margin-left: auto;
  padding-top: 63rem;
  position: relative;
}
.Habout .about_con .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Habout .about_con .pic::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 30%;
  background-image: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 2;
  width: 100%;
}
.Habout .about_con .textwarp {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  width: 100%;
  z-index: 3;
}
.Habout .about_con .textwarp ul {
  display: flex;
  padding: 6rem;
  align-items: flex-start;
  flex-flow: row wrap;
  gap: 1rem 6rem;
}
.Habout .about_con .textwarp .num {
  font-weight: bold;
  line-height: 4.6rem;
}
@media (max-width: 1400px) {
  .Habout .about_con {
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .Habout .about_con .textwarp .ul {
    padding: 3rem;
  }
}
.Hpro .switch_content {
  position: relative;
}
.Hpro .switch_content .w1400 {
  position: relative;
  z-index: 2;
}
.Hpro .switch_content .content {
  padding: 12rem 0 10rem;
}
.Hpro .switch_content .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 69%;
  background: url(../images/Hpro_bg.jpg) no-repeat center top;
  background-size: cover;
}
.Hpro .switch_content .flex {
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.Hpro .switch_content .pic {
  width: 62%;
}
.Hpro .switch_content .pic figure {
  display: flex;
  height: 50.7rem;
  align-items: center;
}
.Hpro .switch_content .pic img {
  transition: all 0.7s ease-in-out;
  transform: scale(0);
  opacity: 0;
  max-height: 100%;
}
.Hpro .switch_content .textwarp {
  width: 35%;
  color: #fff;
}
.Hpro .switch_content .stit {
  margin-top: 2rem;
}
.Hpro .switch_content .des {
  margin-top: 4rem;
}
.Hpro .switch_content .ani_txt {
  transition-delay: 0.2s;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(20px);
}
.Hpro .switch_content .ani_txt:nth-child(2) {
  transition-delay: 0.4s;
}
.Hpro .switch_content .ani_txt:nth-child(3) {
  transition-delay: 0.6s;
}
.Hpro .switch_content .slick-current .pic img {
  opacity: 1;
  transform: scale(1);
}
.Hpro .switch_content .slick-current .ani_txt {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  .Hpro .switch_content .flex {
    flex-flow: row wrap;
  }
  .Hpro .switch_content .textwarp {
    width: 100%;
    margin-bottom: 6rem;
  }
  .Hpro .switch_content .pic {
    width: 100%;
    text-align: center;
  }
  .Hpro .switch_content .pic figure {
    height: 35rem;
    width: 100%;
    justify-content: center;
  }
}
.Hpro .switch_label {
  padding-bottom: 5rem;
}
.Hpro .switch_label .ul {
  margin: 0 auto;
    text-align: center;
}
.Hpro .switch_label .items {
  width: 30%!important;
  max-width: 20rem;
  padding-top: 3rem;
  position: relative;
  border-top: 0.3rem solid #f4f5f9;
  cursor: pointer;
  margin: 0 4.5rem;
  float: none;
  display: inline-block;
  text-align: center
}
.Hpro .switch_label .items::before {
  content: '';
  position: absolute;
  left: 0;
  top: -0.3rem;
  width: 0;
  height: 0.3rem;
  background-color: #ff8039;
  transition: all 3s;
}
.Hpro .switch_label .items.slick-current {
  color: #ff8039;
}
.Hpro .switch_label .items.slick-current::before {
  width: 100%;
}
.newsList .item {
  padding: 6rem 0;
  border-bottom: 1px solid #d7d7d7;
}
.newsList .item:first-child {
  padding-top: 0;
}
.newsList .pic {
  width: 24rem;
  flex: 0 0 auto;
  margin: 0 6rem;
}
.newsList .pic figure {
  position: relative;
  width: 100%;
  padding-top: 14rem;
}
.newsList .pic figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.newsList .des {
  color: #666666;
  line-height: calc(28 / 16);
  margin-top: 2.3rem;
}
.newsList .time {
  flex: 0 0 auto;
}
.newsList .textwarp {
  width: 100%;
}
.newsList .box {
  color: #000000;
}
.newsList .box:hover .title {
  color: #ff8039;
}
@media (max-width: 768px) {
  .newsList .pic {
    margin: 0 3rem;
  }
  .newsList .textwarp {
    width: 60%;
  }
}
@media (max-width: 640px) {
  .newsList .box {
    flex-flow: row wrap;
  }
  .newsList .pic {
    width: 100%;
    margin: 1rem 0 4rem;
  }
  .newsList .pic figure {
    padding-top: 50%;
  }
  .newsList .textwarp {
    width: 100%;
  }
  .newsList .f24 {
    font-size: 3rem;
  }
}
.Hnews .more {
  text-align: center;
  padding: 6rem 0 15rem;
}
.Hnews .more a {
  color: #666666;
}
.Hnews .more a:hover {
  color: #ff8039;
}
.footer {
  background-color: #f4f5f9;
  padding-top: 11rem;
}
.footer nav {
  gap: 9.5rem;
}
.footer nav dl {
  padding-top: 1.5rem;
}

.footer nav dl:nth-child(4) dd {
  display: none;
}
.footer nav dl:nth-child(2) dd{
  display: block;
}
.footer nav dt {
  font-weight: bold;
  margin-bottom: 5rem;
}
.footer nav dd {
  line-height: calc(41 / 16);
}
.footer nav dd a {
  display: block;
}
.footer .copyright {
  margin-top: calc(240 / 1400 * 100%);
  border-top: 1px solid rgba(63, 72, 91, 0.2);
  padding-top: 3rem;
  padding-bottom: 10rem;
  justify-content: space-between;
  flex-flow: row-reverse wrap;
}
.footer .share {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}
.footer .share a {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: url(../images/weixin.svg) no-repeat center;
  background-size: contain;
  position: relative;
}
.footer .share a:hover figure {
  display: block;
}
.footer .share .linkedin {
  background-image: url(../images/in.svg);
}
.footer .share figure {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #efefef;
  padding: 0.3rem;
  width: 11rem;
  background-color: #fff;
  bottom: 130%;
  display: none;
}
.footer .share figure img {
  width: 100%;
}
.footer .share figure::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  border: 0.6rem solid transparent;
  border-top-color: #fff;
}
@media (max-width: 1024px) {
  .footer {
    padding-top: 3rem;
  }
  .footer .bottom {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }
  .footer nav {
    order: 2;
    margin-top: 1rem;
  }
  .footer nav dl:not(.fcontact) {
    display: none;
  }
  .footer nav dt {
    margin-bottom: 1rem;
  }
  .footer .copyright {
    margin-top: 1.5rem;
    padding: 2rem 0;
  }
}
@media (max-width: 640px) {
  .footer .copyright {
    justify-content: center;
    flex-flow: row wrap;
    text-align: center;
      display: block
  }
  .footer .copyright a {
    display: inline-block;
  }
  .footer .share a {
    width: 22px;
    height: 22px;
    margin: 10px;
  }
}
.nyBanner {
  position: relative;
}
.nyBanner figure img {
  width: 100%;
}
.nyBanner .textwarp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
}
.nyBanner .textwarp .w1400 {
  display: flex;
  height: 100%;
  align-items: center;
}
.nyBanner .textwarp .cn,
.nyBanner .textwarp .en {
  margin: 2rem 0;
}
.ContactBox .w1400 {
  max-width: 144rem;
}
.ContactBox .form {
  width: 48.8%;
}
.ContactBox .form .ul {
  flex-flow: row wrap;
}
.ContactBox .form li {
  width: 100%;
  margin-bottom: 5rem;
}
.ContactBox .form .row2 {
  width: 48%;
}
.ContactBox .form .name {
  display: flex;
  color: #666666;
}
.ContactBox .form .name i {
  color: #ff8039;
  font-style: normal;
}
.ContactBox .form select,
.ContactBox .form .text {
  width: 100%;
  height: 5.6rem;
  line-height: 5.6rem;
  border: none;
  border-bottom: 1px solid #cacaca;
}
.ContactBox .form select {
  background: url(../images/select.svg) no-repeat right center;
  background-size: 1.5rem;
  border-radius: 0;
  font-size: calc(20 / 10 * 1rem);
}
.ContactBox .form textarea.text {
  border: 1px solid #cacaca;
  height: 14rem;
  padding: 2rem;
  line-height: 1.6;
}
.ContactBox .form textarea.text::placeholder {
  color: #cccccc;
}
.ContactBox .form .textarea {
  margin-bottom: 2.5rem;
}
.ContactBox .form .textwarp a {
  display: inline-block;
  color: #999999;
}
.ContactBox .form .btn {
  width: 12.6rem;
  height: 4.6rem;
  line-height: 4.6rem;
  text-align: center;
  border: none;
  color: #fff;
  background-color: #ff8039;
  cursor: pointer;
}
.ContactBox .content {
  width: 45%;
}
.ContactBox .content .title {
  color: #000;
  margin-bottom: 4rem;
}
.ContactBox .content .box p {
  margin-bottom: 2.5rem;
}
@media (max-width: 640px) {
  .ContactBox .flex_js {
    flex-flow: row wrap;
  }
  .ContactBox .form,
  .ContactBox .content {
    width: 100%;
  }
  .ContactBox .form {
    order: 2;
    margin-top: 2rem;
  }
}
.Columnname {
  color: #000;
  margin-bottom: 6rem;
}
.Columnname a {
  color: #666666;
  position: relative;
}
.Columnname a::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border: solid #666;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: 5px;
}
.Columnname a:hover {
  color: #ff8039;
}
.Columnname a:hover::after {
  border-color: #ff8039;
}
.newsTop {
  padding-bottom: 20rem;
}
.newsTop .slider {
  padding: 0 5rem;
}
.newsTop .box {
  display: block;
  margin: 0 5rem;
}
.newsTop figure {
  position: relative;
  padding-top: calc(304 / 540 * 100%);
  margin-bottom: 5rem;
}
.newsTop figure img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.newsTop .title {
  line-height: calc(36 / 24);
  margin-bottom: 3rem;
}
.newsTop .des {
  color: #666666;
  line-height: calc(28 / 16);
}
@media (max-width: 640px) {
  .newsTop .slider {
    padding: 0 2rem;
  }
  .newsTop .box {
    margin: 0 2rem;
  }
}
.activityList .time {
  padding-top: 1rem;
  margin-right: 12.8rem;
}
.activityList .time p {
  text-align: right;
  color: #999999;
  margin-top: 2.3rem;
}
@media (max-width: 640px) {
  .activityList .time {
    flex-flow: row wrap;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
  }
  .activityList .time p {
    margin-top: 0;
  }
}
.Ispic {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.Newsteilpic {
  position: relative;
  z-index: 1;
}
.Newsteilpic .Ispic {
  height: 45rem;
}
.Newsteilpic .txt {
  position: absolute;
  left: 10%;
  bottom: -4vw;
  width: 80%;
  z-index: 10;
  color: #333;
  height: 20rem;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.8);
  /* border: 3px solid #ff8039; */
  display: flex;
  box-shadow: 8px 8px 0px 0px rgba(255, 128, 57, 0.52);
  -webkit-box-orient: vertical;
  /* -webkit-box-direction: normal; */
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.Newsteilpic .txt .cn {
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.Newsteilpic .txt time {
  font-family: Arial;
  color: #fff;
  padding-left: 2.8rem;
  background: url(../images/time3.svg) no-repeat center left;
  background-size: 1.8rem auto;
  line-height: 2.8rem;
}
@media (max-width: 640px) {
  .Newsteilpic .txt {
    width: 90%;
    left: 5%;
    height: auto;
    padding: 2%;
  }
  .Newsteilpic .txt .f26 {
    font-size: 3.6rem;
  }
}
.RighInfo002973 {
  max-width: 100rem;
  margin: 0 auto;
  padding: 5% 0;
}
.RighInfo002973 .newsTitle {
  text-align: center;
  color: #000;
}
.RighInfo002973 .newsTitle .cn {
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.RighInfo002973 .newsTitle time {
  font-family: Arial;
  padding-left: 2.8rem;
  background: url(../images/time2.svg) no-repeat center left;
  background-size: 1.8rem auto;
  line-height: 2.8rem;
}
.RighInfo002973 .edit-info {
  line-height: 32px;
  color: #666;
  padding: 5% 0;
}
.RighInfo002973 .edit-info p {
  margin: 2em 0;
}
.RighInfo002973 .edit-info .img {
  margin: 2.5rem 0;
  text-align: center;
}
@media (max-width: 640px) {
  .RighInfo002973 .newsTitle .cn {
    font-size: 4rem;
  }
}
.Floor002460 .con {
  text-align: center;
  margin: 4vw auto;
  width: 70%;
  max-width: 900px;
  line-height: 2;
}
.Floor002460 .con .t-1 {
  display: inline-block;
  color: #333;
  font-weight: bold;
}
.Floor002460 .videobox {
  position: relative;
  height: 20rem;
}
.Floor002460 .videobg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 20rem;
}
.Floor002460 .videobg .play {
  display: block;
  background: url(../images/Floor002460-play.png) no-repeat center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: 30px 30px;
  cursor: pointer;
}
.Floor002460 .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  display: none;
}
.Floor002460 .video video {
  width: 100%;
  height: 100%;
  background: #000;
}
@media only screen and (min-width: 768px) {
  .Floor002460 .videobg,
  .Floor002460 .videobox {
    height: 32rem;
  }
  .Floor002460 .videobg .play {
    background-size: 4rem;
  }
}
@media only screen and (min-width: 1200px) {
  .Floor002460 .videobg,
  .Floor002460 .videobox {
    height: 60rem;
  }
  .Floor002460 .videobg .play {
    background-size: 5rem;
  }
}
.Menu0031356 {
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
}
.Menu0031356 .ul {
  display: flex;
  justify-content: center;
  gap: 5.222em;
  flex-flow: row wrap;
}
.Menu0031356 .ul li {
  line-height: 4.44444;
}
.Menu0031356 .ul li a {
  display: block;
  position: relative;
}
.Menu0031356 .ul li a::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ff8039;
  transition: all 0.5s ease-in-out;
  transition: all 0.5s;
}
.Menu0031356 .ul li a:hover {
  color: #ff8039;
}
.Menu0031356 .ul li a:hover::before {
  width: 100%;
}
.Menu0031356 .ul li.aon a {
  color: #ff8039;
}
.Menu0031356 .ul li.aon a::before {
  width: 100%;
}
.Menu0031356 .menu_pro .ul {
  justify-content: flex-start;
}
.Menu002252 {
  padding: 10px 0;
  overflow: hidden;
  background: #f4f5f9;
}
.Menu002252 li {
  display: block;
  background: #fff;
  padding: 10px;
  margin-bottom: 1px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}
.Menu002252 li.aon,
.Menu002252 li:hover {
  background-color: #ff8039;
}
.Menu002252 li.aon a,
.Menu002252 li:hover a {
  color: #fff;
}
.Menu002252 a {
  display: block;
}

.Menu002252 .site{
  display: none
}

@media (min-width: 768px) {
  .Menu002252 {
    padding: 25px 0;
  }
  .Menu002252 li {
    display: inline-block;
    line-height: 30px;
    padding: 0 15px;
    min-width: 115px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 1.2vw 1px 0;
  }
}
@media (min-width: 1024px) {
  .Menu002252 {
    padding: 50px 0;
  }
  .Menu002252 li {
    display: inline-block;
    line-height: 40px;
    padding: 0 20px;
    background: #fff;
    min-width: 100px;
    border-radius: 5px;
  } 
}

@media(max-width:1024px){
    .Menu002252 .w1400{
        padding-right: 40%
    }
    .Menu002252 .ul{
        display: none
    }
    .Menu002252 .site{
        display: block;
        padding: 10px;
        position: relative;     
    }
    .Menu002252 .site span{
        position: relative;
        display: inline-block;
        padding-right: 20px;
        font-weight: bold;
        color: #333;
        font-size: calc(30 / 10 * 1rem);
    }
    .Menu002252 .site span::after {
        position: absolute;
        content: '';
        border: 6px solid transparent;
        border-top-color: #ff8039;
        right: 0px;
        top: 50%;
        margin-top: -3px;
        transition: .5s all;
    }
    .Menu002252 .site.on span::after {
        transform: rotate(-180deg);
        margin-top: -8px;
    }
    
    
}

.searchwrap {
  padding: 10rem 0;
}
.searchwrap .search_box1 {
  width: 100%;
  max-width: 100rem;
  height: 10rem;
  margin: 1.5rem auto 1rem;
  box-shadow: 0 0 1.4rem rgba(200, 200, 200, 0.5);
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.searchwrap .search_box1 .input1 {
  width: 100%;
  height: 100%;
  border: none;
  line-height: 100%;
  color: #23262b;
  font-size: calc(20 / 10 * 1rem);
}
.searchwrap .search_box1 .btn {
  width: 12rem;
  border: none;
  border-left: solid #ebebeb 1px;
  height: 100%;
  background: none;
  padding-left: 0.2rem;
  background: url(../images/sousuo.png) no-repeat center;
  background-size: 2rem;
  display: inline-block;
  cursor: pointer;
}
.searchwrap .search_box1 .btn:hover{
  background-image: url(../images/sousuo2.png);
}
.popUp-box {
  position: fixed;
  left: -100%;
  width: 100%;
  top: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
  z-index: 200;
}
.popUp-box.show {
  left: 0;
}
.popUp-box .ytable {
  height: 100%;
}
.popUp-box .main {
  position: relative;
  max-width: 970px;
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
}
.popUp-box .main .colse {
  position: absolute;
  width: 1.5625em;
  height: 1.5625em;
  right: 2em;
  top: 2.3em;
  background: url(../images/Floor003147-close.svg) no-repeat;
  background-size: contain;
  z-index: 10;
  cursor: pointer;
}
.popUp-box .main > div {
  width: 100%;
  margin: 0 auto;
}
.popUp-box .name {
  color: #fff;
  padding: 15px 0 15px 2.5em;
  text-align: left;
  font-weight: bold;
  background: #333;
  border-top: 5px solid #ff8039;
  font-size: calc(30 / 10 * 1rem);
}
.load-info .type {
  background-color: #f0f0f0;
  padding: 0.625em 0 0.625em 5em;
}
.load-info .intro-tit,
.load-info .edit-info {
  margin: 0 auto;
  width: 84%;
}
.load-info .intro-tit {
  line-height: 2;
  margin: 1.5em auto 1em;
  color: #222;
  font-weight: bold;
  font-size: calc(22 / 10 * 1rem);
}
.load-info .edit-info {
  line-height: calc(35 / 16);
  color: #888;
}
.load-info .text2 {
  margin: 0 auto;
  width: 95%;
  padding: 2em 0 2.5em 2.5em;
  color: #333;
  font-size: calc(22 / 10 * 1rem);
}
.load-info .text2 span {
  color: #ff8039;
  font-weight: bold;
}
@media (min-width: 1025px) {
  .load-info .type dd {
    float: none;
    display: inline-block;
    padding-right: 6.8rem;
    line-height: 2.5;
  }
}
@media (max-width: 1024px) {
  .load-info .type {
    padding: 1em;
  }
}
.TextList003149 .j_item {
  display: flex;
  width: 100%;
  margin-top: 4rem;
}
.TextList003149 .j_item span:first-child {
  padding-right: 6rem;
  border-right: solid #ebebeb 1px;
}
.TextList003149 .j_item span {
  color: rgba(35, 38, 43, 0.5);
  display: block;
  font-size: calc(20 / 10 * 1rem);
}
.TextList003149 .j_item b {
  color: #23262b;
  display: block;
  font-size: calc(26 / 10 * 1rem);
  line-height: 1.5;
  font-weight: normal;
}
.TextList003149 .j_item span:last-child {
  padding-left: 6rem;
}
.TextList003149 .list li {
  background: #fff;
  transition: 0.3s;
  cursor: pointer;
  box-shadow: 0 0 1.4rem rgba(200, 200, 200, 0.5);
}
.TextList003149 .list li:hover {
  border-color: #ff8039;
  box-shadow: 0px 0.625em 4.375em rgba(0, 0, 0, 0.08);
}
.TextList003149 .list li .inner {
  padding: 4em;
}
.TextList003149 .list .name {
  color: #000;
  font-weight: bold;
  font-size: calc(32 / 10 * 1rem);
}
.TextList003149 .list .intro {
  color: #666;
  line-height: 1.7857;
  margin-bottom: 1.5em;
  min-height: 3.5714em;
}
.TextList003149 .list .view {
  width: 12.6rem;
  height: 4.6rem;
  display: block;
  border: solid #333 2px;
  line-height: 4rem;
  text-align: center;
  color: #333;
  margin-top: 5rem;
  transition: all 0.3s linear;
  font-size: calc(18 / 10 * 1rem);
}
.TextList003149 .list .view:hover {
  border-color: #ff8039;
  color: #fff;
  background: #ff8039;
}
@media (min-width: 1025px) {
  .TextList003149 .list {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
  }
  .TextList003149 .list li {
    width: 48%;
    margin-bottom: 3.5%;
  }
}
@media (max-width: 1024px) {
  .TextList003149 .list li {
    margin-bottom: 2em;
  }
  .TextList003149 .list li .inner {
    padding: 1em;
  }
}
@media (max-width: 640px) {
  .TextList003149 .list li .inner {
    padding: 5rem;
  }
}
.Floor002564 {
  padding: 7% 0%;
}
.Floor002564 .title {
  padding-top: 8px;
  padding-bottom: 1%;
  color: #000;
  font-weight: bold;
  font-size: calc(40 / 10 * 1rem);
}
.Floor002564 p {
  color: #000000;
  line-height: calc(34 / 20);
  margin: 2.5% 0;
  font-size: calc(20 / 10 * 1rem);
}
@media (min-width: 1025px) {
  .Floor002564 .txt {
    padding-left: 3vw;
    width: 54%;
    vertical-align: bottom;
  }
  .Floor002564 .txt p {
    margin: 0;
  }
  .Floor002564 .txt p + p {
    margin-top: 20px;
  }
}
@media (max-width: 1024px) {
  .Floor002564 .txt {
    padding-left: 2vw;
  }
}
@media (max-width: 640px) {
  .Floor002564 .ytable {
    display: flex;
    flex-flow: column wrap;
  }
  .Floor002564 .txt,
  .Floor002564 .pic {
    width: 100%;
  }
}
.history .list {
  position: relative;
  color: #333333;
  line-height: calc(30 / 16);
}
.history .list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.history .ul {
  overflow: hidden;
  padding-right: calc(100% / 4);
    position: relative
}
.history .ul::before{
  content: '';
    position: absolute;
    width: 10rem;
    height: 23rem;
    top: 0;
    right: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%,rgba(255,255,255,1) 100%);
    z-index: 10
}
.history .slick-list {
  padding: 0 1rem;
  overflow: initial;
}
.history .box {
  height: 23rem;
  margin-top: 27.5rem;
  width: 190%;
  padding-left: 2.5rem;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.history li {
  position: relative;
}
.history li:nth-child(2n) .box {
  margin-top: 0;
  margin-bottom: 2.5rem;
}
.history li:nth-child(2n) .icon {
  top: auto;
  bottom: -0.75rem;
  transform: translateY(0);
}
.history li:not(:nth-child(2n)) .box {
  flex-flow: column-reverse wrap;
  padding-top: 2.5rem;
}
.history .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  left: -1rem;
  background-color: #fff;
}
.history .icon::before {
  content: '';
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #000;
  border-radius: 100%;
}
.history .time {
  font-size: calc(80 / 10 * 1rem);
  color: #2b3748;
  opacity: 0.15;
  line-height: 1;
}
/* .history .slick-current .icon {
  border-color: #ff8039;
}
.history .slick-current .icon::before {
  background-color: #ff8039;
}
.history .slick-current .time {
  color: #ff8039;
  opacity: 1;
} */
.history li:hover .icon {
  border-color: #ff8039;
}
.history li:hover .icon::before {
  background-color: #ff8039;
}
.history li:hover .time {
  color: #ff8039;
  opacity: 1;
}
.h
.history .con {
  height: 9rem;
  overflow: auto;
}
.VisionBox {
  position: relative;
  color: #fff;
}
.VisionBox .content .w1400{
  position: relative;
}
.VisionBox .pic {
  position: absolute;
  left: 0;
  height: 100%;
  width: 120%;
}
.VisionBox .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-object-fit: cover;
}
.VisionBox .textwarp {
  position: relative;
  z-index: 2;
  height: 50rem;
}
.VisionBox .textwarp .txt {
  padding-top: 10rem;
  padding-left: 6rem;
}
@media (min-width: 1025px) and (max-width: 1279px) {
  .history .box {height: 26rem;}
  .history li:not(:nth-child(2n)) .box{
    padding-top:0;
  }
  .history li:nth-child(2n) .icon {
    bottom:.25rem;
  }
}
@media (max-width: 1400px) {
  .VisionBox .pic {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .VisionBox .textwarp .txt {
    padding-left: 3rem;
  }
    .history .con {
      height: 12rem;
    }
}
.honor .flex {
  flex-flow: row wrap;
  gap: 3.2rem;
}
.honor li {
  width: calc((100% - 3.2rem * 3) / 4);
  text-align: center;
  margin-bottom: 7rem;
}
.honor .pic {
  width: 100%;
  padding-top: calc(438 / 326 * 100%);
  position: relative;
  margin-bottom: 4.5rem;
}
.honor .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-object-fit: contain;
}
@media (max-width: 640px) {
  .honor .flex {
    gap: 0;
    justify-content: space-between;
  }
  .honor li {
    width: 48%;
  }
}
.proIndex {
  padding: 5% 0;
}
.proIndex .left_menu {
  width: 14%;
}
.proIndex .left_menu .site{
        display: none
    }
.proIndex .rightBox {
  width: 83%;
}
@media (max-width: 768px) {
  .proIndex {
    display: block;
      position: relative
    }
  .proIndex .left_menu {
        position: absolute;
        width: 40%;
      right: 0;
      top: -42px;
  }
    .proIndex .left_menu ul{
        display: none;
        background: #fff;
    }
    .proIndex .left_menu .site{
        display: block;
        line-height: 6rem;
        padding:0 2rem;
        color: #fff;
        background:url(../images/ico_filter.svg)no-repeat center right 5px #333; 
    }
  .proIndex .rightBox {
    width: 100%;
  }
}

.Menu003 li {
  padding-left: 2rem;
  line-height: 6rem;
  font-weight: normal;
  border-bottom: 1px solid #eee;
}
.Menu003 a {
  display: block;
}
.Menu003 .on {
  background-color: #333;
  border-right: 5px solid #ff8039;
}
.Menu003 .on a {
  color: #fff;
}
@media (max-width: 640px) {
  .Menu003 li {
    line-height: 8rem;
      border-bottom: 1px solid #ddd
  }
}
.PicList003133 {
  display: flex;
  justify-content: space-between;
}
.PicList003133 .img {
  width: 54%;
  background: #f7f9fc;
  background: -webkit-gradient(linear, 30% 61%, 28% bottom, from(#ddd), to(#949494));
  background: linear-gradient(-30deg, #cecccd 3%, #e7e7e7, #fafafa);
  padding: 6% 2%;
  text-align: center;
}
.PicList003133 .img img {
  max-height: 20.6875em;
}
.PicList003133 .txt {
  width: 45%;
}
.PicList003133 .inner {
  padding-left: 13%;
}
.PicList003133 .tit {
  color: #333333;
  margin-bottom: 0.8em;
  font-weight: bold;
}
.PicList003133 .table_1 {
  margin-bottom: 22%;
}
.PicList003133 .table_1 table {
  width: 100%;
}
.PicList003133 .table_1 th,
.PicList003133 .table_1 td {
  text-align: center;
  border: 1px solid #eee;
  border-collapse: collapse;
  padding: 15px;
  line-height: calc(24 / 16);
}
.PicList003133 .table_1 th {
  font-weight: normal;
  color: #fff;
  background: #333;
  font-size: calc(18 / 10 * 1rem);
}
.PicList003133 p {
  min-height: 6rem;
}
.PicList003133 .more {
  min-width: 13rem;
  height: 5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid #333 2px;
  margin-top: 2rem;
  transition: all 0.3s linear;
  color: #333;
}
.PicList003133 .more:hover{
  color: #fff;
  background-color: #ff8039;
  border: solid #ff8039 2px;
  transition-duration:.3s !important
}
@media (max-width: 768px) {
  .PicList003133 {
    flex-flow: row wrap;
  }
  .PicList003133 .img {
    width: 100%;
  }
  .PicList003133 .txt {
    width: 100%;
    margin-top: 5rem;
  }
  .PicList003133 .inner {
    padding-left: 0;
  }
  .PicList003133 .table_1 {
    margin-bottom: 3rem;
  }
}
@media (max-width: 640px) {
  .PicList003133 .table_1 th,
  .PicList003133 .table_1 td {
    padding: 1rem;
  }
  .PicList003133 .more {
    padding: 2rem;
    height: auto;
  }
}
.proDetails .section {
  padding: 6vw 0 0;
}
.proDetails .proItem1 .pic {
  background: #f8f8f8;
  padding: 6vw 2vw;
  width: 52%;
  background: -webkit-gradient(linear, 30% 61%, 28% bottom, from(#ddd), to(#949494));
  background: linear-gradient(-30deg, #cecccd 3%, #e7e7e7, #fafafa);
  text-align: center;
}
.proDetails .proItem1 .pic img {
  width: 80%;
}
.proDetails .proItem1 .con {
  padding: 0.5vw 0;
  padding-left: 7vw;
  line-height: 1.75;
}
.proDetails .proItem1 .con li {
  padding: 1.5vw 2vw;
}
.proDetails .proItem1 .con h3 {
  font-size: calc(30 / 10 * 1rem);
  color: #222;
}
.proDetails .proItem1 .con p {
  font-size: calc(20 / 10 * 1rem);
  color: #999;
}
.proDetails .proItem2 .con {
  padding: 0.5vw 0;
  padding-right: 7vw;
  line-height: calc(34 / 16);
  color: #333;
  font-size: calc(18 / 10 * 1rem);
}
.proDetails .proItem2 .con .tit {
  font-size: calc(26 / 10 * 1rem);
  color: #ff8039;
  margin-bottom: calc(38 / 28 * 1em);
  font-weight: bold;
}
.proDetails .proItem2 .pic {
  background: #f8f8f8;
  padding: 6vw 2vw;
  width: 52%;
  background: -webkit-gradient(linear, 30% 61%, 28% bottom, from(#ddd), to(#949494));
  background: linear-gradient(-30deg, #cecccd 3%, #e7e7e7, #fafafa);
  text-align: center;
}
.proDetails .proItem2 .pic img {
  width: 80%;
}
.proDetails .proItem3 table th,
.proDetails .proItem3 table td {
  padding: 15px;
  text-align: center;
}
.proDetails .proItem3 table th {
  background: #333;
  font-size: calc(20 / 10 * 1rem);
  color: #fff;
}
.proDetails .proItem3 table th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.proDetails .proItem3 table td {
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  font-size: calc(17 / 10 * 1rem);
}
.proDetails .proItem3 table td:first-child {
  border-left: 1px solid #eaeaea;
}
.proDetails .proItem3 table tr:nth-child(2n+1) {
  background: #f9f9f9;
}
.proDetails .proItem4 {
  padding-bottom: 10rem;
}
.proDetails .proItem4 .box {
  display: block;
  margin: 4% 4% 0;
  padding-bottom: 1px;
}
.proDetails .proItem4 .pic {
  position: relative;
  background: -webkit-gradient(linear, 30% 61%, 28% bottom, from(#ddd), to(#949494));
  background: linear-gradient(-30deg, #cecccd 3%, #e7e7e7, #fafafa);
  padding: 15% 5%;
    transition: 0.5s all
}
.proDetails .proItem4 .box:hover .pic {
  box-shadow: 0 0px 12px rgba(0,0,0,.35)
}
.proDetails .proItem4 .pic::before {
  position: absolute;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #ff8039;
  top: 0;
  transition: width 0.3s;
  width: 0;
}
.proDetails .proItem4 .pic figure {
  max-width: 75.447%;
  margin: 0 auto;
  padding-bottom: 58.852%;
}
.proDetails .proItem4 .title {
  padding: 0px 2.1875em;
  color: #000;
  font-size: calc(18 / 10 * 1rem);
  text-align: center;
  font-weight: bold;
  line-height: 4.625em;
}
.proDetails .proItem4 .btn {
  display: inline-flex;
  gap: 1.5rem;
}
.proDetails .proItem4 .slick-arrow {
  position: static;
  width: 4.6rem;
  height: 4.6rem;
  background-color: #f6f6f7;
  border: none;
  transform: translateY(0);
}
.proDetails .proItem4 .slick-arrow.slick-next {
  transform: rotate(180deg);
}
.proDetails .proItem4 .slick-arrow:hover {
  background-color: #ff8039;
}
@media (max-width: 640px) {
  .proDetails .section {
    padding-top: 8rem;
  }
  .proDetails .proItem1 .ytable,
  .proDetails .proItem2 .ytable {
    display: flex;
    flex-flow: row wrap;
  }
  .proDetails .proItem1 .ytable_cell,
  .proDetails .proItem2 .ytable_cell {
    width: 100%;
  }
  .proDetails .proItem1 .con {
    padding-left: 0;
  }
    .proDetails .proItem1 .con li {
  float: left;
        width: 49%
}
    .proDetails .proItem1 .con li:nth-child(2n){
  float: right;
}
  .proDetails .proItem3 .con {
    overflow: auto;
  }
  .proDetails .proItem3 .con table {
    width: 640px;
  }
}
