index.wxss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Page {
  2. width: 100%;
  3. height: 100%;
  4. background-color: #F7F7F7;
  5. }
  6. .container {
  7. width: 100%;
  8. background-color: #F7F7F7;
  9. display: flex;
  10. flex-flow: column nowrap;
  11. justify-content: space-between;
  12. }
  13. .top{
  14. height: 400rpx;
  15. width: 100%;
  16. }
  17. .top_img{
  18. height: 400rpx;
  19. width: 100%;
  20. }
  21. .bottom{
  22. /* height: 1000rpx; */
  23. padding: 30rpx 20rpx;
  24. display: flex;
  25. flex-flow: row nowrap;
  26. justify-content: space-between;
  27. }
  28. .left{
  29. width: 345rpx;
  30. }
  31. .left_1,.left_3,.right_2,.right_4{
  32. height: 120rpx;
  33. background-color: #DBA901;
  34. color: #fff;
  35. border-radius: 10rpx;
  36. border:4rpx solid #000;
  37. display: flex;
  38. flex-flow: row nowrap;
  39. justify-content: center;
  40. align-items: center;
  41. margin-bottom: 20rpx;
  42. }
  43. .left_2,.left_4,.right_1,.right_3{
  44. height: 240rpx;
  45. background-color:#1296db;
  46. color: #fff;
  47. border-radius: 10rpx;
  48. border:4rpx solid #000;
  49. display: flex;
  50. flex-flow: row nowrap;
  51. justify-content: center;
  52. align-items: center;
  53. margin-bottom: 20rpx;
  54. }
  55. .right{
  56. width: 345rpx;
  57. margin-left: 20rpx;
  58. }