You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

activeStatus.wxss 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* plugin/etc/pages/activeStatus/activeStatus.wxss */
  2. .col-center {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. justify-content: center;
  7. }
  8. .col-start {
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: flex-start;
  13. }
  14. .title {
  15. margin-top: 32rpx;
  16. height: 50rpx;
  17. font-weight: 500;
  18. font-size: 36rpx;
  19. color: black;
  20. line-height: 50rpx;
  21. }
  22. .msg {
  23. margin-top: 8rpx;
  24. height: 40rpx;
  25. font-size: 30rpx;
  26. color: #676767;
  27. line-height: 40rpx;
  28. }
  29. .tip-bg {
  30. width: 582rpx;
  31. height: 16rpx;
  32. background: #DEE2EA;
  33. border-radius: 16rpx;
  34. }
  35. .dev-info-bg {
  36. width: 564rpx;
  37. background: #F6F6F6;
  38. box-shadow: inset 0rpx 6rpx 6rpx 2rpx rgba(255, 255, 255, 0.16);
  39. border-radius: 16rpx;
  40. box-sizing: border-box;
  41. padding: 0 32rpx;
  42. font-size: 28rpx;
  43. color: #000;
  44. }
  45. .dev-item-bg {
  46. width: 100%;
  47. height: 104rpx;
  48. display: flex;
  49. flex-direction: row;
  50. align-items: center;
  51. justify-content: start;
  52. }
  53. .dev-name {
  54. width: 140rpx;
  55. color: #666666;
  56. }
  57. .normal-btn {
  58. margin-top: 300rpx;
  59. width: 360rpx;
  60. font-weight: 500;
  61. font-size: 32rpx;
  62. border-radius: 40rpx;
  63. height: 80rpx;
  64. }
  65. .green-btn {
  66. margin-top: 300rpx;
  67. font-weight: 500;
  68. font-size: 32rpx;
  69. color: #FFFFFF;
  70. width: 240rpx;
  71. height: 80rpx;
  72. background: #48CF3C;
  73. border-radius: 16rpx;
  74. }