made-solid.wxss 861 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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:2rpx dashed #fff;
  13. margin:0 auto;
  14. position:absolute;
  15. top:50rpx;
  16. left:286rpx;
  17. z-index:100;
  18. color:#fff;
  19. font-size:26rpx;
  20. }
  21. .solid-slot{
  22. height:inherit;
  23. overflow: hidden;
  24. }
  25. .solid .top{
  26. position:absolute;
  27. height:30rpx;
  28. line-height:30rpx;
  29. top:-30rpx;
  30. left:50%;
  31. margin-left:-28rpx;
  32. }
  33. .solid .right{
  34. position:absolute;
  35. height:30rpx;
  36. line-height:30rpx;
  37. right:-56rpx;
  38. top:50%;
  39. margin-top:-15rpx;
  40. }
  41. .solid .bottom{
  42. position:absolute;
  43. height:30rpx;
  44. line-height:30rpx;
  45. bottom:-30rpx;
  46. right:50%;
  47. margin-right:-28rpx;
  48. }
  49. .solid .left{
  50. position:absolute;
  51. height:30rpx;
  52. line-height:30rpx;
  53. left:-56rpx;
  54. top:50%;
  55. margin-top:-15rpx;
  56. }