html {
  overflow-x: hidden;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #ffffff;
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  z-index: 1000;
}

header > .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

header > .content > .logo {
  -webkit-transition: all ease-in-out 0.6s;
  transition: all ease-in-out 0.6s;
  width: 190px;
  cursor: pointer;
}

header > .content .has-color {
  display: none;
}

header > .content nav {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

header > .content nav > .main-nav {
  height: 100%;
}

header > .content nav > .main-nav > li {
  float: left;
  padding: 0 14px;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > .content nav > .main-nav > li a {
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
}

header > .content nav > .main-nav > li > i.icon {
  display: inline-block;
  margin-left: 4px;
  -webkit-transition: -webkit-transform ease-in-out 0.2s;
  transition: -webkit-transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s;
  transition: transform ease-in-out 0.2s, -webkit-transform ease-in-out 0.2s;
}

header > .content nav > .main-nav > li .sub-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 120px;
  -webkit-transition: opacity ease-in-out 0.2s;
  transition: opacity ease-in-out 0.2s;
  -webkit-transition: top ease-in-out 0.6s;
  transition: top ease-in-out 0.6s;
  opacity: 0;
  z-index: 5;
  -webkit-transform: translateY(-1000px);
          transform: translateY(-1000px);
  cursor: default;
  background: #f5f5f5;
  overflow: hidden;
}

header > .content nav > .main-nav li:hover > i.icon {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
  color: #297bff !important;
}

header > .content nav > .main-nav li:hover > a {
  color: #297bff !important;
}

header > .content nav > .main-nav li:hover .sub-nav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

header > .content .site-phone {
  width: 133px;
  height: 26px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 12px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  margin-right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > .content .lan {
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: 400;
  padding: 0 4px;
  opacity: 0.2;
  cursor: pointer;
}

header > .content .lan.active {
  opacity: 1;
}

header > .content .search-button {
  padding: 0 4px;
  cursor: pointer;
}

header > .content > .search-input-box {
  width: 296px;
  height: 0;
  background: #363636;
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  overflow: hidden;
}

header > .content > .search-input-box input {
  height: 60px;
  line-height: 60px;
  border: none;
  outline: none;
  width: 100%;
  padding-right: 60px;
  padding-left: 16px;
  background: transparent;
  font-size: 14px;
  font-family: PingFangSC, PingFangSC-Medium;
  color: #999999;
  caret-color: #fff;
}

header > .content > .search-input-box .icon {
  position: absolute;
  right: 28px;
  top: 50%;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

header > .content > .search-input-box.show {
  height: 60px;
}

header.scroll-style {
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
}

header.scroll-style > .content > .logo {
  width: 120px;
}

header.scroll-style > .content nav > .main-nav > li {
  padding: 0 10px;
}

header.scroll-style > .content nav > .main-nav > li .sub-nav {
  top: 80px;
}

header:hover {
  background-color: white;
  -webkit-box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 2px 20px 0px rgba(0, 0, 0, 0.08);
}

header:hover > .content .logo {
  display: none;
}

header:hover > .content .has-color {
  display: inline-block;
}

header:hover > .content nav > .main-nav > li a {
  color: #333333;
}

header:hover > .content nav > .main-nav > li > i.icon {
  color: #333333;
}

header:hover > .content .site-phone {
  border-color: #333333;
  color: #333333;
}

header:hover > .content .lan {
  color: #333333;
}

header:hover > .content .search-button {
  color: #333333;
}

.sub-nav.info {
  height: 369px;
  padding: 40px 0;
}

.sub-nav.info > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sub-nav.info > .content .big-img {
  width: 712px;
  height: 288px;
  overflow: hidden;
  position: relative;
}

.sub-nav.info > .content .big-img > img {
  width: 100%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.sub-nav.info > .content .big-img > .text {
  position: absolute;
  left: 34px;
  bottom: 34px;
  font-size: 22px;
  font-family: PingFangSC, PingFangSC-Medium;
  color: #ffffff;
}

.sub-nav.info > .content .big-img:hover > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sub-nav.info > .content .big-nomal {
  width: 232px;
  height: 288px;
  font-size: 22px;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #666666;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: #ffffff;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-nomal > img {
  width: 30px;
  height: 30px;
  margin-bottom: 21px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-nomal > span {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-nomal > span > a {
  color: #666666;
}

.sub-nav.info > .content .big-nomal > span > a:hover {
  color: #297bff;
}

.sub-nav.info > .content .big-nomal:hover {
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.sub-nav.info > .content .big-nomal:hover > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sub-nav.info > .content .big-nomal:hover > span {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sub-nav.info > .content .big-small-group {
  width: 232px;
  height: 288px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sub-nav.info > .content .big-small-group .big-small {
  height: 138px;
  font-size: 22px;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #666666;
  line-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background: #ffffff;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-small-group .big-small > img {
  width: 30px;
  height: 30px;
  margin-bottom: 21px;
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-small-group .big-small > span {
  -webkit-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
}

.sub-nav.info > .content .big-small-group .big-small > span > a {
  color: #666666;
}

.sub-nav.info > .content .big-small-group .big-small > span > a:hover {
  color: #297bff;
}

.sub-nav.info > .content .big-small-group .big-small:hover {
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.sub-nav.info > .content .big-small-group .big-small:hover > img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sub-nav.info > .content .big-small-group .big-small:hover > span {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.sub-nav.product {
  height: 494px;
}

.sub-nav.product > .content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-nav.product > .content .product-left {
  height: 100%;
  width: 134px;
  min-width: 134px;
  padding: 10px 0;
}

.sub-nav.product > .content .product-left > li {
  font-size: 16px;
  font-family: PingFangSC, PingFangSC-Regular;
  font-weight: bold;
  color: #333333;
}

.sub-nav.product > .content .product-left > li.title {
  height: 60px;
  line-height: 60px;
}

.sub-nav.product > .content .product-left > li.title > span {
  font-size: 20px;
  font-family: PingFangSC, PingFangSC-Medium;
  font-weight: bold;
  color: #999999;
}

.sub-nav.product > .content .product-left > li.active {
  font-size: 20px;
  color: #297bff;
}

.sub-nav.product > .content .product-left > li + li {
  margin-top: 20px;
}

.sub-nav.product > .content .product-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sub-nav.product > .content .product-right .panel {
  width: 100%;
  padding: 23px 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  display: none;
}

.sub-nav.product > .content .product-right .panel .right-item {
  margin-right: 16px;
  width: 176px;
}

.sub-nav.product > .content .product-right .panel .right-item > img {
  width: 120px;
}

.sub-nav.product > .content .product-right .panel .right-item > h5 a {
  color: #333333;
}

.sub-nav.product > .content .product-right .panel .right-item > h5:hover a {
  color: #297bff;
}

.sub-nav.product > .content .product-right .panel .right-item > .row-group {
  display: inline-block;
  width: 40%;
  font-family: PingFangSC, PingFangSC-Regular;
  color: #999999;
}

.sub-nav.product > .content .product-right .panel .right-item > .row-group .item-row {
  margin-bottom: 20px;
  cursor: pointer;
}

.sub-nav.product > .content .product-right .panel .right-item > .row-group .item-row a {
  color: #999999;
}

.sub-nav.product > .content .product-right .panel .right-item > .row-group .item-row a:hover {
  color: #297bff;
}

.sub-nav.product > .content .product-right .panel.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-nav.application {
  height: 200px;
}

.sub-nav.application > .content {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.sub-nav.application > .content .application-item {
  width: 9.5%;
  border: 5px solid #f5f5f5;
  position: relative;
  overflow: hidden;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}

.sub-nav.application > .content .application-item > img {
  width: 100%;
  height: 100%;
}

.sub-nav.application > .content .application-item > .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #eee;
  text-align: center;
  padding: 16px 8px;
}

.sub-nav.application > .content .application-item:hover {
  width: 13.5%;
}
/*# sourceMappingURL=pc.css.map */