html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  font-family: "Microsoft YaHei";
  background-color: #272a2f;
}

* {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

.common-table {
  display: table;
  width: 100%;
  height: 100%;
}

.common-middle-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.loading-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #312f44;
  z-index: 1000;
}

.loading-circle {
  margin: auto;

  animation: loading-circle 1000ms linear infinite;
  -webkit-animation: loading-circle 1000ms linear infinite;
  -moz-animation: loading-circle 1000ms linear infinite;
}

@keyframes loading-circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loading-circle {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes loading-circle {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}

.banner-container {
  width: 100%;
  height: 100%;
  overflow: hidden;

  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;

  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -khtml-user-select: none;
  user-select: none;
}

.banner-control-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-page-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-page-inner-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-page-background {
  position: absolute;
  left: 0;
  top: 0;
}

.showed.paused .banner-page-background {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

.showed .banner-page-background {
  animation: banner-page-background 12000ms linear;
  -webkit-animation: banner-page-background 12000ms linear;
  -moz-animation: banner-page-background 12000ms linear;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

@keyframes banner-page-background {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

@-webkit-keyframes banner-page-background {
  0% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
  }
}

@-moz-keyframes banner-page-background {
  0% {
    -moz-transform: scale(1);
  }
  100% {
    -moz-transform: scale(1.2);
  }
}

.banner-page-background.animate {
  animation: banner-page-background-black-white 6000ms linear;
  -webkit-animation: banner-page-background-black-white 6000ms linear;
  -moz-animation: banner-page-background-black-white 6000ms linear;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
}

@keyframes banner-page-background-black-white {
  0% {
    transform: scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

@-webkit-keyframes banner-page-background-black-white {
  0% {
    -webkit-transform: scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
  }
}

@-moz-keyframes banner-page-background-black-white {
  0% {
    -moz-transform: scale(1);
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -moz-transform: scale(1.1);
  }
}

.top-icon {
  position: absolute;
  top: 45px;
  left: 41px;
}

.banner-text-container {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.banner-text-up-table {
  display: table;
  width: 100%;
  height: 300px;
}

.banner-text-up-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

.banner-text-down-table {
  display: table;
  width: 100%;
  height: 300px;
}

.banner-text-down-table-cell {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: top;
}

.banner-text1 {
  font-size: 0;
  color: #de1f37;

  opacity: 0;
  transform: translateY(50%);
  -ms-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.showed .banner-text1 {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
}

.banner-text1 * {
  display: inline-block;
  font-size: 92px;
  line-height: 120px;
  font-weight: lighter;
  vertical-align: middle;
}

.banner-text1-1 {
  font-size: 120px;
}

.banner-text2 {
  font-size: 60px;
  font-weight: lighter;
  color: #ffffff;

  opacity: 0;
  transform: translateY(50%);
  -ms-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.showed .banner-text2 {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
}

.banner-line-container {
  width: 100%;
  height: 1px;
}

.banner-line-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.banner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #de1f37;
}

.banner-text3 {
  font-size: 40px;
  font-weight: lighter;
  color: #ffffff;

  opacity: 0;
  transform: translateY(50%);
  -ms-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.showed .banner-text3 {
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);
}

.banner-grain1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/index/banner-grain1.png") center;
}

.banner-grain2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../img/index/banner-grain2.png") center;
}

.banner-scroll-down-container {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 37px;
}

.banner-scroll-down-icon-container {
  margin: auto;
  width: 24px;
  height: 44px;
  cursor: pointer;
}

.banner-scroll-down-icon1 {
  position: absolute;
  left: 0;
  top: 0;
}

.banner-scroll-down-icon2 {
  position: absolute;
  left: 9px;
  top: 10px;
  animation: banner-scroll-down-icon2 2100ms infinite;
  -webkit-animation: banner-scroll-down-icon2 2100ms infinite;
  -moz-animation: banner-scroll-down-icon2 2100ms infinite;
}

@keyframes banner-scroll-down-icon2 {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@-webkit-keyframes banner-scroll-down-icon2 {
  0% {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(20px);
    opacity: 0;
  }
}

@-moz-keyframes banner-scroll-down-icon2 {
  0% {
    -moz-transform: translateY(0);
    opacity: 1;
  }
  50% {
    -moz-transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(20px);
    opacity: 0;
  }
}

.banner-scroll-down-text1 {
  margin-top: 10px;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
}

.banner-pagination-container {
  position: absolute;
  left: 40px;
  bottom: 40px;
  overflow: hidden;
}

.banner-pagination-point {
  margin-left: 16px;
  width: 13px;
  height: 13px;
  border: 1px solid white;
  border-radius: 100%;
  background-color: transparent;
  float: left;
  cursor: pointer;

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.banner-pagination-point:first-child {
  margin-left: 0;
}

.banner-pagination-point.selected {
  background-color: #de1f37;
  border-color: #de1f37;
}

.service-container {
  display: none;
  width: 100%;
  height: 530px;
  background-color: #272a2f;
  font-size: 0;
}

.service-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #de1f37;
}

.service-left-container {
  width: 33.3%;
  height: 100%;
  background-color: #303030;
  float: left;
  z-index: 1;
}

.service-left-right-corner {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 40px solid #de1f37;
  border-right: 40px solid #de1f37;
  border-bottom: 40px solid #303030;
  border-left: 40px solid #303030;
}

.service-left-double-quotes {
  position: absolute;
  left: 39px;
  top: 40px;
}

.service-left-text1 {
  margin: 145px auto auto 80px;
  padding-right: 10px;
  font-size: 40px;
  font-weight: lighter;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .service-left-text1 {
    font-size: 36px;
  }
}

.service-left-short-line {
  margin: 45px auto auto 40px;
  width: 140px;
  height: 1px;
  background-color: #de1f37;
}

.service-left-text2 {
  margin: 45px auto auto 80px;
  font-size: 0;
}

.service-left-text2 * {
  display: inline-block;
  font-size: 26px;
  font-weight: lighter;
  color: #ffffff;
  vertical-align: middle;
}

.service-left-text2-2 {
  font-size: 24px;
}

.service-left-text3 {
  margin: 26px auto auto 80px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: lighter;
  color: #83819b;
}

.service-right-container {
  width: 66.7%;
  height: 100%;
  background-color: #de1f37;
  float: left;
}

.service-right-cell {
  display: inline-block;
  width: 25%;
  height: 100%;
  text-align: center;
  cursor: pointer;
}

.service-right-cell a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.service-right-cell-hover-background {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 445px;
  background: url("../../img/index/service-right-cell-hover-background.png");
  opacity: 0;
  filter: alpha(opacity=0);

  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

.service-right-cell:hover .service-right-cell-hover-background {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE8 */
}

.service-right-cell-icon {
  margin: auto;

  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.service-right-cell:hover .service-right-cell-icon {
  transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  -o-transform: translateY(-30px);
}

.service-right-cell-text1 {
  margin: 27px auto auto auto;
  font-size: 24px;
  font-weight: lighter;
  color: #ffffff;

  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
}

.service-right-cell:hover .service-right-cell-text1 {
  transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  -o-transform: translateY(-30px);
}

.service-right-cell-text2 {
  margin: 5px auto auto auto;
  font-size: 14px;
  font-weight: lighter;
  color: #ffffff;
  opacity: 0.6;
  filter: alpha(opacity=60);

  transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  -o-transform: translateY(0);

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;

  transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
}

.service-right-cell:hover .service-right-cell-text2 {
  transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  -o-transform: translateY(-30px);
}

.service-right-cell-button {
  margin: 10px auto auto auto;
  width: 19px;
  height: 38px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;

  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.service-right-cell:hover .service-right-cell-button {
  width: 59px;
}

.service-right-cell-button .common-table {
  float: right;
}

.service-right-cell-button-arrow-icon {
  margin: auto;
}

.show-case-container {
  display: none;
  width: 100%;
}

.show-case-table-container {
  width: 100%;
  padding-bottom: 27.083333%;
  background-color: #000000;
}

.show-case-table-content {
  position: absolute;
  width: 100%;
  height: 100%;
}

.show-case-table-content a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.show-case-column1 {
  width: 20%;
  height: 100%;
  float: left;
  overflow: hidden;
}

.show-case-column2 {
  width: 40%;
  height: 100%;
  float: left;
  overflow: hidden;
}

.show-case-row1 {
  width: 100%;
  height: 50%;
  overflow: hidden;
}

.show-case-row2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.show-case-image {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  filter: alpha(opacity=80);

  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.show-case-row1:hover .show-case-image, .show-case-row2:hover .show-case-image {
  opacity: 1;
  filter: alpha(opacity=100);

  transform: scale(1.15);
  -ms-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -o-transform: scale(1.15);
}

.show-case-magnifier-icon-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.show-case-magnifier-icon-container img {
  margin: auto;

  opacity: 0;
  filter: alpha(opacity=0);

  transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
}

.show-case-row1:hover .show-case-magnifier-icon-container img, .show-case-row2:hover .show-case-magnifier-icon-container img {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF)"; /* IE8 */
}

.show-case-row1 .common-table, .show-case-row2 .common-table {
  height: 5%;

  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.show-case-row1:hover .common-table, .show-case-row2:hover .common-table {
  height: 100%;
}

.show-case-more-container {
  width: 100%;
  height: 98px;
  border-top: 1px solid #413f57;
  border-bottom: 1px solid #2b293f;
  background-color: #303030;

  transition: border-top-color .3s ease, border-bottom-color .3s ease, background-color .3s ease;
  -moz-transition: border-top-color .3s ease, border-bottom-color .3s ease, background-color .3s ease;
  -webkit-transition: border-top-color .3s ease, border-bottom-color .3s ease, background-color .3s ease;
  -o-transition: border-top-color .3s ease, border-bottom-color .3s ease, background-color .3s ease;
}

.show-case-more-container:hover {
  border-top-color: #4d4b65;
  border-bottom-color: #323049;
  background-color: #494949;
}

.show-case-more-text {
  display: inline-block;
  font-size: 24px;
  font-weight: lighter;
  color: #9f9eab;
  vertical-align: middle;

  transition: color .3s ease;
  -moz-transition: color .3s ease;
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
}

.show-case-more-container:hover .show-case-more-text {
  color: #ffffff;
}

.show-case-more-arrow-container {
  display: inline-block;
  margin-left: 0;
  width: 0;
  vertical-align: middle;
  overflow: hidden;

  transition: width .3s ease, margin-left .3s ease;
  -moz-transition: width .3s ease, margin-left .3s ease;
  -webkit-transition: width .3s ease, margin-left .3s ease;
  -o-transition: width .3s ease, margin-left .3s ease;
}

.show-case-more-container:hover .show-case-more-arrow-container {
  margin-left: 30px;
  width: 19px;
  transform: scale(1);
  -ms-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
}

.about-container {
  display: none;
  width: 100%;
  height: 995px;
  color: #ffffff;
  background-color: #de1f37;
  border-top: 1px solid #ff344e;
  border-bottom: 1px solid #bf1026;
}

.about-left-container {
  width: 40%;
  height: 100%;
  float: left;
  overflow: hidden;
}

.about-left-text1 {
  /*margin: 125px auto auto 80px;*/
  margin: 110px auto auto 80px;
  font-size: 0;
}

.about-left-text1 * {
  display: inline-block;
  font-size: 45px;
  font-weight: lighter;
  vertical-align: middle;
}

.about-left-text1-2 {
  font-size: 40px;
}

.about-left-text2 {
  /*margin: 70px auto auto 70px;*/
  margin: 50px auto auto 70px;
  font-size: 0;
}

.about-left-text2-1 {
  display: inline-block;
  font-size: 145px;
  line-height: 145px;
  font-weight: lighter;
}

.about-left-text2-2 {
  display: inline-block;
  overflow: hidden;
}

.about-left-text2-2-1 {
  font-size: 40px;
  font-weight: lighter;
}

.about-left-text2-2-2 {
  font-size: 16px;
}

.about-left-text3 {
  /*margin: 70px auto auto 70px;*/
  margin: 50px auto auto 70px;
  font-size: 0;
}

.about-left-text3-1 {
  display: inline-block;
  font-size: 145px;
  line-height: 145px;
  font-weight: lighter;
}

.about-left-text3-2 {
  display: inline-block;
  overflow: hidden;
}

.about-left-text3-2-1 {
  font-size: 70px;
  line-height: 60px;
  font-weight: lighter;
}

.about-left-text3-2-2 {
  font-size: 16px;
}

.about-left-text4 {
  /*margin: 70px auto auto 80px;*/
  margin: 50px auto auto 80px;
  font-size: 40px;
  font-weight: lighter;
}

@media (max-width: 1150px) {
  .about-left-text4 {
    font-size: 34px;
  }
}

.about-left-short-line {
  margin: 35px auto auto 31px;
  width: 140px;
  height: 1px;
  background-color: #ffffff;
}

.about-left-text5 {
  margin: 35px auto auto 80px;
  font-size: 14px;
}

.about-right-container {
  width: 60%;
  height: 100%;
  float: right;
  overflow: hidden;
}

.about-right-big-logo {
  margin: 150px 20% auto auto;
  width: 65.89%;
}

.about-right-button {
  width: 150px;
  height: 40px;
  background-color: #312f44;
  margin:50px 0 0 80px;

  transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
}

.about-right-button:hover {
  background-color: #ffffff;
}

.about-right-button a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-right-button-arrow-container {
  position: absolute;
  left: -20px;
  top: 16px;
  width: 99px;
  height: 1px;

  transition: left .3s ease;
  -moz-transition: left .3s ease;
  -webkit-transition: left .3s ease;
  -o-transition: left .3s ease;
}

.about-right-button:hover .about-right-button-arrow-container {
  left: 26px;
}

.about-right-button-arrow-container * {
  position: absolute;
  left: 0;
  top: 0;
}

.about-right-button-arrow1 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.about-right-button-arrow2 {
  opacity: 0;
  filter: alpha(opacity=0);

  transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
}

.about-right-button:hover .about-right-button-arrow2 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.contact-container {
  display: none;
  width: 100%;
  height: 480px;
  color: #ffffff;
  background-color: #312f44;
}

.contact-email-container {
  width: 50%;
  height: 100%;
  background: url("../../img/index/email-background.png") center no-repeat;
  float: left;
}

.contact-email-text1 {
  margin: 80px auto auto 75px;
  font-size: 0;
}

.contact-email-text1 * {
  display: inline-block;
  font-size: 45px;
  font-weight: lighter;
  vertical-align: middle;
}

.contact-email-text1-2 {
  font-size: 40px;
}

.contact-email-text2 {
  margin: 7px auto auto 77px;
  font-size: 14px;
  color: #9f9eab;
}

.contact-email-text2 a {
  color: #339fe3;
}

.contact-email-form-container {
  margin: auto 100px auto 77px;
}

.contact-email-form-row {
  margin-top: 40px;
  overflow: hidden;
}

.contact-email-form-input1 {
  margin-left: 8%;
  width: 28%;
  height: 30px;
  border: 0;
  border-bottom: 1px solid #4c4a61;
  outline-style: none;
  background-color: transparent;
  font-size: 14px;
  color: #ffffff;
  float: left;

  transition: border-bottom-color .3s ease;
  -moz-transition: border-bottom-color .3s ease;
  -webkit-transition: border-bottom-color .3s ease;
  -o-transition: border-bottom-color .3s ease;
}

.contact-email-form-input1:first-child {
  margin-left: 0;
}

.contact-email-form-input1:focus {
  border-bottom-color: #de1f37;
}

.contact-email-form-input2 {
  width: 100%;
}

.contact-email-form-container input::-webkit-input-placeholder { /* WebKit browsers */
  color: #6c6a7d;
}

.contact-email-form-container input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #6c6a7d;
}

.contact-email-form-container input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #6c6a7d;
}

.contact-email-form-container input:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #6c6a7d;
}

.contact-email-form-button {
  margin: 47px 0 auto auto;
  width: 148px;
  height: 38px;
  border: 1px solid #4c4a61;
  background-color: transparent;
  font-size: 16px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;

  transition: background-color .3s ease;
  -moz-transition: background-color .3s ease;
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
}

.contact-email-form-button:hover {
  background-color: #de1f37;
  border: 1px solid #de1f37;
}

.contact-phone-container {
  width: 25%;
  height: 100%;
  background-color: #a11425;
  float: left;
}

.contact-phone-container * {
  margin: auto;
}

.contact-address-container {
  width: 25%;
  height: 100%;
  background-color: #c1172c;
  float: left;
}

.contact-address-container * {
  margin: auto;
}

.contact-phone-text1 {
  margin-top: 20px;
  padding: 0 10px;
  font-size: 28px;
  font-weight: lighter;
  color: #ffffff;
}

.contact-phone-text1 span {
  font-weight: bold;
}

.contact-address-text1 {
  margin-top: 20px;
  padding: 0 10px;
  font-size: 24px;
  color: #ffffff;
}

.contact-phone-address-text2 {
  margin-top: 10px;
  padding: 0 10px;
  font-size: 14px;
}

.customer-container {
  display: none;
  width: 100%;
  height: 148px;
  background-color: #202020;
  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}

.customer-icon-list-container {
  margin: 40px auto auto auto;
  width: 92%;
  height: 80px;
  font-size: 0;
}

.customer-icon-list-content {
  width: 2499px;
}

.customer-icon-list-content img {
  display: inline-block;
  margin-left: 60px;
}

.customer-icon-list-content img:first-child {
  margin-left: 0;
}

.alwu-footer {
  display: none;
}

.alwu-header {
  display: none;
}


.menu-icon-container {
  position: fixed;
  top: 40px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #de1f37;
  cursor: pointer;
}

.menu-icon-container span, .menu-icon-container span:before, .menu-icon-container span:after {
  position: absolute;
  margin: auto;
  top: 39px;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: #ffffff;

  content: '';

  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.menu-icon-container span:before {
  top: -13px;
}

.menu-icon-container span:after {
  top: 13px;
}

.menu-icon-container.clicked span:before {
  opacity: 0;
  filter: alpha(opacity=0);
}

.menu-icon-container.clicked span {
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.menu-icon-container.clicked span:after {
  top: 0px;
  transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.mCS-my-theme.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: #3e3e3e;
  border-radius: 0;
}

.mCS-my-theme.mCSB_scrollTools .mCSB_draggerRail {
  background-color: #292929;
  border-radius: 0;
}

.mCS-my-theme #mCSB_1_scrollbar_horizontal .mCSB_dragger_bar {
  height: 10px;
  background-color: #333148;
}

.mCS-my-theme #mCSB_1_scrollbar_horizontal .mCSB_draggerRail {
  height: 10px;
}

.mCS-my-theme .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-color: #333148;
}

.mCSB_scrollTools {
  opacity: 1;
  filter: alpha(opacity=100);
}

.placeholder {
  color: #6c6a7d;
}

#down-icon{transition: opacity 1.5s ease;-ms-transition: opacity 1.5s ease;
  -moz-transition: opacity 1.5s ease;
  -webkit-transition: opacity 1.5s ease;
  -o-transition: opacity 1.5s ease;}