.com-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.com-wrapper .com-info {
  display: flex;
  align-items: center;
  justify-content: center;
}
.com-wrapper .com-info .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.com-wrapper .com-info .info-item .item-l {
  flex-basis: 50%;
  position: relative;
  padding-right: 20px;
  text-align: right;
}
.com-wrapper .com-info .info-item .item-l .number {
  font-size: 55px;
  line-height: 55px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.2);
}
.com-wrapper .com-info .info-item .item-l .title {
  font-size: 30px;
  font-weight: bold;
}
.com-wrapper .com-info .info-item .item-l::after {
  display: inline-block;
  content: "";
  width: 1px;
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.6);
}
.com-wrapper .com-info .info-item .item-r {
  flex-basis: 50%;
  padding-left: 20px;
}
.com-wrapper .com-info .info-item .item-r .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #00afe5;
}
.com-wrapper .com-info .info-item .item-r .text {
  color: rgba(0, 0, 0, 0.9);
}
.com-wrapper .com-right {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 800px;
}
.com-wrapper .com-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.com-wrapper .com-bg .com-bg-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s;
  overflow: hidden;
}
.com-wrapper .com-bg .com-bg-item.opacity {
  opacity: 1;
}
.com-wrapper .com-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.com-wrapper .com-tips {
  width: 100%;
  position: absolute;
  bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.com-wrapper .com-tips .com-tips-item {
  flex-basis: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
}
.com-wrapper .com-tips .com-tips-item .tips-icon {
  width: 5rem;
  height: 5rem;
  opacity: 1;
  transition: 0.1s;
  transform: translateZ(0);
  margin: 0 auto;
}
.com-wrapper .com-tips .com-tips-item .tips-icon::before {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  height: 3.5rem;
  width: 3.5rem;
}
.com-wrapper .com-tips .com-tips-item .tips-icon::after {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  height: 5rem;
  width: 5rem;
}
.com-wrapper .com-tips .com-tips-item .tips-icon i {
  background: rgb(255, 255, 255);
  border-radius: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0.6);
  transition: 0.4s;
  width: 2.8rem;
  height: 2.8rem;
}
.com-wrapper .com-tips .com-tips-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.8);
}
.com-wrapper .com-tips .com-tips-item.active .tips-icon::before, .com-wrapper .com-tips .com-tips-item:hover .tips-icon::before {
  -webkit-animation: scalepulse 1.3s linear 0.3s infinite both;
          animation: scalepulse 1.3s linear 0.3s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
}
.com-wrapper .com-tips .com-tips-item.active .tips-icon::after, .com-wrapper .com-tips .com-tips-item:hover .tips-icon::after {
  -webkit-animation: scalepulse 1.3s linear 0.3s infinite both;
          animation: scalepulse 1.3s linear 0.3s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(0.75);
}
.com-wrapper .com-tips .com-tips-item.active .tips-icon i, .com-wrapper .com-tips .com-tips-item:hover .tips-icon i {
  -webkit-animation: scalepulse 1.3s linear 0s infinite both;
          animation: scalepulse 1.3s linear 0s infinite both;
  transform: translate3d(-50%, -50%, 0) scale(1);
  background: hsl(21deg, 100%, 50%);
}

.mb {
  margin-bottom: 100px;
}

@-webkit-keyframes scalepulsem {
  20% {
    transform: translate3d(-50%, -50%, 0) scale(0.65);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  50% {
    transform: translate3d(-50%, -50%, 0) scale(0.72);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}

@keyframes scalepulsem {
  20% {
    transform: translate3d(-50%, -50%, 0) scale(0.65);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  50% {
    transform: translate3d(-50%, -50%, 0) scale(0.72);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@-webkit-keyframes scalepulse {
  20% {
    transform: translate3d(-50%, -50%, 0) scale(1.15);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  50% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes scalepulse {
  20% {
    transform: translate3d(-50%, -50%, 0) scale(1.15);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  50% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@media only screen and (max-width: 767px) {
  .com-wrapper .com-right {
    height: 200px;
  }
  .com-wrapper .com-info {
    padding: 0;
  }
  .com-wrapper .com-info .info-item {
    align-items: initial;
    flex-direction: column;
    padding: 0 20px;
    margin-top: 50px;
  }
  .com-wrapper .com-info .info-item .item-l {
    padding-right: 0;
    text-align: left;
  }
  .com-wrapper .com-info .info-item .item-l::after {
    background: none;
  }
  .com-wrapper .com-info .info-item .item-r {
    padding-left: 0;
  }
  .com-wrapper .com-tips {
    bottom: 30px;
  }
  .com-wrapper .com-tips .com-tips-item {
    flex: 1;
    font-size: 18px;
  }
  .com-wrapper .com-tips .com-tips-item .tips-icon {
    width: 3rem;
    height: 3rem;
  }
  .com-wrapper .com-tips .com-tips-item .tips-icon::before {
    height: 2.3rem;
    width: 2.3rem;
  }
  .com-wrapper .com-tips .com-tips-item .tips-icon::after {
    height: 3rem;
    width: 3rem;
  }
  .com-wrapper .com-tips .com-tips-item .tips-icon i {
    height: 2rem;
    width: 2rem;
  }
  .com-wrapper .com-tips .com-tips-item .tips-title {
    padding: 0 10px;
    text-align: center;
  }
  .com-wrapper .com-tips .com-tips-item.active .tips-icon::before, .com-wrapper .com-tips .com-tips-item:hover .tips-icon::before {
    -webkit-animation: scalepulsem 1.3s linear 0.3s infinite both;
            animation: scalepulsem 1.3s linear 0.3s infinite both;
    transform: translate3d(-50%, -50%, 0) scale(0.75);
  }
  .com-wrapper .com-tips .com-tips-item.active .tips-icon::after, .com-wrapper .com-tips .com-tips-item:hover .tips-icon::after {
    -webkit-animation: scalepulsem 1.3s linear 0.3s infinite both;
            animation: scalepulsem 1.3s linear 0.3s infinite both;
    transform: translate3d(-50%, -50%, 0) scale(0.75);
  }
  .com-wrapper .com-tips .com-tips-item.active .tips-icon i, .com-wrapper .com-tips .com-tips-item:hover .tips-icon i {
    -webkit-animation: scalepulsem 1.3s linear 0s infinite both;
            animation: scalepulsem 1.3s linear 0s infinite both;
    transform: translate3d(-50%, -50%, 0) scale(0.6);
    background: hsl(21deg, 100%, 50%);
  }
}
.row-section {
  /*padding: 60px 0;*/
  padding: 0px;
}
.row-section .row-info-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.row-section .row-info {
  position: relative;
  color: #333;
  font-size: 14px;
  width: 80%;
}
.row-section .row-info::before {
  content: "";
  position: absolute;
  left: -120px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}
.row-section .row-info .title {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  line-height: 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
}
.row-section .row-info .title span {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  clear: both;
}
.row-section .row-info .text-box .text-item {
  margin-bottom: 15px;
}
.row-section .row-info .text-box .text-item::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  background: #00afe5;
  border-radius: 50px;
  margin-right: 10px;
}

.container-sm .row-info-sm {
  margin-top: 53px;
  padding: 0 20px;
}
.container-sm .row-info-sm .title {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  line-height: 50px;
}
.container-sm .row-info-sm span {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  clear: both;
}
.container-sm .row-img-sm {
  margin: 23px 0;
}
.container-sm .row-img-sm img {
  width: 100%;
  /*height: 180px;*/
}
.container-sm .text-box-sm {
  padding: 0 20px;
}
.container-sm .text-box-sm .text-item {
  margin-bottom: 11px;
  font-size: 14px;
  color: #000000;
  opacity: 0.8;
  display: flex;
  align-items: flex-start;
}
.container-sm .text-box-sm .text-item .crice {
  width: 8px;
  height: 8px;
  background: #00afe5;
  border-radius: 50px;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 5px;
}
.container-sm .text-box-sm .text-item::before {
  display: none;
}

.mtop {
  margin-top: 100px;
}

.no-b {
  margin-bottom: 0;
}

.product-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 100px 0px;
}
.product-wrapper .product-prev,
.product-wrapper .product-next {
  display: flex;
  justify-content: center;
  min-height: 130px;
  flex-basis: 15%;
  cursor: pointer;
}
.product-wrapper .product-prev .iconfont,
.product-wrapper .product-next .iconfont {
  color: rgba(0, 0, 0, 0.2);
  font-size: 30px;
}
.product-wrapper .dealers-product-container,
.product-wrapper .product-container {
  flex-basis: 70%;
}
.product-wrapper .product-box {
  display: flex;
  color: #333;
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
  flex-direction: column;
}
.product-wrapper .product-img {
  overflow: hidden;
  background: #f8f8f8;
}
.product-wrapper .product-img img {
  border-radius: 10px;
}
.product-wrapper .product-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .container-sm {
    padding: 0px;
  }
  .row-section .col-xs-12 {
    padding: 0;
  }
  .row-section-reverse {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 30px;
  }
  .mtop {
    margin-top: 50px;
  }
  .product-wrapper {
    padding: 0;
  }
  .product-wrapper .product-m-container {
    flex-basis: 70%;
  }
}
.com-img {
  background: url(../images/banner-storage3c0590496ed6c6448814a0a20e3ee8a0.jpg) center/cover no-repeat;
}

.storage-info .storage-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  opacity: 0.9;
  text-align: center;
  padding: 25px 0;
}
.storage-info .item-list .cover-img {
  width: 100%;
}
.storage-info .item-list .info-item-sm {
  padding: 0 20px;
}
.storage-info .item-list .info-item-sm .number {
  font-size: 32px;
  line-height: 55px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.2);
  display: flex;
  padding-top: 20px;
  align-items: flex-end;
}
.storage-info .item-list .info-item-sm .number span {
  font-size: 18px;
  font-weight: 500;
  color: #00afe5;
  margin-left: 10px;
}
.storage-info .item-list .info-item-sm .subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  opacity: 0.9;
  line-height: 25px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .com-img {
    height: 238px !important;
    background: url(../images/banner-storage-sm7314cea7621d46320c977ca8ad4f1da4.png) center/cover no-repeat;
  }
  .storage-info {
    margin-top: 50px;
    background: #f8f8f8;
  }
  .arrow-box {
    display: none;
  }
  .product-wrapper .product-prev .iconfont,
.product-wrapper .product-next .iconfont {
    font-size: 20px;
  }
}
