/*
Author: CHAO
*/
/*-----------------------------------------1) General--------------------------------------------------*/
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body,
html {
  margin: 0px;
  padding: 0px;
  font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft Yahei", "Wenquanyi Micro Hei", sans-serif;
}
html {
  position: relative;
  min-height: 100%;
}
body {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fafafa;
}

.vh {
  min-height: 100vh;
}


 .wrapper {
  position: relative;
  height: 100vh;
  min-height: 100vh;
 }
a {
  color: #2f2f2f;
  text-decoration: none;
  
  -webkit-transition: ease .3s;
  -moz-transition: ease .3s;
  transition: ease .3s;
}
a:hover {
  outline: none;
  text-decoration: none;
  color: #818181;
}
a:focus {
  outline: none;
  color: #999999;
  text-decoration: none;
}

img { max-width: 100%; }
*:focus {
  outline: none;
}

hr {
  height:0px;
  border:none;
  border-top:2px solid #e5e5e5;
}

.ishidden {
  overflow: hidden;
}

/* SVG wrap */
.svg-wrap {
  position: absolute;
  width: 0px;
  height: 0px;
  overflow: hidden;
}

/* cover into */

.cover-into {
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  width: 100%;
  display: block;
}
.wrap-hero-content{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.wrap-hero-content:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url('../img/coverintobg.jpg') center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  animation: imageZoom linear 24s;
  animation-iteration-count: infinite;
  -webkit-animation: imageZoom linear 24s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: imageZoom linear 24s;
  -moz-animation-iteration-count: infinite;
  -ms-animation: imageZoom linear 24s;
  -ms-animation-iteration-count: infinite;
}
@-webkit-keyframes imageZoom {
    0% { -webkit-transform: scale(1); }
    50% {-webkit-transform: scale(1.2); }
    100% { -webkit-transform: scale(1); }
}
@keyframes imageZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1);}
}
.into-title {
  position: absolute;
  left: 50%;
  margin-left: -382px;
  width: 764px;
  min-height: 100px;
  top: 30%;
  text-align: center;
}
.into-title h1 {
  width: 764px;
  height: 48px;
  background: url('../img/h1.png') no-repeat center center;
  position: relative;
  margin-bottom: 30px;
}
.into-title h2 {
  position: relative;
  margin: 0 auto;
  width: 472px;
  height: 33px;
  background: url('../img/h2.png') no-repeat center center;
}



.form-login {
  position: relative;
  padding-top: 200px;
}
.form-login .field {
    position: relative; /* For the icon positioning */
    width: 200px;
    margin: 0 auto;
    display: inline-block;
}
.form-login .submit {
  display: inline-block;
  margin: 0 0 0 0;
}

.form-login .field i {
    /* Size and position */
    left: 0px;
    top: 0px;
    position: absolute;
    height: 36px;
    width: 36px;


    /* Styles */
    color: #002f7b;
    text-align: center;
    line-height: 42px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    pointer-events: none;
}


.form-login input[type=text],
.form-login input[type=password] {
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-weight: 400;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    /* Size and position */
    width: 100%;
    padding: 10px 18px 10px 45px;

    /* Styles */
    border: none; /* Remove the default border */
    background: rgba(255,255,255,.85);
    color: #002f7b;
    -webkit-transition: color 0.3s ease-out;
    -moz-transition: color 0.3s ease-out;
    -ms-transition: color 0.3s ease-out;
    -o-transition: color 0.3s ease-out;
    transition: color 0.3s ease-out;
    border-radius: 5px;
}

.form-login input[type=text] {
    margin-bottom: 10px;
}

.form-login input[type=text]:hover ~ i,
.form-login input[type=password]:hover ~ i {
    color: #002f7b;
}

.form-login input[type=text]:focus ~ i,
.form-login input[type=password]:focus ~ i {
    color: #d30049;
}

.form-login input[type=text]:focus,
.form-login input[type=password]:focus,
.form-login button[type=submit]:focus {
    outline: none;
}




.into-title .into-btn {
  position: relative;
  background: #d30049;
  width: 60px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  color: #fff;
  margin: 0 auto;
  text-decoration: none;
  vertical-align: middle;
}
.into-title .into-btn i {
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-5px);
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
}


.into-title .into-btn:hover i {
  transform: translateY(-50%) translateX(5px);
}


/* header */

.header {
  width: 100%;
  height: 50px;
  background-color: #002f7b;
  background-image: -webkit-linear-gradient(top, #111620, #27292b);
  background-image: -moz-linear-gradient(top, #111620, #27292b);
  background-image: linear-gradient(to bottom, #111620, #27292b);
  box-shadow: 10px 0 20px rgba(50,73,111,.4);
  position: fixed;
  top: 0;
  left: 0;
}

.logo {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  height: 50px;
  text-indent: 32px;
  float: left;
}
.logo:before,.logo:after {
  content: '';
  position: absolute;
}
.logo:before {
  width: 16px;
  height: 100%;
  background: #d30049;
  left: 0;
}
.logo:after {
  width: 0;
  height: 0;
  left: 0;
  border-top: 16px solid #d30049;
  border-right: 16px solid transparent;
  bottom: -16px;
}
.header-avatar {
  position: relative;
  float: right;
  border-left: 1px solid rgba(255,255,255,.1);
  height: 50px;
  padding: 0 40px 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: stretch;
  align-items: center;
  cursor: pointer;
}
.header-avatar:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 8px solid #fff;
  right: 20px;
}
.avatar {
  background: url(../img/avatar.png) no-repeat center center;
  background-size: cover;
}
.header-avatar .avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #4c17a2;
  display: inline-block;
  vertical-align: middle;
}



/* page title */

.page-title a.goback {
  position: relative;
  width: 100px;
  display: block;
  min-height: 40px;
}
.page-title a.goback .iconSVG {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(0px);
  transform: translateY(-50%) translateX(0px);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.page-title svg.iconSVG {
  fill: #d30049;
}
.page-title a:hover .iconSVG {
  -webkit-transform: translateY(-50%) translateX(-10px);
  transform: translateY(-50%) translateX(-10px);
}



.page-title h2 {
  font-size: 48px;
  font-weight: 300;
  color: #002f7b;
}
.page-title h2,.page-title .crumbs {
  display: inline-block;
  vertical-align: middle;
}
.page-title .crumbs {
  position: relative;
  border-left: 1px solid #dcdcdc;
  margin-left: 20px;
  padding-left: 20px;
}
.page-title .crumbs h5 {
  font-size: 24px;
}
/* main-panel */

.main-panel {
  width: 100%;
  position: fixed;
  height: -webkit-calc(100% - 90px);
  height: calc(100% - 90px);
  top: 50px;
  overflow-y: auto;
  overflow-x: hidden;
}
.main-panel.vh-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: stretch;
  align-items: center;
}

.role-card,.staff-card {
  position: relative;
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: block;
  margin-bottom: 30px;
  display: -webkit-box;
  justify-content: center;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: stretch;
  align-items: center;
  overflow: hidden;
}
.role-card:hover,.staff-card:hover {
  text-decoration: none;
  margin-top: -5px;
  margin-bottom: 35px;
}
.role-card:before,.staff-card:before {
  content: '';
  position: absolute;
  width: 150px;
  height: 162px;
  
  background-size: contain;
  bottom: -20px;
  right: 0;
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
}
.role-card:hover:before,.staff-card:hover:before {
  bottom: -10px;
}
.role-card h5 {
  color: #fff;
  font-size: 30px;
  font-weight: 200;
  display: flex;
  justify-content: center;
  text-align: center;
  /* text-indent: 20px; */
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  -webkit-transform: scale(1);
  transform: scale(1);
}
.role-card:hover h5 {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}
/* .role-card.style1:before {
  background: url(../img/role-face_style1.png) no-repeat center center;
}
.role-card.style2:before {
  background: url(../img/role-face_style2.png) no-repeat center center;
}
.role-card.style3:before {
  background: url(../img/role-face_style3.png) no-repeat center center;
}
.role-card.style4:before {
  background: url(../img/role-face_style4.png) no-repeat center center;
}
.role-card.style5:before {
  background: url(../img/role-face_style5.png) no-repeat center center;
} */

.role-card.style1 {
  min-height: 170px;
  background: #ff4a89;
}
.role-card.style1:hover {
  -webkit-box-shadow: 0 30px 40px rgba(63,185,255,.5);
  -moz-box-shadow: 0 30px 40px rgba(63,185,255,.5);
  box-shadow: 0 30px 40px rgba(63,185,255,.5);
}
.role-card.style1 h5 {
  position: absolute;
  width: 100%;
  top: 20%;
  text-indent: 0;
  text-align: center;
  font-size: 40px;
}
.role-card.style1:before {
  left: 50%;
  margin-left: -75px;
}
.role-card.style2 {
  min-height: 170px;
  background: #d30049;
}
.role-card.style2:hover {
  -webkit-box-shadow: 0 30px 40px rgba(255,74,137,.5);
  -moz-box-shadow: 0 30px 40px rgba(255,74,137,.5);
  box-shadow: 0 30px 40px rgba(255,74,137,.5);
}
.role-card.style3 {
  min-height: 170px;
  background: #002f7c;
}
.role-card.style3:hover {
  -webkit-box-shadow: 0 30px 40px rgba(4,229,179,.5);
  -moz-box-shadow: 0 30px 40px rgba(4,229,179,.5);
  box-shadow: 0 30px 40px rgba(4,229,179,.5);
}
.role-card.style4 {
  min-height: 170px;
  background: #bc5cff;
}
.role-card.style4:hover {
  -webkit-box-shadow: 0 30px 40px rgba(188,92,255,.5);
  -moz-box-shadow: 0 30px 40px rgba(188,92,255,.5);
  box-shadow: 0 30px 40px rgba(188,92,255,.5);
}
.role-card.style5 {
  min-height: 170px;
  background: #687190;
}
.role-card.style5:hover {
  -webkit-box-shadow: 0 30px 40px rgba(104,113,144,.5);
  -moz-box-shadow: 0 30px 40px rgba(104,113,144,.5);
  box-shadow: 0 30px 40px rgba(104,113,144,.5);
}

/* staff */
.staff-card {
  min-height: 130px;
  background: #fff;
  -webkit-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  -moz-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  box-shadow: 0 20px 32px rgba(5,0,0,.04);
}
.staff-card h5 {
  font-size: 38px;
  font-weight: 300;
  text-indent: 20px;
}
.staff-card:before {
  width: 116px;
  bottom: -30px;
}
.staff-card:hover:before {
  bottom: -20px;
}

/* city */

.page-title {
  padding: 30px 0;
}

.city-card {
  position: relative; 
  width: 100%;
  height: 130px;
  margin-bottom: 40px;
  cursor: pointer;
}
.department h5 {
  font-size: 48px;
  font-weight: 300;
  padding: 20px 0 0 20px;
  webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
}
.city-card:hover .department h5 {
  padding: 50px 0 0 40px;
  color: #fff;
}

.department h5 span {
  font-size: 24px;
  vertical-align:super;
}
.department:before {
  width: 130px;
  height: 130px;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
}
.city-card:hover .department:before {
  width: 200px;
  height: 200px;
  right: 0px;
}


.department {
  position: absolute;
  width: 100%;
  min-height: 130px;
  z-index: 0;
  background: #fff;
  width: 100%;
  height: 130px;
  border-radius: 5px;
  webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  -webkit-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  -moz-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  box-shadow: 0 20px 32px rgba(5,0,0,.04);
  margin-bottom: 40px;
}

.department .item-list {
  display: none;
  padding: 20px 140px 10px 10px;
  height: 340px;
  overflow-y: scroll;
  -webkit-overflow-scrolling:touch;
}
.city-card:hover .department .item-list {
  display: block;
}

.department .item-list a { 
  position: relative;
  display: inline-block;
  color: #fff;
  width: -webkit-calc(33.33% - 20px);
  width: -moz-calc(33.33% - 20px);
  width: calc(33.33% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  float: left;
  text-align: center;
  margin-bottom: 10px;
  min-height: 30px;
  line-height: 30px;
  border-radius: 15px;
}
.department .item-list a:hover {
  background: #fff;
  color: #333;
}

.city-card:hover {
  z-index: 100;
}
.city-card:hover .department {
  width: 540px;
  height: 480px;
  left: -40px 0 0 -40px;
  z-index: 100;;
  -webkit-box-shadow: 0 40px 40px rgba(96,22,224,.2);
  -moz-box-shadow: 0 40px 40px rgba(96,22,224,.2);
  box-shadow: 0 40px 40px rgba(96,22,224,.2);
  background-image: -webkit-linear-gradient(top, #5f11df, #7d7ff1);
  background-image: -moz-linear-gradient(top, #5f11df, #7d7ff1);
  background-image: linear-gradient(to bottom, #5f11df, #7d7ff1);
}
.city-card-warp .col-md-4:nth-child(3n) .city-card .department {
  right: 0;
  position: absolute;
}







.city-card .i-shanghai:before {
  background: url('../img/i-shanghai.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-beijing:before {
  background: url('../img/i-beijing.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-shenzhen:before {
  background: url('../img/i-shenzhen.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-building-1:before {
  background: url('../img/i-building-1.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-building-2:before {
  background: url('../img/i-building-2.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-building-3:before {
  background: url('../img/i-building-3.png') no-repeat center center;
  background-size: cover;
}
.city-card .i-building-4:before {
  background: url('../img/i-building-4.png') no-repeat center center;
  background-size: cover;
}









/* project */


.project-item {
  position: relative;
  background: #fff;
  border-radius: 5px;
  min-height: 300px;
  padding: 40px;
  font-size: 12px;
  -webkit-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  -moz-box-shadow: 0 20px 32px rgba(5,0,0,.04);
  box-shadow: 0 20px 32px rgba(5,0,0,.04);
  margin-bottom: 30px;
}
.project-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 32px;
  color: #3d464d;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
}
.project-item .info {
  display: flex;
  margin-bottom: 10px;
}
.project-item .info .item {
  display: inline-block;
  vertical-align: middle;
  flex:1;
  display: flex;
  margin-right: 10px;
}
.project-item .info .item .meta {
  flex:1;
}
.project-item .item .meta {
  color: #999;
}

.project-item .item {
  display: inline-block;
  vertical-align: middle;
}

.project-item .info .item label {
  min-width: 60px;
}
.project-item .item label,.project-item .item .meta {
  display: inline-block;
  vertical-align: middle;
}
.project-item .info .item:nth-child(3n) {
  margin-right: 0;
}
.project-item .info .item.status {
  text-align: right;
  display: block;
  float: none;
}
.project-item .item.status .meta {
  color: #08c392;
}
.project-item .item.company .meta {
  min-width: 120px;
}
.project-item .info2 {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
}
.project-item .info2 .item {
  width: 33.33%;
  float: left;
  margin-bottom: 10px;
}
.project-item .item .highline {
  color: #d30049;
}

.operate {
  position: absolute;
  background: #fff;
  border-top: 1px solid #f9f9f9;
  text-align: center;
  padding: 20px 10px;
  width: 100%;
  left: 0;
  bottom: -10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
}
.operate a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: calc(25% - 10px);
  
  height: 34px;
  border: 1px solid #d30049;
  line-height: 32px;
  color: #d30049;
  border-radius: 3px;
}
.operate a:hover {
  background: #d30049;
  color: #fff;
}
.operate .icon {
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.operate a:hover .i-single {
  background-position: 0 -24px;
}
.operate a:hover .i-overlapping {
  background-position: 0 -72px;
}
.operate a:hover .i-contrast {
  background-position: 0 -120px;
}
.operate a:hover .i-report {
  background-position: 0 -168px;
}

.project-item:hover {
  z-index: 100;
  cursor: pointer;
}
.project-item:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  content: '';
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
  transition: all 300ms cubic-bezier(0.34, 1.61, 0.7, 1);
}
.project-item:hover:before {
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;

}
.project-item:hover .operate {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}

/* laypage */
.laypage {
  width: 100%;
  text-align: center;
  position: relative;
  margin: 60px 0;
}
.laypage a {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 38px;
  margin: 0 3px;
  display: inline-block;
  vertical-align: middle;
  color: #999;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #E9E9E9;
  text-align: center;
}
.laypage a:hover {
  background: #002f7b;
  color: #fff;
}
.laypage a.laypage_curr {
  background: #002f7b;
  border: 1px solid #002f7b;
  color: #fff;
}
.laypage_prev:before,.laypage_next:before {
  position: absolute;
  content: '';
  border-top: 1px solid #999;
  border-left: 1px solid #999;
  width: 12px;
  height: 12px;
  top: 50%;
  margin-top: -6px;
}
.laypage_prev:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 16px;
}
.laypage_next:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  left: 10px;
}

/* icon */
.icon {
  background: url(../img/icon.png) no-repeat center center;
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
}
.i-single {
  background-position: top left;
}
.i-overlapping {
  background-position: 0 -48px;
}
.i-contrast {
  background-position: 0 -96px;
}
.i-report {
  background-position: 0 -144px;
}

/* footer 
.footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #666666;
  color: #999;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
}
*/

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40px; /* Set the fixed height of the footer here */
  line-height: 40px; /* Vertically center the text there */
  background-color: #f0f0f0;
  color: #999;
}
.footer .high-line {
  color: #002f7b;
}












