diff --git a/app/pages/productions/[...slug].vue b/app/pages/productions/[...slug].vue index f251163..37590f6 100644 --- a/app/pages/productions/[...slug].vue +++ b/app/pages/productions/[...slug].vue @@ -17,7 +17,7 @@
{{ item.caption }}
@@ -153,11 +153,24 @@ useHead({ } .production-image .el-image { + position: relative; width: 100%; height: 500px; border-radius: 8px; } +.production-image-caption { + position: absolute; + bottom: 10px; + /* left: 10%; */ + background-color: rgba(0, 0, 0, 0.2); + border-radius: 5px; + padding: 5px 10px; + text-align: center; + color: white; + font-size: 0.8rem; +} + .production-carousel :deep(.el-carousel__button) { /* 指示器按钮样式 */ width: 8px;