@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-05-26 15:47:20
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-06-01 16:20:06
 */

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 首页样式 */
/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner>video {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}



.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.banner-hover>.container {
  width: 100%;
}
.banner-hover>.container>h1 {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-size: 36px;
  color: #fff;
}
.banner-hover>.container .banner-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
}
.banner-hover>.container .banner-more {
  margin-top: 50px;
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 14px;
  color: #fff;
}
.banner-hover>.container .banner-more>a {
  float: left;
  padding-right: 50px;
  background: url(../images/banner-jiantou.png) no-repeat right center;
}

/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: var(--color-main);
  opacity: 0.5;
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-hover);
}
.banner-swiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner-swiper .banner-prev,
.banner-swiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.banner-swiper .banner-next {
  left: initial;
  right: 2%;
}
.banner-swiper:hover .banner-next,
.banner-swiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner-swiper .swiper-pagination {
    bottom: 10px;
  }
  .banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
    border-radius: 0 !important;
  }
  .banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .banner-swiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}

@media (max-width: 767px) {
  .banner-hover>.container>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .banner-hover>.container .banner-text {
    line-height: 20px;
    font-size: 16px;
    margin-top: 5px;
  }
  .banner-hover>.container .banner-more {
    margin-top: 10px;
    line-height: 20px;
    font-size: 12px;
  }
  .banner-hover>.container .banner-more>a {
    padding-right: 30px;
  }
}
/* END-首页样式 */

/* ABOUT US */
.N-banner {
  width: 100%;
  overflow: hidden;
  height: 200px;
  position: relative;
}
.N-banner>h1 {
  width: 100%;
  max-width: 1320px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.N-banner>h1>span {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 1);
}

.main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 18px;
  color: #2e2e2e;
  text-align: center;
}
.company>h1 {
  line-height: 30px;
  margin-bottom: 10px;
  font-size: 18px;
}
.company img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }

}
@media (max-width: 767px) {
  .N-banner {
    height: 150px;
  }
  .N-banner>h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .main {
    padding: 15px 0;
  }
  .company {
    line-height: 22px;
    font-size: 14px;
  }
  .company>h1 {
    line-height: 24px;
    margin-bottom: 10px;
    font-size: 20px;
  }
}
/* END-ABOUT US */

/* DESIGN MGMT CONSULTING */
.design-list {
  display: flex;
  flex-wrap: wrap;
  width: 1347px;
}
.design-list>li {
  width: 382px;
  margin: 0 67px 30px 0;
  padding-bottom: 23px;
  position: relative;
  z-index: 0;
}
.design-list>li::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #dedede;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.design-list>li::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  overflow: hidden;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  bottom: 0%;
}
.design-list>li>a {
  display: flex;
  justify-content: space-between;
}
.design-list>li>a .design-img {
  width: 175px;
  overflow: hidden;
  position: relative;
  margin-top: 4px;
}
.design-list>li>a .design-img::before {
  content: "";
  display: block;
  padding-top: 66.857143%;
}
.design-list>li>a .design-box {
  width: calc(100% - 175px);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.design-list>li>a .design-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 14px;
  color: #2a2a2a;
}
.design-list>li>a .design-box .design-more {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 16px;
  font-size: 12px;
  color: #9b9b9b;
  text-decoration: underline;
}
.design-list>li:hover::after {
  width: 100%;
}
.design-list>li:hover>a .design-box .design-more {
  color: var(--color-hover);
}

.design-details {
  display: block;
  overflow: hidden;
}
.design-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #ccc;
}
.design-details-content {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  color: #2e2e2e;
}
.design-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1320px) {
  .design-list {
    width: 102%;
    margin-left: -1%;
  }
  .design-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 1200px) {
  .design-list>li {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .design-list {
    width: 100%;
    margin-left: 0;
  }
  .design-list>li {
    width: 100%;
    margin: 0 0 10px 0;
    padding-bottom: 11px;
  }
  .design-list>li>a .design-img {
    width: 120px;
  }
  .design-list>li>a .design-box {
    width: calc(100% - 120px);
    padding-left: 15px;
  }
  .design-list>li>a .design-box .design-more {
    margin-top: 10px;
  }

  .design-details-title {
    font-size: 16px;
    line-height: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .design-details-content {
    font-size: 14px;
    line-height: 22px;
  }
}
/* END-DESIGN MGMT CONSULTING */

/* ENGINEERING CONSULTING */
.engineering-main {
  padding: 0 !important;
}
.engineering-nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  padding: 22px 0 32px 0;
}
.engineering-nav>li {
  width: calc(calc(100% / 3) - 24px);
  display: flex;
  margin: 0 12px 10px 12px;
}
.engineering-nav>li>a {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  overflow: hidden;
  line-height: 20px;
  min-height: 61px;
  font-size: 14px;
  color: #181818;
  padding-bottom: 2px;
  position: relative;
  z-index: 0;
}
.engineering-nav>li>a::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #cecece;
  position: absolute;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.engineering-nav>li>a::after {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  overflow: hidden;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  bottom: 0;
}
.engineering-nav>li>a:hover::after,
.engineering-nav>li.engineering-active>a::after
{
  width: 100%;
}

.engineering-list {
  width: 100%;
  display: block;
  overflow: hidden;
}
.engineering-list>li {
  width: 100%;
  float: left;
  position: relative;
  z-index: 0;
}
.engineering-list>li::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #f1f1f1, #fff);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.engineering-list>li a {
  display: flex;
  padding: 22px 0 29px 0;
}
.engineering-list>li a .engineering-img {
  width: 242px;
  margin-top: 7px;
  overflow: hidden;
  position: relative;
}
.engineering-list>li a .engineering-img::before {
  content: "";
  display: block;
  padding-top: 61.57025%;
}
.engineering-list>li a .engineering-box {
  width: calc(100% - 242px);
  padding-left: 35px;
}
.engineering-list>li a .engineering-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 24px;
  color: #002060;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.engineering-list>li a .engineering-box .engineering-text {
  display: block;
  overflow: hidden;
  height: 96px;
  line-height: 24px;
  font-size: 14px;
  color: #646464;
  margin-top: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.engineering-list>li:nth-child(even)::before {
  background-image: linear-gradient(to right, #fff, #f1f1f1);
}
.engineering-list>li a:hover .engineering-box>h1 {
  text-decoration: underline;
}

@media (max-width: 1320px) {
  .engineering-nav {
    width: 102%;
    margin-left: -1%;
  }
  .engineering-nav>li {
    width: 23%;
    margin: 0 1% 10px 1%;
  }
}
@media (max-width: 991px) {
  .engineering-nav>li {
    width: calc(calc(100% / 3) - 2%);
  }
}
@media (max-width: 767px) {
  .engineering-nav {
    width: 100%;
    margin-left: 0;
    padding: 15px 0;
    justify-content: space-between;
  }
  .engineering-nav>li {
    width: 100%;
    margin: 0;
  }
  .engineering-nav>li>a {
    line-height: 20px;
    min-height: initial;
    padding: 10px 0;
  }
  .engineering-list>li a {
    padding: 10px 0;
  }
  .engineering-list>li a .engineering-img {
    width: 120px;
  }
  .engineering-list>li a .engineering-box {
    width: calc(100% - 120px);
    padding-left: 15px;
  }
  .engineering-list>li a .engineering-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .engineering-list>li a .engineering-box .engineering-text {
    height: 66px;
    line-height: 22px;
    margin-top: 5px;
    -webkit-line-clamp: 3;
  }
}
/* END-ENGINEERING CONSULTING */

/* PROJECT MGMT CONSULTING */
.project-list {
  display: flex;
  flex-wrap: wrap;
  width: 1299px;
}
.project-list>li {
  width: 414px;
  margin: 0 19px 20px 0;
}
.project-list>li>a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding: 50px 30px 38px 30px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.project-list>li>a::before {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background-color: #eff4fd;
  border-left: 3px solid var(--color-hover);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.project-list>li>a::after {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: url(../images/project-hover.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: -100%;
  top: 0;
  z-index: -1;
}
.project-list>li>a .project-icon {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
}
.project-list>li>a .project-icon>span {
  width: 100%;
  height: 100%;
  float: left;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto auto;
  filter: drop-shadow(#fff 60px 0);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.project-list>li>a .project-box {
  width: calc(100% - 60px);
  padding-right: 40px;
  font-size: 18px;
  color: var(--color-hover);
}
.project-list>li>a .project-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.project-list>li>a .project-box::after {
  content: ">";
  display: block;
  overflow: hidden;
  line-height: 1;
  font-family: SimSun;
  font-weight: bold;
  margin-top: 15px;
}
.project-list>li>a:hover::after {
  left: 0;
}
.project-list>li>a:hover .project-icon>span {
  left: -100%;
}
.project-list>li>a:hover .project-box {
  color: #fff;
}

@media (max-width: 1320px) {
  .project-list {
    width: 102%;
    margin-left: -1%;
  }
  .project-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 20px 1%;
  }
  .project-list>li>a .project-box {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .project-list>li {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .project-list {
    width: 100%;
    margin-left: 0;
  }
  .project-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .project-list>li>a {
    padding: 15px 20px;
  }
  .project-list>li>a .project-icon {
    width: 40px;
    height: 40px;
  }
  .project-list>li>a .project-icon>span {
    background-size: contain;
    filter: drop-shadow(#fff 40px 0);
  }
  .project-list>li>a .project-box {
    padding-right: 10px;
  }
}
/* END-PROJECT MGMT CONSULTING */

/* INTERNATIONAL TRADING */
.international-list {
  display: flex;
  flex-wrap: wrap;
  width: 1300px;
}
.international-list>li {
  width: 305px;
  margin: 0 20px 20px 0;
}
.international-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 19px;
}
.international-list>li>a .img::before {
  padding-top: 58.27068%;
}
.international-list>li>a>h1 {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  min-height: 40px;
  line-height: 20px;
  text-align: center;
  font-size: 14px;
  color: #1d1d1d;
  padding: 0 20px;
  background: url(../images/internationa-jiantou.png) no-repeat right center;
}
.international-list>li>a:hover>h1 {
  color: #fff;
}




@media (max-width: 1320px) {
  .international-list {
    width: 102%;
    margin-left: -1%;
  }
  .international-list>li {
    width: 23%;
    margin: 0 1% 20px 1%;
  }
}
@media (max-width: 991px) {
  .international-list>li {
    width: calc(calc(100% / 3) - 2%);
  }
}
@media (max-width: 767px) {
  .international-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .international-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .international-list>li>a {
    padding: 5px;
  }
  .international-list>li>a>h1 {
    margin-top: 10px;
    height: 40px;
    line-height: 20px;
  }
}
/* END-INTERNATIONAL TRADING */

/* CONTACT US */
.contact-main {
  padding: 0;
  background-color: var(--color-main);
}
.contact-banner {
  width: 100%;
  overflow: hidden;
}
.contact-banner>img {
  width: 100%;
  display: block;
  height: auto;
}

.contact-main>.container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
  margin-top: -230px;
}
.contact {
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}
.contact-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 24px;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
}
.contact-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.contact-list>li {
  width: calc(25% - 20px);
  margin: 30px 10px 0 10px;
  display: flex;
  flex-direction: column;
  background-image: linear-gradient(#7686a8, #d9dee7);
  border-radius: 10px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  line-height: 14px;
  color: #575757;
  word-break: break-all;
}
.contact-list>li .contact-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 36px;
}
.contact-list>li h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  color: var(--color-main);
  font-size: 14px;
  margin-bottom: 10px;
}
.contact-list>li a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}
.contact-form {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  width: 1329px;
}
.contact-form>label {
  width: 394px;
  margin: 0 49px 50px 0;
  border-bottom: 1px solid #4d6390;
  line-height: 54px;
  display: flex;
  font-size: 14px;
  color: #fff;
}
.contact-form>label>input {
  flex: 1;
  display: inline-block;
  width: 100%;
  background: none;
  font-size: 14px;
  color: #fff;
  padding: 0 15px;
}
.contact-button {
  width: 100%;
  padding-right: 49px;
  display: flex;
  justify-content: center;
}
.contact-button>button {
  width: 156px;
  height: 46px;
  font-size: 18px;
  color: #fff;
  background: url(../images/contact-button-bj.png) no-repeat center center;
  background-size: 100% 100%;
}
.contact-button>button:active,
.contact-button>button:hover {
  background: url(../images/contact-button-hover.png) no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 1320px) {
  .contact-main>.container {
    margin-top: -150px;
  }
  .contact-list {
    width: 102%;
    margin-left: -1%;
  }
  .contact-list>li {
    width: 23%;
    margin: 30px 1% 0 1%;
  }
  .contact-form {
    width: 102%;
    margin-left: -1%;
  }
  .contact-form>label {
    width: calc(calc(100%/ 3) - 2%);
    margin: 0 1% 50px 1%;
  }
}
@media (max-width: 991px) {
  .contact-main>.container {
    margin-top: -100px;
  }
  .contact {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contact-main>.container {
    margin-top: -50px;
  }
  .contact {
    margin-bottom: 15px;
  }
  .contact-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .contact-list>li {
    width: calc(50% - 5px);
    margin: 10px 0 0 0;
    padding: 10px;
  }

  .contact-form {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
  }
  .contact-form>label {
    width: 100%;
    margin: 0 10px 0 0;
    line-height: 40px;
  }
  .contact-form>label>input {
    padding: 0 10px;
  }
  .contact-button {
    padding-right: 0;
    margin-top: 10px;
  }
  .contact-button>button {
    width: 120px;
    height: 40px;
    font-size: 16px;
  }
}
/* END-CONTACT US */
