From 4f417e3f80aff50c4d71aab21f06e0396ec2f524 Mon Sep 17 00:00:00 2001
From: guanqb <18720758508@163.com>
Date: Tue, 22 Nov 2022 14:36:50 +0800
Subject: [PATCH] 范围查询添加删除接口对接
---
src/styles/base/index.css | 63 +++++++++++++++++++++++++++++++
1 files changed, 63 insertions(+), 0 deletions(-)
diff --git a/src/styles/base/index.css b/src/styles/base/index.css
index c67528c..6af98ba 100644
--- a/src/styles/base/index.css
+++ b/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;
+}
--
Gitblit v1.9.3