detailed.less 589 B

12345678910111213141516171819202122232425262728
  1. /* pages/detailed/detailed.wxss */
  2. .detailed{
  3. padding: 10rpx 20rpx;
  4. .container{
  5. background-color: #fff;
  6. padding: 20rpx;
  7. border-radius: 20rpx;
  8. .item{
  9. padding: 20rpx 0;
  10. border-bottom: 1px solid #eee;
  11. .flex{
  12. display: flex;justify-content: space-between;align-items: center;
  13. margin-bottom: 10rpx;
  14. .right{
  15. font-weight: 600;
  16. }
  17. }
  18. .detail{
  19. font-size: 14px;
  20. color: #777;
  21. text-align: justify;
  22. }
  23. }
  24. &>.item:last-child{
  25. border: 0;
  26. }
  27. }
  28. }