/*样式初始化及公共样式部分*/
* {
  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: #006fc0;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1360px;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 1300px;
  margin: 0 auto;
  position: relative;
}
/* top */
.top-w {
  width: 100%;
  background-color: #006fc0;
}
.top-w * {
  color: #f1f1f1;
}
.top-w a:hover {
  color: #fff;
  text-decoration: underline;
}
.top-w .page {
  width: 94%;
  min-width: 1300px;
  max-width: 1680px;
  height: 50px;
  display: flex;
  line-height: 50px;
  font-size: 14px;
  white-space: nowrap;
}
.top-w .page .text {
  padding-left: 30px;
  background: url(../images/top-tb.png) no-repeat left center;
}
.top-w .right {
  margin: 0 0 0 auto;
  display: flex;
}
.top-w .right ul {
  display: flex;
  margin-right: 10px;
}
.top-w .right ul li {
  margin-right: 20px;
  position: relative;
}
.top-w .right ul .wx {
  padding-left: 28px;
  background: url(../images/top-wx.png) no-repeat left center;
  cursor: default;
  padding-left: 32px;
}
.top-w .right ul .wx .pic {
  width: 150px;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  box-shadow: 0px 0px 5px #ccc;
  transition: all 0.3s linear;
}
.top-w .right ul .wx .pic img {
  width: 150px;
  border: 5px solid #fff;
}
.top-w .right ul .wx:hover .pic {
  height: 150px;
  transition: all 0.3s linear;
}
.top-w .right p {
  padding-left: 28px;
  background: url(../images/top-phone.png) no-repeat left center;
}
.top-w .right p i {
  color: #ffbd22;
  font-size: 20px;
}
/* header */
.header {
  width: 100%;
}
.header .page {
  width: 94%;
  min-width: 1300px;
  max-width: 1680px;
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.header .logo {
  display: flex;
}
.header .logo img {
  height: 66px;
}
.header .logo .text {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #d1d1d1;
}
.header .logo .text p {
  font-size: 26px;
  font-weight: bold;
  color: #006fc0;
  line-height: 1;
}
.header .logo .text p:first-child {
  border-bottom: 1px solid #ccc;
  padding-bottom: 7px;
  margin-bottom: 7px;
  letter-spacing: 4px;
}
@media screen and (max-width: 1500px) {
  .header .logo img {
    height: 55px;
  }
  .header .logo .text p {
    font-size: 24px;
  }
  .header .logo .text span {
    font-size: 18px;
  }
}
/* nav */
.nav {
  width: 50%;
}
.nav-list {
  display: flex;
  position: relative;
}
.nav-list > li {
  flex: 1;
  display: flex;
  height: 130px;
  align-items: center;
  position: relative;
}
.nav-list > li > a {
  width: 100%;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  position: relative;
  color: #111;
}
.nav-list > li .erji2 {
  background-color: #f9f9f9;
  border: 5px solid #fff;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 999;
  padding: 30px 40px;
  display: flex;
  white-space: nowrap;
  opacity: 0;
  transform: scale(0);
  transform-origin: 0 0;
  transition: all 0.3s linear;
}
.nav-list > li .erji2 .tit {
  margin-bottom: 10px;
}
.nav-list > li .erji2 .tit .line {
  width: 40px;
  height: 3px;
  background-color: #006fc0;
}
.nav-list > li .erji2 .tit p {
  font-size: 20px;
  margin-top: 20px;
  cursor: default;
}
.nav-list > li .erji2 .tit a {
  display: block;
  width: 150px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #cecece;
  text-transform: uppercase;
  font-size: 12px;
  font-family: Arial;
  color: #999;
  margin-top: 30px;
}
.nav-list > li .erji2 .tit a:hover {
  background-color: #fff;
  color: #333;
  box-shadow: 0px 0px 2px #ccc;
}
.nav-list > li .erji2 ul {
  margin-left: 50px;
  margin-right: 10px;
}
.nav-list > li .erji2 ul li a {
  line-height: 40px;
  font-size: 15px;
  color: #333;
}
.nav-list > li .erji2 ul li:hover a {
  color: #006fc0;
}
.nav-list > li:hover a {
  color: #fff;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s linear;
}
.nav-list .active a {
  color: #fff;
}
.nav-list .block {
  background-color: #006fc0;
  height: 40px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
/* 幻灯片 */
.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%;
  border-bottom: 1px solid #e8e8e8;
  background-color: #f7f7f7;
}
.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: 16px;
  margin-right: 10px;
  padding-right: 10px;
  color: #666;
}
.search .page .keywo a:last-child {
  border: none;
}
.search .page .keywo a:hover {
  color: #006fc0;
}
.search .page .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .page .sear-w input {
  width: 200px;
  height: 40px;
  padding-left: 15px;
  border: 1px solid #e8e8e8;
}
.search .page .sear-w input:focus {
  outline: none;
}
.search .page .sear-w button {
  width: 80px;
  height: 40px;
  color: #fff;
  background: #006fc0;
  border: none;
  cursor: pointer;
  transition: all 0.1s linear;
}
.search .page .sear-w button:hover {
  background: #ffbd22;
  transition: all 0.1s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt p {
  font-size: 40px;
  font-weight: bold;
  position: relative;
}
.wz-bt p i {
  font-weight: bold;
  color: #006fc0;
}
.wz-bt p::before,
.wz-bt p::after {
  content: '';
  width: 29px;
  height: 22px;
  background: url(../images/tit-ic.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.wz-bt p::before {
  left: -66px;
}
.wz-bt p::after {
  right: -66px;
  transform: translateY(-50%) scale(-1);
}
.wz-bt span {
  font-size: 1.125rem;
  line-height: 32px;
  margin-top: 10px;
  color: #999;
}
/* 特征 */
.char-w {
  padding: 60px 0;
}
.char-w .list {
  margin-top: 40px;
  display: flex;
}
.char-w .list li {
  flex: 1;
  border-right: 1px solid #eee;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.char-w .list li:last-child {
  border: none;
}
.char-w .list li i {
  display: block;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid #000;
  background: url(../images/char-tb.png) no-repeat;
  background-position-x: 2px;
}
.char-w .list li:nth-child(1) i {
  background-position-y: 22px;
}
.char-w .list li:nth-child(2) i {
  background-position-y: -90px;
}
.char-w .list li:nth-child(3) i {
  background-position-y: -214px;
}
.char-w .list li:nth-child(4) i {
  background-position-y: -321px;
}
.char-w .list li p {
  font-size: 20px;
  font-weight: bold;
  margin-top: 35px;
  margin-bottom: 30px;
  border: 1px solid #111;
  width: 130px;
  line-height: 40px;
  text-align: center;
}
.char-w .list li span {
  font-size: 16px;
  color: #666;
}
.char-w .list li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: -1;
}
.char-w .list li:hover {
  border-color: #fff;
}
.char-w .list li:hover i {
  border-color: #006fc0;
  background-image: url(../images/char-tb1.png);
  transition: all 0.7s linear;
}
.char-w .list li:hover p {
  color: #006fc0;
  border-color: #006fc0;
  transition: all 0.7s linear;
}
.char-w .list li:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(360deg);
  transition: all 0.7s ease;
}
/* 产品推荐 */
.pro-w {
  width: 100%;
  padding: 82px 0 80px 0;
  background: url(../images/pro-b.jpg);
}
.pro-w .protab-box {
  margin-top: 40px;
}
.pro-w .protab-box ul {
  display: flex;
  background-color: #eee;
}
.pro-w .protab-box ul * {
  font-size: 16px;
}
.pro-w .protab-box ul a {
  width: 100%;
  line-height: 80px;
  text-align: center;
}
.pro-w .protab-box ul .protab {
  display: flex;
  flex: 5;
}
.pro-w .protab-box ul .protab li {
  flex: 1;
  border-right: 1px solid #fff;
}
.pro-w .protab-box ul .protab li.on a {
  background-color: #006fc0;
  color: #fff;
}
.pro-w .protab-box ul .more {
  flex: 1;
  background-color: #006fc0;
}
.pro-w .protab-box ul .more a {
  color: #fff;
}
.pro-w .procon-box .procon ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.pro-w .procon-box .procon ul li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 26px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
}
.pro-w .procon-box .procon ul li:nth-child(3n) {
  margin-right: 0;
}
.pro-w .procon-box .procon ul li a {
  width: 100%;
  height: 100%;
}
.pro-w .procon-box .procon ul li .pic {
  position: relative;
}
.pro-w .procon-box .procon ul li .pic::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s linear;
  z-index: 1;
}
.pro-w .procon-box .procon ul li .pic::after {
  content: '+';
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  line-height: 60px;
  text-align: center;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s linear;
  z-index: 2;
}
.pro-w .procon-box .procon ul li .text {
  width: 100%;
  line-height: 60px;
  text-align: center;
  border-top: 1px solid #eee;
  position: relative;
}
.pro-w .procon-box .procon ul li .text::after {
  content: '';
  width: 0;
  height: 100%;
  background-color: #006fc0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  transition: all 0.3s linear;
}
.pro-w .procon-box .procon ul li .text p {
  position: relative;
  z-index: 1;
  transition: all 0.3s linear;
}
.pro-w .procon-box .procon ul li:hover .pic::before {
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
.pro-w .procon-box .procon ul li:hover .pic::after {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s linear;
}
.pro-w .procon-box .procon ul li:hover .text p {
  color: #fff;
  transition: all 0.3s linear;
}
.pro-w .procon-box .procon ul li:hover .text::after {
  width: 100%;
  transition: all 0.3s linear;
}
/* 优势 */
.adv {
  padding: 80px 0 95px 0;
  background: url(../images/adv-bg.jpg) no-repeat top center;
}
.adv .wz-bt * {
  color: #fff;
}
.adv .advcenter {
  margin-top: 45px;
}
.adv .advtab {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
}
.adv .advtab * {
  transition: all 0.3s linear;
}
.adv .advtab li {
  flex: 1;
  background-color: #fff;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: default;
  margin-right: 10px;
}
.adv .advtab li:last-child {
  margin-right: 0;
}
.adv .advtab li i {
  display: block;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.85);
  margin-right: 20px;
  background-image: url(../images/tubiao1.png);
  background-position-y: -226px;
}
.adv .advtab li:nth-child(1) i {
  background-position-x: 12px;
}
.adv .advtab li:nth-child(3) i {
  background-position-x: -83px;
}
.adv .advtab li:nth-child(2) i {
  background-position-x: -183px;
}
.adv .advtab li:nth-child(4) i {
  background-position-x: -288px;
}
.adv .advtab li p {
  font-size: 30px;
  color: #333;
  font-weight: bold;
}
.adv .advtab li span {
  font-size: 14px;
  color: #777;
}
.adv .advtab li:last-child {
  margin: 0;
}
.adv .advtab li.on {
  background-color: #006fc0;
}
.adv .advtab li.on * {
  color: #fff;
}
.adv .advtab li.on i {
  background-color: #fff;
  background-position-y: -148px;
}
.adv .advcon ul {
  position: relative;
}
.adv .advcon ul .text {
  width: 100%;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.85);
  position: absolute;
  left: 0;
  bottom: 0;
}
.adv .advcon ul .text p {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}
.adv .advcon ul .text span {
  font-size: 16px;
  line-height: 35px;
  color: #fff;
}
.hengfu {
  width: 100%;
  background-color: #006fc0;
}
.hengfu .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hengfu .page * {
  color: #fff;
  display: block;
}
.hengfu .page .info {
  padding: 55px 0 40px 0;
}
.hengfu .page .info p {
  font-size: 24px;
}
.hengfu .page .info span {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
}
.hengfu .page .info i {
  font-size: 14px;
  margin-top: 31px;
  padding-left: 25px;
  background: url(../images/dz-p.png) no-repeat left center;
}
.hengfu .page .info em {
  font-size: 28px;
}
.hengfu .page ul {
  display: flex;
  width: 57.24%;
  margin-right: -30px;
}
.hengfu .page ul li {
  flex: 1;
  cursor: pointer;
  height: 81px;
  border-left: 1px solid #fff;
  position: relative;
  text-align: center;
}
.hengfu .page ul li .dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: #ffbd22;
  top: 100%;
  left: -7px;
  border: 2px solid #fff;
}
.hengfu .page ul li .dot::after {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  left: -6px;
  top: -6px;
  box-sizing: content-box;
  border: 4px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.3s linear;
}
.hengfu .page ul li i {
  width: 50px;
  height: 35px;
  margin: 0 auto;
  background: url(../images/adv-i.png);
  background-position-y: -19px;
  transition: all 0.3s linear;
}
.hengfu .page ul li:nth-child(1) i {
  background-position-x: -23px;
}
.hengfu .page ul li:nth-child(2) i {
  background-position-x: -167px;
}
.hengfu .page ul li:nth-child(3) i {
  background-position-x: -312px;
}
.hengfu .page ul li:nth-child(4) i {
  background-position-x: -458px;
}
.hengfu .page ul li:nth-child(5) i {
  background-position-x: -601.5px;
}
.hengfu .page ul li:nth-child(6) i {
  background-position-x: -747px;
}
.hengfu .page ul li:hover i {
  background-position-y: -88px;
  transition: all 0.3s linear;
}
.hengfu .page ul li p {
  font-size: 14px;
  margin-top: 20px;
}
.hengfu .page ul li:hover .dot::after {
  opacity: 1;
  transition: all 0.3s linear;
}
.process {
  padding: 80px 0 70px 0;
}
.process .list {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 85px 0 65px 0;
  justify-content: space-between;
  background: url(../images/process-b.png) no-repeat center 250px;
}
.process .list li {
  text-align: center;
}
.process .list li span {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #e5e5e5;
  background-position-y: center;
  position: relative;
  transition: all 0.2s linear;
}
.process .list li span i {
  line-height: 100px;
  text-align: center;
  color: #7f7f7f;
  font-size: 40px;
  position: relative;
}
.process .list li span i::after {
  content: '';
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.process .list li span::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #d1d1d1;
  position: absolute;
  top: 126px;
  left: 50%;
  transform: translateX(-50%);
}
.process .list li span::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #e4e4e4;
  position: absolute;
  top: 141px;
  left: 50%;
  transform: translateX(-50%);
}
.process .list li p {
  margin-top: 120px;
  font-size: 18px;
}
.process .list li:hover {
  cursor: pointer;
}
.process .list li:hover span {
  background-color: #006fc0;
  transition: all 0.2s linear;
}
.process .list li:hover span i {
  color: #fff;
}
.process .list li:hover span::before {
  background-color: #006fc0;
  opacity: 0.7;
}
.process .list li:hover span::after {
  background-color: #006fc0;
  opacity: 0.4;
}
.process .more {
  width: 141px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  background-color: #006fc0;
  font-size: 14px;
  margin: 0 auto;
  transition: all 0.2s linear;
}
.process .more:hover {
  background-color: #f39523;
  transition: all 0.2s linear;
}
/* 企业介绍 */
.intr {
  height: 699px;
  background: url(../images/intr-b.jpg) no-repeat top center;
}
.intr .page {
  display: flex;
}
.intr .box {
  width: 590px;
  padding-top: 55px;
  margin: 0 0 0 auto;
}
.intr .box .wz-bt {
  text-align: left;
  align-items: flex-start;
}
.intr .box .wz-bt p::before,
.intr .box .wz-bt p::after {
  display: none;
}
.intr .box .row {
  display: flex;
  flex-direction: column;
}
.intr .box .row p {
  font-size: 50px;
  text-transform: uppercase;
  font-family: Impact;
  opacity: 0.25;
  position: relative;
  z-index: 0;
}
.intr .box .row h2 {
  font-size: 34px;
  font-weight: bold;
  margin-top: -36px;
  position: relative;
  z-index: 1;
}
.intr .box .row h2 em {
  color: #006fc0;
}
.intr .box .row .line {
  width: 70px;
  height: 2px;
  background-color: #ffbd22;
  margin: 15px 0 25px 0;
}
.intr .box .row i {
  display: block;
  font-size: 15px;
  color: #666;
  line-height: 28px;
  white-space: pre-wrap;
}
.intr .box .row .more {
  background: url(../images/intr-tb.png) no-repeat;
  background-position-y: -90px;
  margin: 30px 0;
  margin-right: auto;
  padding-left: 75px;
  white-space: nowrap;
  font-size: 14px;
  color: #666;
}
.intr .box .row .more:hover {
  color: #111;
}
.intr .box .list {
  display: flex;
  justify-content: space-between;
}
.intr .box .list li {
  width: 163px;
  height: 140px;
  background-color: #fff;
  transition: all 0.2s linear;
}
.intr .box .list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intr .box .list li a i {
  width: 40px;
  height: 40px;
  background: url(../images/intr-tb.png);
  background-position-y: -250px;
}
.intr .box .list li a p {
  font-size: 18px;
  color: #666;
  margin-top: 15px;
}
.intr .box .list li:nth-child(2) i {
  background-position-x: 0px;
}
.intr .box .list li:nth-child(1) i {
  background-position-x: -100px;
}
.intr .box .list li:nth-child(3) i {
  background-position-x: -200px;
}
.intr .box .list li:hover {
  background: #006fc0;
  transition: all 0.2s linear;
}
.intr .box .list li:hover i {
  background-position-y: -348px;
}
.intr .box .list li:hover p {
  color: #fff;
}
.factory {
  padding: 90px 0 20px 0;
  background: url(../images/fty-bg.png) no-repeat center bottom;
}
.factory .ftycon {
  margin-top: 55px;
}
.factory .ftycon .tempWrap {
  width: 1300px !important;
}
.factory .ftycon ul {
  display: flex;
}
.factory .ftycon ul li {
  width: 295px;
  margin: 0 15px;
  position: relative;
  padding-bottom: 15px;
}
.factory .ftycon ul li a {
  padding: 6px 6px 29px;
  background: url(../images/fty-lbg.png) no-repeat center bottom;
  position: relative;
}
.factory .ftycon ul li .pic {
  overflow: hidden;
}
.factory .ftycon ul li img {
  width: 100%;
  transition: all 0.3s linear;
}
.factory .ftycon ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
/* 新闻 */
.news-w {
  padding: 72px 0;
}
.news-w .newscenter {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
}
.news-w .newscenter .news-box {
  flex: 1;
  margin-right: 50px;
}
.news-w .newscenter .news-box .news-tabs {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}
.news-w .newscenter .news-box .news-tabs li {
  margin-right: 30px;
}
.news-w .newscenter .news-box .news-tabs li p {
  font-size: 18px;
}
.news-w .newscenter .news-box .news-tabs li p em {
  font-size: 14px;
  color: #999;
  font-weight: normal;
}
.news-w .newscenter .news-box .news-tabs li .more {
  font-size: 12px;
  width: 70px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #fff;
  text-transform: uppercase;
  margin-top: 10px;
}
.news-w .newscenter .news-box .news-tabs .show {
  font-weight: bold;
}
.news-w .newscenter .news-box .news-tabs .show p {
  color: #006fc0;
}
.news-w .newscenter .news-box .news-tabs .more {
  margin: 0 0 0 auto;
  font-size: 12px;
  width: 70px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #2a2a2a;
  color: #2a2a2a;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.news-w .newscenter .news-box .news-tabs .more:hover {
  background-color: #006fc0;
  color: #fff;
  border-color: #006fc0;
  transition: all 0.2s linear;
}
.news-w .newscenter .news-box .box {
  display: flex;
  justify-content: space-between;
}
.news-w .newscenter .news-box .box .top {
  width: 40%;
  padding-bottom: 23px;
  border-bottom: 1px solid #e5e5e5;
}
.news-w .newscenter .news-box .box .top .pic {
  height: 200px;
  border: 1px solid #e5e5e5;
}
.news-w .newscenter .news-box .box .top .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-w .newscenter .news-box .box .top p {
  color: #333;
  font-size: 18px;
  display: block;
  margin-top: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-w .newscenter .news-box .box .top span {
  color: #777777;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 26px;
}
.news-w .newscenter .news-box .box .top:hover p {
  color: #006fc0;
  font-weight: bold;
}
.news-w .newscenter .news-box .box ul {
  width: 55%;
}
.news-w .newscenter .news-box .box ul li {
  padding-bottom: 17px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 20px;
  position: relative;
}
.news-w .newscenter .news-box .box ul li:last-child {
  margin-bottom: 0;
}
.news-w .newscenter .news-box .box ul li p {
  font-size: 18px;
  color: #333333;
  line-height: 18px;
}
.news-w .newscenter .news-box .box ul li span {
  font-size: 14px;
  color: #777777;
  line-height: 26px;
  margin-top: 16px;
}
.news-w .newscenter .news-box .box ul li .date {
  font-size: 14px;
  color: #999999;
  line-height: 14px;
  position: absolute;
  top: 0px;
  right: 10px;
}
.news-w .newscenter .news-box .box ul li:hover p {
  color: #006fc0;
  font-weight: bold;
}
.news-w .newscenter .problem {
  width: 390px;
}
.news-w .newscenter .problem .tit {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.news-w .newscenter .problem .tit p {
  font-size: 18px;
}
.news-w .newscenter .problem .tit p em {
  font-size: 14px;
  color: #999;
}
.news-w .newscenter .problem .tit .more {
  font-size: 12px;
  width: 70px;
  line-height: 22px;
  text-align: center;
  border: 1px solid #2a2a2a;
  color: #2a2a2a;
  text-transform: uppercase;
  transition: all 0.2s linear;
}
.news-w .newscenter .problem .tit .more:hover {
  background-color: #006fc0;
  color: #fff;
  border-color: #006fc0;
  transition: all 0.2s linear;
}
.news-w .newscenter .problem .prob-list li {
  height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
}
.news-w .newscenter .problem .prob-list li p {
  font-size: 16px;
  padding-left: 35px;
  line-height: 28px;
  background: url(../images/wenda.png) no-repeat left;
  background-position-y: 3px;
  margin-bottom: 5px;
}
.news-w .newscenter .problem .prob-list li span {
  font-size: 14px;
  color: #666;
  padding-left: 35px;
  line-height: 28px;
  background: url(../images/wenda.png) no-repeat left;
  background-position-y: -82px;
}
.news-w .newscenter .problem .prob-list li:hover p {
  color: #006fc0;
}
.links {
  width: 100%;
  background-color: #006fc0;
}
.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;
}
.links .text ul li {
  margin-right: 15px;
}
.links .text ul li a {
  font-size: 16px;
}
.links .text a {
  font-size: 14px;
  margin: 0 0 0 auto;
}
/* footer */
.footer {
  background-color: #222222;
}
.footer * {
  color: #909090;
  font-size: 14px;
}
.footer a:hover {
  color: #fff;
}
.footer .f-con {
  padding: 60px 0 50px;
  display: flex;
  justify-content: space-between;
}
.footer .f-con .f-nav {
  width: 50%;
  display: flex;
}
.footer .f-con .f-nav ul {
  flex: 1;
  cursor: pointer;
}
.footer .f-con .f-nav ul h5 {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  padding-bottom: 18px;
  margin-bottom: 22px;
  position: relative;
}
.footer .f-con .f-nav ul h5::after {
  content: '';
  width: 18px;
  height: 2px;
  background-color: #006fc0;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s linear;
}
.footer .f-con .f-nav ul li {
  line-height: 32px;
}
.footer .f-con .f-nav ul:hover h5::after {
  width: 60px;
  transition: all 0.3s linear;
}
.footer .f-con .f-info {
  width: 50%;
  padding-left: 1.815%;
}
.footer .f-con .f-info .top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: url(../images/foot-btb.png) no-repeat right center;
}
.footer .f-con .f-info .top span {
  font-size: 40px;
  color: #fe6701;
  font-weight: bold;
}
.footer .f-con .f-info .btm {
  display: flex;
  align-items: flex-start;
  padding-top: 30px;
  padding-left: 1%;
}
.footer .f-con .f-info .btm li {
  line-height: 20px;
  margin-bottom: 16px;
  display: flex;
  white-space: nowrap;
}
.footer .f-con .f-info .btm li i {
  margin-right: 10px;
  color: #006fc0;
  font-size: 20px;
}
.footer .f-con .f-info .btm li .qq {
  margin-right: 30px;
}
.footer .f-con .f-info .btm li .dz {
  white-space: normal;
}
.footer .f-con .f-info .btm .weix-pic {
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
.footer .f-con .f-info .btm .weix-pic p {
  width: 1rem;
  margin-right: 5px;
}
.footer .f-con .f-info .btm .weix-pic p em {
  display: block;
  transform: rotate(90deg);
}
.footer .f-con .f-info .btm .weix-pic img {
  width: 100px;
}
.copy {
  width: 100%;
  line-height: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copy a {
  display: inline;
}
.copy a:hover {
  text-decoration: underline;
}
.copy .page {
  display: flex;
  justify-content: center;
}
