Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

activeUploadPhoto.wxss 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* plugin/etc/pages/activeUploadPhoto/activeUploadPhoto.wxss */
  2. @import '../../style/etc.wxss';
  3. page {
  4. background-color: #F4F5F9;
  5. }
  6. .main {
  7. padding-bottom: 160rpx;
  8. box-sizing: border-box;
  9. }
  10. .item-row {
  11. margin: 40rpx 40rpx 0 40rpx;
  12. display: flex;
  13. justify-content: space-between;
  14. background: white;
  15. padding: 32rpx;
  16. border-radius: 18rpx;
  17. box-sizing: border-box;
  18. }
  19. .item-left .title {
  20. font-size: 34rpx;
  21. color: #000000;
  22. }
  23. .item-left .desc {
  24. font-size: 24rpx;
  25. color: #A1A7B3;
  26. margin-top: 16rpx;
  27. }
  28. .item-left .flag {
  29. width: 100rpx;
  30. height: 30rpx;
  31. line-height: 30rpx;
  32. margin-top: 20rpx;
  33. border-radius: 5rpx;
  34. text-align: center;
  35. font-size: 20rpx;
  36. border: 1rpx solid #CCB375;
  37. font-family: SourceHanSansSC, SourceHanSansSC;
  38. color: #CCB375;
  39. }
  40. .item-right {
  41. width: 288rpx;
  42. }
  43. .item-right .image {
  44. position: relative;
  45. z-index: 10;
  46. width: 100%;
  47. height: 174rpx;
  48. }
  49. .empty-node {
  50. position: absolute;
  51. z-index: 0;
  52. width: 100%;
  53. height: 100%;
  54. }
  55. .hint {
  56. display: flex;
  57. flex-direction: row;
  58. justify-content: center;
  59. font-size: 24rpx;
  60. color: #F58E27;
  61. line-height: 38rpx;
  62. margin-top: 26rpx;
  63. margin-left: 40rpx;
  64. margin-right: 40rpx;
  65. align-items: center;
  66. }
  67. .hint .icon {
  68. width: 30rpx;
  69. height: 30rpx;
  70. margin-right: 10rpx;
  71. }
  72. .btn {
  73. margin: 60rpx 40rpx;
  74. }
  75. .bottom-bg {
  76. left: 40rpx;
  77. right: 40rpx;
  78. background-color: #3E7DF5;
  79. }