﻿:root {
  --font-default: "Microsoft YaHei";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}


:root {
  --color-default: #212529;
  --color-primary: #1D47BE;
  --color-secondary: #37373f;
}


:root {
  scroll-behavior: smooth;
}


body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-default);
  text-decoration: none;
}

a:hover {
  color: --color-default;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}


.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #4478FF;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.tras-text {
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0em;
  color: rgba(55, 55, 205, 0.04);
  font-size: 50px;
  font-family: 'Microsoft YaHei';
  margin-bottom: 0;
  line-height: 1;
}

#banner {
  height: 50vh;
  background-size: cover;

}

.case-top {
  background: url(../image/case_top_bg.jpg) center center;

}

.about-top {
  background: url(../image/about_top_bg.jpg) center center;
}

.coo-top {
  background: url(../image/about_top_bg.jpg) center center;
}

.bpi-top {
  background: url(../image/bpi_top_bg.jpg) center center;
}

.bpm-top {
  background: url(../image/bpm_top_bg.jpg) center center;
}

.doa-top {
  background: url(../image/bpi_top_bg.jpg) center center;
}

.bpa-top {
  background: url(../image/bpa_top_bg.jpg) center center;
}

.devops-top {
  background: url(../image/devops_top_bg.png) center center;
}




.join-us {
  background: #FF7F2A;
  color: #fff;
  font-size: 18px;
  width: 168px;
  height: 38px;
  line-height: 38px;
  margin: 20px auto auto;
  cursor: pointer;
}


section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background: #F7FAFD;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
  
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  
  padding-bottom: 0;
  font-family: "Microsoft YaHei";
  color: #2D2D2D;
}

.section-title h5 {
  text-align: left;
  position: relative;
  padding-left: 10px;
}

.section-title h5::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 20px;
  background: #1D47BE;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-title p {
  margin-bottom: 0;
  color: #666666;
}
.add-margin-top{
  margin-top: 100px;
}


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
   
   .cust-left{
    line-height: 150px !important;
   }
   .cust-right{
    height: 150px !important;
   }
}


#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
}

#header.header-fixed {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 0;
  font-weight: 700;
  font-family: "Microsoft YaHei";
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #635551;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
}

.container {
  position: relative;
  z-index: 2;
  width: 75%;
}




.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding-left: 20px;
  cursor: pointer;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  
  white-space: nowrap;
  transition: 0.3s;
  border-top: 2px solid #fff;
  padding: 26px 2px 29px 2px;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #1D47BE;
  border-color: #1D47BE;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--color-primary);
}
.child-ul a:hover,
.child-ul .active:hover,
.child-ul li:hover>a {
  color: var(--color-primary);
  border: none !important;
}
.child-ul a, .child-ul a:focus{
  border: none !important;
}
.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}



.get-started-btn .icon {
  margin-right: 5px;
}

.get-started-btn:hover {
  
  color: #1D47BE;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}


.mobile-nav-toggle {
  color: #473d3a;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 37, 35, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #473d3a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


#hero {
  width: 100%;
  height: 70vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
  margin-bottom: -50px;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  
}

#hero .carousel-container {
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}



#hero .container {
  text-align: left;
}

#hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  margin: auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item {
  opacity: 0;
}

#hero .carousel-inner .active {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 66px;
  }
  .navbar>ul>li{
    padding-left: 0;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #1D47BE;
    border: none !important;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
  #hero{
    height: 30vh !important;
  }
  #hero .carousel-container {
    top: 0px;
    left: 5px;
    right:5px;
  }
  #hero .carousel-item::before {
    content: "";
    background: linear-gradient(180deg, #1A388D 0%, rgba(0, 83, 254, 0.66) 99%);
  }
  .add-display .icon-box{
    margin: 0 15px;
  }
  #banner{
    height: auto !important;
  }
  .hide-mobile{
    display: none;
  }
  .add-display{
    flex-wrap: wrap;
  }
  .add-display-column{
    flex-direction: column;
  }
  .add-display-row{
    flex-direction: row;
  }
  .rs-items{
    width: 100%;
  }
  .justify-content{
    justify-content: center;
  }
  
  .navbar>ul>li{
    padding-left: 0;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #1D47BE;
    border: none !important;
  }
  .mobileShow p{
    font-size: 13px;
  }
  .font-szie13{
    font-size:13px
  }
  .text-left{
    text-align: left !important;
  }
 .mb-show{
  display: none;
 }
 .pc-show{
  display: block !important;
 }
 .mobileShow{
  opacity: 1 !important;
 }
 .route .ritem{
  display: block !important;
  margin-bottom: 40px !important;
  padding: 2px 20px !important;
 }
 .route .ritem::after{
  top:88% !important;
 }
}


@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}


.why-us {
  padding: 0 0 30px 0;
  position: relative;
  z-index: 3;
}

.why-us .content {
  padding: 30px;
  background: #ff5821;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #ff5821;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 15px 10px 15px 10px;
  width: 100%;
}

.why-us .icon-boxes .icon-box .icon {
  margin-right: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: #F7F7F7;
  text-align: center;
}
.why-us .icon-boxes .icon-box .icon img{
  width: 100%;
  height: 100%;
}
.why-us .icon-boxes .icon-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin: auto;
}

.why-us .icon-boxes .icon-box p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 0;
}



.stats-counter {
  
  background: rgba(247, 250, 253, 0.9);
  background-size: cover;
  padding: 100px 0;
}

.stats-counter .section-title {
  margin-top: -15px;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  color: var(--color-primary);
  font-weight: 700;
}

.stats-counter .stats-item a {
  font-size: 16px;
  font-weight: normal;
  color: var(--color-primary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  color: #716f6f;
}



#features {
  background: #fff;
}

#features .section-title {
  margin-top: -15px;
}


#clients {
  text-align: center;
  background: url("../image/clients_bg.jpg") center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}


.clients img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 5px;
  margin: 0 auto;
  max-width: 16%;
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

#clients .carousel-indicators {
  margin-bottom: -1rem;
}

#clients .carousel-indicators .active {
  background-color: var(--color-primary);
}

@media (max-width: 768px) {
  .clients img {
    padding: 5px 0;
  }
  .navbar>ul>li{
    padding-left: 0;
  }
  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #1D47BE;
    border: none !important;
  }
}



.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}


.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
  position: relative;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .icon {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);
  left: 30px;
}

.contact .username {
  width: 22px;
  height: 22px;
  background-image: url('../image/contacts-fill.png');
  background-size: 100% 100%;
}

.contact .conpyname {
  width: 22px;
  height: 22px;
  background-image: url('../image/conpy-fill.png');
  background-size: 100% 100%;
}

.contact .job {
  width: 21px;
  height: 20px;
  background: url('../image/css_sprites.png') -220px -52px;
}

.contact .telephone {
  width: 22px;
  height: 22px;
  background-image: url('../image/phone-fill.png');
  background-size: 100% 100%;
}

.contact .email {
  width: 19px;
  height: 19px;
  background-image: url('../image/send-plane-fill.png');
  background-size: 100% 100%;
}

.contact .php-email-form input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 22px;
  text-indent: 40px;
}

.contact .php-email-form input:focus {
  border-color: #2861FF;
}

.contact .php-email-form input {
  height: 44px;
}


.contact .php-email-form button[type=submit] {
  background: #2861FF;
  border: 0;
  padding: 8px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  min-width: 132px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #2861FF;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}




.services .icon-box {
  text-align: center;
  padding: 26px 20px 33px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  box-sizing: border-box;
  border: 1px solid #F9F9F9;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #1D47BE;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
  font-size: 24px;
}

.services .icon-box p {
  padding-top: 12px;
  text-align: left;
}

.services .icon-box:hover {
  background: #1D47BE;
  color: #fff !important;
}
.services .icon-box:hover  {
  background: #1D47BE;
  color: #fff;
}
.services .icon-box:hover .add-bpm-text {
  color: #fff;
}
.services .icon-box:hover .icon {
  background: #fff;
  color: #1D47BE;
}



#process_area {
  text-align: center;
  background: url(../image/process_area_bg.jpg) center center;
  background-size: cover;
  position: relative;
  z-index: 1
}





.think ul {
  height: 100%;
  margin-bottom: auto;
  padding: 0;
}

li {
  list-style: none;
  position: relative;
}

.think .icon {
  position: absolute;
  width: 28px;
  height: 28px;
}

.think .plan {
  background-image: url('../image/pi3.png');
  background-size: 100% 100%;
}

.think .optmztn {
  background-image: url('../image/pi1.png');
  background-size: 100% 100%;
}

.think .operate {
  background-image: url('../image/pi2.png');
  background-size: 100% 100%;
}

.think .design {
  background-image: url('../image/pi4.png');
  background-size: 100% 100%;
}

.think .release {
  background-image: url('../image/pi5.png');
  background-size: 100% 100%;
}

.think .content {
  padding-left: 38px;
  font-size: 14px;
}



#level {
  background: url(../image/L1_L6_bg.jpg) center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

#level:before {
  content: "";
  background: rgba(247, 250, 253, 0.98);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}



.vslist .vitem h6 {
  color: #fff;
  height: 42px;
  line-height: 42px;
  text-align: center;
  margin-bottom: 0;
}

.vslist .vitem:first-child h6 {
  background: #486BCB;

}

.vslist .vitem:first-child {
  background: rgba(72, 107, 203, 0.07);
}

.vslist .vitem:nth-child(2) h6 {
  background: #F96E23;

}

.vslist .vitem:nth-child(2) {
  background: rgba(249, 110, 35, 0.07);
}

.vitem .ctxt {
  color: #707070;
  padding: 20px 0;
}

.vitem .lcxt {
  padding-left: 95px;
}

.vslist .vitem p {
  text-align: center;
}

.vslist .vitem:first-child p {

  color: #486BCB;
}

.vslist .vitem:nth-child(2) p {
  color: #F96E23;
}

.vslist .vs-box {
  position: absolute;
  width: 95px;
  height: 95px;
  line-height: 95px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 2px solid #1269FF;
  background: #fff;
  margin-top: -30px;
}

.vslist .vs-box p {
  text-align: center;
  font-size: 36px;
  color: #606060;
  margin: 0;
}

@media (max-width: 992px) {
  .vitem .lcxt {
    padding-left: 35px;
  }

  .vslist .vs-box {
    display: none;
  }
}



#scaffold {
  background: #F7FAFD;
}

#scaffold .info-box p {
  text-align: center;
}



.route {
  background: #F7FAFD;
}

.route .ritem {
  display: flex;
  padding: 2px 34px;
  position: relative;
  justify-content: center;

}

.route .ritem::after {
  content: "";
  width: 41px;
  height: 16px;
  background: url("../image/css_sprites.png") -202px -216px;
  position: absolute;
  top: 50%;
  right: -20px;

}

.route> :last-child::after {
  display: none;
}

.route> :last-child p, .route>:first-child p {
  background: #0265F1 !important;
  color: #ffffff !important;
}

.route .ritem p {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  background: rgba(29, 71, 190, 0.05);
  border: 1px solid rgba(29, 71, 190, 0.8);
  color: #1D47BE;
  font-size: 16px;
  border-radius: 5px;
  padding: 40px 10px;
}

@media (max-width: 996px) {
  .route .ritem p {
    margin: 0;
    writing-mode: inherit;
    text-orientation: inherit;
    text-align: center;
    background: rgba(29, 71, 190, 0.05);
    border: 1px solid rgba(29, 71, 190, 0.8);
    color: #1D47BE;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 40px;
    overflow: hidden;
  }

  .route .ritem::after {
    content: "";
    width: 41px;
    height: 16px;
    background: url(../image/css_sprites.png) -202px -216px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%) rotate(90deg);
    pointer-events: none;
    background-size: inherit;
  }

}




#assure {
  background: #F7FAFD;
}

#assure .faq-item p {
  font-size: 14px;
}

#assure .faq-item .bi {
  color: #547DEE;
  margin-right: 5px;
}

#assure .row>:first-child h6 {
  text-align: right;
}

@media (max-width: 992px) {
  #assure .faq-item h6 {
    text-align: left;
  }

  #assure .row> :nth-of-type(2) {
    display: none;
  }
}


.winner h6 {
  font-size: 14px;
}

.winner .faq-item {
  font-size: 14px;
}


#core {
  background: url(../image/core_bg.jpg) center center;
  background-size: cover;
}


#digitalize p {
  font-size: 14px;
}


#result .row {
  background: #F7FAFD url(../image/result.png) no-repeat;
  background-size: 55%;
  background-position: bottom;
}

#result p {
  font-size: 14px;
  color: #666666;
  text-align: center;
}

#result .row> :first-child p {
  text-align: left;
}

#result .row> :last-child p {
  text-align: right;
}

@media (max-width: 996px) {
  #result .row> :last-child p {
    text-align: left;
  }

  #result .row {
    background: #F7FAFD;
  }

  #result h6 {
    display: none;
  }
}



.case .member {
  padding-top: 38px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.case .member .member-img {
  position: relative;
  overflow: hidden;

}

.case .img-case {
  max-width: 50%;
}

.case .member .member-info {
  padding: 25px 15px;
  text-align: left;
}

.case .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #989595;
}




.files {
  padding: 50px 0;
  text-align: center;
}

.files img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.files img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .files img {
    max-width: 50%;
  }
}


@media (max-width: 768px) {
  .files img {
    max-width: 40%;
  }
  .add-row{
    padding: 0 !important;
  }
}

.card-inner {
  background: #274DA0;
  color: #fff;
  font-size: 14px;
  padding: 15px 20px;
}



@media (max-width: 768px) {
  .bpi-mode img {
    max-width: 60%;
  }
  .add-row{
    padding: 0 !important;
  }
}



#prices {
  background: url(../image/price_bg.jpg) center center;
  background-size: cover;
}

.prices .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  opacity: 1;
  background: rgba(2, 101, 241, 0.12);
  border-radius: 10px;
}

.prices .icon-box .icon {
  margin-bottom: 10px;
}


.prices .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: #6F6F70;
}

.prices .icon-box:hover {
  transform: translateY(-10px);
}



.coo {
  background: url(../image/coo_bg.jpg) center center;
  background-size: cover;
  padding: 80px 0;
}

#partner {
  background: url(../image/prt_bg.jpg) center center;
  background-size: cover;
}

.adv_th h6 {
  text-align: left;
}

.adv_th .icon-box {
  padding: 50px 20px;
  background: rgba(193, 216, 255, 0.1);
}

.adv_th .icon-box h6 {
  font-size: 14px;
}

.adv_th .prices p {
  color: #1D47BE;
}

.adv_th .prices h6 {
  color: #666666;
  margin-bottom: 0;
  padding-top: 10px;
}


.adv_five {
  background: url(../image/adv_bg.jpg) center center;
  background-size: cover;
}

.adv_five p {
  color: #fff;
  padding-top: 10px;
  margin: 0;
}
.cols-add{
  flex: 1;
}
.adv_five .icon-box {
  border-radius: 10px;
  opacity: 1;
  padding: 50px 0;
  background: rgba(18, 105, 255, 0.3);
  
}

@media (max-width: 768px) {
  .adv_five .icon-box {
    padding: 20px 0;
  }
  .add-row{
    padding: 0 !important;
  }
}


#step {
  background: url(../image/step_bg.jpg) center center;
  background-size: cover;
}

#step .goon {
  background: #fff;
  padding: 0 50px;
  border-radius: 5px;
}

.step .box {
  display: inline-block;
  width: 20%;
  position: relative;
}


.step .box::after {
  content: "";
  width: 42px;
  height: 42px;
  background: url(../image/css_sprites.png) 230px -96px;
  position: absolute;
  top: 25%;
  right: -10px;
  
}

.step .row>:last-child::after {
  display: none;
}

@media (max-width: 996px) {
  .step .row .box {
    width: 33.33333%;
  }


}

@media (max-width: 768px) {
  .step .row .box img {
    max-width: 80%;

  }

  .step .row .box::after {
    display: none;
  }
  .cols-add{
    flex: none;
  }
  .add-float{
    text-align: left !important;
  }
  .add-row{
    padding: 0 !important;
  }
}


#about {
  background: url(../image/about_bg.jpg) center center;
  background-size: cover;
}

#about p {
  font-size: 14px;
}

#iso {
  background: url(../image/iso_bg.jpg) center center;
  background-size: cover;
}

.iso .icon-box p {
  text-align: center;
  color: #fff;
  font-size: 14px;
}

.iso .icon-box .icon {
  height: 135px;
}

.iso .icon-box img {
  
}


@media (min-width: 576px) {
  .add-float{
    text-align: left;
  }
  .add-row{
    padding: 0;
  }
}

@media (min-width: 768px) {
  
  .add-float{
    text-align: left;
  }
  .add-row{
    padding: 0 !important;
  }
}

@media (min-width: 992px) {
.add-float{
  text-align: left;
}
.add-row{
  padding: 0;
}
}


.add_fuhao span{
  font-size: 76px;
  color: #9E9E9E;
}
.click_href{
  cursor: pointer;
}
.img-fluid-add{
  width: 100%;
}
.add-text-color{
  color: #555555 !important;
  letter-spacing: .8px;
}
.add-desc-color{
  color: #666666 !important;
}
.add-title{
  font-size: 16px !important;
}
.add-row{
  padding: 0 100px;
}
.add-none-margin{
  margin-bottom: 0 !important;
}
.add-about-icon img{
  width: 80px !important;
  height: 80px !important;
}
.add-margin{
  margin-bottom: 15px;
}
.add-margin-3{
  margin-top: 3px !important;
}
.add-bpm-text{
  font-size: 14px;
  letter-spacing: 1px;
  color: #666666;
}
.add-bpm-text:hover{
  color: #fff !important;
  cursor: pointer;
}
.cursor{
  cursor: pointer;
}
.btitle{
  font-weight: bold;
  color: #2D2D2D;
  margin-right: 10px;
  margin-bottom: 5px !important;
}
.btitle .bi{
  font-size: 20px;
}
.btext{
  color: #666666;
  margin-bottom: 15px;
  margin-left: 25px;
}

.add-padding-0-10{
  padding: 0 10px;
}
.add-padding-0-20{
  padding: 0 20px;
}
.add-margin-10{
  margin: 0 10px;
}

.line-height{
  line-height: 25px;
}
.add-margin-30{
  margin-bottom: 30px;
}
.add-margin-40{
  margin-bottom: 40px;
}
.add-margin-20{
  margin-bottom: 20px !important;
}
.doa-text{
  display: flex;
}
.add-about-icon{
  padding: 30px !important;
}
.add-float{
  text-align: right;
}
.add-display{
  display: flex;
  justify-content: center;
}
.rs-items{
  
  flex: 1;
}
.add-padding{
  padding:30px 20px !important;
}
.eg-text span{
  padding-left: 22px;
  display: block;
  font-size: 14px;
}
.add-zb-text{
  display: flex;
  justify-content: left;
}
.add-zb-text span{
  padding-left: 5px;
}
.indexBanner:nth-of-type(1){
  background-image: url('../image/next_1.jpg');
}
.indexBanner:nth-of-type(2){
  background-image: url('../image/next_2.jpg');
}
.indexBanner:nth-of-type(3){
  background-image: url('../image/next_3.jpg');
}
.mobileShow{
  opacity: 0;
}
.colorF{
  color: #fff;
}
.pc-show{
  display: none;
 }

#footer {
  font-size: 14px;
}


#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1E232F;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family:  "Microsoft YaHei";
  color: #686E73;
}

#footer .footer-top .footer-contact span {
  color: #9E9E9E;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #9E9E9E;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffffff;
}
.nav-link:hover{
  color: #fff;
}




#process-cycle{
  background: url(../image/process-eval-bg.png) center center;
  padding-top: 20px;
}
#process-result{
  background: url(../image/process_one_bg_2.png) center center;
}
.process-evaluate{
  background: url(../image/process-wbg.png) center center;
  padding-top: 20px;
}


.process_item{
  width: 210px;
  margin-top: 10px;
  margin: auto;
}
.process_item img{
  width: 100%;
  height: 100%;
}
.process_item p{
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}
.process_flex_box{
  position: relative;
  display: flex;
  justify-content: space-between;
}
.process_flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.first_process_flex{
  padding-left: 0vw;
  text-align:  center;
}
.last_process_flex{
  padding-right: 0vw;
  text-align:  center;
}

.process_evaluate_one_top{
  background: url(../image/process-one-top.png) center center;
}
#process_course{
  background: url(../image/process_one_bg_1.png) center center;
}
#bpaBuild{
  background: url(../image/process_one_bg_2.png) center center;
}
.pro_item{
  float: right;
  display: flex;
  align-items: center;
}
.pro_item p{
  margin-bottom: 3px !important;
}
.cust-left{
  width: 130px;
  line-height: 110px;
  text-align: center;
  background: #0265F1;
  color: #fff;
  border-radius: 5px 0px 0px 5px;
  font-size: 18px;
  font-weight: 500;
}
.cust-right{
  width: calc(100% - 130px);
  height: 110px;
  padding: 10px 20px;
  background: #F0F0F0;
  color: #555555;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cust-bgColor{
    border-radius: 5px;
    background: rgba(216, 216, 216, 0.2);
    padding: 30px 15px;
}
.pad4{
  padding: 40px 0;
}
.aRight{
  text-align: right;
}
.colorText{
  color: #555555;
}
.pet-cust-bgcolor{
    border-radius: 5px;
    margin: 0 10px;
    background: rgba(216, 216, 216, 0.2);
    padding: 10px 15px;
}
#process-etbg{
  background: url(../image/process-two-bg.png) center center;
}
#process-etbg-1{
  background: url(../image/process-two-bg2.png) center center;
}
.process-cols{
  display: flex;
  flex-wrap: wrap;
  
}
.row-pitem{
    width: calc(100% / 9.5);
    min-width: 110px;
    height: 90px;
    background: rgba(18, 105, 255, 0.102);
    color: #1D47BE;
    border: 2px solid rgba(43, 94, 237, 0.6);
    border-radius: 5px;
    text-align: center;
    margin-left: 15px;
    padding: 20px 5px 0px 5px;
    margin-top: 15px;
}

.process-etbg-2{
  background: url(../image/process-two-bg3.png) center center;
}
.cust-process-img{
  width: 420px;
  height: auto;
  margin: auto;
  margin-top: 20px;
}
.cust-process-img img{
  width: 100%;
}
.cust-process-btn{
  width: 550px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}
.btn-groups{
  padding: 0 20px;
  flex: 1;
}
.btn-group-text{
  width: 191px;
  text-align: center;
  font-size: 14px;
  margin: 20px 0;
} 
.btn-group-btns{
  display: inline-block;
  width: 191px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #1D47BE;
  border-radius: 5px;
  color: #1D47BE;
  font-size: 14px;
}
.pTwo .btn-group-text{
  width: 250px;
}
.pTwo .btn-group-btns{
  width: 250px;
}
.cust-process-title{
  text-align: center;
  color: #1269FF;
  font-weight: 500;
  margin:50px 0;
}

.about-icon{
  padding-bottom: 10px;
}
.about-icon img{
  height: 110px;
}
@media (max-width: 1365px) {
  .cust-left{
    line-height: 140px !important;
   }
   .cust-right{
    height: 140px !important;
   }
}
@media(min-width: 300px) and (max-width: 768px) {
  .pro_item {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .cust-left{
    line-height: auto !important;
   }
   .cust-right{
    height: auto !important;
    margin-top: 1vw;
   }
}