made.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* pages/customized/made/made.wxss */
  2. page{
  3. background:#fff;
  4. }
  5. .made-content{
  6. width:100%;
  7. height:588rpx;
  8. margin:60rpx 0;
  9. /* position:relative; */
  10. }
  11. .made-prompt{
  12. width:inherit;
  13. height:inherit;
  14. }
  15. .made-img{
  16. /* position:absolute;
  17. z-index:100; */
  18. background:red;
  19. width:270rpx;
  20. height:270rpx;
  21. padding:1rpx;
  22. margin:0 auto;
  23. }
  24. .made-font{
  25. background:blue;
  26. width:270rpx;
  27. height:270rpx;
  28. padding:1rpx;
  29. margin:0 auto;
  30. }
  31. .btn-box{
  32. width:70%;
  33. margin:0 auto;
  34. }
  35. .btn-box button{
  36. width:200rpx;
  37. background:none;
  38. color:#c9c9c9;
  39. font-size:32rpx;
  40. margin-bottom:36rpx;
  41. border:1rpx solid #c9c9c9;
  42. box-shadow:none;
  43. }
  44. .btn-box button.active{
  45. color:#00af66;
  46. border:1rpx solid #00af66
  47. }
  48. .footer{
  49. position:fixed;
  50. bottom:0;
  51. width:100%;
  52. z-index:10;
  53. line-height:92rpx;
  54. background:#fff;
  55. border-top:1rpx solid #dcdcdc;
  56. text-align: center;
  57. color:#666;
  58. font-size:30rpx;
  59. cursor: pointer;
  60. }
  61. .footer-btn{
  62. border-left:1rpx solid #dcdcdc;
  63. }
  64. .footer-btn:first-child{
  65. border-left:0rpx solid #dcdcdc;
  66. }