guanqb
2022-11-22 4f417e3f80aff50c4d71aab21f06e0396ec2f524
src/styles/base/index.css
@@ -398,3 +398,66 @@
.activity-details-box .el-dialog .el-dialog__body .item > div:nth-of-type(2) {
  width: calc(100% - 120px);
}
.special-animal-enter-active {
  transition: all .2s ease;
}
.special-animal-leave-active {
  transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1);
}
.special-animal-enter,
.special-animal-leave-to {
  transform: translateX(-100%);
  opacity: 0;
}
.video-draw-box .el-dialog {
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  width: 320px;
  height: 180px;
  top: 50%;
  left: 50% !important;
  transform: translate(-50%, -50%);
}
.video-draw-box .el-dialog .el-dialog__body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
}
.video-draw-box .el-dialog .el-dialog__body input {
  width: 90%;
  height: 30px;
  font-size: 16px;
  text-indent: 1em;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #005ca9;
}
.video-draw-box .el-dialog .el-dialog__body input:focus {
  outline: none;
}
.video-draw-box .el-dialog .el-dialog__body input::-webkit-input-placeholder {
  color: rgba(238, 238, 238, 0.7);
}
.video-draw-box .el-dialog .el-dialog__body button {
  width: 60px;
  height: 30px;
  background-color: #65b1ff;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}