xiebaomin 1 рік тому
батько
коміт
49e2b6806f

+ 3 - 3
src/main/resources/static/css/article/article.css

@@ -505,9 +505,9 @@ dl,dd,dt{zoom:1}
 	.dataRousce .row{width:100%;height:34.8vw;border-top:1px solid #F5F5F5;background:#FFF;overflow:hidden;box-sizing:border-box;padding:2vw 3.3vw 2vw 37vw;position:relative;color:#93979F;line-height:3.5vw;font-size:2.6vw}
 	.dataRousce .row:first-child{border-top: 0;}
 	.dataRousce .row img{position:absolute;left:3.3vw;top:2.3vw;width:30.4vw;height:30.4vw}
-	.dataRousce .row .title{margin-bottom:2vw;color:#2D3036;font-size:3.4vw;max-height:9.6vw;line-height:4.8vw;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
-	.dataRousce .row .xinxi{margin-bottom:2vw;color:#93979f;max-height:8.4vw;line-height:4.2vw;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
-	.dataRousce .row .xinxi em{margin-right:2vw}
+	.dataRousce .row .title{margin-bottom:1vw;color:#2D3036;font-size:3.4vw;max-height:9.6vw;line-height:4.8vw;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
+	.dataRousce .row .xinxi{margin-bottom:1vw;color:#93979f;max-height:8.4vw;line-height:4.2vw;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
+	.dataRousce .row .xinxi em{margin-right:1vw}
 	.dataRousce .row .hotspot a{color:#93979f}
 	.dataRousce .row .introduction{height:7vw;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
 	/*查看更多*/

+ 10 - 1
src/main/resources/static/css/article/drawer-footer.css

@@ -81,10 +81,11 @@
     position: sticky;
     height: 35.6vw;
     width: 94.4vw;
-    bottom: 0;
+    bottom: -36vw;
     margin: 0 auto 18vw auto;
     overflow-x: scroll;
     white-space: nowrap;
+    animation: AdvsFrames .5s linear forwards;
 }
 .advertisement .advertisement-link {
     display: inline-block;
@@ -99,3 +100,11 @@
     height: 100%;
     object-fit: cover;
 }
+@keyframes AdvsFrames {
+    0% {
+        bottom: -36vw;
+    }
+    100% {
+        bottom: 0;
+    }
+}