@charset "UTF-8";
/* 公共部分 */
.active-menu {
  font-weight: bold;
}

.btn,
.btn-with-hover {
  width: 180px;
  height: 50px;
  border: 1px solid #707070;
  background-color: #f8f8f8;
  display: flex;
  font-size: 16px;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  transition: all 0.5s;
  cursor: pointer;
  text-decoration: none;
}

.btn-filled {
  background:#ff7b1f;
  color: white;
  border-color: #ff7b1f;
}

.btn-with-hover:hover {
  background-color: #ff7b1f;
  border-color:#ff7b1f;
  color: white;
}

.blur-bar {
  border-top: 6px solid #ff7b1f;
  width: 46px;
  margin: 20px 0;
}

.clear-input {
  border: 0;
}

.fade-in-up {
  transition-property: opacity, transform;
  transition-duration: 0.3s, 0.3s;
  transition-timing-function: ease-in, ease-in;
  /*opacity: 0;*/
  transform: translateY(10%);
}

.exe-animation {
  opacity: 1 !important;
  transform: translateY(0%) !important;
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  height: 88px;
  padding: 0 10%;
}
.header .header-left {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  /*height: 42px;*/
  height: 50px;
}
.header .header-left img {
  margin-right: 30px;
  width: 135px;
}
.header .header-left input {
  width: 260px;
  height: 40px;
  background-color: #f4f5f8;
  border: 1px solid #e9ebf2;
  border-radius: 40px;
  padding-left: 19px;
  font-size: 14px;
  box-sizing: border-box;
}
.header .header-left input::-webkit-input-placeholder {
  font-size: 14px;
  color: #9c9c9c;
}
.header .header-left input[type="text"]:focus {
  outline: none;
}
.header .header-right ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}
.header .header-right ul > li {
  list-style: none;
  display: inline;
}
.header .header-right ul > li:hover {
  font-weight: bold;
}
.header .header-right ul li .subDiv .sub-menu li a{
    color: #19152A;
    font-weight: 400;
}

.header .header-right ul li .subDiv .sub-menu li a:hover{
   text-decoration: underline;
}
.header .header-right ul > li > a {
  margin-right: 2.1vw;
  color: #333333;
  font-size: 14px;
  text-decoration: none;
}

.header-right {
}

.header .header-right ul li .subDiv {
  display: none;
  position: absolute; /* 绝对定位，脱离文档流 */
  top: 100%; /* 相对于父元素 li 的底部 */
  left: 0;
  width: 100%;
  padding-left: 200px;
  padding-right: 200px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff; /* 背景色 */
  border: 1px solid #ccc; /* 边框 */
  box-sizing: border-box;
}

.header .header-right ul li .subDiv .titel-div {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
}

.header .header-right ul li .subDiv .sub-menu {
  display: flex;
  flex-direction: column;
}

.header .header-right ul li .subDiv .sub-menu li {
  padding: 7px 0;
  line-height: 20px;
}

.header .header-right ul .menus:hover .subDiv {
  display: block;
}

.header .header-right ul .menus .titel-div {
  line-height: 20px;
}

.header .header-right .headerRightUl {
  align-items: center;
  height: 88px;
}

.header .header-right .headerRightUl .menus {
  height: 88px;
  line-height: 88px;
}
.footer {
  margin: 100px 3% 0;
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0 140px;
  /*background: no-repeat url("../img/footer-bg.png");*/
  background-size: cover;
}
.footer .first-block {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.footer .first-block .company-name {
  color: white;
  font-size: 24px;
  border-bottom: 1px solid white;
  padding-bottom: 10px;
}
.footer .first-block .footer-nav {
  display: inline-block;
}
.footer .first-block .footer-nav li {
  list-style: none;
  display: inline-block;
  min-width: 72px;
}
.footer .first-block .footer-nav li > a {
  color: white;
  margin-left: 30px;
  font-size: 16px;
  text-decoration: none;
}
.footer .second-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  margin-top: 33px;
  padding-bottom: 22px;
  border-bottom: 1px solid #dddddd;
}
.footer .second-block .footer-info {
  display: inline-block;
  width: 330px;
  color: white;
  font-size: 16px;
}
.footer .third-block {
  font-size: 16px;
  font-weight: normal;
  color: white;
  text-align: center;
  margin: 32px 0 60px;
} /*# sourceMappingURL=global.css.map */

@media screen and (max-width:1601px){
    .header .header-right ul>li>a{
         margin-right: 1.1vw!important;
    }
}

@media screen and (max-width: 1441px) {
  .header .header-right ul > li > a {
    margin-right: 16px;
  }
  .header {
    padding: 0 7%;
  }
  .header .header-left input {
    width: 200px;
    padding-left: 10px;
    font-size: 12px;
    display: none;
  }
  .footer .first-block .footer-nav li > a{
      font-size: 14px;
      margin-left: 20px;
  }
  .footer .first-block .company-name{
      font-size: 20px;
  }
  .footer .first-block .footer-nav {
     margin: 5px 0;
  }
  .footer .second-block .footer-info{
      font-size: 14px;
  }
  .footer .third-block{
      font-size:14px;
  }
   .footer .second-block div:last-child{
    font-size: 14px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 0 3%;
  }
  .header .header-right ul > li > a {
    margin-right: 4px;
  }
}

@media screen and (max-width: 768px) {
  .btn,
  .btn-with-hover {
    font-size: 14px;
  }
  .footer .first-block .footer-nav{
    display: flex;
    flex-direction: column;
  }
  .footer .first-block{
    flex-direction: column;
  }
  .footer .first-block .footer-nav li{
    margin-bottom: 11px;
  }
  .footer .third-block{
    font-size: 12px;
  }
  .blur-bar{
    margin: 10px 0;
  }
}

@media screen and (max-width :480px){
    .btn, .btn-with-hover{
        width: 138px;
        height: 31px;
        font-size: 13px;
    }
    .banner-2 .know-more-btn{
        margin-top: -48px;
    }
    .banner-2{
        padding-top: 80px;
        padding-bottom: 35px;
    }
    .classicase {
        padding: 0 4%;
    }
}

<!--0.00018405914306641-->