html .picture-and-text-component {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}
html .picture-and-text-component:hover .img {
  transform: scale(1.05);
}
html .picture-and-text-component .div {
  width: 100%;
  min-width: 100px;
  position: relative;
  height: 0;
  min-height: 80px;
}
html .picture-and-text-component .div .img,
html .picture-and-text-component .div .loading,
html .picture-and-text-component .div .error,
html .picture-and-text-component .div img,
html .picture-and-text-component .div .no-pic {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}
html .picture-and-text-component .div .img.loading,
html .picture-and-text-component .div .loading.loading,
html .picture-and-text-component .div .error.loading,
html .picture-and-text-component .div img.loading,
html .picture-and-text-component .div .no-pic.loading {
  display: flex;
}
html .picture-and-text-component .div .img.no-pic,
html .picture-and-text-component .div .loading.no-pic,
html .picture-and-text-component .div .error.no-pic,
html .picture-and-text-component .div img.no-pic,
html .picture-and-text-component .div .no-pic.no-pic {
  background: #ccc;
  color: white;
}
html .picture-and-text-component .pt-text {
  position: absolute;
  width: 70%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html .picture-and-text-component.left .pt-text {
  align-items: flex-start;
  left: 5%;
}
html .picture-and-text-component.right .pt-text {
  align-items: flex-end;
  text-align: right;
  right: 5%;
}
html .picture-and-text-component.center .pt-text {
  align-items: center;
  text-align: center;
  left: 15%;
}
html .picture-and-text-component.top .pt-text {
  top: 0;
  justify-content: flex-start;
}
html .picture-and-text-component.middle .pt-text {
  top: 0;
  justify-content: center;
}
html .picture-and-text-component.bottom .pt-text {
  justify-content: flex-end;
  bottom: 0;
}
html .picture-and-text-component .pt-button {
  max-width: 200px;
  width: auto;
  text-align: center;
  height: 36px;
  border-radius: 20px;
  background: none;
  transition: all 0.3s;
  outline: none;
  border: none;
  background: #409eff;
  color: white;
}
html .picture-and-text-component .pt-button.primary {
  background: #409eff;
}
html .picture-and-text-component .pt-button.success {
  background: #67c23a;
}
html .picture-and-text-component .pt-button.warning {
  background: #e6a23c;
}
html .picture-and-text-component .pt-button.danger {
  background: #f56c6c;
}
html .picture-and-text-component .pt-button.info {
  background: #909399;
}
html .picture-and-text-component .pt-button:hover,
html .picture-and-text-component .pt-button:active {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  html .picture-and-text-component .div {
    min-width: 50px;
    min-height: 40px;
  }
  html .picture-and-text-component .pt-button {
    max-width: 120px;
    height: 24px;
    border-radius: 12px;
  }
  html .picture-and-text-component.middle .pt-text {
    top: 0;
    justify-content: center;
  }
}
/*# sourceMappingURL=image-component.css.map */