tableStatus.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. .content{
  2. text-align: center;
  3. background: #fff;
  4. width: 650rpx;
  5. height: 415rpx;
  6. position: absolute;
  7. top: 0;
  8. bottom: 0;
  9. right: 0;
  10. left: 0;
  11. margin: auto;
  12. border-radius: 10rpx;
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. padding: 20rpx 0;
  17. font-size: 32rpx;
  18. }
  19. .content .status_pic{
  20. width: 300rpx;
  21. height: 215rpx;
  22. overflow: hidden;
  23. }
  24. .content .status_pic .bgColor{
  25. width: 300rpx;
  26. height: 300rpx;
  27. border-radius: 50%;
  28. position: relative;
  29. }
  30. .content .status_pic .bgColor .bgcolor_inset{
  31. width: 180rpx;
  32. height: 180rpx;
  33. border-radius: 50%;
  34. position: absolute;
  35. top: 0;
  36. bottom: 0;
  37. right: 0;
  38. left: 0;
  39. margin: auto;
  40. }
  41. .content .status_pic image{
  42. width: 180rpx;
  43. position: absolute;
  44. top: -55rpx;
  45. bottom: 0;
  46. right: 5rpx;
  47. left: 0;
  48. margin: auto;
  49. }
  50. .content .status_art{
  51. margin: 20rpx 0;
  52. }
  53. .content .btn{
  54. width: 300rpx;
  55. }
  56. .content .btn button{
  57. border-radius: 50rpx;
  58. font-size: 32rpx;
  59. line-height: 2.1;
  60. }
  61. .content .btn view{
  62. margin-top: 15rpx;
  63. }
  64. /* --- 主题 --- */
  65. /* 红色 */
  66. .redContent .btn button{background-image: linear-gradient(to right, #ee3a43, #ff8483);}
  67. .redContent .status_pic .bgColor{background: rgba(254, 104, 105, .1);}
  68. .redContent .status_pic .bgColor .bgcolor_inset{background: rgba(254, 104, 105, .2);}
  69. /* 蓝色 */
  70. .blueContent .btn button{background-image: linear-gradient(to right, #4998d2, #cde6e9);}
  71. .blueContent .status_pic .bgColor{background: rgba(73, 152, 210, .1);}
  72. .blueContent .status_pic .bgColor .bgcolor_inset{background: rgba(73, 152, 210, .2);}
  73. /* 绿色 */
  74. .greenContent .btn button{background-image: linear-gradient(to right, #658832, #96b26d);}
  75. .greenContent .status_pic .bgColor{background: rgba(101, 136, 50, .1);}
  76. .greenContent .status_pic .bgColor .bgcolor_inset{background: rgba(101, 136, 50, 0.2);}