diadetail.less 511 B

12345678910111213141516171819202122232425262728293031
  1. /* pages/trade/diadetail/diadetail.wxss */
  2. .button_view {
  3. display: flex;
  4. flex-direction: row;
  5. justify-content: space-between;
  6. align-items: center;
  7. }
  8. .button_view {
  9. display: flex;
  10. flex-direction: row;
  11. justify-content: space-around;
  12. align-items: center;
  13. margin-top: 20px;
  14. }
  15. .button_view button {
  16. width: 45%;
  17. font-size: 28rpx;
  18. color: #fff;
  19. padding: 10rpx;
  20. }
  21. .button_view button:nth-child(1) {
  22. background-color: red;
  23. }
  24. .button_view button:nth-child(2) {
  25. background-color: green;
  26. }