@charset "UTF-8";
/* 各种粗细字体(英文) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* 各种粗细字体(中文) */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;200;300;400;500;600;700;800;900&display=swap");
/* SCSS RGB 黑白色阶 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

nav.navTop {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #eee;
  height: 70px;
  display: flex;
  z-index: 999;
  background-color: #fff;
}
nav.navTop .container {
  margin: 0 auto;
  padding: 0;
}
@media (min-width: 576px) {
  nav.navTop .container {
    max-width: 540px;
    width: 540px;
  }
}
@media (min-width: 768px) {
  nav.navTop .container {
    max-width: 720px;
    width: 720px;
  }
}
@media (min-width: 992px) {
  nav.navTop .container {
    max-width: 960px;
    width: 960px;
  }
}
@media (min-width: 1200px) {
  nav.navTop .container {
    max-width: 1160px;
    width: 1160px;
  }
}
@media (min-width: 1300px) {
  nav.navTop .container {
    max-width: 1201px;
    width: 1201px;
  }
}
@media (min-width: 1400px) {
  nav.navTop .container {
    max-width: 1360px;
    width: 1360px;
  }
}
@media (min-width: 1500px) {
  nav.navTop .container {
    max-width: 1460px;
    width: 1460px;
  }
}
nav.navTop .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*nav.navTop .container .logo img {*/
/*  height: 2vmax;*/
/*  transform: scale(1.5);*/
/*}*/
nav.navTop .container .logo img.white {
  display: none;
}
nav.navTop .container .logo img.black {
  display: block;
}
nav.navTop .container .navbar {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  height: 24px;
  border-right: 1px solid #999;
  padding: 0;
}
nav.navTop .container .navbar .nav-link {
  margin-right: 1vw;
  padding: 0;
}
nav.navTop .container .navbar .nav-link > a {
  line-height: 26px;
  display: block;
  letter-spacing: 2px;
  font-size: 15px;
  color: #383838;
}
nav.navTop .container .navbar .nav-link > a:hover {
  color: #73b320;
}
nav.navTop .container .navbar .bottomLine {
  position: absolute;
  left: 0;
  bottom: 0px;
  transition: all 0.3s ease;
  height: 2px;
  border-radius: 2px;
  width: 0;
  background: rgb(3, 98, 255);
  opacity: 0;
}
nav.navTop .container .module {
  margin-left: 2.5vw;
}
nav.navTop .container .module .searchBox {
  overflow: hidden;
  align-items: center;
  transition: 0.3s;
  border-bottom: 1px solid rgba(66, 66, 66, 0.95);
}
nav.navTop .container .module .searchBox form {
  display: flex;
}
nav.navTop .container .module .searchBox:hover {
  transform: scale(1.02);
}
nav.navTop .container .module .searchBox .search {
  padding: 4px;
  line-height: 28px;
  width: 12.5vmax;
  border: 0;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  color: rgba(66, 66, 66, 0.95);
  font-size: 14px;
  letter-spacing: 2px;
}
nav.navTop .container .module .searchBox .search::-webkit-input-placeholder {
  /* WebKit browsers，webkit内核浏览器 */
  color: rgba(117, 117, 117, 0.95);
  font-size: 16px;
}
nav.navTop .container .module .searchBox .search:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(117, 117, 117, 0.95);
  font-size: 16px;
}
nav.navTop .container .module .searchBox .search::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(117, 117, 117, 0.95);
  font-size: 16px;
}
nav.navTop .container .module .searchBox .search:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(117, 117, 117, 0.95);
  font-size: 16px;
}
nav.navTop .container .module .searchBox .icon-sousuo {
  font-size: 20px;
  border: 0;
  outline: none;
  padding: 4px;
  margin-right: 4px;
  border-radius: 4px;
  display: block;
  color: rgba(66, 66, 66, 0.95);
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
}
nav.navTop .container .module .searchBox .icon-sousuo::before {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
nav.navTop.white {
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: rgba(255, 255, 255, 0.2) 0 2px 8px 0;
}
nav.navTop.white .container .navbar {
  border-right: 1px solid #fff;
}
nav.navTop.white .container .navbar .bottomLine {
  bottom: 4px;
  background: #fff;
}
nav.navTop.white .container .navbar .nav-link > a {
  color: #fff;
}
nav.navTop.white .container .logo img {
  height: 2vmax;
}
nav.navTop.white .container .logo img.white {
  display: block;
}
nav.navTop.white .container .logo img.black {
  display: none;
}
nav.navTop.white .container .module {
  margin-left: 2.5vw;
}
nav.navTop.white .container .module .searchBox {
  border-bottom: 1px solid rgba(250, 250, 250, 0.95);
}
nav.navTop.white .container .module .searchBox .search {
  color: rgba(250, 250, 250, 0.95);
}
nav.navTop.white .container .module .searchBox .search::-webkit-input-placeholder {
  color: rgba(250, 250, 250, 0.6);
}
nav.navTop.white .container .module .searchBox .search:-moz-placeholder {
  color: rgba(250, 250, 250, 0.6);
}
nav.navTop.white .container .module .searchBox .search::-moz-placeholder {
  color: rgba(250, 250, 250, 0.6);
}
nav.navTop.white .container .module .searchBox .search:-ms-input-placeholder {
  color: rgba(250, 250, 250, 0.6);
}
nav.navTop.white .container .module .searchBox .icon-sousuo {
  color: rgba(250, 250, 250, 0.95);
}

.box1557 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708934091835 */
}
.box1557 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1557 p,
.box1557 h3,
.box1557 ul,
.box1557 li {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1557 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1557 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box1557 img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box1557 ul,
.box1557 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1557 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1557 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1557 .clearfix {
  *zoom: 1;
}
.box1557 .clearfix:before,
.box1557 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1557 .clearfix:after {
  clear: both;
}
.box1557 .w1240 {
  width: 1240px;
  margin: 0 auto;
}
.box1557 .for-ad {
  background-color: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(6, 0, 1, 0.1);
  border-radius: 6px;
  padding: 42px 0;
  position: relative;
  z-index: 333;
  margin-top: -65px;
}
.box1557 .for-ad li {
  float: left;
  width: 25%;
  padding-left: 25px;
}
.box1557 .for-ad li a {
  display: block;
  overflow: hidden;
  clear: both;
}
.box1557 .for-ad .item-img {
  float: left;
}
.box1557 .for-ad .item-img img {
  width: 45px;
  height: 47px;
  overflow: hidden;
  transition: all 0.6s;
}
.box1557 .for-ad .item-text {
  float: left;
  padding-left: 10px;
  width: 185px;
  overflow: hidden;
}
.box1557 .for-ad h3 {
  color: #333333;
  font-size: 16px;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box1557 .for-ad p {
  color: #9ea5b9;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box1557 .for-ad li:hover .item-img img {
  transform: rotateY(-180deg);
}
.box1557 .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box1600 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
}
.box1600 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1600 p,
.box1600 h3 {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1600 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1600 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1600 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1600 .index-tit {
  padding: 75px 0 35px 0;
}
.box1600 .index-tit h3 {
  color: #000000;
  font-size: 38px;
  text-align: center;
  font-weight: bold;
}
.box1600 .index-tit p {
  color: #888888;
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.box1603 .container {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708934091835 */
}
.box1603 .container * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1603 .container ul,
.box1603 .container li {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1603 .container a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box1603 .container img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box1603 .container ul,
.box1603 .container li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1603 .container strong {
  font-weight: normal;
}
.box1603 .container i {
  font-style: normal;
}
.box1603 .container .clearfix {
  *zoom: 1;
}
.box1603 .container .clearfix:before,
.box1603 .container .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1603 .container .clearfix:after {
  clear: both;
}
.box1603 .container .tab-bd {
  padding-top: 50px;
}
.box1603 .container .tab-bd ul {
  margin-right: -20px;
  margin-bottom: -20px;
}
.box1603 .container .tab-bd li {
  float: left;
  width: 295px;
  border: solid 1px #e5e5e5;
  margin-right: 12px;
  position: relative;
  height: 410px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.6s;
}
.box1603 .container .tab-bd .newtag {
  width: 36px;
  height: 20px;
  background-color: #1362d9;
  border-radius: 2px;
  color: #ffffff;
  font-size: 14px;
  position: absolute;
  top: 14px;
  left: 14px;
  position: absolute;
  display: block;
  text-align: center;
  line-height: 20px;
  z-index: 333;
}
.box1603 .container .tab-bd .item-img,
.box1603 .container .tab-bd .item-img img {
  display: block;
  width: 100%;
  height: 250px;
  transition: all 1.2s;
  overflow: hidden;
}
.box1603 .container .tab-bd .item-text {
  padding: 20px 15px;
}
.box1603 .container .tab-bd .item-text .p1 {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 36px;
  height: 72px;
  font-size: 15px;
  text-align: center;
}
.box1603 .container .tab-bd .item-text strong {
  color: #ff0000;
  font-size: 24px;
  font-family: arial;
}
.box1603 .container .tab-bd .item-text del {
  color: #333333;
  font-size: 14px;
  font-family: arial;
  display: inline-block;
  padding-left: 10px;
}
.box1603 .container .tab-bd .addbtn {
  width: 220px;
  height: 36px;
  background-color: #1362d9;
  border-radius: 4px;
  font-size: 14px;
  background-color: #1362d9;
  border-radius: 4px;
  color: #ffffff;
  display: block;
  line-height: 36px;
  text-align: center;
  float: left;
  transition: all 0.26s;
  box-sizing: border-box;
  position: relative;
}
.box1603 .container .tab-bd .addbtn .span2 {
  position: absolute;
  top: 36px;
  transition: all 0.36s;
  width: 220px;
  height: 36px;
  left: 0;
  right: 0;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  background: #1362d9;
  font-family: arial;
  font-size: 12px;
}
.box1603 .container .tab-bd .addbtn .span1 {
  position: absolute;
  top: 0px;
  transition: all 0.36s;
  width: 220px;
  height: 36px;
  left: 0;
  right: 0;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  background: #1362d9;
  line-height: 36px;
}
.box1603 .container .tab-bd .addbtn span i {
  display: inline-block;
  background: url(1) no-repeat -33px -170px;
  width: 16px;
  height: 14px;
  transition: all 0.46s;
  vertical-align: -1px;
  margin-right: 5px;
}
.box1603 .container .tab-bd .shoucang {
  width: 36px;
  height: 36px;
  background-color: #1362d9;
  border-radius: 4px;
  display: block;
  float: right;
  transition: all 0.6s;
}
.box1603 .container .tab-bd .shoucang i {
  display: block;
  margin: 8px auto;
  background: url(1) no-repeat -32px -310px;
  width: 16px;
  height: 15px;
  transition: all 0.46s;
}
.box1603 .container .tab-bd .addbtn:hover .span1 {
  top: -36px;
}
.box1603 .container .tab-bd .addbtn:hover .span2 {
  top: 0;
}
.box1603 .container .tab-bd .price-show {
  text-align: center;
  transition: all 0.6s;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  padding: 0 15px;
}
.box1603 .container .tab-bd .cart-div {
  overflow: hidden;
  clear: both;
  transition: all 0.6s;
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -35px;
  padding: 0 15px;
}
.box1603 .container .tab-bd li:hover .item-img img {
  transform: scale(1.1);
}
.box1603 .container .tab-bd li:hover .cart-div {
  opacity: 1;
  bottom: 20px;
}
.box1603 .container .tab-bd li:hover .price-show {
  opacity: 0;
  bottom: 50px;
}
.box1603 .container .tab-bd li:hover {
  border-color: #1362d9;
}
.box1603 .container .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box1634 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708934091835 */
}
.box1634 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1634 p,
.box1634 h2,
.box1634 h3,
.box1634 ul,
.box1634 li {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1634 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1634 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box1634 img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box1634 ul,
.box1634 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1634 h2,
.box1634 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1634 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1634 .clearfix {
  *zoom: 1;
}
.box1634 .clearfix:before,
.box1634 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1634 .clearfix:after {
  clear: both;
}
.box1634 .fl {
  float: left;
}
.box1634 .fr {
  float: right;
}
.box1634 .w1240 {
  width: 1240px;
  margin: 0 auto;
}
.box1634 .index-foot {
  background: #2f3641;
  padding: 70px 0;
}
.box1634 .index-foot .div1 {
  width: 334px;
  margin-right: 90px;
}
.box1634 .index-foot .div1 h3 {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
}
.box1634 .index-foot .div1 p {
  color: #ffffff;
  opacity: 0.6;
  line-height: 24px;
  font-size: 14px;
  margin: 20px 0;
}
.box1634 .index-foot .div1 h2 {
  color: #1362d9;
  font-size: 18px;
  margin-top: 40px;
}
.box1634 .index-foot .div1 h2 img {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 5px;
}
.box1634 .index-foot .div2 li {
  float: left;
  margin: 0 45px;
  width: 80px;
}
.box1634 .index-foot .div2 h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
}
.box1634 .index-foot .div2 a {
  color: #ffffff;
  opacity: 0.5;
  font-size: 14px;
  display: block;
  line-height: 30px;
  transition: all 1s;
}
.box1634 .index-foot .div2 a:hover {
  opacity: 1;
}
.box1634 .index-foot .div3 p {
  color: #ffffff;
  font-size: 12px;
  text-align: center;
}
.box1634 .index-foot .div3 img {
  display: block;
  width: 100px;
  height: 100px;
  margin-top: 25px;
}
.box1634 .index-foot .div3 .code {
  margin-left: 25px;
}
.box1634 .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.box1634 .div1 a {
  color: #fff;
}

.box0942 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
}
.box0942 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box0942 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box0942 .w1240 {
  width: 1240px;
  margin: 0 auto;
}
.box0942 .breadcrumb {
  height: 50px;
  background-color: #fafafa;
  line-height: 50px;
  color: #666;
  font-size: 12px;
  box-shadow: inset 0px 2px 5px 0px rgba(6, 0, 1, 0.05);
  padding: 0;
}
.box0942 .breadcrumb a {
  color: #666;
  font-size: 12px;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.6s;
}
.box0942 .breadcrumb a:hover {
  color: #1362d9;
}

.box0954 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708998958720 */
}
.box0954 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box0954 p,
.box0954 h3,
.box0954 ul,
.box0954 li {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box0954 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box0954 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box0954 img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box0954 ul,
.box0954 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box0954 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box0954 strong {
  font-weight: normal;
}
.box0954 i {
  font-style: normal;
}
.box0954 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box0954 .clearfix {
  *zoom: 1;
}
.box0954 .clearfix:before,
.box0954 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box0954 .clearfix:after {
  clear: both;
}
.box0954 .fl {
  float: left;
}
.box0954 .fr {
  float: right;
}
.box0954 .w1240 {
  width: 1240px;
  margin: 0 auto;
}
.box0954 .pt45 {
  padding-top: 45px;
  padding-bottom: 45px;
}
.box0954 .pulic-left {
  width: 330px;
}
.box0954 .pulic-right {
  width: 870px;
}
.box0954 .pulic-left .pulic-fen {
  box-shadow: 0px 0px 5px 0px rgba(6, 0, 1, 0.1);
  padding: 30px;
}
.box0954 .pulic-left .pulic-recommend {
  box-shadow: 0px 0px 5px 0px rgba(6, 0, 1, 0.1);
  margin-top: 32px;
  padding: 30px;
}
.box0954 .pulic-left .public-h3 {
  color: #333333;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  padding-bottom: 22px;
}
.box0954 .pulic-left .public-h3::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  background: #1362d9;
  width: 40px;
}
.box0954 .pulic-left .pulic-fen ul {
  padding: 25px 0;
}
.box0954 .pulic-left .pulic-fen ul:last-child {
  padding-bottom: 0;
}
.box0954 .pulic-left .pulic-fen li a,
.box0954 .pulic-left .pulic-recommend li a {
  display: block;
  overflow: hidden;
  clear: both;
}
.box0954 .pulic-left .pulic-fen li span {
  color: #666666;
  font-size: 14px;
  line-height: 40px;
  float: left;
  transition: all 0.36s;
  width: 225px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.box0954 .pulic-left .pulic-fen li:hover span {
  color: #1362d9;
}
.box0954 .pulic-left .pulic-recommend .item-img {
  width: 85px;
  height: 70px;
  overflow: hidden;
  float: left;
}
.box0954 .pulic-left .pulic-recommend .item-img img {
  width: 85px;
  height: 70px;
  overflow: hidden;
  transition: all 0.6s;
}
.box0954 .pulic-left .pulic-recommend .item-text {
  width: 130px;
  overflow: hidden;
  margin-left: 18px;
  float: left;
}
.box0954 .pulic-left .pulic-recommend .item-text p {
  font-size: 13px;
  line-height: 18px;
  height: 36px;
  overflow: hidden;
  display: -webkit-box;
  color: #333333;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  margin-bottom: 5px;
  margin-top: 5px;
  transition: all 0.36s;
}
.box0954 .pulic-left .pulic-recommend ul {
  padding-top: 25px;
}
.box0954 .pulic-left .pulic-recommend li {
  border-radius: 3px;
  border: solid 1px #e5e5e5;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.36s;
}
.box0954 .pulic-left .pulic-recommend strong {
  color: #f00;
  line-height: 30px;
  font-size: 16px;
  font-family: arial;
}
.box0954 .pulic-left .pulic-recommend li:hover .item-img img {
  transform: scale(1.2);
}
.box0954 .pulic-left .pulic-recommend li:hover {
  box-shadow: 0px 0px 5px 0px rgba(6, 0, 1, 0.1);
}
.box0954 .pulic-left .pulic-recommend li:hover p {
  color: #1362d9;
}
.box0954 .pro-knowright li a {
  display: block;
  background-color: #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(6, 0, 1, 0.1);
  padding: 30px 35px;
  margin-bottom: 30px;
  transition: all 0.6s;
}
.box0954 .pro-knowright .info {
  margin: 30px 0 20px 0;
}
.box0954 .pro-knowright .info span {
  color: #888888;
  font-size: 14px;
  font-family: arial;
  transition: all 0.6s;
}
.box0954 .pro-knowright .info i {
  display: inline-block;
  margin-right: 10px;
  transition: all 0s;
  vertical-align: middle;
}
.box0954 .pro-knowright .info .time {
  margin-right: 50px;
}
.box0954 .pro-knowright .info .time i {
  background: url(1) no-repeat -40px -40px;
  width: 14px;
  height: 14px;
}
.box0954 .pro-knowright .info .view i {
  background: url(1) no-repeat -40px -65px;
  width: 14px;
  height: 10px;
}
.box0954 .pro-knowright li h3 {
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.6s;
}
.box0954 .pro-knowright li p {
  font-size: 13px;
  line-height: 30px;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  color: #888;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  transition: all 0.36s;
}
.box0954 .pro-knowright li:hover h3,
.box0954 .pro-knowright li:hover p,
.box0954 .pro-knowright li:hover span {
  color: #fff;
}
.box0954 .pro-knowright li:hover a {
  box-shadow: 0px 0px 5px 0px rgba(19, 99, 217, 0.6);
  background: #1362d9;
}
.box0954 .pro-knowright li:hover:hover .time i {
  background-position: -67px -40px;
}
.box0954 .pro-knowright li:hover:hover .view i {
  background-position: -67px -65px;
}
.box0954 .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box1000 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
}
.box1000 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1000 p,
.box1000 h3,
.box1000 ul,
.box1000 li {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1000 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1000 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box1000 ul,
.box1000 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1000 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1000 strong {
  font-weight: normal;
}
.box1000 em {
  font-style: normal;
}
.box1000 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1000 .clearfix {
  *zoom: 1;
}
.box1000 .clearfix:before,
.box1000 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1000 .clearfix:after {
  clear: both;
}
.box1000 .fl {
  float: left;
}
.box1000 .fr {
  float: right;
}
.box1000 .w1240 {
  width: 1240px;
  margin: 0 auto;
}
.box1000 .pt45 {
  padding-top: 45px;
  padding-bottom: 45px;
}
.box1000 .pulic-left {
  width: 330px;
}
.box1000 .pulic-right {
  width: 870px;
}
.box1000 .pulic-left .pulic-fen {
  box-shadow: 0px 0px 5px 0px rgba(6, 0, 1, 0.1);
  padding: 30px;
}
.box1000 .pulic-left .pulic-fen ul {
  padding: 25px 0;
}
.box1000 .pulic-left .pulic-fen ul:last-child {
  padding-bottom: 0;
}
.box1000 .pulic-left .pulic-fen li a {
  display: block;
  overflow: hidden;
  clear: both;
}
.box1000 .pulic-left .pulic-fen li span {
  color: #666666;
  font-size: 14px;
  line-height: 40px;
  float: left;
  transition: all 0.36s;
  width: 225px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.box1000 .pulic-left .pulic-fen li:hover span,
.box1000 .pulic-left .pulic-fen li.on span {
  color: #1362d9;
}
.box1000 .cpzs-pageright {
  box-shadow: 0px 0px 20px 0px rgba(6, 0, 1, 0.1);
}
.box1000 .cpzs-pageright .cpzs-detou {
  border-bottom: 1px solid #e5e5e5;
  padding: 55px 40px 25px 40px;
}
.box1000 .cpzs-pageright .cpzs-detou h3 {
  color: #333333;
  line-height: 50px;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}
.box1000 .cpzs-pageright .cpzs-detou p {
  color: #888888;
  font-size: 14px;
}
.box1000 .cpzs-pageright .cpzs-text {
  padding: 50px 45px;
}
.box1000 .cpzs-pageright .cpzs-text p {
  color: #333333;
  line-height: 32px;
  font-size: 14px;
  margin-bottom: 25px;
  text-indent: 2em;
}

.box1013 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708999529061 */
}
.box1013 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1013 p,
.box1013 h3,
.box1013 ul,
.box1013 li,
.box1013 input {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1013 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1013 a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: none;
  padding: 0;
  margin: 0;
}
.box1013 img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box1013 ul,
.box1013 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1013 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1013 strong,
.box1013 b {
  font-weight: normal;
}
.box1013 i,
.box1013 b {
  font-style: normal;
}
.box1013 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1013 input {
  border: none;
  background: none;
}
.box1013 input:focus {
  outline: none;
}
.box1013 .clearfix {
  *zoom: 1;
}
.box1013 .clearfix:before,
.box1013 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1013 .clearfix:after {
  clear: both;
}
.box1013 .fl {
  float: left;
}
.box1013 .fr {
  float: right;
}
.box1013 .cpzx-infotext {
  width: 650px;
  margin-left: 30px;
}
.box1013 .cpzx-scrolltu {
  position: relative;
  overflow: hidden;
  width: 553px;
}
.box1013 .cpzx-scrolltu .bigImg {
  height: 400px;
  position: relative;
}
.box1013 .cpzx-scrolltu .bigImg li img {
  vertical-align: middle;
  width: 553px;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
.box1013 .cpzx-scrolltu .smallScroll {
  height: 60px;
  margin-top: 10px;
}
.box1013 .cpzx-scrolltu .sPrev,
.box1013 .cpzx-scrolltu .sNext {
  width: 24px;
  height: 60px;
  background-color: #fafafa;
  border: solid 1px #e5e5e5;
  display: block;
  float: left;
  transition: all 0.36s;
}
.box1013 .cpzx-scrolltu .sNext {
  float: right;
}
.box1013 .cpzx-scrolltu .sPrev i,
.box1013 .cpzx-scrolltu .sNext i {
  display: block;
  width: 6px;
  height: 12px;
  text-indent: -9999px;
  background: url(1) no-repeat;
  margin: 23px auto;
  transition: all 0.36s;
}
.box1013 .cpzx-scrolltu .sPrev i {
  background-position: -143px -331px;
}
.box1013 .cpzx-scrolltu .sNext i {
  background-position: -172px -331px;
}
.box1013 .cpzx-scrolltu .sPrev:hover i {
  background-position: -143px -345px;
}
.box1013 .cpzx-scrolltu .sNext:hover i {
  background-position: -172px -345px;
}
.box1013 .cpzx-scrolltu .sPrev:hover {
  background: #1362d9;
}
.box1013 .cpzx-scrolltu .sNext:hover {
  background: #1362d9;
}
.box1013 .cpzx-scrolltu .smallImg {
  float: left;
  margin: 0 15px;
  display: inline;
  width: 470px;
  overflow: hidden;
}
.box1013 .cpzx-scrolltu .smallImg ul {
  height: 60px;
  width: 9999px;
  overflow: hidden;
}
.box1013 .cpzx-scrolltu .smallImg li {
  float: left;
  width: 83px !important;
  cursor: pointer;
  display: inline-block;
  margin: 0 6px;
}
.box1013 .cpzx-scrolltu .smallImg img {
  width: 83px;
  height: 60px;
  box-sizing: border-box;
  transition: all 0.6s;
}
.box1013 .cpzx-scrolltu .smallImg li.on img {
  opacity: 0.6;
}
.box1013 .cpzx-sec1 .jia-jian {
  width: 100px;
  height: 30px;
  background-color: #fafafa;
  border-radius: 4px;
  border: solid 1px #e5e5e5;
  margin: 0 auto;
}
.box1013 .cpzx-sec1 .jia-jian span {
  cursor: pointer;
  height: 26px;
  text-align: center;
  color: #555555;
  font-size: 16px;
  font-weight: bold;
  width: 27px;
  float: left;
  line-height: 26px;
}
.box1013 .cpzx-sec1 .jia-jian input {
  width: 42px;
  height: 28px;
  background: #fff;
  text-align: center;
  border: 1px solid #e5e5e5;
  float: left;
  border-top: none;
  border-bottom: none;
  box-sizing: content-box;
}
.box1013 .cpzx-infotext .cp-name {
  color: #333333;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box1013 .cpzx-infotext .rate {
  margin-bottom: 25px;
}
.box1013 .cpzx-infotext .rate span {
  color: #666666;
  font-size: 14px;
}
.box1013 .cpzx-infotext .rate i {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url(1) no-repeat -248px -148px;
  margin-right: 7px;
}
.box1013 .cpzx-infotext .price del {
  color: #888888;
  opacity: 0.5;
  line-height: 30px;
  font-size: 22px;
  font-family: arial;
}
.box1013 .cpzx-infotext .price strong {
  color: #ff0000;
  line-height: 30px;
  font-size: 30px;
  font-family: arial;
  display: inline-block;
  margin-left: 10px;
}
.box1013 .cpzx-infotext .p1 {
  color: #888888;
  line-height: 30px;
  font-size: 14px;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  margin-top: 20px;
}
.box1013 .cpzx-infotext .num-cart {
  border-top: 1px solid #f5f5f5;
  padding-top: 30px;
  margin-top: 20px;
}
.box1013 .cpzx-infotext .num-cart b {
  color: #333333;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  margin-right: 10px;
}
.box1013 .cpzx-adcart {
  width: 220px;
  height: 50px;
  background-color: #ff0000;
  display: block;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 50px;
  margin-top: 20px;
  transition: all 0.6s;
  cursor: pointer;
}
.box1013 .cpzx-adcart:hover {
  background: #e70f0f;
}
.box1013 .cpzx-adcart i {
  background: url(1) no-repeat -344px -203px;
  width: 22px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.box1013 .cpzx-infotext .share-shoucang {
  margin-top: 30px;
}
.box1013 .cpzx-infotext .share-btn {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}
.box1013 .cpzx-infotext .shoucang {
  color: #aaaaaa;
  font-size: 14px;
  line-height: 20px;
  margin-left: 30px;
  cursor: pointer;
}
.box1013 .cpzx-infotext .share-shoucang i {
  display: inline-block;
  background: url(1) no-repeat;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 10px;
  transition: all 0.6s;
}
.box1013 .cpzx-infotext .share-btn i {
  background-position: -162px -262px;
}
.box1013 .cpzx-infotext .shoucang i {
  background-position: -161px -286px;
  vertical-align: -1.5px;
}
.box1013 .cpzx-infotext .cp-tag p {
  color: #888888;
  border-top: 1px solid #f5f5f5;
  padding-top: 20px;
  margin-top: 20px;
}
.box1013 .cpzx-infotext .bshare-more {
  position: absolute;
  width: 105px;
  height: 16px;
  background: none;
}
.box1013 .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box1023 {
  /*! CSS Used from: http://www.hfwuju.com/static/index/css/style.css */
  /*! CSS Used from: https://wappass.baidu.com/static/machine/css/api/mkd.css?_=1708999529061 */
}
.box1023 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft Yahei";
}
.box1023 p,
.box1023 h3,
.box1023 ul,
.box1023 li,
.box1023 form,
.box1023 input {
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
}
.box1023 p {
  font-size: 14px;
  border: none;
  color: #000;
}
.box1023 img {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
}
.box1023 ul,
.box1023 li {
  list-style: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.box1023 h3 {
  font-weight: normal;
  font-size: 12px;
  display: block;
}
.box1023 p {
  line-height: 170%;
  color: #555;
  font-size: 14px;
}
.box1023 input,
.box1023 button {
  border: none;
  background: none;
}
.box1023 input:focus,
.box1023 button:focus,
.box1023 textarea:focus {
  outline: none;
}
.box1023 .clearfix {
  *zoom: 1;
}
.box1023 .clearfix:before,
.box1023 .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.box1023 .clearfix:after {
  clear: both;
}
.box1023 .fl {
  float: left;
}
.box1023 .fr {
  float: right;
}
.box1023 .cpzx-sec2 {
  margin-top: 65px;
  border: solid 1px #e5e5e5;
}
.box1023 .cpzx-sec2 .tab-hd {
  height: 50px;
  background-color: #fafafa;
  border-bottom: solid 1px #e5e5e5;
  line-height: 50px;
}
.box1023 .cpzx-sec2 .tab-hd li {
  color: #333333;
  font-size: 16px;
  float: left;
  line-height: 49px;
  width: 140px;
  text-align: center;
  cursor: pointer;
}
.box1023 .cpzx-sec2 .tab-hd li.on {
  color: #f00;
  background: #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #e5e5e5;
}
.box1023 .cpzx-sec2 .tab-bd {
  padding: 45px;
}
.box1023 .cpzx-sec2 .tab-bd p {
  line-height: 34px;
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
}
.box1023 .cpzx-sec2 .tab-bd img {
  display: block;
  max-width: 100%;
  margin: 10px auto;
}
.box1023 .cpzx-sec2 .liuyan h3 {
  color: #333333;
  font-size: 22px;
  line-height: 34px;
}
.box1023 .cpzx-sec2 .liuyan span {
  display: block;
  color: #333333;
  font-size: 14px;
  line-height: 34px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.box1023 .cpzx-sec2 .liuyan textarea {
  border: none;
  background: none;
  resize: none;
  height: 159px;
  border: solid 1px #e5e5e5;
  width: 100%;
  transition: all 0.6s;
}
.box1023 .cpzx-sec2 .liuyan .div-in {
  width: 550px;
}
.box1023 .cpzx-sec2 .liuyan input[type=text] {
  height: 50px;
  border: solid 1px #e5e5e5;
  display: block;
  width: 100%;
  padding-left: 10px;
  transition: all 0.6s;
}
.box1023 .cpzx-sec2 .liuyan button {
  width: 176px;
  display: block;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  height: 50px;
  background-color: #2f3641;
  border-radius: 4px;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.6s;
}
.box1023 .cpzx-sec2 .liuyan button:hover {
  background: #1362d9;
}
.box1023 .cpzx-sec2 .liuyan input[type=text]:hover,
.box1023 .cpzx-sec2 .liuyan textarea:hover {
  border-color: #1362d9;
}
.box1023 .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */