/*样式初始化及公共样式部分*/
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-style: normal;
  color: #2e2e2e;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  color: #0d4dbb;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1300px;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@font-face {
  font-family: FirstFont;
  src: url(/font/ruizizhenyan.ttf);
}
/* top */
.top-w {
  width: 100%;
  background-color: #e8e8e8;
}
.top-w .page {
  display: flex;
  line-height: 42px;
  font-size: 14px;
  white-space: nowrap;
}
.top-w .page * {
  color: #6b6c6e;
}
.top-w ul {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.top-w ul li {
  padding: 0 10px;
  position: relative;
  cursor: pointer;
}
.top-w ul li::after {
  content: '';
  width: 1px;
  height: 17px;
  background-color: #6b6c6e;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-w ul li:first-child a {
  padding-left: 16px;
  background: url(../images/top.dz.png) no-repeat left center;
}
.top-w ul li:first-child::after {
  display: none;
}
.top-w ul li .down {
  width: 130px;
  height: 0px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  box-shadow: 0 0 5px #ccc;
  transition: all 0.3s linear;
}
.top-w ul li .down img {
  width: 130px;
  height: 130px;
}
.top-w ul li:hover {
  color: #0d4dbb;
}
.top-w ul li:hover .down {
  height: 130px;
  transition: all 0.3s linear;
}
/* header */
.header {
  width: 100%;
}
.header .page {
  display: flex;
  height: 108px;
  align-items: center;
}
.header .logo a {
  height: 70px;
}
.header .logo img {
  height: 100%;
}
.header .hot-line {
  margin: 0 0 0 auto;
  padding-left: 80px;
  background: url(../images/header-phone.png) no-repeat left center;
  line-height: 28px;
}
.header .hot-line p {
  font-size: 20px;
  color: #090909;
  font-weight: bold;
}
.header .hot-line span {
  font-size: 25px;
  color: #0d4dbb;
  font-weight: bold;
}
/* nav */
.nav {
  background-color: #0d4dbb;
}
.nav-list {
  display: flex;
  position: relative;
}
.nav-list > li {
  flex: 1;
  display: flex;
  align-items: center;
  height: 56px;
  position: relative;
  transition: all 0.2s linear;
}
.nav-list > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  color: #fff;
}
.nav-list > li > a p {
  color: #fff;
  padding-left: 28px;
  background: url(../images/nav-ico.png) no-repeat left 2px;
}
.nav-list > li .erji2 {
  position: absolute;
  min-width: 100%;
  z-index: 999;
  top: 100%;
  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;
  position: relative;
  z-index: 999;
}
.nav-list > li .erji2 li a {
  font-size: 16px;
  color: #111;
  line-height: 45px;
  white-space: nowrap;
  display: block;
}
.nav-list > li .erji2 li:hover {
  background-color: #0d4dbb;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 li:hover a {
  color: #fff;
}
.nav-list > li:hover {
  background-color: #2fc472;
  transition: all 0.2s linear;
}
.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;
}
.nav-list .active {
  background-color: #2fc472;
}
/* 幻灯片 */
.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 {
  background: url(../images/search-b.jpg) no-repeat top center;
  box-shadow: 0 0 3px #ccc;
}
.search .page {
  display: flex;
  height: 129px;
  align-items: center;
}
.search .page .text {
  width: 280px;
}
.search .page .text p {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
}
.search .page .text span {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  opacity: 0.35;
}
.search .page .keywo {
  width: 555px;
  padding-left: 30px;
}
.search .page .keywo .tit {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: bold;
}
.search .page .keywo .tit i {
  font-size: 20px;
  color: #2fc472;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 5px;
}
.search .page .keywo .list {
  display: flex;
  flex-wrap: wrap;
}
.search .page .keywo .list a {
  font-size: 14px;
  color: #afafaf;
  margin-right: 15px;
}
.search .page .sear-w {
  margin: 0 0 0 auto;
  display: flex;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid #f3f3f3;
}
.search .page .sear-w form {
  display: flex;
}
.search .page .sear-w input {
  width: 262px;
  height: 42px;
  padding-left: 23px;
  border: none;
}
.search .page .sear-w input:focus {
  outline: none;
}
.search .page .sear-w button {
  width: 40px;
  height: 100%;
  background: url(../images/search-ico.png) no-repeat center center;
  border: none;
  cursor: pointer;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  text-align: center;
}
.wz-bt p {
  font-size: 44px;
  font-family: FirstFont;
  color: #2e2e2e;
  margin: 0 22px;
}
.wz-bt p i {
  color: #0d4dbb;
}
.wz-bt .tit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wz-bt .tit em {
  width: 18px;
  height: 3px;
  background-color: #0d4dbb;
}
.wz-bt .tit dt {
  width: 77px;
  height: 1px;
  background-color: #d1d1d1;
}
.wz-bt span {
  font-size: 18px;
  color: #2e2e2e;
  margin-top: 5px;
}
/* 产品推荐 */
.pro-w {
  background-color: #f5f5f5;
}
.pro-w .page {
  padding: 70px 0 50px 0;
  background: url(../images/pro-b.png) no-repeat top right;
}
.pro-w .procenter {
  display: flex;
  justify-content: space-between;
}
.pro-w .procenter .protab-box {
  width: 260px;
}
.pro-w .procenter .procon-box {
  width: 918px;
}
.pro-w .procenter .procon-box .tit {
  width: 100%;
  height: 92px;
  background: url(../images/pro-tb.png) no-repeat left bottom;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pro-w .procenter .procon-box .tit p {
  font-size: 24px;
  color: #2fc472;
  padding-left: 43px;
  background: url(../images/pro-ti.png) no-repeat left center;
}
.pro-w .procenter .procon-box .tit .more {
  font-size: 16px;
  color: #3b3b3b;
}
.pro-w .procenter .procon-box .tit .more:hover {
  color: #2fc472;
}
.pro-w .procenter .procon-box .procon ul {
  margin-top: 45px;
  padding-left: 24px;
  display: flex;
  flex-wrap: wrap;
}
.pro-w .procenter .procon-box .procon ul li {
  width: 270px;
  margin-right: 42px;
}
.pro-w .procenter .procon-box .procon ul li:nth-child(3n) {
  margin-right: 0;
}
.pro-w .procenter .procon-box .procon ul li * {
  transition: all 0.3s linear;
}
.pro-w .procenter .procon-box .procon ul li .pic {
  overflow: hidden;
  border: 1px solid #aaaaaa;
}
.pro-w .procenter .procon-box .procon ul li p {
  font-size: 16px;
  color: #3b3b3b;
  text-align: center;
  line-height: 50px;
}
.pro-w .procenter .procon-box .procon ul li:hover .pic img {
  transform: scale(1.1);
}
.pro-w .procenter .procon-box .procon ul li:hover p {
  color: #0d4dbb;
}
/* 产品分类 */
.sort-nav {
  width: 100%;
  background-color: #0d4dbb;
  position: relative;
  padding: 0 20px;
  padding-bottom: 25px;
}
.sort-nav * {
  transition: all 0.2s linear;
}
.sort-nav::before {
  content: '';
  width: 26px;
  height: 29px;
  background: url(../images/triangle.png);
  position: absolute;
  top: 0;
  right: 100%;
}
.sort-nav .tit {
  padding: 40px 0 15px 0;
}
.sort-nav .tit p {
  font-size: 35px;
  color: #fff;
  font-weight: bold;
  padding-left: 30px;
}
.sort-nav ul li {
  line-height: 55px;
  border-bottom: 1px solid #d2d2d2;
  padding-left: 30px;
  position: relative;
}
.sort-nav ul li a {
  font-size: 22px;
  color: #fff;
  position: relative;
  z-index: 9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sort-nav ul li::after {
  content: '';
  width: 100%;
  height: 53px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 1px;
  z-index: 0;
  opacity: 0;
  transition: all 0.2s linear;
}
.sort-nav ul li .erji {
  position: absolute;
  left: 130%;
  top: 0;
  z-index: -1;
  opacity: 0;
  width: 100%;
  box-shadow: 0 0 5px #ccc;
  transition: all 0.3s linear;
}
.sort-nav ul li .erji li {
  background-color: #fff;
}
.sort-nav ul li .erji li a {
  color: #666;
  font-size: 18px;
}
.sort-nav ul li .erji li:hover a {
  color: #0d4dbb;
}
.sort-nav ul li:hover::after {
  opacity: 1;
  transition: all 0.2s linear;
}
.sort-nav ul li:hover a {
  color: #2fc472;
}
.sort-nav ul li:hover .erji {
  left: 240px;
  opacity: 1;
  z-index: 99;
  transition: all 0.3s linear;
}
.sort-nav .more {
  overflow: hidden;
}
.sort-nav .more a {
  width: 100%;
  line-height: 55px;
  text-align: center;
  background: #fff;
  border-radius: 6px;
  font-size: 25px;
  color: #1e1e1e;
  margin-top: 25px;
}
.sort-nav .more a:hover {
  background: #2fc472;
  color: #fff;
}
/* 企业介绍 */
.intr {
  padding: 40px 0 50px 0;
}
.intr .box {
  display: flex;
  justify-content: space-between;
}
.intr .box .pic {
  margin-top: 20px;
}
.intr .box .pic img {
  width: 582px;
}
.intr .box .row {
  width: 530px;
}
.intr .box .row p {
  font-size: 26px;
  text-transform: uppercase;
  color: #999999;
}
.intr .box .row span {
  font-size: 24px;
  color: #0d4dbb;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
.intr .box .row span::after {
  content: '';
  width: 96px;
  height: 4px;
  background-color: #0d4dbb;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.intr .box .row i {
  display: block;
  margin-top: 30px;
  line-height: 32px;
  text-indent: 28px;
  white-space: pre-wrap;
  font-size: 16px;
  color: #666666;
}
.intr .box .row .more {
  width: 130px;
  line-height: 37px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #2fc472;
  color: #2fc472;
  margin-top: 30px;
  transition: all 0.2s linear;
}
.intr .box .row .more:hover {
  background-color: #0d4dbb;
  border-color: #0d4dbb;
  color: #fff;
  transition: all 0.2s linear;
}
.hengfu {
  width: 100%;
  height: 342px;
  background: url(../images/hengfu.png) no-repeat top center;
}
.hengfu .box {
  width: 565px;
  position: absolute;
  top: 0;
  right: 0;
}
.hengfu p {
  font-size: 18px;
  color: #fff;
  padding-left: 145px;
  margin-top: 231px;
}
.hengfu p i {
  font-size: 24px;
  color: #fff;
}
.hengfu a {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
.hengfu a:hover {
  color: #2fc472;
}
/* 优势 */
.adv {
  padding: 100px 0 60px 0;
  margin-top: -40px;
  height: 1500px;
  background: url(../images/adv-b.png) no-repeat top center;
}
.adv li {
  width: 670px;
}
.adv li .tit {
  display: flex;
  line-height: 68px;
  position: relative;
  margin-bottom: 20px;
}
.adv li .tit .num {
  width: 78px;
  padding-left: 14px;
  font-size: 35px;
  font-weight: bold;
  background: url(../images/adv-ti.png) no-repeat center center;
  color: #fff;
}
.adv li .tit P {
  font-size: 32px;
  font-weight: bold;
  margin-left: 20px;
}
.adv li .tit P i {
  color: #0d4dbb;
}
.adv li .tit::after {
  content: '';
  width: 544px;
  height: 1px;
  background-color: #b7b7b7;
  position: absolute;
  left: 92px;
  bottom: -20px;
}
.adv li .text {
  padding-left: 92px;
  padding-top: 25px;
  background: url(../images/adv-ci.png) no-repeat 46px 27px;
}
.adv li .text P {
  font-size: 18px;
  line-height: 27px;
}
.adv li:nth-child(1) {
  margin-top: 99px;
}
.adv li:nth-child(2) {
  margin: 106px 0 0 auto;
}
.adv li:nth-child(3) {
  margin-top: 93px;
}
.workshop {
  margin-top: -195px;
  padding-bottom: 65px;
}
.workshop .workshop-con {
  margin-top: 35px;
  position: relative;
}
.workshop .workshop-con .workshop-list {
  overflow: hidden;
}
.workshop .workshop-con li {
  position: relative;
  width: 380px;
  margin-right: 30px;
}
.workshop .workshop-con li img {
  width: 100%;
}
.workshop .workshop-con li p {
  width: 100%;
  height: 0;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}
.workshop .workshop-con li:hover p {
  height: 45px;
  transition: all 0.3s linear;
}
.workshop .workshop-con .prev,
.workshop .workshop-con .next {
  width: 33px;
  height: 83px;
  background: url(../images/workshop-arrow.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.workshop .workshop-con .prev {
  left: -55px;
}
.workshop .workshop-con .next {
  right: -55px;
  transform: scaleX(-1) translateY(-50%);
}
/* 流程 */
.process {
  width: 100%;
  height: 426px;
  background-color: #0d4dbb;
  padding-top: 40px;
}
.process .wz-bt * {
  color: #fff;
}
.process .wz-bt em {
  background-color: #fff;
}
.process .wz-bt span {
  text-transform: uppercase;
}
.process .list {
  margin-top: 33px;
  display: flex;
  justify-content: space-between;
}
.process .list * {
  transition: all 0.2s linear;
}
.process .list li .icon {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  display: flex;
  background-color: rgba(255, 255, 255, 0.28);
}
.process .list li .icon i {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: #fff;
  margin: auto;
  display: flex;
}
.process .list li em {
  margin: auto;
  width: 62px;
  height: 56px;
  background: url(../images/process-ico.png);
  background-position-y: -36px;
}
.process .list li:nth-child(1) em {
  background-position-x: 10px;
}
.process .list li:nth-child(2) em {
  background-position-x: -90px;
}
.process .list li:nth-child(3) em {
  background-position-x: -192px;
}
.process .list li:nth-child(4) em {
  background-position-x: -296px;
}
.process .list li:nth-child(5) em {
  background-position-x: -397px;
}
.process .list li:nth-child(6) em {
  background-position-x: -499px;
}
.process .list li:nth-child(7) em {
  background-position-x: -595px;
}
.process .list li:hover .icon {
  background-color: #fff;
}
.process .list li:hover i {
  background-color: #0d4dbb;
}
.process .list li:hover em {
  background-position-y: -144px;
}
.process .list li p {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #fff;
}
.process .consult {
  margin: 0 auto;
  margin-top: 28px;
  width: 157px;
  height: 39px;
  line-height: 39px;
  padding-left: 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  background: url(../images/process-arrow.png) no-repeat 97px center;
  transition: all 0.2s linear;
}
.process .consult:hover {
  background-color: #2fc472;
  border-color: #2fc472;
  background-position-x: 110px;
  transition: all 0.2s linear;
}
/* 案例 */
.case {
  padding: 40px 0 20px 0;
}
.case .list {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.case .list li {
  width: 363px;
}
.case .list li .pic {
  overflow: hidden;
}
.case .list li img {
  width: 100%;
  transition: all 0.3s linear;
}
.case .list li p {
  font-size: 18px;
  margin: 15px 0 13px 0;
  color: #2e2e2e;
}
.case .list li span {
  font-size: 14px;
  color: #4f4f4f;
  line-height: 23px;
}
.case .list li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.case .list li:hover p {
  color: #0d4dbb;
}
.case .more {
  width: 118px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  background-color: #0d4dbb;
  color: #fff;
  font-size: 14px;
  margin: 0 auto;
  margin-top: 45px;
  transition: all 0.2s linear;
}
.case .more:hover {
  background-color: #2fc472;
  transition: all 0.2s linear;
}
/* 新闻 */
.news-w {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  height: 696px;
  margin-bottom: -11px;
  background: url(../images/news-b.png) no-repeat bottom center;
  position: relative;
  overflow: hidden;
}
.news-w .top-tit {
  margin-top: 90px;
}
.news-w .top-tit p {
  font-size: 50px;
  font-weight: bold;
  color: #2fc472;
}
.news-w .top-tit span {
  font-size: 14px;
  font-weight: bold;
  color: #2fc472;
}
.news-w .tit-l {
  margin-top: 165px;
}
.news-w .tit-l .n-tit p {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
.news-w .tit-l .n-tit span {
  width: 240px;
  font-size: 15px;
  color: #fff;
  opacity: 0.53;
  line-height: 50px;
  border-bottom: 2px solid #2fc472;
}
.news-w .tit-l .n-tit * {
  transition: all 0.1s linear;
}
.news-w .tit-l .n-tit:hover p {
  color: #2fc472;
}
.news-w .tit-l .n-tit:hover span {
  opacity: 1;
}
.news-w .tit-l ul {
  display: flex;
  margin-top: 20px;
}
.news-w .tit-l ul li {
  margin-right: 44px;
}
.news-w .tit-l ul li a {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  opacity: 0.63;
  line-height: 40px;
  transition: all 0.1s linear;
}
.news-w .tit-l ul li:hover a {
  opacity: 1;
  border-bottom: 2px solid #fff;
  transition: all 0.1s linear;
}
.news-w .news-center {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-310px);
}
.news-w .news-center .n-list .tempWrap {
  padding-left: 10px;
}
.news-w .news-center .n-list li {
  margin-top: 30px;
  width: 365px;
  height: 486px;
  background-color: #fff;
  box-shadow: 0 0 5px #f1f1f1;
  margin-right: 16px;
}
.news-w .news-center .n-list li .row {
  width: 100%;
  height: 100%;
  padding: 31px 21px;
}
.news-w .news-center .n-list li .row .date {
  font-size: 25px;
  color: #a5a5a5;
}
.news-w .news-center .n-list li .row .date i {
  font-size: 18px;
  margin-left: 10px;
  color: #a5a5a5;
}
.news-w .news-center .n-list li .row p {
  font-size: 16px;
  font-weight: 600;
  color: #242424;
  margin: 16px 0 13px 0;
}
.news-w .news-center .n-list li .row span {
  font-size: 14px;
  color: #a5a5a5;
  line-height: 24px;
}
.news-w .news-center .n-list li .row img {
  width: 323px;
  height: 210px;
  border: 1px solid #bfbfbf;
  margin-top: 18px;
}
.news-w .news-center .n-list li .row a {
  width: 140px;
  line-height: 40px;
  text-align: center;
  font-size: 25px;
  color: #818181;
  background-color: #ebebeb;
  margin-top: 20px;
  transition: all 0.2s linear;
}
.news-w .news-center .n-list li .row a:hover {
  background-color: #0d4dbb;
  color: #fff;
  transition: all 0.2s linear;
}
.news-w .news-center .btn {
  display: flex;
  padding-left: 10px;
  margin-top: 25px;
}
.news-w .news-center .prev,
.news-w .news-center .next {
  width: 40px;
  height: 40px;
  background: url(../images/news-arrow.png);
  opacity: 0.53;
  cursor: pointer;
  transition: all 0.2s linear;
}
.news-w .news-center .prev:hover,
.news-w .news-center .next:hover {
  opacity: 1;
  transition: all 0.2s linear;
}
.news-w .news-center .prev {
  margin-right: 6px;
}
.news-w .news-center .next {
  transform: scaleX(-1);
}
.footer {
  border-top: 11px solid #0d4dbb;
}
.footer .page {
  padding: 90px 0 44px 0;
  display: flex;
}
.footer .left {
  width: 325px;
  padding-right: 20px;
}
.footer .left h2 {
  font-size: 23px;
  font-weight: bold;
  color: #0d4dbb;
}
.footer .left ul {
  margin-top: 15px;
}
.footer .left ul * {
  font-size: 15px;
  line-height: 30px;
  color: #696969;
  letter-spacing: -1px;
}
.footer .left ul a {
  display: inline;
}
.footer .left ul a:hover {
  color: #0d4dbb;
}
.footer .left .weix-pic {
  width: 129px;
  margin-top: 45px;
}
.footer .left .weix-pic img {
  width: 100%;
}
.footer .left .weix-pic p {
  margin-top: 10px;
  color: #a8a8a8;
  text-align: center;
  font-size: 14px;
}
.footer .right {
  width: 875px;
}
.footer .right .mess {
  width: 100%;
  height: 268px;
  border-left: 2px solid #eee;
  margin-top: 10px;
  padding-left: 87px;
  padding-top: 22px;
}
.footer .right .mess * {
  border: none;
}
.footer .right .mess *:focus {
  outline: none;
}
.footer .right .mess .row {
  display: flex;
  justify-content: space-between;
}
.footer .right .mess .row input {
  width: 230px;
  line-height: 45px;
  color: #696969;
  font-size: 15px;
  border-bottom: 2px solid #eee;
}
.footer .right .mess textarea {
  resize: none;
  width: 100%;
  height: 100px;
  line-height: 25px;
  color: #696969;
  font-size: 15px;
  border-bottom: 2px solid #eee;
  margin-top: 20px;
}
.footer .right .mess .submit {
  margin: 33px 0 0 auto;
  width: 300px;
}
.footer .right .mess .submit button {
  width: 300px;
  line-height: 42px;
  text-align: center;
  background-color: #2fc472;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}
.footer .right .f-nav {
  width: 100%;
  margin-top: 80px;
}
.footer .right .f-nav ul {
  display: flex;
  justify-content: space-between;
  padding-left: 22px;
}
.footer .right .f-nav ul li a {
  font-size: 17px;
  font-weight: bold;
  color: #696969;
}
.footer .right .f-nav ul li a:hover {
  color: #0d4dbb;
}
.footer .right .to-top {
  margin: 50px 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: url(../images/totop-ico.png) no-repeat top center;
}
.footer .right .to-top:hover {
  background-position-y: bottom;
}
.links {
  width: 100%;
  background-color: #0d4dbb;
  white-space: nowrap;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .text {
  display: flex;
  height: 80px;
  align-items: center;
}
.links .text p {
  padding-left: 35px;
  font-size: 18px;
}
.links .text p img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.links .text ul {
  display: flex;
  flex-wrap: wrap;
}
.links .text ul li {
  margin-right: 15px;
}
.links .text ul li a {
  font-size: 16px;
}
.links .text .ask {
  font-size: 14px;
  margin: 0 0 0 auto;
}
/* 内页 */
/* 产品中心 */
.pro-page {
  width: 100%;
  margin-top: 40px;
}
.pro-page .page {
  display: flex;
  justify-content: space-between;
}
.pro-page .page .page-left {
  width: 260px;
}
.com-info {
  margin: 40px 0;
  box-shadow: 2px 2px 15px #eee;
  padding-bottom: 20px;
}
.com-info .tit {
  width: 100%;
  height: 100px;
  background-color: #0d4dbb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.com-info .tit p {
  font-size: 35px;
  color: #fff;
}
.com-info li {
  display: flex;
  line-height: 40px;
  padding: 0 20px;
}
.com-info li:first-of-type {
  margin-top: 20px;
}
.com-info li span {
  color: #555;
  font-size: 15px;
}
.com-info li img {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 8px;
}
.pro-rec {
  margin: 40px 0;
  box-shadow: 2px 2px 15px #eee;
  padding-bottom: 20px;
}
.pro-rec .tit {
  width: 100%;
  height: 100px;
  background-color: #0d4dbb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.pro-rec .tit p {
  font-size: 35px;
  color: #fff;
}
.pro-rec .rec-list li {
  margin: 15px;
  height: 270px !important;
}
.pro-rec .rec-list li .pic {
  border: 1px solid #bcbcbc;
}
.pro-rec .rec-list li p {
  font-size: 16px;
  text-align: center;
  line-height: 45px;
  color: #2e2e2e;
}
.pro-rec .tempWrap {
  height: 580px !important;
}
.page-right {
  width: 900px;
}
.page-right a {
  display: inline;
}
.page-right .pro-row {
  width: 100%;
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
.page-right .pro-row li {
  width: 32%;
  margin-bottom: 18px;
  margin-right: 2%;
  transition: all 0.2s linear;
}
.page-right .pro-row li:nth-child(3n) {
  margin-right: 0;
}
.page-right .pro-row li .pic {
  width: 100%;
  border: 1px solid #aaaaaa;
  overflow: hidden;
}
.page-right .pro-row li .pic img {
  width: 100%;
  transition: all 0.3s linear;
}
.page-right .pro-row li .pic img:hover {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.page-right .pro-row li p {
  line-height: 50px;
  text-align: center;
  transition: all 0.2s linear;
}
.page-right .pro-row li:hover {
  background-color: #0d4dbb;
  transition: all 0.2s linear;
}
.page-right .pro-row li:hover p {
  color: #fff;
  transition: all 0.2s linear;
}
.MagicThumb {
  cursor: url(../images/magnifier.png), crosshair;
}
.MagicThumb-container {
  cursor: url(../images/zoomOut.png), pointer;
}
.pro-detail {
  width: 100%;
}
.pro-detail img {
  max-width: none;
}
.pro-detail .row .picFocus {
  display: flex;
  justify-content: space-between;
}
.pro-detail .row .picFocus .bd ul {
  position: relative;
}
.pro-detail .row .picFocus .bd img {
  width: 400px;
  border: 1px solid #cccccc;
}
.pro-detail .row .picFocus .hd ul {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}
.pro-detail .row .picFocus .hd ul li {
  width: 88px;
  border: 1px solid #fff;
  padding: 1px;
  box-sizing: content-box;
  margin: 0 4px 4px 0;
  cursor: pointer;
}
.pro-detail .row .picFocus .hd ul li img {
  width: 100%;
}
.pro-detail .row .picFocus .hd ul li:nth-child(4n) {
  margin-right: 0;
}
.pro-detail .row .picFocus .hd ul .on {
  border-color: #ccc;
}
.pro-detail .row .right {
  width: 440px;
}
.pro-detail .row .right .tit {
  font-size: 24px;
  font-weight: bold;
  margin-top: 5px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ccc;
}
.pro-detail .row .right .describe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #e6e6e6;
}
.pro-detail .row .right .describe span {
  width: 100%;
  padding: 10px 0;
  font-size: 16px;
  color: #666;
  line-height: 30px;
  white-space: pre-wrap;
}
.pro-detail .row .right .describe img {
  max-width: 100%;
}
.pro-detail .row .right .describe .code {
  margin: 25px 0 20px 0;
}
.pro-detail .row .right .describe .code img {
  width: 160px;
}
.pro-detail .row .right .describe .code em {
  display: block;
  text-align: center;
  font-size: 15px;
  color: #999;
  margin-top: 10px;
}
.pro-detail .row .right .phone {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
}
.pro-detail .row .right .phone .text {
  padding-left: 55px;
  background: url(../images/pro-rp.png) no-repeat left center;
}
.pro-detail .row .right .phone .text p {
  font-size: 14px;
  color: #444;
}
.pro-detail .row .right .phone .text span {
  font-size: 24px;
  color: #333;
}
.pro-detail .row .right .phone .zx {
  width: 100px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #2fc472;
}
.pro-detail-pic {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pro-detail-pic img {
  width: 400px;
}
.pro-detail-pic p {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
}
.pro-detail .pro-next {
  display: flex;
  margin: 20px auto;
  justify-content: center;
  font-size: 14px;
  color: #333;
}
.pro-detail .pro-next a {
  padding: 8px 22px;
  border: 1px #eee solid;
  background: #f8f8f8;
}
.pro-detail .pro-next a:first-child {
  margin-right: 10px;
}
.pro-detail h5 {
  line-height: 50px;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.pro-detail h5 i {
  display: block;
  width: 22px;
  height: 16px;
  background: url(../images/详情.png) no-repeat;
  background-size: 100%;
  margin: 4px 8px 0 0;
}
.pro-detail-content {
  width: 100%;
  line-height: 28px;
  color: #666;
  font-size: 16px;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
.pro-detail-content p {
  color: #666;
  font-size: 16px;
}
.pro-detail-content img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
/* 新闻 */
.new-row {
  width: 100%;
}
.new-row li {
  transition: all 0.3s linear;
  padding: 25px 20px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}
.new-row li * {
  transition: all 0.3s linear;
}
.new-row li a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.new-row li a .pic {
  width: 220px;
}
.new-row li a .text {
  width: 610px;
}
.new-row li a .text p {
  margin-top: 5px;
  font-size: 18px;
}
.new-row li a .text span {
  font-size: 12px;
  line-height: 28px;
  margin-top: 12px;
  color: #666;
}
.new-row li a .text .date {
  margin-top: 12px;
  display: flex;
  font-size: 13px;
  color: #999;
}
.new-row li:hover {
  border-color: #fff;
  box-shadow: 2px 2px 30px #ccc;
}
.new-row li:hover .text .title {
  color: #0d4dbb;
}
.news-row {
  width: 100%;
  padding: 0 10px;
  text-align: justify;
}
.news-row .news-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
.news-row .news-data {
  text-align: center;
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  line-height: 35px;
}
.news-row .news-content {
  font-size: 16px;
  color: #666;
  line-height: 40px;
  text-indent: 28px;
}
.news-row .news-content p {
  color: #666;
}
.news-row .news-next {
  font-size: 16px;
  color: #333;
  margin: 30px 0;
  line-height: 30px;
}
.news-row .news-next a {
  color: #666;
}
/* 关于我们 */
.about-row {
  line-height: 40px;
  text-align: justify;
  font-size: 18px;
  color: #555;
  padding: 0 20px;
}
.about-row p {
  color: #555;
}
/* 留言 */
.lea-mess h2 {
  text-align: center;
  margin-top: 40px;
  font-size: 40px;
}
.lea-mess .page {
  display: flex;
  justify-content: center;
  margin: 50px auto;
}
.mess-left {
  width: 440px;
  height: 370px;
  margin-right: 80px;
  padding: 80px;
  background-color: #f2f2f2;
}
.mess-left p {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
.mess-left span {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  display: block;
  margin-top: 50px;
}
.mess-left span:last-of-type {
  font-size: 16px;
  word-spacing: 2px;
}
.mess-right {
  width: 500px;
  border-radius: 3px;
}
.mess-right label {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  display: block;
}
.mess-right input,
.mess-right textarea {
  width: 100%;
  line-height: 38px;
  margin-bottom: 15px;
  padding-left: 5px;
}
.v-code > div {
  display: flex;
}
.v-code input {
  width: 30%;
  margin-right: 20px;
  border-radius: 1px;
}
.mess-submit button {
  width: 100%;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  background-color: #181818;
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
}
/* 其他 */
.position {
  padding-left: 45px;
  height: 50px;
  line-height: 50px;
  background: url(../images/ico9-1.png) no-repeat 5px center;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  display: flex;
  color: #666;
}
.position p {
  color: #111111;
}
.position a {
  color: #666;
  margin: 0 5px;
}
.position a:hover {
  text-decoration: underline #666;
}
.page-num-w {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 20px 0 30px 0;
}
.page-num-w a {
  border: 1px solid #eee;
  height: 34px;
  display: flex;
  align-items: center;
  margin: 0 5px;
  padding: 0 20px;
  border-radius: 17px;
}
.page-num-current {
  background-color: #0d4dbb;
  border-color: #0d4dbb;
  color: #fff;
}
.page-num-current:hover {
  color: #fff;
}
.banner2 {
  background-color: #f7f7f7;
  position: relative;
  margin: 0 auto;
}
.banner2 img {
  width: 100%;
  display: block;
}
.banner2 .page {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner2 .page ul {
  display: flex;
}
.banner2 .page ul li {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 4px;
  color: #0d4dbb;
  animation: nbanA 2s infinite;
}
.banner2 .page ul li:nth-child(1) {
  animation-delay: 0.2s;
}
.banner2 .page ul li:nth-child(2) {
  animation-delay: 0.4s;
}
.banner2 .page ul li:nth-child(3) {
  animation-delay: 0.6s;
}
.banner2 .page ul li:nth-child(4) {
  animation-delay: 0.8s;
}
.banner2 .page p {
  font-size: 22px;
  margin-top: 20px;
}
.banner2 .about ul li {
  color: #fff;
}
.banner2 .about p {
  color: #fff;
}
@keyframes nbanA {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
