
html,
body {
  width: 100%;
  height: 100%;

  background-color: #FFF;
  font-family: 'sf-pro-display_regular', sans-serif;
}

@font-face {
  font-family: 'sf-pro-display_regular';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(fonts/sf-pro-display_regular.woff2) format('woff2');
}

html,body,p,h1,h2,h3,h4,h5,ul,li{  margin: 0;
  padding: 0;}


/* by PQ */
.common-loading {
  position: fixed;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, .8);
}

.common-loading-spinner {
  top: 50%;
  margin-top: -36px;
  width: 100%;
  text-align: center;
  position: absolute;
  color: #1890ff;
}

.common-loading-spinner .circular {
  height: 60px;
  width: 60px;
  animation: loading-rotate 2s linear infinite;
}

.common-loading-spinner .path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #409eff;
  stroke-linecap: round;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn)
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px
  }
}

#roll_top {
  display: none;
  height: 50px;
  width: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  background: #474747 url(../image/btn_top.svg) no-repeat center 50%;
  opacity: 0.8;
  cursor: pointer;
}

.wrapper {
  max-width: 2040px;
  width: 100%;
  margin: auto;
}
/* header */
.header{
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 800px;
  color: #FFF;
}
.header-logo img{ height: 60px;}
.header .title{ color: #e9e9e8; text-shadow: rgb(17, 16, 16) 0 2px 0;}
.header .title p:nth-child(1){ font-size: 42px;}
.header .title p:nth-child(2){ font-size: 28px; padding: 10px 0;}
.header .top{ text-align: center; display: flex; justify-content: flex-end; width: 100%; padding-top: 40px;}


.mobile-header-bg{ display: none;}
.content{ max-width: 1200px; margin: auto;}
/* body */
.body{ font-size: 18px; padding: 40px 0;}
.body p{ padding: 10px 0;}
.menu{ display: flex; justify-content: flex-end; width: 100%; padding-top: 50px; }

.language ul li{ list-style-type: none; margin-top: 15px;}
.language a{ height: 46px; line-height: 46px; color: #FFF; text-decoration: none; font-size: 22px; display: block; background-color: rgba(81, 82, 80, .5);
  border: 1px solid #EEE; border-radius: 15px;
  background-image: url(../image/arrow-right.png); background-size: 14px 14px; background-repeat: no-repeat; background-position: right 15px top 50%;
  width: 200px;
text-align: center;
transition: all 0.4s;
}
.language a:hover{transform: scale(1.2);  background-color: rgba(0, 0, 0, .8);}

.social{ margin-left: 100px;}
.social ul li{ list-style-type: none; margin-top: 15px;}
.social a{ height: 46px; line-height: 46px; color: #FFF; text-decoration: none; font-size: 22px; display: block; background-color: rgba(81, 82, 80, .5);
  border: 1px solid #EEE; border-radius: 15px;
  background-image: url(../image/arrow-right.png); background-size: 14px 14px; background-repeat: no-repeat; background-position: right 15px top 50%;
padding-right: 35px;
display: flex; padding-left: 20px;
transition: all 0.4s;
}
.social a:hover{transform: scale(1.2);  background-color: rgba(0, 0, 0, .8);}
.social a span:nth-child(1){ padding-right: 10px; display: flex; align-items: center;}
.social a img{ width: 28px; height: 28px;}

.social .menu-title{ padding-top: 55px;}
.menu-title{ font-size: 20px; font-weight: bold; text-transform: uppercase; text-shadow: rgb(17, 16, 16) 0 2px 0;}
.atme{ font-weight: normal;}
.language-menu-title{ margin-left: -20px;}

/* footer */
.footer{ padding: 20px 0; background-color: #313131; color: #FFF; text-align: center;}
.footer a{ color: #FFF;}
.footer-logo span{ position: relative; display: inline-block; padding: 0 20px; padding-bottom: 8px;}
.footer-logo span::after{ content: ''; position: absolute; width: 100%; left: 0; bottom: 0; border-bottom: 1px solid #5e5e5f;}
.footer-logo img{ height: 55px;}
.copyright{ font-size: 13px; padding-top: 10px;}
.copyright p{ padding-top: 8px ;}
@media screen and (max-width: 1000px) {
  .body{ padding: 20px 15px;}
}
@media screen and (max-width: 700px) {
  .header{
    height: auto;
    background-image: none !important;
  }
  .mobile-header-bg{ display: block; position: relative;}
  .mobile-header-bg img{ display: block; width: 100%;}
  .top{ position: absolute; left: 0; top: 0;}
  .header .title p:nth-child(1) {
    font-size: 18px;
}
.header .title p:nth-child(2) {
  font-size: 16px;
  padding: 5px 0;
}
.header-logo img {
  height: 30px;
}
.header .top {
  justify-content: center;
  padding-top: 35px;
}
.header-content{ position: relative;}
.menu {
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: 40px;
}
.language{ width: 50%;}
.language a {
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  background-size: 14px 14px;
  width: 120px;
  margin: auto;

}
.language-menu-title {
  margin-left: 0;
}
.social {
  width: 50%;
  margin-left: 0;
}
.social a {
  width: 100px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  padding-right: 10px;
  padding-left: 15px;
  background-position: right 5px top 50%;
  margin: auto;
}
.social a img {
  width: 18px;
  height: 18px;
}
.menu-title {
  font-size: 14px;
  text-align: center;
}
.social .menu-title{ padding-top: 40px;}

.body{ font-size: 13px;}
.footer-logo img {
  height: 32px;
}
.copyright p{ padding-left: 15px; padding-right: 15px; font-size: 12px;}

  #roll_top {
    height: 30px;
    width: 30px;
    bottom: 10px;
    right: 10px;

  }

}