index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* pages/index/index.wxss */
  2. .box1{
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. justify-content: center;
  8. align-items: center;
  9. }
  10. .box1_title{
  11. width: 750rpx;
  12. text-align: center;
  13. height: 80rpx;
  14. line-height: 80rpx;
  15. color: #131313;
  16. font-weight: 700;
  17. font-size: 72rpx;
  18. margin: 48rpx auto 30rpx;
  19. }
  20. .box1_msg{
  21. width: 750rpx;
  22. text-align: center;
  23. height: 96rpx;
  24. line-height: 66rpx;
  25. color: #E51C23;
  26. font-weight: 700;
  27. font-size: 48rpx;
  28. margin: 30rpx auto;
  29. }
  30. .box1_bg{
  31. width: 750rpx;
  32. height: 460rpx;
  33. display: flex;
  34. }
  35. .box1_bg image{
  36. margin: auto;
  37. width: 640rpx;
  38. height: 439rpx;
  39. }
  40. .box1_btnView{
  41. width: 750rpx;
  42. height: 150rpx;
  43. display: flex;
  44. }
  45. .box1_btn{
  46. width: 450rpx;
  47. height: 110rpx;
  48. border-radius: 60rpx;
  49. line-height: 110rpx;
  50. background-color: rgba(229, 28, 35);
  51. color: rgba(255, 255, 255);
  52. font-size: 56rpx;
  53. font-weight: 700;
  54. text-align: center;
  55. margin: auto;
  56. }
  57. .box1_plain{
  58. width: 750rpx;
  59. height: auto;
  60. display: flex;
  61. margin-bottom: 96rpx;
  62. padding-bottom: env(safe-area-inset-bottom);
  63. }
  64. .box1_plain text{
  65. margin: auto;
  66. text-align: center;
  67. font-size: 24rpx;
  68. color: #101010;
  69. text-decoration:underline;
  70. }