/*样式初始化及公共样式部分*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
  color: #111111;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #111111;
}
a:hover {
  color: #ed2723;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  min-width: 1300px;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
/* header */
.header {
  width: 100%;
}
.header .page {
  display: flex;
  height: 111px;
  align-items: center;
}
.header .text {
  margin-left: 25px;
  padding-left: 25px;
  border-left: 1px solid #e7e7e7;
}
.header .text p {
  font-size: 26px;
  font-weight: bold;
}
.header .text p i {
  color: #ed2723;
}
.header .text span {
  font-size: 16px;
  color: #666;
}
.header .hot-line {
  margin: 0 0 auto auto;
}
.header .hot-line a {
  padding: 20px 30px;
  background-color: #d9d9d9;
}
/* nav */
.nav {
  background-color: #d9d9d9;
}
.nav-list {
  display: flex;
}
.nav-list > li {
  flex: 1;
  display: flex;
  position: relative;
}
.nav-list > li > a {
  width: 100%;
  line-height: 55px;
  text-align: center;
  font-size: 16px;
  position: relative;
  color: #333;
}
.nav-list > li::before {
  content: '';
  width: 100%;
  height: 0;
  background-color: #ed2723;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.nav-list > li:hover > a {
  color: #fff;
}
.nav-list > li:hover::before {
  height: 100%;
  transition: all 0.3s linear;
}
.nav-list > li .active {
  background-color: #ed2723;
  color: #fff;
}
.nav-list > li .erji2 {
  position: absolute;
  width: 100%;
  z-index: 999;
  top: 100%;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
}
.nav-list > li .erji2 li {
  text-align: center;
  background-color: #f1f1f1;
  height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 li a {
  font-size: 14px;
  color: #111;
  line-height: 45px;
  white-space: nowrap;
  display: block;
}
.nav-list > li .erji2 li:hover {
  background-color: #ed2723;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 li:hover a {
  color: #fff;
}
.nav-list > li:hover .erji2 li {
  height: 50px;
  transition: all 0.3s linear;
  border-top: 1px solid #ccc;
}
.nav-list > li:hover .erji2 li:first-child {
  border: none;
}
/* 幻灯片 */
.banner-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.banner-box .banner-btn a {
  display: block;
  width: 49px;
  height: 104px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  z-index: 99;
}
.banner-box .banner-btn a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.banner-box .banner-btn .prev {
  left: -50px;
  background: url(../images/banner-h.png) no-repeat 0 0;
}
.banner-box .banner-btn .next {
  right: -50px;
  background: url(../images/banner-h.png) no-repeat -49px 0;
}
.banner-box:hover .prev {
  left: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
.banner-box:hover .next {
  right: 20px;
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
/* 搜索 */
.search {
  width: 100%;
  background-color: #f1f1f1;
}
.search .page {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
}
.search .page .keywo {
  display: flex;
  align-items: center;
}
.search .page .keywo > p {
  padding-left: 30px;
  position: relative;
  font-size: 18px;
}
.search .page .keywo > p img {
  position: absolute;
  left: 0;
  top: 49%;
  transform: translateY(-50%);
}
.search .page .keywo a {
  font-size: 14px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #666;
  color: #666;
}
.search .page .keywo a:last-child {
  border: none;
}
.search .page .keywo a:hover {
  color: #9c8d56;
}
.search .page .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .page .sear-w input {
  width: 333px;
  height: 35px;
  padding-left: 17px;
  border: none;
  border-radius: 17px;
}
.search .page .sear-w input:focus {
  outline: none;
}
.search .page .sear-w button {
  width: 22px;
  height: 24px;
  color: #fff;
  border: none;
  background: url(../images/sousuo.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  cursor: pointer;
  transition: all 0.1s linear;
}
.search .page .sear-w button:hover {
  background: url(../images/sousuo-h.png);
  transition: all 0.1s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  text-align: center;
}
.wz-bt em {
  font-size: 52px;
  opacity: 0.2;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.wz-bt p {
  font-size: 40px;
  margin-top: -40px;
}
.wz-bt p i {
  font-weight: bold;
  color: #ed2723;
}
.wz-bt span {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}
/* 产品推荐 */
.pro-w {
  padding: 70px 0;
}
.pro-w .page {
  width: auto;
  max-width: 1500px;
}
.pro-w .list {
  margin-top: 50px;
  display: flex;
}
.pro-w .list li {
  width: 25%;
}
.pro-w .list li .top {
  display: flex;
}
.pro-w .list li:last-child {
  width: 50%;
}
.sort-nav {
  width: 100%;
  box-shadow: 2px 2px 10px #eee;
}
.sort-nav .tit {
  width: 100%;
  height: 128px;
  background-color: #ed2723;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sort-nav .tit p {
  font-size: 34px;
  color: #fff;
}
.sort-nav .tit span {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
  text-transform: uppercase;
}
.sort-nav > ul {
  padding: 20px 15px;
}
.sort-nav > ul li {
  width: 100%;
  line-height: 55px;
  background-color: #f5f5f5;
  border-radius: 5px;
  margin-bottom: 20px;
  transition: all 0.3s linear;
  position: relative;
}
.sort-nav > ul li > a {
  width: 100%;
  font-size: 16px;
  padding-left: 45px;
  position: relative;
  transition: all 0.3s linear;
}
.sort-nav > ul li > a::before {
  content: '';
  width: 0;
  height: 0;
  border: 8px solid;
  border-color: transparent transparent transparent #ed2723;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
.sort-nav > ul li .erji {
  position: absolute;
  left: 130%;
  top: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s linear;
  background-color: #fff;
  white-space: nowrap;
}
.sort-nav > ul li .erji > li {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  margin: 0;
}
.sort-nav > ul li .erji > li:last-child {
  border-bottom: none;
}
.sort-nav > ul li .erji > li a {
  padding: 0px 30px;
  color: #666;
  font-size: 16px;
  position: relative;
  padding-left: 48px;
}
.sort-nav > ul li .erji > li a::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #666;
  border: none;
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s linear;
}
.sort-nav > ul li .erji > li:hover > a {
  background: #fff;
  color: #ed2723;
}
.sort-nav > ul li .erji > li:hover > a::before {
  background-color: #ed2723;
}
.sort-nav > ul li:hover > a {
  background-color: #ed2723;
  color: #fff;
}
.sort-nav > ul li:hover > a::before {
  border-color: transparent transparent transparent #fff;
}
.sort-nav > ul li:hover .erji {
  visibility: visible;
  left: 100%;
  opacity: 1;
  z-index: 99;
  transition: all 0.3s linear;
}
.sort-nav > ul li.on {
  background-color: #ed2723;
  transition: all 0.3s linear;
}
.sort-nav > ul li.on a {
  color: #fff;
  transition: all 0.3s linear;
}
.sort-nav > ul li.on a::before {
  border-color: transparent transparent transparent #fff;
  transition: all 0.3s linear;
}
.sort-nav > ul li:hover {
  background-color: #ed2723;
  transition: all 0.3s linear;
}
.sort-nav > ul li:hover a {
  color: #fff;
  transition: all 0.3s linear;
}
.sort-nav > ul li:hover a::before {
  border-color: transparent transparent transparent #fff;
  transition: all 0.3s linear;
}
.sort-nav .hot-line {
  padding: 10px 0 10px 65px;
  background: url(../images/haohan_17.png) no-repeat left center;
}
.sort-nav .hot-line p {
  font-size: 14px;
}
.sort-nav .hot-line span {
  font-family: Arial;
  font-size: 26px;
  color: #9c8d56;
  font-weight: bold;
  white-space: nowrap;
}
/* 横幅 */
.ban-w {
  width: 100%;
  background: url(../images/ban-b.png) no-repeat top center;
}
.ban-w .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 188px;
}
.ban-w .wz-bt {
  text-align: left;
}
.ban-w .wz-bt em {
  color: #fff;
}
.ban-w .wz-bt p {
  color: #fff;
}
.ban-w .wz-bt p i {
  color: #9c8d56;
}
.ban-w .wz-bt .line {
  width: 50px;
  height: 1px;
  background-color: #9c8d56;
  margin: 5px 0 12px 0;
}
.ban-w .wz-bt span {
  color: #fff;
  font-size: 13px;
}
.ban-w ul {
  display: flex;
}
.ban-w ul li {
  width: 208px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.1s linear;
}
.ban-w ul li:last-child {
  margin-right: -46px;
  border: none;
}
.ban-w ul li:hover {
  margin-top: -10px;
  transition: all 0.1s linear;
}
.ban-w ul li i {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/tubiao.png);
  background-position: -2px 0;
}
.ban-w ul li:nth-child(2) i {
  background-position-x: -76px;
}
.ban-w ul li:nth-child(3) i {
  background-position-x: -153px;
}
.ban-w ul li:nth-child(4) i {
  background-position-x: -223px;
}
.ban-w ul li p {
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
  text-transform: uppercase;
}
/* 特征 */
.char {
  padding: 62px 0 104px 0;
}
.char ul {
  display: flex;
}
.char ul li {
  display: flex;
  height: 490px;
  border-right: 1px solid #ababab;
  position: relative;
  overflow: hidden;
}
.char ul li .char-tit {
  width: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}
.char ul li .char-tit * {
  color: #ababab;
}
.char ul li .char-tit .num {
  font-size: 34px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  margin-top: 25px;
}
.char ul li .char-tit .line {
  width: 29px;
  height: 0;
  border-top: 1px solid;
  margin: 10px 0 15px 0;
}
.char ul li .char-tit .text {
  display: flex;
  position: relative;
}
.char ul li .char-tit .text i {
  display: block;
  width: 35px;
  height: 42px;
  background: url(../images/tubiao.png);
  background-position: -12px -157px;
  margin-right: 32px;
}
.char ul li .char-tit .text p {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
  transform: rotateZ(90deg);
  transform-origin: 0 0;
  text-transform: uppercase;
  font-family: Arial;
  position: absolute;
  top: 4px;
  left: 61px;
}
.char ul li .char-tit .text span {
  width: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.char ul li:nth-child(2) .text i {
  background-position-x: -76px;
}
.char ul li:nth-child(3) .text i {
  background-position-x: -143px;
}
.char ul li:nth-child(4) .text i {
  background-position-x: -210px;
}
.char ul li .char-cont {
  width: 516px;
  margin-left: 172px;
}
.char ul li .char-cont .row {
  width: 326px;
  height: 240px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 20px;
}
.char ul li .char-cont .row p {
  font-size: 20px;
  font-weight: bold;
  color: #9c8d56;
  margin-bottom: 10px;
}
.char ul li .char-cont .row i {
  font-size: 14px;
  color: #666;
  line-height: 22px;
}
.char ul li:nth-child(1) .char-cont {
  background: url(../images/char-1.jpg);
}
.char ul li:nth-child(2) .char-cont {
  background: url(../images/char-2.jpg);
}
.char ul li:nth-child(3) .char-cont {
  background: url(../images/char-3.jpg);
}
.char ul li:nth-child(4) .char-cont {
  background: url(../images/char-4.jpg);
}
.char ul .hid {
  width: 172px;
}
.char ul .show {
  background-color: #ed2723;
}
.char ul .show .char-tit * {
  color: #fff;
}
.char ul .show .char-tit .text i {
  background-position-y: -82px;
}
/* 优势 */
.adv {
  background: url(../images/adv-back.jpg) no-repeat top center;
  height: 821px;
  padding-top: 74px;
}
.adv .wz-bt * {
  color: #fff;
}
.adv .advcenter {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
}
.adv .advcon ul {
  background-color: #fff;
  display: flex;
  width: 960px;
  height: 475px;
}
.adv .advcon ul img {
  width: 520px;
}
.adv .advcon ul .text {
  padding: 50px 30px 0 30px;
}
.adv .advcon ul .text span {
  font-size: 24px;
  font-weight: bold;
  color: #ed2723;
  text-transform: uppercase;
}
.adv .advcon ul .text .line {
  width: 50px;
  height: 1px;
  background-color: #9c8d56;
  margin: 20px 0 30px 0;
}
.adv .advcon ul .text i {
  font-size: 14px;
  line-height: 28px;
  color: #666;
}
.adv .advcon ul .text .consult {
  width: 180px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background-color: #ed2723;
  transition: all 0.3s linear;
  margin-top: 30px;
}
.adv .advcon ul .text .consult:hover {
  background-color: #9c8d56;
  transition: all 0.3s linear;
}
.adv .advtab {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.adv .advtab li {
  background-color: #ed2723;
  width: 230px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
.adv .advtab li i {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../images/tubiao.png);
  background-position: -366px -1px;
  margin-right: 10px;
}
.adv .advtab li:nth-child(2) i {
  background-position-y: -75px;
}
.adv .advtab li:nth-child(3) i {
  background-position-y: -151px;
}
.adv .advtab li:nth-child(4) i {
  background-position-y: -224px;
}
.adv .advtab li.on {
  background-color: #9c8d56;
  transition: all 0.3s linear;
}
.adv .advtab li p {
  width: 140px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
/* 企业介绍 */
.intr {
  padding-top: 135px;
}
.intr .box {
  display: flex;
  justify-content: space-between;
}
.intr .box .row p {
  font-size: 50px;
  font-weight: bold;
  position: relative;
}
.intr .box .row p::after {
  content: '';
  width: 250px;
  height: 5px;
  background-color: #9c8d56;
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: -1;
}
.intr .box .row span {
  font-size: 30px;
  color: #ed2723;
  font-weight: bold;
}
.intr .box .row .line {
  width: 45px;
  height: 1px;
  background-color: #9c8d56;
  margin: 14px 0 29px 0;
}
.intr .box .row i {
  display: block;
  width: 505px;
  font-size: 14px;
  color: #666;
  line-height: 30px;
  text-indent: 28px;
  white-space: pre-wrap;
}
.intr .box .row .more {
  width: 175px;
  height: 40px;
  color: #fff;
  text-align: center;
  line-height: 40px;
  background-color: #ed2723;
  font-size: 14px;
  transition: all 0.3s linear;
  margin-top: 42px;
}
.intr .box .row .more:hover {
  background-color: #9c8d56;
  transition: all 0.3s linear;
}
.intr ul {
  margin-top: 56px;
  display: flex;
}
.intr ul li {
  flex: 1;
  height: 150px;
  border: 1px solid #eaeaea;
  transition: all 0.3s linear;
}
.intr ul li * {
  color: #ababab;
  transition: all 0.3s linear;
}
.intr ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intr ul li i {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid;
  background: url(../images/tubiao.png) no-repeat;
  background-position-y: -323px;
}
.intr ul li:nth-child(1) i {
  background-position-x: 10px;
}
.intr ul li:nth-child(2) i {
  background-position-x: -54px;
}
.intr ul li:nth-child(3) i {
  background-position-x: -115px;
}
.intr ul li:nth-child(4) i {
  background-position-x: -184px;
}
.intr ul li p {
  font-size: 18px;
  font-weight: bold;
  margin-top: 8px;
}
.intr ul li:hover {
  background-color: #ed2723;
  transition: all 0.3s linear;
}
.intr ul li:hover * {
  color: #fff;
  transition: all 0.3s linear;
}
.intr ul li:hover i {
  background-position-y: -246px;
}
/* 新闻 */
.news {
  padding: 111px 0 87px 0;
}
.news * {
  transition: all 0.3s linear;
}
.news .news-box {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.news .news-box .left {
  width: 580px;
}
.news .news-box .left img {
  width: 100%;
  border: 1px solid #e2e2e2;
}
.news .news-box .left .text {
  position: relative;
}
.news .news-box .left .text .title {
  font-size: 18px;
  padding: 23px 0;
}
.news .news-box .left .text .date {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-50%);
  width: 130px;
  line-height: 40px;
  background-color: #ababab;
  color: #fff;
  text-align: center;
}
.news .news-box .left .text .content {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  margin-bottom: 30px;
}
.news .news-box .left:hover .title {
  color: #ed2723;
}
.news .news-box .left:hover .date {
  background-color: #ed2723;
}
.news .news-box .right {
  width: 600px;
  display: flex;
  flex-direction: column;
}
.news .news-box .right li {
  flex: 1;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 22px;
}
.news .news-box .right li:last-child {
  border-bottom: none;
  margin: 0;
}
.news .news-box .right li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.news .news-box .right li a .date {
  width: 90px;
  height: 90px;
  background-color: #ababab;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news .news-box .right li a .date p {
  color: #fff;
}
.news .news-box .right li a .date p:first-child {
  font-size: 35px;
}
.news .news-box .right li a .date p:last-child {
  font-size: 14px;
  white-space: nowrap;
}
.news .news-box .right li a .text {
  width: 490px;
}
.news .news-box .right li a .text p {
  font-size: 18px;
}
.news .news-box .right li a .text span {
  font-size: 14px;
  line-height: 26px;
  margin-top: 18px;
}
.news .news-box .right li:hover .title {
  color: #ed2723;
}
.news .news-box .right li:hover .date {
  background-color: #ed2723;
}
.news .prob {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.news .prob .left {
  width: 120px;
}
.news .prob .left p {
  font-size: 24px;
  font-weight: bold;
  margin-top: -8px;
}
.news .prob .left span {
  font-size: 18px;
  color: #666666;
  margin: 2px 0 20px 0;
}
.news .prob .left > div {
  display: flex;
}
.news .prob .left > div > div {
  width: 60px;
  height: 35px;
  background-color: #111;
  display: flex;
}
.news .prob .left > div > div:hover {
  background-color: #ed2723;
}
.news .prob .left > div > div img {
  margin: auto;
}
.news .prob .left > div > div:first-child img {
  transform: rotateZ(180deg);
}
.news .prob .prob-box li {
  width: 490px;
  height: 108px;
  margin-left: 20px;
  box-sizing: content-box;
  border: 1px solid #eaeaea;
  padding: 0 16px;
}
.news .prob .prob-box li p {
  font-size: 16px;
  line-height: 46px;
  padding-left: 37px;
  position: relative;
}
.news .prob .prob-box li p::before {
  content: '\95ee';
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  background-color: #9c8d56;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news .prob .prob-box li:hover p {
  color: #9c8d56;
}
.news .prob .prob-box li span {
  font-size: 14px;
  line-height: 26px;
  padding-left: 37px;
  position: relative;
}
.news .prob .prob-box li span::before {
  content: '\7b54';
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  background-color: #ed2723;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
/* footer */
.footer {
  background-color: #595959;
}
.footer * {
  color: #fff;
}
.footer .f-nav {
  padding: 50px 0;
  display: flex;
  background: url(../images/foot-logo.png) no-repeat 920px 250px;
}
.footer .f-nav ul {
  flex: 1;
}
.footer .f-nav ul h5 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
}
.footer .f-nav ul li {
  font-size: 14px;
  line-height: 2;
}
.footer .copy {
  font-size: 12px;
  height: 60px;
}
/*# sourceMappingURL=./style.css.map */