* {
  margin: 0;
  padding: 0;
}

 @font-face {
  font-family: 'MiSans, MiSans';
  src: url('../font/MiSans-Normal.ttf')format('truetype');
} 
 @font-face {
  font-family: 'MiSanstt';
  src: url('../font/MiSans-Heavy.ttf')format('truetype');
} 
html {
  scroll-behavior: smooth;
}


a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

input,
textarea,
button,
select {
  border: 0;
  resize: none;
  outline: 0;
  background: transparent;
}

button {
  cursor: pointer;
}

img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body {
    overflow-x: hidden;
}

/*多行溢出*/
.line1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.line3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.line4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 4;
}

.line5 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
}

/* hover-图片放大1.1 */
.scale-box {
  overflow: hidden;
}

.scale-box .scale-img {
  width: 100%;
  height: 100%;
  transition: all .3s linear;
  cursor: pointer;
  object-fit: cover;
}

.scale-box:hover .scale-img {
  transform: scale(1.1);
}


/* 常用盒子阴影 */
.shadow_box {
  box-shadow: 0 .02rem .12rem 0 rgba(0, 0, 0, 0.1)
}

/* 水波纹效果 */
.btn-ripple {
  vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
  opacity: 1;
  position: relative;
  overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
  animation: ani_ripple 0.75s;
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: transparent;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

.main {
  width: calc(100% - 1.81rem - 1.81rem);
  margin: 0 auto;
}
.bread {
	margin-top: 0.44rem;
}
.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

.bread .item span {
	display: flex;
	align-items: center;
	color: rgba(111, 111, 111, 1);
	font-size: 0.16rem;
}

.bread .item>a {
	display: flex;
	align-items: center;
}

.bread .list .item:not(:first-child)::before {
	content: '>';
	display: block;
	font-size: 0.14rem;
	color: rgba(111, 111, 111, 1);
	margin: 0 0.05rem;
	align-self: center;
}

.bread .list,
.bread .item {
	display: flex;
	color: rgba(111, 111, 111, 1);
}

.bread .main {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.bread .active span {
	color: rgba(73, 73, 73, 1);
}

.bread .list {
	justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
    .main{
        width: calc(100% - 0.5rem - 0.5rem);
    }
    /*.common-phone-header{
        background: linear-gradient(to bottom, rgb(158, 152, 145, 0.5), rgb(189, 183, 178, 0.3));
    }*/
}