gameDetail.wxss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /* pages/gameDetail/gameDetail.wxss */
  2. page{
  3. background: #F4F6F8;
  4. }
  5. .part{
  6. background: #fff;
  7. margin-bottom: 16rpx;
  8. padding: 16rpx 32rpx;
  9. }
  10. .detail view{
  11. padding: 8rpx;
  12. }
  13. .detail text{
  14. color: #999;
  15. display: inline-block;
  16. width: 150rpx;
  17. }
  18. .info{
  19. display: flex;
  20. flex-wrap: wrap;
  21. background: #fff;
  22. margin-bottom: 16rpx;
  23. }
  24. .info view{
  25. width: 50%;
  26. color: #999;
  27. padding: 16rpx 32rpx;
  28. }
  29. .info view:first-child{
  30. border-right: 1px solid #F6F6F6;
  31. border-bottom: 1px solid #F6F6F6
  32. }
  33. .info view:last-child{
  34. border-left: 1px solid #F6F6F6;
  35. border-top: 1px solid #F6F6F6
  36. }
  37. .info text{
  38. display: block;
  39. font-size: 40rpx;
  40. font-weight: 500;
  41. }
  42. .container {
  43. position: relative;
  44. display: flex;
  45. flex-direction: column;
  46. align-items: center;
  47. justify-content: space-between;
  48. box-sizing: border-box;
  49. height: 50vh;
  50. }
  51. ec-canvas {
  52. width: 100%;
  53. height: 100%;
  54. }
  55. .per{
  56. background: #FF5151;
  57. width: 80%;
  58. display: block;
  59. color: #fff;
  60. font-size: 28rpx;
  61. border-radius: 16rpx;
  62. line-height: 88rpx;
  63. text-align: center;
  64. margin: 60rpx auto;
  65. }