From e8e7b70168d5cc8a465c92da28bdcce52e8bf3cc Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Thu, 10 Mar 2022 14:48:21 +0800
Subject: [PATCH] Merge branch 'master' of http://192.168.0.105:10010/r/school-web

---
 src/styles/divforms/panoramaBox.scss |   77 ++++++++++++++++++++++++++++++++++++--
 1 files changed, 73 insertions(+), 4 deletions(-)

diff --git a/src/styles/divforms/panoramaBox.scss b/src/styles/divforms/panoramaBox.scss
index 09fda12..5eb065e 100644
--- a/src/styles/divforms/panoramaBox.scss
+++ b/src/styles/divforms/panoramaBox.scss
@@ -1,3 +1,5 @@
+
+
 .panorama-dom {
     position: fixed;
     left: 0;
@@ -8,6 +10,8 @@
         overflow: hidden;
         padding: 30px;
 
+       
+
         .content-wrap {
             padding: 0 20px 20px 20px;
 
@@ -15,12 +19,26 @@
             border: 1px solid #29baf1;
             box-shadow: 0 0px 12px #29b8f1e5;
 
+            box-sizing: border-box;
+
             .title {
                 position: relative;
                 height: 36px;
                 line-height: 36px;
                 color: #fff;
                 text-align: center;
+
+                .full-srceen-btn {
+                    position: absolute;
+                    top: 0;
+                    right: 34px;
+                    bottom: 0;
+                    left: auto;
+                    margin: auto;
+                    width: 18px;
+                    height: 18px;
+                    cursor: pointer;
+                }
 
                 .close-box {
                     position: absolute;
@@ -34,12 +52,41 @@
                     cursor: pointer;
                 }
             }
+
+            .content {
+                position: relative;
+                min-width: 460px;
+                min-height: 320px;
+                height: calc(100% - 36px);
+
+                button {
+                    padding: 2px;
+                    position: absolute;
+                    top: 4px;
+                    right: 4px;
+                    width: 32px;
+                    height: 32px;
+                    background: rgba(0, 0, 0, .2) !important;
+                    z-index: 1;
+                    border: 0;
+                    border-radius: 5px;
+
+                    img {
+                        width: 100%;
+                    }
+                }
+
+                iframe {
+                    position: absolute;
+                    top: 0;
+                    left: 0;
+                    width: 100%;
+                    height: 100%;
+                }
+            }
         }
 
-        iframe {
-            width: 460px;
-            height: 320px;
-        }
+        
     }
 
     .arrow {
@@ -51,6 +98,28 @@
         transform: rotate(-45deg) translate(5px, -15px);
         background-color: #28bbf0;
     }
+
+    .change-full {
+        position: fixed !important;
+        top: 0;
+        left: 0;
+        width: 100%;
+        height: 100%;
+        z-index: 99;
+        background: #fff;
+        transform: translate3d(0, 0, 0) !important;
+    }
+
+    &.change-full {
+        position: fixed !important;
+        top: 0;
+        left: 0;
+        width: 100%;
+        height: 100%;
+        background: #fff;
+        transform: translate3d(0, 0, 0) !important;
+        z-index: 22 !important;
+    }
 }
 
 .monitor-dom {

--
Gitblit v1.9.3