* {
  margin: 0;
  padding: 0;
  outline: none;
}
html {
  font-size: 62.5%; /*10 ÷ 16 × 100% = 62.5%*/
  width: 100vw;
  overflow-x: hidden;
}
@media all and (max-width:1537px) {
  html {
    font-size: 47.5%; /*10 ÷ 16 × 100% = 62.5%*/
    width: 100vw;
    overflow-x: hidden;
  }
}
body {
  font-size: 1.6rem;
  width: 100vw;
  overflow-x: hidden;
}
/* html,
body {
  width: 100%;
  overflow-x: hidden;
} */
a {
  text-decoration: none;
  color: #666;
  pointer-events: auto;
}
a:hover {
  text-decoration: none;
}
ul,
li {
  list-style: none;
}
.clear {
  clear: both;
}
.left {
  float: left;
}
.right {
  float: right;
}
button {
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}
.pic {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
}
.pic img {
  width: 100%;
  /* height: 100%; */
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  pointer-events: auto;
  /* object-fit: cover; */
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /* border:10; */
}

/* 溢出隐藏 */
.nav-imgcut {
  -webkit-overflow: hideen;
  -moz-overflow: hideen;
  -ms-overflow: hideen;
  -o-overflow: hideen;
  overflow: hidden;
  /* border: #fff solid 10px; */
  box-sizing: border-box;
}

/*
	左边悬浮
	联系方式
*/
.fiexd-call {
  position: fixed;
  top: 66.5%;
  left: 36px;
  z-index: 999;
  cursor: pointer;
}
.fiexd-call div {
  width: 30px;
  height: 30px;
  margin-bottom: 24px;
  border-radius: 15px;
  background-color: transparent;
  position: relative;
  transition: 0.8s;
  overflow: hidden;
}
.fiexd-call div img {
  width: 22px;
  height: 22px;
  line-height: 30px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  filter: brightness(30);
}
.fiexd-call div a {
  display: block;
  width: 11em;
  font-size: 1.6rem;
  font-family: Arial;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  left: 30px;
  top: 0;
  line-height: 30px;
  margin-left: 15px;
}
.fiexd-call .phone:hover,
.fiexd-call .tle:hover,
.fiexd-call .emaile:hover {
  width: 200px;
  background: #96141e;
}

.fixed {
  position: fixed !important;
  z-index: 9999 !important;
}

.fixed-top70 {
  top: 70px !important;
}

.fixed-top {
  top: 0px !important;
}

@font-face {
  font-family: myFirstFont;
  src: url("../../fonts/YesterdayDream.ttf"); /* IE9 */
}
@font-face {
  font-family: myArial;
  src: url("../../fonts/ARIAL.TTF");
}
@font-face {
  font-family: mySiYuan;
  src: url("../../fonts/SOURCEHANSANSCN-NORMAL.OTF");
}

/* 文字超出部分省略号显示 */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 图片悬浮反馈 */
.pic.big:hover img {
  transform: scale(1.08) translate(-50%, -50%);
}

.logo-rotate:hover {
  animation: logoRotate 0.5s;
  transform-origin: center center;
}

/* 解释框 */
.motai{
  display: inline-block;

  border-radius: 5px;
  background-color: #fff;
  padding: 15px;
  color: #333;
  position: fixed;
  z-index: 99999;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  opacity: 1;
  animation-iteration-count:1;
}

@keyframes motai {
  0%{
    opacity: 1;
    transform: translate(-50%,-50%);
  }
  70%{
    opacity: 1;
    transform: translate(-50%,-50%);
  }
  100%{
    opacity: 0;
    transform: translate(-50%,-200%);
  }
}


@keyframes logoRotate {
  0% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes home-button-bottom {
  0%,
  25%,
  50%,
  75% {
    opacity: 0;
    transform: translateY(0);
  }

  6.25%,
  31.25%,
  56.25%,
  81.25% {
    opacity: 1;
  }

  12.5%,
  24.99%,
  37.5%,
  49.99%,
  62.5%,
  74.99%,
  87.5%,
  99.99% {
    transform: translateY(-22px);
  }

  100% {
    opacity: 0;
  }
}

@keyframes home-button-bottomccc {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  6.25% {
    opacity: 1;
  }
  12.5% {
    transform: translateY(-22px);
  }
  24.99% {
    transform: translateY(-22px);
  }
  31.25% {
    opacity: 1;
  }
  37.5% {
    transform: translateY(-22px);
  }
  49.99% {
    transform: translateY(-22px);
  }
  56.25% {
    opacity: 1;
  }
  62.5% {
    transform: translateY(-22px);
  }
  74.99% {
    transform: translateY(-22px);
  }
  81.25% {
    opacity: 1;
  }
  87.5% {
    transform: translateY(-22px);
  }
  99.99% {
    transform: translateY(-22px);
  }
  100% {
    opacity: 0;
  }
}
