index.less 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .container {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: column;
  5. align-content: center;
  6. align-items: center;
  7. .topView {
  8. position: sticky;
  9. top: 0;
  10. z-index: 999;
  11. width: 100%;
  12. }
  13. .contract-info, .address-info, .invoice-info {
  14. display: flex;
  15. flex-direction: row;
  16. justify-content: space-between;
  17. align-content: center;
  18. align-items: center;
  19. margin-bottom: 10px;
  20. width: 95%;
  21. text {
  22. width: 80px;
  23. color: #333;
  24. font-size: 14px;
  25. }
  26. textarea {
  27. border: 1px solid #f0f0f0;
  28. border-radius: 10px;
  29. color: #333;
  30. padding: 10px;
  31. margin-right: 5px;
  32. font-size: 14px;
  33. }
  34. }
  35. .contract-info {
  36. margin-top: 10px;
  37. }
  38. .button-view {
  39. border-radius: 10px;
  40. width: 95%;
  41. padding-top: 15px;
  42. display: flex;
  43. flex-direction: row;
  44. align-content: center;
  45. align-items: center;
  46. justify-content: space-between;
  47. van-button {
  48. width: 100%;
  49. }
  50. }
  51. }