/*样式初始化及公共样式部分*/
* {
  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: #538ca6;
}
.cl {
  clear: both;
  height: 0px;
}
body {
  margin: 0 auto;
  background-color: #fff;
  font-family: "Microsoft YaHei";
  min-width: 1200px;
  max-width: 100%;
  overflow-x: hidden;
}
img,
span,
a {
  display: block;
  max-width: 100%;
}
.page {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
/* header */
.header {
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}
.header .page {
  width: 96%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header .logo {
  display: flex;
  margin-right: 16%;
}
.header .logo img {
  max-height: 66px;
}
.header .logo .text {
  margin-left: 5px;
}
.header .logo .text p {
  font-size: 15px;
  font-weight: bold;
  line-height: 28px;
  margin-top: 6px;
}
.header .logo .text span {
  font-size: 15px;
}
/* nav */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
}
.nav-list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-list > li {
  display: flex;
  padding: 0 15px;
  align-items: center;
  position: relative;
}
.nav-list > li::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: #538ca6;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.nav-list > li > a {
  width: 100%;
  line-height: 105px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  position: relative;
}
.nav-list > li .erji2 {
  width: 200%;
  position: absolute;
  top: 100%;
  left: -50%;
  z-index: 999;
  display: flex;
  white-space: nowrap;
  opacity: 0;
  transform: perspective(600px) rotateX(-90deg);
  transform-origin: 0 0;
  transition: all 0.6s;
}
.nav-list > li .erji2 ul {
  width: 100%;
  text-align: center;
}
.nav-list > li .erji2 ul li {
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  transition: 600ms ease;
  margin-bottom: 1px;
}
.nav-list > li .erji2 ul li a {
  line-height: 45px;
  font-size: 15px;
  color: #fff;
}
.nav-list > li .erji2 ul li:hover {
  background-color: #538ca6;
}
.nav-list > li .erji2 ul li:hover a {
  color: #fff;
}
.nav-list > li .erji2 ul li:last-child {
  border: none;
}
.nav-list > li:hover::after {
  width: 100%;
  transition: all 0.3s linear;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  transform: perspective(600px) rotateX(0);
  transition: all 0.6s;
}
.nav-list .active > a {
  color: #538ca6;
}
.nav-list .active::after {
  width: 100%;
}
.top-tel {
  padding-left: 50px;
  margin-left: 15px;
  background: url(../images/top-tel.png) no-repeat left center;
  background-size: 40px;
}
.top-tel p {
  font-size: 14px;
}
.top-tel span {
  font-size: 22px;
  font-weight: bold;
  color: #538ca6;
}
.top-tel span i {
  color: #333;
  font-size: 14px;
  font-weight: normal;
}
/* 幻灯片 */
.banner-box {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  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: 40px;
  height: 70px;
  margin-left: 50px;
  margin-right: 15px;
  background: url(../images/search.png) no-repeat right center;
  background-size: contain;
  position: relative;
}
.search .box {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 20px 40px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  transform: scaleY(0);
  opacity: 0;
  transition: all 0.3s linear;
  transition-delay: 0.1s;
  z-index: 9999;
}
.search .sear-w {
  display: flex;
  overflow: hidden;
  position: relative;
}
.search .sear-w input {
  width: 100%;
  min-width: 400px;
  height: 45px;
  border-radius: 22px;
  padding-left: 35px;
  padding-right: 80px;
  color: #666;
  border: 1px solid #e2e2e2;
}
.search .sear-w input:focus {
  outline: none;
}
.search .sear-w button {
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  background: url(../images/search-icon.png);
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.search .keywo {
  display: flex;
  margin-top: 25px;
  padding: 0 20px;
  justify-content: center;
}
.search .keywo .text {
  font-size: 15px;
  color: #666;
}
.search .keywo a {
  font-size: 15px;
  color: #666;
  margin-left: 15px;
}
.search .keywo a:hover {
  color: #0ea79f;
}
.search:hover .box {
  transform: scaleY(1);
  opacity: 1;
  transition: all 0.3s linear;
}
/*网站标题*/
.wz-bt {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.wz-bt p {
  font-size: 36px;
  position: relative;
  font-weight: bold;
}
.wz-bt p i {
  font-weight: bold;
  color: #538ca6;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  opacity: 0.67;
}
.equ-w {
  padding: 60px 0;
}
.equ-w .page {
  max-width: 1520px;
}
.equ-w .box {
  padding: 0 70px;
  position: relative;
}
.equ-w .box .equ-con {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.equ-w .box .equ-con li {
  width: 171px;
}
.equ-w .box .equ-con li p {
  margin-top: 15px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666;
}
.equ-w .box .equ-con li img {
  transition: all 0.2s linear;
}
.equ-w .box .equ-con li:hover img {
  transform: scale(1.2);
  transition: all 0.2s linear;
}
.equ-w .box .btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.equ-w .box .btn > div {
  width: 17px;
  height: 39px;
  background: url(../images/equ-prev.png);
  opacity: 0.53;
  cursor: pointer;
}
.equ-w .box .btn .equ-next {
  transform: scale(-1);
}
.char-w {
  background-color: #e8edf8;
}
.char-w .page {
  display: flex;
  width: 94%;
}
.char-w .text {
  width: 30%;
  white-space: nowrap;
  padding-left: 3%;
}
.char-w .text p {
  font-size: 1.5vw;
  line-height: 120px;
  opacity: 0.86;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .char-w .text p {
    font-size: 23px;
  }
}
.char-w .text p::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #538ca6;
  position: absolute;
  left: 0;
  bottom: 0;
}
.char-w .text span {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.8;
  line-height: 35px;
}
.char-w .list {
  flex: 1;
  display: flex;
}
.char-w .list li {
  flex: 1;
  cursor: pointer;
}
.char-w .list li .box {
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.char-w .list li p {
  font-size: 24px;
  color: #538ca6;
}
.char-w .list li span {
  font-size: 14px;
  padding: 0 25px;
  color: #666;
  margin-top: 30px;
  font-weight: lighter;
}
.char-w .list li i {
  display: block;
  width: 60px;
  height: 60px;
  margin: 40px 0 20px;
  background: url(../images/char-icon.png);
  transition: all 0.2s linear;
  background-position-y: -135px;
}
.char-w .list li:nth-child(1) i {
  background-position-x: -20px;
}
.char-w .list li:nth-child(2) i {
  background-position-x: -120px;
}
.char-w .list li:nth-child(3) i {
  background-position-x: -220px;
}
.char-w .list li:nth-child(4) i {
  background-position-x: -320px;
}
.char-w .list li:nth-child(5) i {
  background-position-x: -420px;
}
.char-w .list li:nth-child(6) i {
  background-position-x: -520px;
}
.char-w .list .on .box {
  background-color: #fff;
}
.char-w .list .on i {
  background-position-y: -37px;
  transition: all 0.2s linear;
}
.intr .row {
  margin: 0 0 0 auto;
  width: 1343px;
  height: 679px;
  background: url(../images/intr-bg.png);
  position: relative;
}
.intr .row .text {
  margin: 0 0 0 auto;
  width: 1080px;
  padding: 140px 0 0;
  text-align: center;
}
.intr .row .text .tit {
  font-size: 37px;
  font-weight: bold;
  background: url(../images/intr-bt.png) no-repeat center;
  margin-bottom: 35px;
}
.intr .row .text > span {
  font-size: 21px;
  line-height: 29px;
  opacity: 0.9;
}
.intr .row .text ul {
  display: flex;
  margin: 70px 0;
}
.intr .row .text ul li {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #bbb;
}
.intr .row .text ul li:last-child {
  border: none;
}
.intr .row .text ul li p {
  display: flex;
}
.intr .row .text ul li p span {
  font-size: 33px;
  color: #538ca6;
  font-weight: bold;
}
.intr .row .text ul li p i {
  font-size: 26px;
  color: #538ca6;
}
.intr .row .text ul li em {
  font-size: 16px;
  font-weight: lighter;
  display: block;
  margin-top: 8px;
}
.intr .row .text h2 {
  font-size: 34px;
  color: #538ca6;
}
.intr .row .more {
  position: absolute;
  left: 60px;
  top: 506px;
  text-align: center;
  background-color: #538ca6;
}
.intr .row .more a {
  width: 166px;
  line-height: 45px;
  color: #fff;
  position: relative;
  z-index: 11;
}
.intr .row .more::before {
  content: '';
  width: 6px;
  height: 100%;
  background-color: #00a29a;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s linear;
}
.intr .row .more:hover::before {
  width: 100%;
  transition: all 0.3s linear;
}
.app-w {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.app-w .app-con li {
  position: relative;
}
.app-w .app-con li::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0;
  z-index: 1;
}
.app-w .app-con li .text {
  position: absolute;
  top: 25%;
  left: 8%;
  z-index: 2;
}
.app-w .app-con li .text * {
  color: #fff;
}
.app-w .app-con li .text em {
  margin-left: -45px;
  font-size: 72px;
  opacity: 0.16;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
.app-w .app-con li .text h3 {
  margin-top: -50px;
  width: 230px;
  font-size: 48px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.app-w .app-con li .text h3::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
}
.app-w .app-con li .text p {
  font-size: 22px;
  letter-spacing: 32px;
  margin-bottom: 20px;
}
.app-w .app-con li .text span {
  font-size: 14px;
  line-height: 2;
}
.app-w .lf {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 11;
}
.app-w .lf li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.35);
  border-right: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
}
.app-w .lf li:last-child {
  border-right: none;
}
.app-w .lf li * {
  color: #fff;
}
.app-w .lf li i {
  margin-top: 15px;
  margin-bottom: 5px;
  display: block;
  width: 60px;
  height: 60px;
  background: url(../images/tubiao.png);
  background-position-y: -12px;
}
.app-w .lf li:nth-child(1) i {
  background-position-x: -21px;
}
.app-w .lf li:nth-child(2) i {
  background-position-x: -121px;
}
.app-w .lf li:nth-child(3) i {
  background-position-x: -221px;
}
.app-w .lf li:nth-child(4) i {
  background-position-x: -321px;
}
.app-w .lf li p {
  font-size: 22px;
  line-height: 30px;
}
.app-w .lf .my-slide-thumb-active {
  background: rgba(83, 140, 166, 0.5);
}
/* 产品推荐 */
.pro-w {
  height: 965px;
  overflow: hidden;
  background: url(../images/pro-bg.png) no-repeat top center;
  position: relative;
}
.pro-w .page {
  padding-top: 80px;
  z-index: 10;
}
.pro-w * {
  color: #fff;
}
.pro-w .tit {
  text-align: center;
}
.pro-w .tit p {
  font-size: 30px;
  font-weight: bold;
  background: url(../images/pro-tit.png) no-repeat center;
}
.pro-w .tit span {
  font-size: 25px;
  text-transform: uppercase;
  margin-top: 12px;
}
.pro-w .pro-tabs {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.pro-w .pro-tabs a {
  width: 190px;
  line-height: 40px;
  margin-right: 10px;
  text-align: center;
  border: 1px solid #fff;
  transition: all 0.2s linear;
}
.pro-w .pro-tabs a:last-child {
  margin-right: 0;
}
.pro-w .pro-tabs a:hover {
  background-color: #538ca6;
  color: #fff;
  border-color: #538ca6;
  transition: all 0.2s linear;
}
.pro-w .con-box {
  width: 450px;
  margin: 0 auto;
  margin-top: 98px;
  position: relative;
}
.pro-w .con-box .pro-con {
  border-radius: 50%;
  background-color: #538ca6;
}
.pro-w .con-box li {
  width: 450px;
  height: 450px;
  overflow: hidden;
  position: relative;
}
.pro-w .con-box li .text {
  width: 100%;
  height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(3, 110, 184, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s linear;
}
.pro-w .con-box li .text p {
  font-size: 20px;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
.pro-w .con-box li .text p::after {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.pro-w .con-box li .text i {
  width: 55px;
  height: 55px;
  background: url(../images/查看.png);
  background-size: cover;
}
.pro-w .con-box li:hover .text {
  height: 100%;
  transition: all 0.3s linear;
}
.pro-w .con-box .btn {
  width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pro-w .con-box .btn > div {
  width: 72px;
  height: 71px;
  background: url(../images/pro-prev.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0.75;
}
.pro-w .con-box .btn > div:hover {
  opacity: 1;
}
.pro-w .con-box .btn .pro-prev {
  left: 0;
}
.pro-w .con-box .btn .pro-next {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
.pro-w .cirle-w {
  width: 1108px;
  height: 1108px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pro-w .cirle-w img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.pro-w .cirle-w .cl1 {
  animation: rotate 7s infinite linear 0s alternate;
}
.pro-w .cirle-w .cl2 {
  animation: rotate 7s infinite linear 0s alternate-reverse;
}
.pro-w .cirle-w .cl3 {
  animation: scale 1.5s ease infinite alternate;
}
.pro-w .cirle-w .cl4 {
  animation: warn1 3s ease-out 0.25s infinite;
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes warn1 {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  25% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.5;
  }
  75% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.adv {
  height: 836px;
  background: url(../images/adv-bg.jpg) no-repeat top center;
}
.adv .page {
  display: flex;
}
.adv .lf {
  width: 50%;
}
.adv .lf .adv-tab {
  width: 450px;
}
.adv .lf .adv-tab li {
  height: 836px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adv .lf .adv-tab li p {
  font-size: 30px;
  line-height: 2;
  color: #fff;
}
.adv .lf .adv-tab li .more {
  font-size: 28px;
  padding: 20px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  margin-top: 50px;
}
.adv .rg {
  width: 50%;
}
.adv .rg .box {
  width: 590px;
  margin: 0 auto;
  padding-top: 100px;
}
.adv .rg .box .tit {
  text-align: center;
}
.adv .rg .box .tit p {
  font-size: 36px;
  margin-bottom: 20px;
}
.adv .rg .box .tit span {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}
.adv .rg .box .con-box {
  position: relative;
  margin-top: 30px;
}
.adv .rg .box .con-box .adv-con {
  width: 400px;
  height: 400px;
  border: 1px solid #a1a1a1;
  border-radius: 50%;
  margin: 0 auto;
  padding: 20px;
}
.adv .rg .box .con-box .adv-con li {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ccc;
}
.adv .rg .box .con-box .btn {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adv .rg .box .con-box .btn > div {
  width: 55px;
  height: 55px;
  background: url(../images/adv-prev.png);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.adv .rg .box .con-box .btn > div:hover {
  background: url(../images/adv-prev2.png);
}
.adv .rg .box .con-box .btn .adv-prev {
  left: 0;
}
.adv .rg .box .con-box .btn .adv-next {
  right: 0;
  transform: translateY(-50%) scaleX(-1);
}
.adv .rg .box .con-box .circle-line {
  width: 398px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.adv .rg .box .con-box .mask {
  position: absolute;
  width: 355px;
  height: 355px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.66);
  display: flex;
}
.adv .rg .box .con-box .mask .dot {
  margin: auto;
  width: 50px;
  height: 50px;
  background: url(../images/adv-dot.png);
  position: relative;
  cursor: pointer;
}
.adv .rg .box .con-box .mask .dot::after {
  content: '';
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #0089e1;
  position: absolute;
  top: -36px;
  left: -39px;
  z-index: -1;
  animation: warn1 infinite 1.5s ease-out;
}
.adv .rg .box .con-box .rotate img {
  animation: rotate2 0.5s both linear;
}
.adv .video-box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 600ms ease;
}
.adv .video-box .video {
  max-width: 900px;
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 600ms ease;
  z-index: 2;
}
.adv .video-box .video video {
  width: 100%;
}
.adv .video-box .close {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.adv .open {
  z-index: 999;
  opacity: 1;
}
.adv .open .video {
  top: 50%;
  transition: 600ms ease;
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes warn1 {
  0% {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    opacity: 0;
  }
  25% {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    opacity: 0.3;
  }
  50% {
    transform: scale(0.6);
    -webkit-transform: scale(0.6);
    opacity: 0.5;
  }
  75% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0.7;
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0;
  }
}
/* 新闻 */
.news-w {
  padding: 55px 0 30px;
  background: url(../images/news-bg.jpg) no-repeat top center;
}
.news-w .page {
  width: 1200px;
}
.news-w .tit {
  text-align: center;
}
.news-w .tit p {
  background: url(../images/intr-bt.png) no-repeat center;
  font-size: 35px;
  font-weight: bold;
}
.news-w .tit span {
  font-size: 25px;
  margin-top: 10px;
  text-transform: uppercase;
  opacity: 0.8;
}
.news-w .news-cen {
  margin-top: 40px;
}
.news-w .news-cen ul {
  display: flex;
}
.news-w .news-cen ul li {
  width: 30%;
  margin-right: 30px;
  margin-bottom: 2%;
}
.news-w .news-cen ul li .pic {
  overflow: hidden;
}
.news-w .news-cen ul li .pic img {
  transition: all 0.3s linear;
}
.news-w .news-cen ul li .row {
  display: flex;
  margin-top: 20px;
}
.news-w .news-cen ul li .row .date {
  width: 85px;
  padding-left: 10px;
  border-right: 2px solid #bbb;
  white-space: nowrap;
}
.news-w .news-cen ul li .row .date p {
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
.news-w .news-cen ul li .row .date span {
  font-size: 55px;
  color: #333;
  line-height: 1;
  margin-top: 7px;
}
.news-w .news-cen ul li .row .text {
  flex: 1;
  padding-left: 10px;
  overflow: hidden;
}
.news-w .news-cen ul li .row .text p {
  font-size: 18px;
  color: #333;
  margin-top: 15px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-w .news-cen ul li .row .text span {
  font-size: 14px;
  color: #666;
  line-height: 34px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-w .news-cen ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s linear;
}
.news-w .news-cen ul li:hover .row .text p {
  color: #225392;
}
.links {
  width: 100%;
  background-color: #538ca6;
}
.links * {
  color: #fff;
}
.links a:hover {
  text-decoration: underline;
  color: #fff;
}
.links .page {
  max-width: 1200px;
}
.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 {
  background: #222;
  background-image: url(../images/foot-bg.png);
  padding-top: 80px;
}
.footer .page {
  max-width: 1200px;
  padding-bottom: 25px;
}
.footer .footer-main h1 {
  color: #fff;
  font-family: arial;
  font-size: 32px;
  text-align: center;
}
.footer .footer-main .footer-cont {
  display: flex;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-lianxi {
  width: 45%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-lianxi p {
  color: #fff;
  font-size: 22px;
  margin: 15px 0 10px;
}
.footer .footer-main .footer-cont .footer-lianxi span {
  color: #ddd;
  line-height: 1.5;
  padding: 6px 0;
  font-size: 15px;
  padding-left: 25px;
  background: url(../images/foot-icon.png) no-repeat left;
}
.footer .footer-main .footer-cont .footer-lianxi span:nth-of-type(1) {
  background-position-y: -5px;
  padding-right: 30px;
}
.footer .footer-main .footer-cont .footer-lianxi span:nth-of-type(2) {
  background-position-y: -67px;
  white-space: nowrap;
}
.footer .footer-main .footer-cont .footer-lianxi span:nth-of-type(3) {
  background-position-y: -127px;
  white-space: nowrap;
}
.footer-copying {
  border-top: 1px solid #393939;
  padding: 15px 0px;
  background-color: #222222;
}
.footer-copying .page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.footer-copying .footer-copying-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copying .footer-copying-main p {
  font-size: 16px;
  color: #898989;
  margin-right: 10px;
}
.footer-copying .footer-copying-main a {
  color: #898989;
  font-size: 16px;
}
.footer-copying .footer-copying-main a:hover {
  color: #538ca6;
}
.footer-copying .footer-jishu a {
  color: #898989;
  font-size: 15px;
}
.footer-copying .footer-jishu a:hover {
  color: #538ca6;
}
