/*SUB MENU*/

.sub-menu {
  height: 80px;
  margin: 0 auto;
}

.sub-menu ul{
  width: 100%;
  text-align:center;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}

.sub-menu li {
  position: relative;
  width: 80px;
  float: left;
  line-height: 80px;
  font-size: 1.2em;
  text-align: center;
  margin-right: 40px;
  cursor: pointer;
}

.sub-menu li:last-child {
  margin-right: 0;
}

.sub-menu a {
  color: #008000;
}

.sub-menu a:hover {
  text-decoration: none;
}

.sub-menu-container {
  /*border-bottom: 1px solid #008000;*/
  margin-bottom: 100px;
}

.sub-menu li {
  opacity: 0.5;
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

.sub-menu li:hover,
.sub-menu li.highlight {
  opacity: 1;
  border-bottom: 1px solid rgba(128,128,128,0.3)
}

.sub-content-container.animation {
  transition: .5s height;
  -moz-transition: .5s height;
  -webkit-transition: .5s height;
}

/* FIRST PAGE */

#first-page {position: relative;}

.po_po{
	width:100%;
	text-align:center;
	height:100px;
	line-height:100px;
	color:#000;
	font-size:16px;
	clear:both;
	overflow:hidden;
	}
/* START */

#start {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 100;
}

#start-mono-group {
  position: relative;
  height: 170px;
  width: 350px;
  margin: 0 auto;
}

#start-logo-group {
  position: relative;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  height: 150px;
}

#start-logo {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 1;
}

#start-logo-left {
  position: absolute;
  height: 100%;
  width: 38%;
  left: 0;
  opacity: 1;
}

#start-logo-right {
  position: absolute;
  height: 100%;
  width: 62%;
  right: 0;
  opacity: 1;
}

#start-logo-white {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
}

#start-slogan-group {
  position: relative;
  transform: translate3d(0,10px,0);
  -webkit-transform: translate3d(0,10px,0);
  height: 20px;
  opacity: 1;
}

#start-background {
  position: absolute;
  top:0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  z-index: -10;
  opacity: 1;
}

/*START HINT GROUP*/

#start-hint-group {
  position: absolute;
  width: 100%;
  bottom: 40px;
  opacity: 1;
}

#start-hint {
  position: relative;
  margin: 0 auto;
}

#start-hint > div {
  position: relative;
  height: 6px;
  width: 6px;
  margin: 0 auto;
  background-color:#C00;
  border-radius: 3px;
  margin-top:6px;
}

#start-hint {
  transition: 2.5s opacity;
  -moz-transition: 2.5s opacity;
  -webkit-transition: 2.5s opacity;
}

#start-hint > div {
  animation-name: start-hint;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -moz-animation-name: start-hint;
  -moz-animation-duration: 2.5s;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-name: start-hint;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-iteration-count: infinite;
}

#start-hint-1 {

}

#start-hint-2 {
  animation-delay: .3s;
  -moz-animation-delay: .3s;
  -webkit-animation-delay: .3s;
}

#start-hint-3 {
  animation-delay: .6s;
  -moz-animation-delay: .6s;
  -webkit-animation-delay: .6s;
}

@keyframes start-hint
{
  0% {
    opacity: 0;
    top: 0px;
  }
  20% {
    opacity: 0;
    top: 30px;
  }
  80% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 0;
    top: 0px;
  }
}

@-moz-keyframes start-hint
{
  0% {
    opacity: 0;
    top: 0px;
  }
  20% {
    opacity: 0;
    top: 30px;
  }
  80% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 0;
    top: 0px;
  }
}

@-webkit-keyframes start-hint
{
  0% {
    opacity: 0;
    top: 0px;
  }
  20% {
    opacity: 0;
    top: 30px;
  }
  80% {
    opacity: 1;
    top: 0px;
  }
  100% {
    opacity: 0;
    top: 0px;
  }
}

/* START ANIMATION & PHASE */

#start-logo-left,
#start-logo-right {
  transition: 1.5s all;
  -moz-transition: 1.5s all;
  -webkit-transition: 1.5s all;
}

#start-logo-right {
  animation-delay: .6s;
  -moz-animation-delay: .6s;
  -webkit-animation-delay: .6s;
}

#start-logo-left.phase-2 {
  opacity: 1;
  transform: translate3d(109px,0,0);
  -webkit-transform: translate3d(109px,0,0);
}

#start-logo-left.phase-1 {
  opacity: 0;
  transform: translate3d(109px,0,0);
  -webkit-transform: translate3d(109px,0,0);
}

#start-logo-right.phase-1 {
  opacity: 0;
}

#start-slogan-group.phase-1 {
  transform: translate3d(0,20px,0);
  -webkit-transform: translate3d(0,20px,0);
  opacity: 0;
}

#start-hint-group.phase-1 {
  opacity: 0;
}

#start-background,
#start-logo-group,
#start-logo,
#start-logo-white,
#start-slogan-group,
#start-hint-group {
  transition: 1s all;
  -moz-transition: 1s all;
  -webkit-transition: 1s all;
}

.ready #start-background {
  opacity: 0;
}

.ready #start-logo-group {
  transform: translate3d(0,-60px,0);
  -webkit-transform: translate3d(0,-60px,0);
}

.ready #start-logo {
  opacity: 0;
}

.ready #start-logo-white {
  opacity: 1;
}

.ready #start-slogan-group {
  transform: translate3d(0,-60,0);
  -webkit-transform: translate3d(0,-60,0);
  opacity: 0;
}

.ready #start-hint-group {
  opacity: 0;
}

/* OUR */

#our {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -100;
}

#our-pic {
  position: absolute;
  height: 100%;
  width: 100%;
}

#our-pic > div {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-position: center;
  display: none;
}

#our-pic > div.animation {
  display: block;
  opacity: 0;
  transition: 2s opacity;
  -moz-transition: 2s opacity;
  -webkit-transition: 2s opacity;
}

#our-pic > div.show {
  opacity: 1;
  display: block;
}

#our-quote {
  position: relative;
  margin: 0 auto;
  height: 250px;
  width: 450px;
}

#our-quote p {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 20px;
  margin: 0;
  text-indent: -10000px;
  opacity: 0;
  transition: 1s all;
  -moz-transition: 1s all;
  -webkit-transition: 1s all;
}

#our-quote p.show {
  top:0;
  opacity: 1;
}

/*FADE-IN-ANIMATE*/

#homepage-html #homepage-body .fade-in-animate {
  position: relative;
  opacity: 0;
  transform: translate3D(0,20px,0) scale(.9);
  -ms-transform: translate3D(0,20px,0) scale(.9);
  -moz-transform: translate3D(0,20px,0) scale(.9);
  -webkit-transform: translate3D(0,20px,0) scale(.9);
  transition: .8s all ease-out;
  -moz-transition: .8s all ease-out;
  -webkit-transition: .8s all ease-out;
}

#homepage-html #homepage-body .fade-in-animate.shown {
  opacity: 1;
  transform: translate3D(0,0,0) scale(1)
  -ms-transform: translate3D(0,0,0) scale(1);
  -moz-transform: translate3D(0,0,0) scale(1);
  -webkit-transform: translate3D(0,0,0) scale(1);
}

/*ADVANTAGE*/

#advantage .container {
  max-width: 720px;
}

#advantage .container > div {
  margin-top: 100px;
}

#advantage .container h2 {
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#advantage .container .left {
  float: left;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#advantage .container .right {
  float: right;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#advantage .container .narrow {
  position: relative;
  width: 200px;
  height: 200px;
}

#advantage .container .wide {
  max-width: 700px;
  padding-top: 10px;
}

#advantage .container .wide.right {
  /*padding-left: 80px;*/
}

#advantage .container > div{
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

#advantage .container .advantage-image {
  display: block;
  width: 100%;
  height: 100%;
}

#advantage .container .advantage-image.hide {
  position: absolute;
  top:0;
  opacity: 0;
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

#advantage .container > div:hover .advantage-image.hide{
  opacity: 1;
}

#advantage .container > div:hover .wide{
  padding-top: 0;
}

#advantage .container > div:hover .wide h2{
  margin-bottom: 40px;
}

#advantage .container > div:hover .narrow{
  transform: scale(1.2,1.2);
  -ms-transform: scale(1.2,1.2);
  -moz-transform: scale(1.2,1.2);
  -webkit-transform: scale(1.2,1.2);
}

/*IP*/

#ip {
  animation: ipmove 30s linear infinite alternate;
  -webkit-animation: ipmove 30s linear infinite alternate;
  -moz-animation: ipmove 30s linear infinite alternate;
  background-size: auto 120%;
  background-image: url("../img/ip.jpg");
  height:930px;
}

@keyframes ipmove {
  from {
    background-position: left top;
  }
  to {
    background-position: right bottom;
  }
}

@-webkit-keyframes ipmove {
  from {
    background-position: left top;
  }
  to {
    background-position: right bottom;
  }
}

@-moz-keyframes ipmove {
  from {
    background-position: left top;
  }
  to {
    background-position: right bottom;
  }
}

#ip .wrapper{
  /*background: rgba(255, 255, 255, 0.7);*/
  height: 100%;
  position: absolute;
  width: 100%;
}

#ip img {
  float: left;
  margin-right: 20px;
  height: 700px;
}

#ip .entity {
  font-size: 16px;
  padding-top: 187px;
}

/*SERVICE*/

#service .header {
  margin-bottom: 0;
}

#service #service-mobile-sub-menu {
  display: none;
}

#service #service-mobile-content-container {
  display: none;
}

#service .sub-menu-container {
  /*border: none;*/
  margin-bottom: 40px;
}

#service .sub-menu {
  max-width: 640px;
  height: 220px;
  margin: 0 auto;
}

#service .sub-menu li {
  width: 100px;
  margin-top: 40px;
  margin-right: 80px;
  position: relative;
}

#service .sub-menu li:last-child {
  margin-right: 0;
}

#service .sub-menu li .service-image {
  display: block;
  width: 100%;
  padding-top: 100%;
}

#service .sub-menu li .service-image.hide {
  position: absolute;
  top:0;
  opacity: 0;
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

#service .sub-menu li.highlight .service-image,
#service .sub-menu li:hover .service-image {
  opacity: 0;
}

#service .sub-menu li.highlight .service-image.hide,
#service .sub-menu li:hover .service-image.hide {
  opacity: 1;
}

#service .sub-menu a {
  display: block;
  text-align: center;
}

#service .sub-content-container {
  position: relative;
  height: 450px;
}

#service .sub-content-container > div {
  position: absolute;
  transform: translate3d(0,20px,0);
  -webkit-transform: translate3d(0,20px,0);
  opacity: 0;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#service .sub-content-container > div.show {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 1;
}

#service .container {
  margin-top:1px;
}

#service .container > div {
  position: relative;
  margin:1px 0;
  cursor: pointer;
}

#service .service-icon-set {
  position: relative;
  float: left;
  width: 15%;
  padding-top: 15%;
}

#service .service-icon-set .service-image {
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

#service .service-icon-set a {
  display: block;
  padding-top: 120%;
  text-align: center;
}

#service .service-text {
  position: relative;
  float: left;
  width: 80%;
  margin-left: 5%;
}

#service .container > div .service-text-detail {
  height: 0;
  opacity: 0;
  transition: .8s all;
  -moz-transition: .8s all;
  -webkit-transition: .8s all;
  overflow: hidden;
}

#service .container > div h2 {
  transition: .8s all;
  -moz-transition: .8s all;
  -webkit-transition: .8s all;
}

#service .container > div:hover h2,
#service .container > div.show h2{
  margin-bottom: 12px;
}

#service .container > div:hover .service-text-detail {
  height: 50px;
  opacity: 0.5;
}

#service .container > div.show .service-text-detail {
  opacity: 1;
}

#service .container > div.show .service-text-detail.celue {
  height: 100px;
}

#service .container > div.show .service-text-detail.yunying {
  height: 130px;
}

#service .container > div.show .service-text-detail.chuangyi {
  height: 200px;
}

#service .container > div.show .service-text-detail.jishu {
  height: 130px;
}

#service .container > div.show .service-icon-set .service-image,
#service .container > div:hover .service-icon-set .service-image {
  opacity: 0;
}

#service .container > div.show .service-icon-set .service-image.hide,
#service .container > div:hover .service-icon-set .service-image.hide {
  opacity: 1;
}

/*CASE*/

#case .header {
  margin-bottom: 0;
}

#case .sub-menu-container {
  margin-bottom: 60px;
}

#case .sub-menu {
  max-width: 200px;
  margin: 0 auto;
}

#case .sub-content-container {
  position: relative;
  height: 1060px;
}

#case .sub-content-container > div {
  position: absolute;
  width: 100%;
  transform: translate3d(0,20px,0);
  -webkit-transform: translate3d(0,20px,0);
  opacity: 0;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
  z-index: -10;
}

#case .sub-content-container > div.show {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 1;
  z-index: 10;
}

#case #case-jingdian > a {
  position: relative;
  display: block;
  width: 30%;
  height: 0;
  padding-bottom: 30%;
  margin: 1.5%;
  float: left;
}

#case #case-jingdian > a div{
  position: absolute;
  height: 100%;
  width: 100%;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#case #case-jingdian > a div.color {
  opacity: 0;
}

#case #case-jingdian > a:hover div{
  /*background-size: 330%;*/
}

#case #case-jingdian > a:hover div.color{
  opacity: 1;
  /*background-size: 330%;*/
}

#case #case-small .case-small-image{
  width: 12%;
  padding-top: 12%;
  margin: 4%;
  opacity: 1;
  background-repeat: no-repeat;
  float: left;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#case #case-small > .case-small-image:hover {
  transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
  -moz-transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
}

#case p {
  text-align: center;
}

/*NEWS*/

#news .sub-content-container {
  position: relative;
  height: 200px;
}

#news .sub-content-container > div {
  position: absolute;
  transform: translate3d(0,20px,0);
  -webkit-transform: translate3d(0,20px,0);
  opacity: 0;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#news .sub-content-container > div.show {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 1;
}

#news .header {
  margin-bottom: 0;
}

#news .sub-menu-container {
  margin-bottom: 60px;
}

#news .sub-menu {
  max-width: 200px;
  margin: 0 auto;
}

/*CAREER*/

#career .header {
  margin-bottom: 0;
}

#career .sub-menu-container {
  margin-bottom: 40px;
}

#career .sub-menu {
  max-width:290px;
  height: 220px;
  margin: 0 auto;
}

#career .sub-menu li {
  width: 100px;
  margin-top: 40px;
  margin-right: 80px;
  position: relative;
}

#career .sub-menu li:last-child {
  margin-right: 0;
}

#career .sub-menu li .career-image {
  display: block;
  width: 100%;
  padding-top: 100%;
}

#career .sub-menu li .career-image.hide {
  position: absolute;
  top:0;
  opacity: 0;
  transition: .5s opacity;
  -moz-transition: .5s opacity;
  -webkit-transition: .5s opacity;
}

#career .sub-menu li.highlight .career-image.hide,
#career .sub-menu li:hover .career-image.hide {
  opacity: 1;
}

#career .sub-menu a {
  display: block;
  text-align: center;
}

#career .sub-content-container {
  position: relative;
  height: 450px;
}

#career .sub-content-container > div {
  position: absolute;
  transform: translate3d(0,20px,0);
  -webkit-transform: translate3d(0,20px,0);
  opacity: 0;
  transition: .5s all;
  -moz-transition: .5s all;
  -webkit-transition: .5s all;
}

#career .sub-content-container > div.show {
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 1;
}

#contact {
  padding: 0;
}

#baidu-map {
  background:#008000;
  height: 400px;
}

#contact .contact-form-container {
  margin-top: 12px;
  margin-bottom: 100px;
  padding-right: 16px;
}

#contact .contact-form-container h2 {
  text-align: center;
}

#contact label {
  display: block;
  float: left;
}

#contact label span {
  display: inline-block;
  margin: 12px 0;
}

#contact .small-input {
  position: relative;
  width: 47%;
  margin-right: 6%;
}

#contact .small-input:nth-child(2n) {
  margin-right: 0;
}

#contact .small-input input {
  width: 100%;
}

#contact .big-input {
  width: 100%;
}

#contact textarea {
  width: 100%;
  height: 200px;
}

#contact .submit-button {
  margin: 12px 0;
}

#contact .submit-button input {
  cursor: pointer;
  color: #008000;
  background-color: #fff;
  margin-top: 12px;
  width: 100px;
  transition: .2s all;
  -moz-transition: .2s all;
  -webkit-transition: .2s all;
}

#contact .submit-button input:hover {
  color: #fff;
  background-color: #008000;
}

#contact #contact-message {
  margin-left: 12px;
}

@media screen and (max-width: 1000px){
  #advantage .container {
    max-width: 600px;
  }

  #advantage .container .wide {
    max-width: 440px;
    padding-top: 10px;
  }

  #ip {
    height: 800px;
  }

  #ip img {
    height: 500px;
  }

  #ip .entity {
    padding-top: 110px;
  }

}

@media screen and (max-width: 760px) {
  .sub-menu li {
    line-height: 60px;
  }

  .sub-menu li:nth-child(2n) {
    margin-right: 0;
  }

  .sub-menu-container {
    margin-bottom: 30px;
  }

  .sub-content-container > div {
    width: 100%;
  }

  /*3:5 scale small*/

  #start-mono-group {
    width: 210px;
    height: 90px;
  }

  #start-logo-group {
    height: 90px;
  }

  #start-slogan-group {
    height: 12px;
  }

  #start-logo-left.phase-2 {
    opacity: 1;
    transform: translate3d(66px,0,0);
    -webkit-transform: translate3d(66px,0,0);
  }

  #start-logo-left.phase-1 {
    opacity: 0;
    transform: translate3d(66px,0,0);
    -webkit-transform: translate3d(66px,0,0);
  }

  .ready #start-logo-group {
    transform: translate3d(0,-35px,0);
    -webkit-transform: translate3d(0,-35px,0);
  }

  #our-quote {
    width: 270px;
    height: 150px;
  }

  #advantage .container {
    padding: 0;
  }

  #advantage .container > div {
    margin-top: 30px;
  }

  #advantage .container > div:first-child {
    margin-top: 10px;
  }

  #advantage .container .left,
  #advantage .container .right {
    float: none;
  }

  #advantage .container .wide {
    max-width: 960px;
  }

  #advantage .container p {
    text-align: center;
  }

  #advantage .container .narrow {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  #advantage .container > div:hover .advantage-image.hide{
    opacity: 0;
  }

  #advantage .container > div:hover .wide{
    padding-top: 10px;
  }

  #advantage .container > div:hover .wide h2{
    margin-bottom: 20px;
  }

  #advantage .container > div:hover .narrow{
    transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
  }

  #ip {
    height: 900px;
  }

  #ip .container {
    padding: 0;
  }

  #ip img {
    float: initial;
    height: auto;
    margin: 0 auto;
    width: 280px;
  }

  #ip .entity {
    padding-top: 20px;
    font-size: 13px;
  }

  #service {
    background-size: cover;
  }

  #service #service-mobile-sub-menu {
    display: block;
  }

  #service #service-mobile-content-container {
    display: block;
  }

  #service #service-desktop-content-container {
    display: none;
  }

  #service .sub-menu-container {
    margin: 0 10px;
    margin-bottom: 15px;
  }

  #service .sub-menu {
    max-width: 320px;
    height: 155px;
  }

  #service .sub-menu li {
    width: 21%;
    margin-top: 10px;
    margin-right: 5%;
  }

  #service .sub-menu a {
    font-size: 14px;
  }

  #service .sub-content-container {
    height: 450px;
  }

  #case .sub-menu-container {
    margin-bottom: 15px;
  }

  #case .sub-content-container {
    height: 960px;
  }

  #case #case-jingdian > a {
    width: 46%;
    height: 0;
    padding-bottom: 46%;
    margin: 2%;
  }

  #case #case-jingdian > a:hover div.color{
    opacity: 1;
  }

  #case #case-small .case-small-image{
    padding-top: 25%;
    width: 25%;
    margin: 4.16666%;
  }

  #case #case-small > .case-small-image:hover {
    transform: none;
    -ms-transform: none;
    -moz-transform: none;
    -webkit-transform: none;
  }
 

#news {
    background-size: cover;
  }

  #news .sub-menu-container {
    margin-bottom: 15px;
  }

  #career .sub-menu-container {
    margin: 0 10px;
    margin-bottom: 15px;
  }

  #career .sub-menu {
    max-width: 320px;
    height: 155px;
  }

  #career .sub-menu li {
    width: 21%;
    margin-top: 10px;
    margin-right: 5%;
  }

  #career .sub-menu a {
    font-size: 14px;
  }

  #contact .contact-form-container {
    margin-bottom: 12px;
  }

  #contact .small-input,
  #contact .big-input {
    position: relative;
    width: 100%;
    margin-right: 0;
  }

  #contact textarea {
    height: 100px;
  }

}
