index.scss 680 B

12345678910111213141516171819202122232425262728293031
  1. .add {
  2. .box {
  3. width: 100vw;
  4. background-color: #fff;
  5. padding-left: 30rpx;
  6. box-sizing: border-box;
  7. .content {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. width: 100%;
  12. height: 100rpx;
  13. border-bottom: 1px solid #ddd;
  14. box-sizing: border-box;
  15. .text {
  16. flex: 1;
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Regular, PingFang SC;
  19. color: #333333;
  20. }
  21. }
  22. }
  23. .box:last-child {
  24. .content {
  25. border: none;
  26. }
  27. }
  28. }