index.wxss 615 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .main {
  2. position: relative;
  3. width: 100%;
  4. background-color: #ffffff;
  5. }
  6. .main .one {
  7. float: left;
  8. width: 95%;
  9. padding: 0 10px;
  10. }
  11. .main .one .content {
  12. float: left;
  13. width: 100%;
  14. border-bottom: 1px solid #ccc;
  15. padding: 10px 0;
  16. }
  17. .main .one .content .label {
  18. float: left;
  19. width: 20%;
  20. }
  21. .main .one .content .value {
  22. float: left;
  23. width: 80%;
  24. text-align: right;
  25. }
  26. .main .one .btn {
  27. position: absolute;
  28. bottom: 50px;
  29. width: 95%;
  30. text-align: center;
  31. }
  32. .main .one .btn button {
  33. width: 100%;
  34. background-image: linear-gradient(to right, #fd3c1e, #c74df0);
  35. border-radius: 25px;
  36. }