/*@font-face {
  font-family: myFirstFont;
  src: url(../fonts/SourceHanSansCN-Light.otf);
} */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-width: 1240px;
  font-family: '思源黑体','微软雅黑','苹方黑体';
}
.width-1180 {
  width: 1180px;
  margin: 0 auto;
}
.width-min {
  min-width: 1180px;
}
ul,
li,
ol {
  list-style: none;
}
i,
em {
  font-style: normal;
}
img {
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: blue;
}
.box-flex {
  display: flex;
  justify-content: space-between;
}
h3.title {
  display: flex;
  align-items: center;
  color: #333333;
}
h3.title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background-color: #00a3fe;
  margin-right: 12px;
}
.text-hidden {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.float-clear {
  clear: both;
}
.pointer {
  cursor: pointer;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
button.button {
  width: 92px;
  height: 40px;
  border-radius: 5px;
  border: none;
}

img.hover-scale {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
img.hover-scale:hover {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -o-transform: scale(1.5);
}

/* 动画 */
.transition-all {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
}
@keyframes remove-block {
  0% {
    transform: translateX(0);
  }
  99% {
    transform: translateX(-1000px);
  }
  100% {
    display: none;
  }
}
.remove-block {
  animation: remove-block 0.5s;
}
.padding-tb {
  padding: 60px 20px;
}
.padding {
  padding-top: 30px;
}
.background-none {
  background: none !important;
}
.border-none {
  border: none !important;
}
