﻿@charset "utf-8";
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
em,
img,
strong,
b,
small,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
sub,
sup,
tt,
var,
del,
dfn,
ins,
kbd,
q,
s,
samp,
strike,
applet,
object,
iframe,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
mark,
audio,
video,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}
body {
  font-family: arial, "microsoft yahei";
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  background: #fff;
  height: 100%;
}
ul,
li {
  list-style: none;
}
a:link,
a:visited {
  text-decoration: none;
  outline: none;
  color: #333;
}
a:hover,
a:active,
a:focus {
  color: #21b0ff;
}
table {
  border-collapse: collapse;
  width: 100%;
}
input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'] {
  cursor: pointer;
  outline: none;
}
input[type='checkbox'],
input[type='radio'] {
  position: relative;
  vertical-align: middle;
  margin-top: -2px;
  margin-bottom: 1px;
  margin-left: 5px;
  margin-right: 5px;
}
textarea,
input[type='email'],
input[type='date'],
input[type='password'],
input[type='text'] {
  padding: 0px;
  color: #666;
  outline: none;
  font-family: "microsoft yahei";
  font-size: 14px;
}
.f-l {
  float: left;
}
.f-r {
  float: right;
}
/*清楚浮动*/
.clearfix:after {
  clear: both;
  height: 0;
  content: "";
  line-height: 0;
  font-size: 0;
  display: block;
}
/*图片垂直水平居中*/
.middleCenter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  max-height: 100%;
  display: block;
  vertical-align: middle;
  text-align: center;
  margin: auto;
}
.container {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
}
.header {
  position: relative;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
}
.header .container {
  position: relative;
}
.header .logo {
  float: left;
  width: 330px;
  position: relative;
}
.header .nav {
  line-height: 50px;
  position: relative;
  padding: 0 160px 0 340px;
}
.header .nav a {
  display: inline-block;
  color: #666666;
  width: 20%;
  float: left;
  text-align: center;
}
.header .nav a:hover {
  color: #21b0ff;
}
.header .tel {
  color: #333333;
  font-size: 13px;
  width: 160px;
  line-height: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 15px;
}
.header .tel img {
  width: 33px;
  float: left;
  display: inline-block;
  margin: 3px 5px 0 0;
}
.header .tel i {
  font-style: normal;
  font-size: 18px;
  display: block;
}
@media (max-width: 1100px) {
  .header .nav {
    font-size: 12px;
  }
  .header .nav a {
    width: auto;
    padding: 0 4px;
  }
}
@media (max-width: 1003px) {
  .header .nav {
    display: none;
  }
}
@media (max-width: 639px) {
  .header .tel {
    display: none;
  }
}
@media (max-width: 320px) {
  .header .logo {
    width: auto;
  }
  .header img {
    max-height: 40px;
  }
}
@-webkit-keyframes positionFix {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes positionFix {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fixed {
  width: 100%;
  z-index: 99;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  position: fixed;
  -webkit-animation: positionFix 0.5s ease-in-out 1;
  animation: positionFix 0.5s ease-in-out 1;
  padding: 5px 0;
}
.banner {
  background: #06429a;
  text-align: center;
}
.home-title {
  color: #666666;
  text-align: center;
  line-height: 2;
  font-family: 幼圆;
}
.home-title .big {
  font-size: 30px;
  display: block;
}
.home-title .small {
  font-size: 16px;
  display: block;
}
@media (max-width: 1003px) {
  .home-title .big {
    font-size: 24px;
  }
}
@media (max-width: 360px) {
  .home-title .big {
    font-size: 16px;
  }
  .home-title .small {
    font-size: 12px;
  }
}
.content-01,
.content-02,
.content-03,
.content-04,
.content-05 {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1100px) {
  .content-01,
  .content-02,
  .content-03,
  .content-04,
  .content-05 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1003px) {
  .content-01,
  .content-02,
  .content-03,
  .content-04,
  .content-05 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.content-02 {
  padding-bottom: 50px;
}
@media (max-width: 1100px) {
  .content-02 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1003px) {
  .content-02 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.content-06 {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 1003px) {
  .content-06 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.shyq .list {
  margin-right: -60px;
  padding: 30px 0 0 0;
  overflow: hidden;
}
.shyq li {
  width: 33.33333333%;
  float: left;
  margin: 20px 0;
  overflow: hidden;
  min-height: 100px;
}
.shyq li .box {
  position: relative;
  margin: 0 60px 0 0;
}
.shyq li:nth-child(3n) .box {
  padding-right: 0;
}
.shyq li:hover .icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.shyq li:hover .title {
  color: #06429a;
}
.shyq .icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  background: #21b0ff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.shyq .text {
  padding: 6px 0 0 120px;
  min-height: 100px;
}
.shyq .title {
  color: #333333;
  font-size: 18px;
  padding: 5px 0;
}
.shyq .info {
  color: #898989;
  font-size: 13px;
}
@media (max-width: 1280px) {
  .shyq .list {
    margin-right: 0;
  }
}
@media (max-width: 1003px) {
  .shyq .list {
    margin-right: 0;
  }
  .shyq li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .shyq li .box {
    margin-right: 10px;
  }
}
@media (max-width: 639px) {
  .shyq li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .shyq li .box {
    text-align: center;
  }
  .shyq .icon {
    width: 80px;
    height: 80px;
    position: relative;
  }
  .shyq .text {
    padding-left: 0;
    min-height: auto;
  }
  .shyq .title {
    font-size: 14px;
  }
  .shyq .info {
    font-size: 12px;
    min-height: 54px;
  }
}
.case {
  background: #f5f9ff;
}
.case .list {
  margin-left: -5px;
  margin-top: 20px;
}
.case .list .item {
  float: left;
  width: 33.33333333%;
}
.case .list .box {
  background: #ffffff;
  margin: 5px;
  padding: 15px;
  border: 1px #eef3fb solid;
}
.case .list .box:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
.case .list .pic-text {
  position: relative;
  min-height: 75px;
}
.case .list .pic-text .pic {
  display: block;
  position: absolute;
  width: 68px;
  height: 68px;
  left: 0;
  right: 0;
}
.case .list .pic-text .text {
  padding: 0 0 0 78px;
}
.case .list .pic-text .title {
  color: #333333;
  font-size: 16px;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  padding-right: 50px;
}
.case .list .pic-text .info {
  color: #999999;
  font-size: 13px;
  line-height: 20px;
  height: 50px;
  overflow: hidden;
  padding: 10px 0 0 0;
}
.case .list .pic-text .ty {
  position: absolute;
  right: 0;
  top: 0;
  background: #21b0ff;
  line-height: 24px;
  padding: 0 10px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.case .list .pic-text .ty:hover {
  background: #06429a;
}
.case .list .pic-text .ty .ewm {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -65px;
  top: 30px;
  width: 135px;
  border: 1px #f2f2f2 solid;
  background: #f2f2f2;
  text-align: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  padding: 10px 0 5px 0;
  z-index: 1;
  cursor: auto;
  color: #333333;
  font-size: 12px;
}
.case .list .pic-text .ty .ewm img {
  display: inline-block;
  width: 114px;
}
.case .list .pic-text .ty .ewm span {
  display: block;
  margin: 5px 0 0 0;
}
.case .list .pic-text .ty:hover .ewm {
  display: block;
}
.case .list .tags-view {
  position: relative;
  margin: 10px 0 0 0;
}
.case .list .tags-view .tags span {
  background: #f4f4f4;
  color: #666666;
  font-size: 12px;
  line-height: 26px;
  padding: 0 10px;
  display: inline-block;
  border-radius: 5px;
}
.case .list .tags-view .view {
  position: absolute;
  right: 0;
  top: 0;
  color: #666666;
  font-size: 15px;
}
.case .list .tags-view .view img {
  margin: 4px 5px 0 0;
  float: left;
}
.case .list .slick-list {
  padding-bottom: 60px;
}
.case .list .slick-dots {
  bottom: 10px;
}
.case .list .slick-dots li button {
  background: #dde8f1;
}
.case .list .slick-dots li.slick-active button {
  background: #21d0ff;
}
@media (max-width: 1280px) {
  .case .list .pic-text .ty .ewm {
    left: auto;
    right: 0;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .case .list .item {
    float: left;
    width: 50%;
  }
}
@media (max-width: 480px) {
  .case .list .item {
    width: 100%;
  }
}
.brand-value ul {
  margin: 0 -18px;
}
.brand-value li {
  width: 33.33333333%;
  float: left;
  color: #fff;
  font-size: 24px;
  font-family: 幼圆;
}
.brand-value li .box {
  border-radius: 5px;
  margin: 18px 18px;
  min-height: 100px;
  overflow: hidden;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.brand-value li .pic {
  float: left;
  width: 150px;
  text-align: center;
  overflow: hidden;
}
.brand-value li .text {
  position: relative;
  padding: 30px 0 0 170px;
}
.brand-value li.li-01 .box {
  background: #0479bb;
}
.brand-value li.li-02 .box {
  background: #ffb945;
}
.brand-value li.li-03 .box {
  background: #826aff;
}
.brand-value li.li-04 .box {
  background: #e783f0;
}
.brand-value li.li-05 .box {
  background: #25c2f5;
}
.brand-value li.li-06 .box {
  background: #f8874f;
}
.brand-value li:hover .box {
  box-shadow: 5px 6px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) {
  .brand-value li {
    font-size: 20px;
  }
  .brand-value li .text {
    padding-left: 150px;
  }
}
@media (max-width: 1003px) {
  .brand-value li {
    width: 50%;
  }
  .brand-value ul {
    margin: 0 0;
  }
}
@media (max-width: 767px) {
  .brand-value li .box {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .brand-value li .pic {
    width: 120px;
    margin-top: 10px;
  }
  .brand-value li .text {
    padding-top: 35px;
    padding-left: 120px;
  }
}
@media (max-width: 639px) {
  .brand-value li {
    width: 100%;
  }
  .brand-value li .text {
    padding-left: 150px;
  }
}
@media (max-width: 360px) {
  .brand-value li .box {
    margin-left: 0;
    margin-right: 0;
  }
  .brand-value li .text {
    padding-left: 130px;
  }
}
.consumer-value {
  background: #f5f9ff;
}
.consumer-value .list {
  margin-top: 40px;
}
.consumer-value li {
  width: 16.66666667%;
  float: left;
}
.consumer-value .box {
  text-align: center;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.consumer-value .box .pic {
  display: block;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin: auto;
  box-shadow: 4px 4px 4px #ebeff5;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.consumer-value .box img {
  max-width: 100px;
}
.consumer-value .box .text {
  text-align: center;
  font-weight: bold;
  color: #666666;
  line-height: 20px;
  padding-top: 65px;
  position: relative;
}
.consumer-value .box .text:before {
  content: "";
  display: block;
  background: #21b0ff;
  border: 6px #e7ecf4 solid;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  left: 50%;
  margin-left: -12.5px;
  top: 33px;
}
.consumer-value .box .text:after {
  content: "";
  display: block;
  border-left: 1px #d4dae3 dotted;
  width: 1px;
  height: 35px;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-left: 0.5px;
  top: 0;
}
.consumer-value .box:hover {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.consumer-value .box:hover .pic {
  box-shadow: 4px 4px 4px #d2e2f9;
}
.consumer-value .box:hover .text {
  color: #21d0ff;
}
@media (max-width: 1003px) {
  .consumer-value li {
    width: 33.33333333%;
    margin-bottom: 25px;
  }
}
@media (max-width: 639px) {
  .consumer-value li {
    width: 50%;
  }
}
@media (max-width: 360px) {
  .consumer-value .box .pic {
    width: 120px;
    height: 120px;
  }
  .consumer-value .box .text {
    font-size: 12px;
  }
}
.service .list {
  margin-top: 40px;
}
.service .list li {
  width: 33.33333333%;
  float: left;
  color: #666;
}
.service .list .box {
  text-align: center;
}
.service .list .box:hover .pic {
  box-shadow: 0 0 10px rgba(0, 73, 113, 0.5);
}
.service .list .box:hover .pic img {
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.service .list .pic {
  display: block;
  position: relative;
  padding-top: 75%;
  box-shadow: 0 0 10px rgba(0, 73, 113, 0.1);
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  background: #f6f9fe;
  -webkit-transition: all .5s;
          transition: all .5s;
  overflow: hidden;
}
.service .list .pic img {
  -webkit-transition: all .5s;
          transition: all .5s;
}
.service .list .text {
  font-size: 15px;
}
.service .list .text .title {
  display: inline-block;
  background: #6ca5ff;
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  padding: 0 15px;
  border-radius: 20px;
  box-shadow: 0px 5px 5px rgba(108, 168, 255, 0.32);
  margin-bottom: 15px;
}
@media (max-width: 1003px) {
  .service .list .pic {
    width: 200px;
    padding-top: 86%;
  }
  .service .list .text .title {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .service .list .pic {
    width: 180px;
  }
  .service .list .text {
    font-size: 12px;
  }
  .service .list .text .title {
    line-height: 30px;
  }
}
@media (max-width: 639px) {
  .service .list li {
    width: 100%;
  }
  .service .list .pic {
    padding-top: 25%;
    float: left;
    width: 40%;
  }
  .service .list .text {
    width: 60%;
    float: right;
    margin-top: 10px;
    text-align: left;
    padding-left: 20px;
  }
}
@media (max-width: 360px) {
  .service .list .pic {
    width: 35%;
  }
  .service .list .text {
    width: 65%;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 0;
  }
  .service .list .text .title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 5px;
  }
}
.footer {
  background: #1974dd;
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .title {
  font-weight: bold;
  font-size: 20px;
  line-height: 50px;
  margin-bottom: 40px;
}
.footer .title .cn {
  border-bottom: 1px #fff solid;
  display: inline-block;
  margin-right: 10px;
}
.footer .contact {
  font-size: 16px;
  line-height: 26px;
  float: left;
  width: 30%;
}
.footer .contact .p-01 {
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.footer .contact .icon {
  position: absolute;
  left: 0;
  display: inline-block;
}
.footer .contact .icon img {
  max-width: 25px;
}
.footer .message {
  width: 70%;
  padding-left: 70px;
  float: right;
}
.footer .message li {
  margin-bottom: 20px;
}
.footer .message input,
.footer .message textarea {
  background: #3082e0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px #dedede solid;
  padding: 10px 5px;
  color: #fff;
  font-size: 13px;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.footer .message input:-moz-placeholder,
.footer .message textarea:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #fff;
  opacity: 0.6;
}
.footer .message input::-moz-placeholder,
.footer .message textarea::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #fff;
  opacity: 0.6;
}
.footer .message input:-ms-input-placeholder,
.footer .message textarea:-ms-input-placeholder {
  color: #fff;
  opacity: 0.86;
}
.footer .message input::-webkit-input-placeholder,
.footer .message textarea::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.6;
}
.footer .message input:focus,
.footer .message textarea:focus {
  background: rgba(255, 255, 255, 0.2);
}
.footer .message textarea {
  height: 80px;
}
.footer .message .name {
  padding-right: 20px;
  width: 34%;
  float: left;
}
.footer .message .name input {
  width: 100%;
}
.footer .message .tel {
  padding-right: 20px;
  width: 34%;
  float: left;
}
.footer .message .tel input {
  width: 100%;
}
.footer .message .email {
  width: 32%;
  float: left;
}
.footer .message .email input {
  width: 100%;
}
.footer .message .nr {
  width: 100%;
}
.footer .message .nr textarea {
  width: 100%;
}
.footer .message .yzhm-btn input {
  float: left;
  margin-right: 10px;
}
.footer .message .yzhm-btn .yzhm {
  display: inline-block;
  height: 39px;
  border: 1px #dedede solid;
  float: left;
  margin-right: 10px;
}
.footer .message .yzhm-btn img {
  max-height: 37px;
}
.footer .message .yzhm-btn .a-01 {
  display: inline-block;
  text-decoration: underline;
  line-height: 39px;
}
.footer .message .yzhm-btn .btn {
  float: right;
}
.footer .message .yzhm-btn .btn a {
  display: inline-block;
  background: #21b0ff;
  font-weight: bold;
  text-align: center;
  line-height: 39px;
  padding: 0 10px;
  min-width: 120px;
  -webkit-transition: all .5s;
          transition: all .5s;
}
.footer .message .yzhm-btn .btn a:hover {
  background: #009aef;
  text-decoration: none;
}
@media (max-width: 1100px) {
  .footer .contact {
    width: 35%;
  }
  .footer .message {
    width: 65%;
  }
  .footer .message .yzhm-btn input {
    width: 100px;
  }
  .footer .message .yzhm-btn .btn a {
    min-width: 80px;
  }
}
@media (max-width: 1003px) {
  .footer .contact {
    width: 100%;
  }
  .footer .message {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .footer .contact .p-01 {
    font-size: 14px;
  }
}
@media (max-width: 639px) {
  .footer .message .name {
    width: 100%;
    padding-right: 0;
  }
  .footer .message .tel {
    width: 100%;
    padding-right: 0;
  }
  .footer .message .email {
    width: 100%;
  }
  .footer .message .yzhm-btn .btn {
    display: block;
    float: left;
    margin-top: 10px;
  }
}
@media (max-width: 360px) {
  .footer .title {
    font-size: 16px;
    line-height: 40px;
  }
  .footer .title .cn {
    padding-bottom: 5px;
  }
}
.copyright {
  background: #242a32;
  color: #999999;
  text-align: center;
  line-height: 30px;
  padding: 5px 0;
}
@media (max-width: 1003px) {
  .copyright {
    margin-bottom: 54px;
  }
}
/*移动端底部浮动导航*/
.mobile-footer-menu {
  display: none;
  height: 54px;
}
@media (max-width: 768px) {
  .mobile-footer-menu {
    display: block;
    width: 100%;
    background: #019ee4;
    padding: 5px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    list-style: none;
    font-size: 12px;
  }
  .mobile-footer-menu li {
    width: 50%;
    float: left;
    position: relative;
  }
  .mobile-footer-menu li:after {
    content: "";
    position: absolute;
    height: 42px;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    right: 0;
    top: 2px;
  }
  .mobile-footer-menu li span {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  .mobile-footer-menu li em {
    font-style: normal;
    text-align: center;
    display: block;
    color: #fff;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
  }
  .mobile-footer-menu li:last-child:after {
    display: none;
  }
}
