index.wxss 736 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* 矩形盒子 */
  2. .rectangle_box {
  3. position: relative;
  4. width: 590rpx;
  5. border-radius: 20rpx;
  6. margin: auto;
  7. padding-top: 40rpx;
  8. padding-bottom: 70rpx;
  9. overflow: hidden;
  10. z-index: 1;
  11. }
  12. /* 盒子背景颜色 */
  13. .rectangle_box>.box-bg {
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. background-color: #ffffff;
  18. opacity: 0.4;
  19. top: 0;
  20. left: 0;
  21. z-index: -1;
  22. }
  23. /* 标题 */
  24. .rectangle_title {
  25. font-family: PingFangSC-Medium, PingFang SC;
  26. width: 100%;
  27. text-align: center;
  28. font-size: 36rpx;
  29. font-weight: 550;
  30. color: #000000;
  31. margin-bottom: 30rpx;
  32. z-index: 1;
  33. }
  34. /* 插入内容 */
  35. .slot_con {
  36. width: 510rpx;
  37. margin: 0 auto;
  38. z-index: 1;
  39. }