childList.wxss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /* pages/childList/childList.wxss */
  2. .li{
  3. padding:30rpx 24rpx;
  4. }
  5. .li-items{
  6. background:#F1F3FA;
  7. border-radius:16rpx;
  8. display: flex;
  9. justify-content: space-between;
  10. margin-bottom: 30rpx;
  11. padding-right: 24rpx;
  12. }
  13. .li-items-active{
  14. background: #fff;
  15. box-shadow:0px 6rpx 30rpx 0 rgba(81,108,227,0.2);
  16. }
  17. .li-items-imgList{
  18. position: relative;
  19. display: inline-block
  20. }
  21. .li-items-img{
  22. width: 120rpx;
  23. height: 120rpx;
  24. border-radius: 50%;
  25. margin: 45rpx 24rpx 35rpx 24rpx;
  26. }
  27. .li-items-tips-img{
  28. width: 34rpx;
  29. height: 34rpx;
  30. position: absolute;
  31. bottom: 10rpx;
  32. left:59%;
  33. }
  34. .li-items-names{
  35. color: #393939;
  36. font-size: 30rpx;
  37. display: inline-block;
  38. position: relative;
  39. bottom: 86rpx;
  40. }
  41. .li-items-footer{
  42. display: flex;
  43. flex-direction: column;
  44. justify-content: center
  45. }
  46. .li-items-footer-img{
  47. width: 50rpx;
  48. height: 50rpx;
  49. }
  50. .li-add{
  51. height:110rpx;
  52. background:rgba(241,243,250,1);
  53. border-radius:16rpx;
  54. line-height: 110rpx;
  55. color: #6085EA;
  56. font-size: 30rpx;
  57. text-align: center
  58. }
  59. .li-items-add{
  60. font-size: 45rpx;
  61. }
  62. .showModel{
  63. width: 100%;
  64. height: 100%;
  65. position: fixed;
  66. top: 0;
  67. left: 0;
  68. background: #000;
  69. opacity: 0.5;
  70. overflow: hidden;
  71. z-index: 1000;
  72. color: #fff;
  73. }
  74. .model{
  75. z-index: 1001;
  76. position: fixed;
  77. top: 233rpx;
  78. margin: 0 60rpx;
  79. background: #fff;
  80. border-radius:30rpx;
  81. text-align: center;
  82. }
  83. .model-text{
  84. color: #393939;
  85. font-size: 30rpx;
  86. text-align: center;
  87. margin: 95rpx 50rpx;
  88. }
  89. .model-list{
  90. display: flex;
  91. justify-content: space-around;
  92. align-items: center;
  93. margin-bottom: 50rpx;
  94. color: #8489A3;
  95. font-size: 34rpx;
  96. }
  97. .model-list-sure{
  98. color: #FF6465;
  99. }