/*样式初始化及公共样式部分*/
* {
  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: #036eb8;
}
.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: 100%;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
/* header */
.header {
  width: 100%;
  background-color: #8cabbf;
}
.header .page {
  width: 96%;
  max-width: 1520px;
  height: 115px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header * {
  color: #fff;
}
.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: #036eb8;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s linear;
}
.nav-list > li > a {
  width: 100%;
  line-height: 115px;
  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: #036eb8;
}
.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 > a {
  color: #fff;
  font-weight: bold;
}
.nav-list > li:hover .erji2 {
  opacity: 1;
  transform: perspective(600px) rotateX(0);
  transition: all 0.6s;
}
.nav-list .active::after {
  width: 100%;
}
.nav-list .active > a {
  font-weight: bold;
}
.nav-list .block {
  background-color: #fe6701;
  height: 40px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.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;
}
/* 搜索 */
.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 3px 3px 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: #ff0000;
}
.search .keywo a {
  font-size: 15px;
  color: #666;
  margin-left: 15px;
}
.search .keywo a:hover {
  color: #ff0000;
}
.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: #036eb8;
}
.wz-bt span {
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  opacity: 0.67;
}
.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: #036eb8;
  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: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.char-w .list li p {
  font-size: 24px;
  color: #036eb8;
}
.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;
}
.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: -108px;
  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: #036eb8;
  font-weight: bold;
}
.intr .row .text ul li p i {
  font-size: 26px;
  color: #036eb8;
}
.intr .row .text ul li em {
  font-size: 16px;
  font-weight: lighter;
  display: block;
  margin-top: 8px;
}
.intr .row .more {
  position: absolute;
  left: 60px;
  top: 506px;
  text-align: center;
  background-color: #036eb8;
}
.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;
}
.wel-wrap {
  border-bottom: 1px solid #fff;
}
.wel-wrap .list {
  display: flex;
}
.wel-wrap .list li {
  flex: 1;
  height: 930px;
  border-right: 0.5px solid #fff;
  background: url(../images/list-pic1.jpg) no-repeat top center;
  animation: scroll1 15s 0.3s infinite linear;
  animation-play-state: paused;
  position: relative;
  overflow: hidden;
}
.wel-wrap .list li:nth-child(1) {
  background-image: url(../images/list-pic1.jpg);
}
.wel-wrap .list li:nth-child(2) {
  background-image: url(../images/list-pic2.jpg);
}
.wel-wrap .list li:nth-child(3) {
  background-image: url(../images/list-pic3.jpg);
}
.wel-wrap .list li:nth-child(4) {
  background-image: url(../images/list-pic4.jpg);
}
.wel-wrap .list li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
}
.wel-wrap .list li * {
  transition: all 0.2s linear;
}
.wel-wrap .list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.wel-wrap .list li p {
  font-size: 30px;
  font-weight: lighter;
  color: #fff;
  padding-left: 52px;
  text-transform: capitalize;
}
.wel-wrap .list li span {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin: 65px 0 95px;
  padding-left: 52px;
}
.wel-wrap .list li .more {
  width: 115px;
  line-height: 35px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin: 0 auto;
}
.wel-wrap .list li:hover {
  animation-play-state: running;
}
.wel-wrap .list li:hover * {
  transition: all 0.2s linear;
}
.wel-wrap .list li:hover::after {
  opacity: 0;
}
.wel-wrap .list li:hover p {
  opacity: 0;
}
.wel-wrap .list li:hover span {
  opacity: 0;
}
.wel-wrap .list li:hover .more {
  background-color: #036eb8;
  border-color: #036eb8;
}
@keyframes scroll1 {
  0% {
    background-position-x: center;
  }
  25% {
    background-position-x: right;
  }
  50% {
    background-position-x: center;
  }
  75% {
    background-position-x: left;
  }
  100% {
    background-position-x: center;
  }
}
/* 产品推荐 */
.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: #036eb8;
  color: #fff;
  border-color: #036eb8;
  transition: all 0.2s linear;
}
.pro-w .con-box {
  width: 450px;
  margin: 0 auto;
  margin-top: 98px;
  position: relative;
}
.pro-w .con-box li {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  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 {
  opacity: 0 !important;
}
.adv .lf .adv-tab .swiper-slide-active {
  opacity: 1 !important;
}
.adv .lf .adv-tab .num {
  margin-top: 100px;
  font-size: 30px;
  color: #fff;
}
.adv .lf .adv-tab .num i {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}
.adv .lf .adv-tab .text {
  margin-top: 140px;
}
.adv .lf .adv-tab .text p {
  font-size: 48px;
  color: #fff;
  margin-bottom: 30px;
}
.adv .lf .adv-tab .text span {
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.adv .lf .adv-tab .more {
  margin-top: 80px;
  width: 220px;
  line-height: 60px;
  padding-right: 40px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  color: #fff;
  cursor: pointer;
}
.adv .lf .adv-tab .more::before {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 180px;
}
.adv .lf .adv-tab .more::after {
  content: '';
  width: 0px;
  height: 0px;
  border: 5px solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.adv .lf .adv-tab .more:hover {
  background-color: #fff;
  color: #036eb8;
}
.adv .lf .adv-tab .more:hover::before {
  background-color: #ccc;
}
.adv .lf .adv-tab .more:hover::after {
  border-color: transparent transparent transparent #036eb8;
}
.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 .rotate img {
  animation: rotate2 0.5s both linear;
}
@keyframes rotate2 {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
/* 新闻 */
.news-w {
  padding: 70px 0 80px;
  background: url(../images/news-bg.png) 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 .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  height: 453px;
  background: url(../images/news-line.png) no-repeat center top;
}
.news-w .list li {
  width: 50%;
}
.news-w .list li:nth-child(2n-1) {
  padding-right: 110px;
}
.news-w .list li:nth-child(2n) {
  padding-left: 110px;
}
.news-w .list li a {
  display: flex;
}
.news-w .list li .date {
  width: 80px;
  height: 70px;
  border: 1px solid #a0a0a0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 33px;
}
.news-w .list li .date em {
  font-size: 46px;
  font-weight: bold;
  color: #515151;
  line-height: 1;
}
.news-w .list li .date i {
  font-size: 18px;
  color: #515151;
}
.news-w .list li .row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  overflow: hidden;
}
.news-w .list li .row P {
  font-size: 16px;
}
.news-w .list li .row span {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.links {
  width: 100%;
  background-color: #036eb8;
}
.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 .footer-cont {
  display: flex;
  justify-content: space-between;
}
.footer .footer-main .footer-cont .footer-wechat {
  width: 130px;
}
.footer .footer-main .footer-cont .footer-wechat p {
  text-align: center;
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-cont .footer-lianxi {
  width: 40%;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 28px;
}
.footer .footer-main .footer-cont .footer-lianxi .footer-lianxi-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-lianxi h2 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 20px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li {
  color: #ddd;
  line-height: 40px;
  font-size: 18px;
  padding-left: 30px;
  background: url(../images/foot-icon.png) no-repeat left;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(1) {
  background-position-y: -2px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(2) {
  background-position-y: -64px;
}
.footer .footer-main .footer-cont .footer-lianxi ul li:nth-child(3) {
  background-position-y: -123.5px;
}
.footer .footer-main .footer-cont .footer-service {
  width: 25%;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title h1 {
  color: #fff;
  font-family: arial;
  font-size: 28px;
}
.footer .footer-main .footer-cont .footer-service .footer-service-title span {
  width: 50px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin-top: 25px;
  margin-bottom: 35px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div {
  display: flex;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div > img {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 15px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell h1 {
  font-size: 30px;
  font-family: arial;
  color: #0ea79f;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row > div .footer-tell p {
  color: #fff;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a {
  background: #0ea79f;
  display: flex;
  align-items: center;
  width: 150px;
  padding: 12px 0px;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  margin-top: 25px;
  transition: all 0.2s linear;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a img {
  margin-right: 8px;
}
.footer .footer-main .footer-cont .footer-service .footer-tell-row a:hover {
  background-color: #036eb8;
  transition: all 0.2s linear;
}
.footer .footer-main .footer-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
.footer .footer-main .footer-nav-row .footer-nav {
  width: 55%;
}
.footer .footer-main .footer-nav-row .footer-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a {
  color: #fff;
  font-size: 17px;
}
.footer .footer-main .footer-nav-row .footer-nav ul li a:hover {
  color: #036eb8;
}
.footer .footer-main .footer-nav-row .footer-jishu {
  width: 20%;
}
.footer .footer-main .footer-nav-row .footer-jishu a {
  color: #fff;
  font-size: 15px;
}
.footer .footer-main .footer-nav-row .footer-jishu a:hover {
  color: #036eb8;
}
.footer-copying {
  border-top: 1px solid #393939;
  padding: 15px 0px;
  background-color: #222222;
}
.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: #036eb8;
}
