cover-view.wxss 378 B

12345678910111213141516171819202122232425262728
  1. .cover-view {
  2. position: absolute;
  3. top: calc(50% - 75px);
  4. left: calc(50% - 150px);
  5. /* opacity: .7; */
  6. }
  7. .flex-wrp{
  8. display:flex;
  9. }
  10. .flex-item{
  11. width: 100px;
  12. height: 150px;
  13. font-size: 13px;
  14. }
  15. .demo-text-1 {
  16. background: rgba(26, 173, 25, 0.7);
  17. }
  18. .demo-text-2 {
  19. background: rgba(39, 130, 215, 0.7);
  20. }
  21. .demo-text-3 {
  22. background: rgba(255, 255, 255, 0.7);
  23. }