detail.wxss 718 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 .content .value .input {
  27. color: #868686;
  28. }
  29. .main .one .btn {
  30. position: absolute;
  31. bottom: 50px;
  32. width: 95%;
  33. text-align: center;
  34. }
  35. .main .one .btn button {
  36. width: 100%;
  37. background-image: linear-gradient(to right, #fd3c1e, #c74df0);
  38. border-radius: 25px;
  39. }