@keyframes smallToRight {
  from {
    transform: translate(-20%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToLeft {
  from {
    transform: translate(20%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToTop {
  from {
    transform: translate(0, 20%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes smallToBottom {
  from {
    transform: translate(0, -20%);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes opacityZreoToOne {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.smallToRightAnim {
  animation-name: smallToRight, opacityZreoToOne;
}

.smallToLeftAnim {
  animation-name: smallToLeft, opacityZreoToOne;
}

.smallToTopAnim {
  animation-name: smallToTop, opacityZreoToOne;
}

.smallToBottomAnim {
  animation-name: smallToBottom, opacityZreoToOne;
}

@keyframes clipXMove {
  from {
    overflow: hidden;
    transform: translateX(275px);
    width: 0%;
  }
  to {
    overflow: hidden;
    transform: translateX(0);
  }
}
@keyframes clipHeight {
  from {
    overflow: hidden;
    height: 0%;
  }
  to {
    overflow: hidden;
  }
}
.clipHeightAnimBox {
  display: flex;
  animation: clipHeight 1s cubic-bezier(0.24, 0.1, 0.2, 1) both;
}
.clipHeightAnimBox .clipHeightAnim {
  white-space: nowrap;
}

.clipXMoveAnim {
  white-space: nowrap;
  animation: clipXMove 1s ease both;
}

.clipXMoveAnimBox {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.clip-x-move-anim-image-obj {
  position: absolute;
  width: 600px;
  height: 100%;
}

.enterprise-honor-box {
  display: flex;
  flex-wrap: wrap;
}
.enterprise-honor-box .enterprise-honor-elem {
  position: relative;
  width: calc(33.3% - 9px);
  margin: 4px;
  border-radius: 2px;
  overflow: hidden;
  border: 3px solid rgba(51, 51, 51, 0.2);
}
.enterprise-honor-box .enterprise-honor-elem .enterprise-honor-info-layout {
  position: absolute;
  cursor: pointer;
  color: #fff;
  text-align: center;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.3333333333);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 5rem;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 12px rgba(34, 34, 34, 0.2);
}
.enterprise-honor-box .enterprise-honor-elem .enterprise-honor-info-layout span {
  color: #000;
}
.enterprise-honor-box .enterprise-honor-elem img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 1500px) {
  .enterprise-honor-box .enterprise-honor-elem {
    width: calc(50% - 7px);
    margin: 3px;
  }
}
@media screen and (max-width: 1200px) {
  .enterprise-honor-box .enterprise-honor-elem {
    width: 100%;
    margin: 2px;
  }
}

/*# sourceMappingURL=patents-honors.css.map */
