@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1440px) {
  .container {
    max-width: 1380px;
  }
}

.col-md-20 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

a:hover,
a:focus {
  color: #2f318b;
  text-decoration: none !important;
  cursor: pointer;
}

ol {
  margin-bottom: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pd {
  padding: 40px 0;
}

.pd img{max-width:100%;height:auto}

.index-banner,.nBg{padding-top: 70px;}

@media (min-width: 992px) {
  .pd {
    padding: 100px 0;
  }
  .index-banner,.nBg{padding-top: 82px;}
}

.title {
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .title {
    margin-bottom: 50px;
  }
}

.title h3 {
  margin-bottom: 0;
  color: #222;
  font-size: 24px;
  line-height: 34px;
  font-weight: normal;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
  }
}

.title p {
  font-size: 16px;
  line-height: 30px;
  color: #222;
}

@media (min-width: 992px) {
  .title p {
    font-size: 18px;
    line-height: 32px;
  }
}

a.more {
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  font-size: 14px;
}

@media (min-width: 992px) {
  a.more {
    width: 200px;
    height: 44px;
    line-height: 44px;
  }
}

.btn1 {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  color: #fff;
  border: 1px solid #fff;
  text-align: center;
  -webkit-transition: all .2s;
  transition: all .2s;
  display: inline-block;
}

@media (min-width: 992px) {
  .btn1 {
    font-size: 16px;
    line-height: 22px;
    padding: 12px 32px;
  }
}

.btn1:hover {
  background: #fff;
  color: #2f318b;
}

.btn2 {
  font-size: 14px;
  line-height: 20px;
  padding: 6px 12px;
  color: #2f318b;
  border: 1px solid #2f318b;
  text-align: center;
  display: inline-block;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media (min-width: 992px) {
  .btn2 {
    font-size: 16px;
    line-height: 22px;
    padding: 12px 32px;
  }
}

.btn2:hover {
  background: #e62129;
  border: 1px solid #e62129;
  color: #fff;
}

.btn-more {
  margin-top: 50px;
}

.enno-banner .item {
  position: relative;
}

.enno-banner .item .info {
  position: absolute;
  top: 50%;
  left: 9%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60%;
  z-index: 999;
}

@media (min-width: 992px) {
  .enno-banner .item .info {
    width: 40%;
  }
}

.enno-banner .item .info h3 {
  font-size: 24px;
  color: #2f318b;
  font-weight: normal;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .enno-banner .item .info h3 {
    font-size: 64px;
    margin-bottom: 20px;
  }
}

.enno-banner .item .info p {
  color: #222;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
}

@media (min-width: 992px) {
  .enno-banner .item .info p {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 40px;
  }
}

.enno-banner .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: matrix(1.1, 0, 0, 1.1, 0, 0);
          transform: matrix(1.1, 0, 0, 1.1, 0, 0);
  -webkit-transition: all 0.4s ease 1.2s;
  transition: all 0.4s ease 1.2s;
}

.enno-banner .swiper-slide-active .item .info h3 {
  -webkit-animation: bannertextDow 1s ease both 600ms;
          animation: bannertextDow 1s ease both 600ms;
}

.enno-banner .swiper-slide-active .item .info p {
  -webkit-animation: bannertextDow 1s ease both 600ms;
          animation: bannertextDow 1s ease both 600ms;
}

.enno-banner .swiper-slide-active .item .info .btn2 {
  -webkit-animation: bannertextUp 1s ease both 800ms;
          animation: bannertextUp 1s ease both 800ms;
}

.enno-banner .swiper-slide-active .item .img img {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
  -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
          transform: matrix(1, 0, 0, 1, 0, 0);
  -webkit-transition: all 5s ease;
  transition: all 5s ease;
}

@-webkit-keyframes bannertextDow {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bannertextDow {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes bannertextUp {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bannertextUp {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.choose {
  background: #2f318b;
}

@media (min-width: 992px) {
  .choose .txt {
    width: 800px;
    text-align: center;
    margin: 0 auto;
  }
}

.choose .txt h3 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .choose .txt h3 {
    font-size: 48px;
    line-height: 58px;
  }
}

.choose .txt p {
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  font-weight: normal;
  margin-bottom: 40px;
}

.potential .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.potential .container-fluid .box {
  position: relative;
}

.potential .container-fluid .box .txt {
  position: absolute;
  left: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 88%;
}

@media (min-width: 992px) {
  .potential .container-fluid .box .txt {
    width: 80%;
    left: 10%;
  }
}

.potential .container-fluid .box .txt h3 {
  font-size: 20px;
  line-height: 28px;
  color: #2f318b;
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .potential .container-fluid .box .txt h3 {
    font-size: 32px;
    line-height: 42px;
  }
}

.potential .container-fluid .box .txt p {
  font-size: 14px;
  line-height: 24px;
  color: #222;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .potential .container-fluid .box .txt p {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 48px;
    margin-bottom: 24px;
  }
}

.time {
  background: url(http://www.antaina.com/cn/images/bg4.jpg) no-repeat center center;
}

@media (min-width: 992px) {
  .time {
    padding: 150px 0;
  }
}

.time .txt {
  width: 86%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .time .txt {
    width: 800px;
    text-align: center;
  }
}

.time .txt h3 {
  font-size: 32px;
  line-height: 42px;
  color: #2f318b;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .time .txt h3 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 32px;
  }
}

.time .txt p {
  font-size: 18px;
  line-height: 30px;
  color: #222;
  font-weight: normal;
  margin-bottom: 48px;
}

.pro h3 {
  font-size: 24px;
  line-height: 34px;
  color: #2f318b;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .pro h3 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 50px;
  }
}

.pro h4 {
  font-size: 18px;
  line-height: 26px;
  color: #222;
  margin-bottom: 20px;
}

.pro .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 26px;
  color: #2f318b;
  margin-bottom: 16px;
}

.pro .list a span {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.pro .list a:hover span {
  padding-left: 4px;
}

.pro .btn2 {
  margin-top: 20px;
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .pro .btn2 {
    margin-bottom: 0;
    margin-top: 64px;
  }
}

.about .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.about .container-fluid .box {
  background: #f7f7f7;
  padding: 25px;
}

@media (max-width: 992px) {
  .about img {
    max-width:100%;
  }
}


@media (min-width: 992px) {
  .about .container-fluid .box {
    padding: 4%;
  }
}

.about .container-fluid .box h3 {
  font-size: 24px;
  color: #2f318b;
  font-weight: normal;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .about .container-fluid .box h3 {
    font-size: 40px;
  }
}

.about .container-fluid .box p {
  font-size: 14px;
  line-height: 24px;
  color: #222;
}

@media (min-width: 992px) {
  .about .container-fluid .box p {
    font-size: 16px;
    line-height: 30px;
  }
}

.about .container-fluid .box .btn2 {
  margin-top: 32px;
}

@media (min-width: 992px) {
  .blog .container-fluid {
    padding-right: 50px;
    padding-left: 50px;
  }
}

.blog h3 {
  font-size: 40px;
  margin-bottom: 50px;
  color: #2f318b;
}

.blog .item {
  display: block;
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .blog .item {
    margin-bottom: 0;
  }
}

.blog .item .img {
  overflow: hidden;
}

.blog .item .img img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.blog .item .txt {
  padding: 0 8px;
}

.blog .item .txt h5 {
  font-size: 18px;
  line-height: 24px;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 20px 0 12px;
}

.blog .item .txt p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog .item .txt .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ebebeb;
}

.blog .item .txt .bottom .date {
  font-size: 14px;
  color: #666;
}

.blog .item .txt .bottom .icon i {
  color: #666;
}

.blog .item:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog .item:hover .txt h5 {
  color: #2f318b;
}

.blog .item:hover .txt .bottom .icon i {
  color: #2f318b;
}

.blog .btn2 {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .blog .btn2 {
    margin-top: 64px;
  }
}

.footer {
  background: #333;
  padding: 30px 0 40px;
}

@media (min-width: 992px) {
  .footer {
    padding: 60px 0 80px;
  }
}

@media (min-width: 992px) {
  .footer .col-md-4 {
    border-right: 1px solid #424242;
  }
}

@media (min-width: 992px) {
  .footer .footer-contact {
    border-right: none;
  }
}

.footer .fnav a {
  display: block;
  color: #f2f2f2;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer .fnav a:hover {
  color: #2f318b;
}

.footer .social {
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .footer .social {
    margin-bottom: 0;
  }
}

.footer .social h4 {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .footer .social h4 {
    margin-bottom: 24px;
  }
}

.footer .social .list {
  text-align: center;
}

.footer .social .list a {
  display: inline-block;
  margin: 0 12px;
}

.footer .social .list a img {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.footer .social .list a:hover img {
  margin-top: -6px;
}

.footer .footer-contact h4 {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .footer .footer-contact h4 {
    margin-bottom: 24px;
  }
}

.footer .footer-contact p {
  font-size: 13px;
  line-height: 20px;
  color: #ccc;
  margin-bottom: 6px;
  padding: 0 10%;
}

.bq {
  background: #222;
  padding: 15px 0;
}

.bq .txt {
  text-align: center;
  font-size: 12px;
  color: #fff;
}

#page {
  text-align: center;
  margin-top: 40px;
}

#page .pagination {
  margin: 20px 0 0;
}

#page .pagination > .active > a {
  z-index: 3;
  color: #FFFFFF;
  cursor: default;
  background-color: #2f318b;
  border-color: #2f318b;
}

#page .pagination > li > a,
#page .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #000;
  border: 1px solid #ddd;
}

.tab-nav {
  border-bottom: 1px solid #ebebeb;
  text-align: center;
}

.tab-nav .col-12 {
  padding: 0;
}

.tab-nav .list a {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  color: #666;
  position: relative;
  margin: 0 20px;
}

@media (min-width: 992px) {
  .tab-nav .list a {
    height: 60px;
    line-height: 60px;
    margin: 0 30px;
  }
}

.tab-nav .list a.on {
  color: #2f318b;
}

.tab-nav .list a.on::after {
  content: "";
  width: 40px;
  height: 1px;
  background: #2f318b;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.tab-nav .list a:hover {
  color: #2f318b;
}

.nQuali .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 26px;
  color: #2f318b;
  margin-bottom: 16px;
}

.nQuali .list a span {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.nQuali .list a:hover span {
  padding-left: 4px;
}

.nBlog {
  padding: 30px 0;
}

@media (min-width: 992px) {
  .nBlog .container-fluid {
    padding-right: 50px;
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .nBlog {
    padding: 60px 0;
  }
}

.nBlog .item {
  display: block;
  margin-bottom: 40px;
}

.nBlog .item .img {
  overflow: hidden;
}

.nBlog .item .img img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nBlog .item .txt {
  padding: 0 8px;
}

.nBlog .item .txt h5 {
  font-size: 18px;
  line-height: 24px;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin: 20px 0 12px;
}

.nBlog .item .txt p {
  font-size: 14px;
  line-height: 24px;
  color: #666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nBlog .item .txt .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #ebebeb;
}

.nBlog .item .txt .bottom .date {
  font-size: 14px;
  color: #666;
}

.nBlog .item .txt .bottom .icon i {
  color: #666;
}

.nBlog .item:hover .img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.nBlog .item:hover .txt h5 {
  color: #2f318b;
}

.nBlog .item:hover .txt .bottom .icon i {
  color: #2f318b;
}

.nBlog-detail h5 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .nBlog-detail h5 {
    font-size: 32px;
  }
}

.nBlog-detail .tag {
  text-align: center;
  color: #888;
  font-size: 14px;
  margin-bottom: 40px;
}

.nBlog-detail .con p {
  font-size: 16px;
  line-height: 32px;
  color: #222;
  margin-bottom: .5rem;
}

.nAbout .tit h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .nAbout .tit h3 {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .nSupport .container {
    max-width: 960px;
  }
}

.nSupport .list a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  line-height: 26px;
  color: #2f318b;
  padding: 16px 0 16px 4px;
  border-bottom: 1px solid #ebebeb;
}

.nSupport .list a span {
  -webkit-transition: all .2s;
  transition: all .2s;
}

.nSupport .list a:hover span {
  padding-left: 4px;
}

.nSupport-video {
  background: #f7f7f7;
}

.nSupport-video .item {
  margin-bottom: 30px;
  display: inline-block;
}

.nSupport-video .item .img {
  position: relative;
  overflow: hidden;
}

.nSupport-video .item .img div {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}

.nSupport-video .item .img div img {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
}

.nSupport-video .item .img img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nSupport-video .item .txt {
  padding-top: 10px;
}

.nSupport-video .item .txt h6 {
  font-size: 16px;
  line-height: 26px;
  font-weight: normal;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.nSupport-video .item:hover .img div {
  background: rgba(0, 0, 0, 0.3);
}

.nSupport-video .item:hover h6 {
  color: #2f318b;
}

.video-detail h3 {
  margin-bottom: 30px;
}

.nPro .pro-nav {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .nPro .pro-nav {
    margin-bottom: 0;
  }
}

.nPro .pro-nav .pro-nav-items {
  margin-bottom: 8px;
}

.nPro .pro-nav .pro-nav-items .pro-nav-title {
  height: 64px;
  line-height: 64px;
  font-size: 18px;
  color: #222;
  width: 100%;
  cursor: pointer;
  padding: 0 30px 0 30px;
  background: url(../image/pro_right.png) no-repeat center right 30px;
  border: 1px solid #eee;
}

.nPro .pro-nav .pro-nav-items .pro-nav-title.cur, .nPro .pro-nav .pro-nav-items .pro-nav-title:hover {
  color: #fff;
  background: #2f318b url(../image/pro_down.png) no-repeat center right 30px;
}

.nPro .pro-nav .pro-nav-items .pro-nav-sub {
  padding: 0 30px;
  display: none;
  border: 1px solid #eee;
}

.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name {
  height: auto;
  padding: 10px 0 10px;
  line-height: 30px;
  font-size: 16px;
  color: #666;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  position: relative;
}

.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name a{ color: #666;}
.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name a:hover{ color: #2f318b;}
.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name a.on{ color: #2f318b;}

.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name:last-child {
  border-bottom: 0;
}

.nPro .pro-nav .pro-nav-items .pro-nav-sub .pro-sub-name:hover {
  color: #2f318b;
}

.nPro .item {
  display: block;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .nPro .item {
    margin-bottom: 30px;
  }
}

.nPro .item .img {
  overflow: hidden;
  padding: 0px 0;
  border: 1px solid #ebebeb;
}

.nPro .item .img img {
  -webkit-transition: all .3s;
  transition: all .3s;
}

.nPro .item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.nPro .item .txt {
  padding-top: 10px;
}

.nPro .item .txt h6 {
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #222;
}

.nPro .item:hover h6 {
  color: #2f318b;
}

.pro-detail {
  padding: 50px 0;
  background: #f7f7f7;
}

@media (min-width: 992px) {
  .pro-detail .container {
    /*width: 960px;*/
  }
}

.pro-detail .pro-banner a img {
  border: 1px solid #ddd;
}

.pro-detail .pro-txt {
  padding-left: 0;
}

@media (min-width: 992px) {
  .pro-detail .pro-txt {
    padding-left: 30px;
  }
}

.pro-detail .pro-txt h4 {
  font-size: 24px;
  color: #2f318b;
  line-height: 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}

.pro-detail .pro-txt p {
  font-size: 16px;
  line-height: 30px;
  color: #333333;
}

.pro-detail .pro-txt .table td,
.pro-detail .pro-txt .table th {
  border-top: 0;
  border-bottom: 1px solid #dee2e6;
}

.pro-bottom {
  padding: 50px 0;
}

@media (max-width: 992px) {
  .pro-bottom .container {
    max-width: 960px;
  }
  .pro-bottom .container .con table{width: 100%!important;}
}

.pro-bottom .tab .nav {
  margin-bottom: 40px;
}

.pro-bottom .tab .nav li a {
  font-size: 16px;
  color: #666;
  line-height: 26px;
  display: inline-block;
  display: inline-block;
  border: 1px solid #eee;
  border-left: 0;
  padding: 6px 24px;
}

.pro-bottom .tab .nav li a.active {
  background: #2f318b;
  color: #fff;
}

.pro-bottom .tab .nav li:first-child a {
  border-left: 1px solid #eee;
}

.pro-bottom .con img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  height: auto !important;
}

.pro-bottom .con p {
  font-size: 14px;
  color: #555555;
  line-height: 24px;
}

.nContact h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin: 15px 0;
}

.nContact ul li {
  font-size: 14px;
  line-height: 30px;
  color: #666;
}

.nContact form {
  margin-top: 40px;
}

@media (min-width: 992px) {
  .nContact form {
    margin-top: 0;
  }
}

.nContact form button:hover {
  background: #2f318b;
  color: #fff;
}

@media (max-width: 992px) {
  .lj .container {
    max-width: 960px;
  }
}

.lj .breadcrumb {
  margin-bottom: 0;
  background: #fff;
  padding-left: 0;
}

.lj .breadcrumb li {
  display: inline-block;
}

.lj .breadcrumb li:first-child::before {
  content: none;
  padding: 0 5px 0 0;
}

.lj .breadcrumb li::before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
}

.lj .breadcrumb li a {
  color: #2f318b;
}

.lj .breadcrumb li a i {
  display: inline-block;
  margin-right: 6px;
}
/*# sourceMappingURL=style.css.map */