From 9d5789148e866f95f86d975011a9ef39d534c807 Mon Sep 17 00:00:00 2001
From: 闫增涛 <1829501689@qq.com>
Date: 星期三, 17 七月 2024 17:37:19 +0800
Subject: [PATCH] 拼树结构优化

---
 packageDomain/pages/resourceDetails/myVideo/index.wxss |   50 +++++++++++++++++++++++++++++++++++++++-----------
 1 files changed, 39 insertions(+), 11 deletions(-)

diff --git a/packageDomain/pages/resourceDetails/myVideo/index.wxss b/packageDomain/pages/resourceDetails/myVideo/index.wxss
index e0d274d..084a21c 100644
--- a/packageDomain/pages/resourceDetails/myVideo/index.wxss
+++ b/packageDomain/pages/resourceDetails/myVideo/index.wxss
@@ -1,6 +1,4 @@
 /* pages/resourceDetails/index.wxss */
-@import "./index.skeleton.wxss";
-
 .nacigationBar {
   background-color: #fff;
   display: flex;
@@ -9,17 +7,26 @@
 }
 
 .navbar-title {
-  white-space: nowrap;
+  /* white-space: nowrap; */
   /* overflow: hidden; */
-  text-overflow: ellipsis;
+  /* text-overflow: ellipsis;
   color: #0F1214;
   font-size: 40rpx;
   font-weight: bold;
-  margin-bottom: 5rpx;
+  margin-bottom: 5rpx; */
+  margin: 0 auto;
 }
 
 .videoBox {
   width: 100%;
+  position: relative;
+}
+
+.video-loading {
+  position: absolute;
+  top: 42%;
+  left: 50%;
+  z-index: 9999999999;
 }
 
 .videoBox video {
@@ -83,14 +90,16 @@
 .takeNotes image {
   width: 30rpx;
   height: 30rpx;
-  margin-top: 10rpx;
   margin-right: 10rpx;
 }
 
 .takeNotesLining {
-  margin: 25rpx;
+  margin: 30rpx 25rpx;
   display: flex;
   justify-content: flex-end;
+  align-items: center;
+  font-size: 26rpx;
+  color: #ff6c00;
 }
 
 .operateBox {
@@ -162,14 +171,15 @@
   display: flex;
   align-items: center;
 
-  padding-left: 20rpx;
-  background-color: #FFF6F0
+  padding: 20rpx;
+  background-color: #FFF6F0;
+  line-height: 50rpx;
 }
 
 .detailsName:hover {
   background-color: #fff0e6;
   width: 90%;
-  height: 60rpx;
+  min-height: 60rpx;
   color: #ff6c00;
 }
 
@@ -305,7 +315,7 @@
 }
 
 .t-tabs__item--active {
-  color: #FF6C00 !important;
+  color: #333 !important;
 
 }
 
@@ -321,6 +331,10 @@
   height: 0px !important;
 }
 
+.t-tabs__scroll::after {
+  height: 0rpx !important;
+}
+
 .buttonBox {
   position: absolute;
   top: 95rpx;
@@ -328,4 +342,18 @@
   background-color: #e7e7e7;
   height: 1px;
   z-index: 999;
+}
+
+.outsideDetailsName {
+  overflow-x: hidden;
+}
+
+.wrapper {
+  overflow-y: scroll;
+  overflow-x: hidden;
+  height: 50vh;
+}
+
+.demo-section__content {
+  margin: 40rpx;
 }
\ No newline at end of file

--
Gitblit v1.9.1