library.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* parents/pages/library/library.wxss */
  2. @import '../../../templates/loading/loading.wxss';
  3. .section-label {
  4. padding: 24rpx 30rpx;
  5. }
  6. .section-icon {
  7. width: 34rpx;
  8. height: 34rpx;
  9. }
  10. .section-icon-two {
  11. width: 28rpx;
  12. height: 34rpx;
  13. }
  14. .section-text {
  15. font-size: 30rpx;
  16. color: #999;
  17. margin-left: 16rpx;
  18. }
  19. .section-list {
  20. padding-left: 30rpx;
  21. background: #fff;
  22. }
  23. .section-li {
  24. padding: 30rpx 30rpx 30rpx 0;
  25. border-bottom: solid 1rpx #e6e6e6;
  26. }
  27. .section-li:nth-last-of-type(1) {
  28. border-bottom: solid 1rpx transparent;
  29. }
  30. .section-row {
  31. display: flex;
  32. justify-content: space-between;
  33. align-items: center;
  34. }
  35. .section-col {
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: flex-start;
  39. align-items: flex-start;
  40. }
  41. .section-flex {
  42. flex: 1;
  43. }
  44. .section-title {
  45. font-size: 30rpx;
  46. color: #333;
  47. }
  48. .section-text {
  49. font-size: 24rpx;
  50. color: #999;
  51. }
  52. .section-context {
  53. font-size: 24rpx;
  54. color: #999;
  55. margin-top: 20rpx;
  56. }
  57. .section-button {
  58. background: rgba(255,255,255,1);
  59. border-radius: 40rpx;
  60. border: 1rpx solid rgba(0,183,255,1);
  61. font-size: 28rpx;
  62. color: rgba(0,183,255,1);
  63. padding: 16rpx 20rpx;
  64. margin-left: 20rpx;
  65. }