* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-word;
  /* break-all; */
}
@font-face {
  font-family: 'SourceHanSansSC-R';
  src: url("../css/fonts/SourceHanSansSC-Regular.otf");
}
@font-face {
  font-family: 'Montserrat-Medium';
  src: url("../css/fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-family: 'LamaSans-R';
  src: url("../css/fonts/LamaSans-Regular.ttf");
}
@font-face {
  font-family: 'LamaSans-M';
  src: url("../css/fonts/LamaSans-Medium.ttf");
}
body {
  font-family: 'Microsoft Yahei', 'Helvetica Neue', Helvetica, 'Lucida Grande', Arial, 'Hiragino Sans GB', 'WenQuanYi Micro Hei', STHeiti, SimSun, sans-serif;
}
li,
i,
em {
  list-style: none;
}
a {
  text-decoration: none;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #333;
  font-size: 14px;
  scroll-behavior: smooth;
}
.swiper {
  overflow: hidden;
}
.container {
  width: 100%;
  position: relative;
  word-break: break-all;
  font-family: 'SourceHanSansSC-R';
  font-weight: normal;
  overflow-x: hidden;
  overflow-y: auto;
}
.clamp1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.clamp2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clamp3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.clamp4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.imgHover {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.imgHover img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: 0.5s;
}
.imgHover:hover {
  overflow: hidden;
}
.imgHover:hover img {
  transform: scale(1.05);
  transition: 0.5s;
}
@media only screen and (max-width: 640px) {
  .imgHover img {
    border-radius: 6px;
  }
}
@media only screen and (max-width: 520px) {
  .imgHover {
    border-radius: 6px;
  }
}
