made-solid.wxss 883 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* components/component-made/made-solid.wxss */
  2. /* page{
  3. background:#fff;
  4. } */
  5. .canvas-box{
  6. width:100%;
  7. height:588rpx;
  8. }
  9. .solid{
  10. width:270rpx;
  11. height:270rpx;
  12. border:1rpx dashed #fff;
  13. text-align: center;
  14. margin:0 auto;
  15. position:absolute;
  16. top:50rpx;
  17. left:286rpx;
  18. z-index:100;
  19. color:#fff;
  20. font-size:26rpx;
  21. }
  22. .solid-slot{
  23. height:inherit;
  24. overflow: hidden;
  25. }
  26. .solid .top{
  27. position:absolute;
  28. height:30rpx;
  29. line-height:30rpx;
  30. top:-30rpx;
  31. left:50%;
  32. margin-left:-28rpx;
  33. }
  34. .solid .right{
  35. position:absolute;
  36. height:30rpx;
  37. line-height:30rpx;
  38. right:-56rpx;
  39. top:50%;
  40. margin-top:-15rpx;
  41. }
  42. .solid .bottom{
  43. position:absolute;
  44. height:30rpx;
  45. line-height:30rpx;
  46. bottom:-30rpx;
  47. right:50%;
  48. margin-right:-28rpx;
  49. }
  50. .solid .left{
  51. position:absolute;
  52. height:30rpx;
  53. line-height:30rpx;
  54. left:-56rpx;
  55. top:50%;
  56. margin-top:-15rpx;
  57. }