@charset "UTF-8";
/*
  样式规范表
*/
/* 通用字体混入 */
/* 不同板块标题字体混入 */
/* 通用按钮混入 */
/* 通用按钮混入选中 */
/* PC端下内容容器 */
.customer .customer_content {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #f3f4f8;
}

.customer .customer_content .plate_introduce {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0;
  margin-bottom: 100px;
}

@media screen and (max-width: 1600px) {
  .customer .customer_content .plate_introduce {
    width: 100%;
    max-width: 92%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 1400px) {
  .customer .customer_content .plate_introduce {
    width: 100%;
    max-width: 80%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 1100px) {
  .customer .customer_content .plate_introduce {
    width: 100%;
    max-width: 90%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .customer .customer_content .plate_introduce {
    width: 100%;
    max-width: auto;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.customer .customer_content .plate_introduce .plate_title {
  margin-bottom: 20px;
}

.customer .customer_content .plate_introduce .plate_title p {
  color: black;
  font-size: 42px;
  line-height: 1;
  font-weight: normal;
  font-family: "Source Han Sans CN";
}

.customer .customer_content .plate_introduce .plate_remark p {
  color: #666666;
  font-size: 16px;
  line-height: 1;
  font-weight: lighter;
  font-family: "Microsoft YaHei";
}

.customer .customer_content .customer_content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0;
  margin-bottom: 100px;
}

@media screen and (max-width: 1600px) {
  .customer .customer_content .customer_content {
    width: 100%;
    max-width: 92%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 1400px) {
  .customer .customer_content .customer_content {
    width: 100%;
    max-width: 80%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 1100px) {
  .customer .customer_content .customer_content {
    width: 100%;
    max-width: 90%;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 800px) {
  .customer .customer_content .customer_content {
    width: 100%;
    max-width: auto;
    padding: 0 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.customer .customer_content .customer_content .customer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: solid 1px rgba(0, 0, 0, 0.102);
}

.customer .customer_content .customer_content .customer_list .customer_item {
  width: calc(100% / 5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: solid 1px rgba(0, 0, 0, 0.102);
}

.customer .customer_content .customer_content .customer_list .customer_item img {
  width: 100%;
  height: auto;
}

.customer .customer_content .load_more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.customer .customer_content .load_more .load_more_content {
  position: relative;
  width: 240px;
  height: 60px;
}

.customer .customer_content .load_more .load_more_content button {
  cursor: pointer;
  width: 100%;
  height: 100%;
  background-color: rgba(178, 14, 18, 0);
  color: black;
  font-size: 20px;
  line-height: 1;
  font-weight: lighter;
  font-family: "Microsoft YaHei";
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .4s;
  transition: all .4s;
  /* &:hover {
                        color: #fff;
                        border-color: rgba($color: rgb(178, 14, 18), $alpha: 1);
                        background-color: rgba($color: rgb(178, 14, 18), $alpha: 1);
                    } */
}

@-webkit-keyframes roate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes roate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

.customer .customer_content .load_more .load_more_content button.load span {
  display: inline-block;
  width: 21px;
  height: 21px;
  overflow: hidden;
  -webkit-transition: all .4s;
  transition: all .4s;
  max-width: 21px;
  margin-right: 8px;
  background: url(../../images/customer/load-icon-1.png) center no-repeat;
  background-size: contain;
  -webkit-animation: roate 1.2s linear;
          animation: roate 1.2s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.customer .customer_content .load_more .load_more_content button span {
  width: 0;
}
/*# sourceMappingURL=customer.css.map */