model.wxss 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* 弹框 */
  2. .model_outer{
  3. position: fixed;
  4. width: 100%;
  5. height: 100%;
  6. background: rgba(0,0,0,.7);
  7. z-index: 9999;
  8. top: 0;
  9. left: 0;
  10. }
  11. .model_box{
  12. width: 580rpx;
  13. padding: 64rpx 32rpx;
  14. background: #fff;
  15. border-radius: 16rpx;
  16. position: absolute;
  17. left: 50%;
  18. top:50%;
  19. transform: translate(-50%, -50%);
  20. text-align: center;
  21. }
  22. .model_box > .t{
  23. font-size: 32rpx;
  24. font-weight: 700;
  25. display: block;
  26. color: #333;
  27. }
  28. .model_box > .btn_box{
  29. margin-top: 56rpx;
  30. }
  31. .model_box > .btn_box > .btn{
  32. width: 176rpx;
  33. height: 72rpx;
  34. border: 1px solid #e73e2d;
  35. border-radius: 48rpx;
  36. font-size: 28rpx;
  37. color: #E73E2D;
  38. }
  39. .model_box > .btn_box > .confirm{
  40. background: #E73E2D;
  41. color: #fff;
  42. margin-left: 32rpx;
  43. }
  44. /* 加入团队加入成功/失败 */
  45. .model_box_1{
  46. width: 640rpx;
  47. padding: 48rpx 0 36rpx;
  48. background: #fff;
  49. border-radius: 16rpx;
  50. position: absolute;
  51. left: 50%;
  52. top:50%;
  53. transform: translate(-50%, -50%);
  54. text-align: center;
  55. }
  56. .model_box_1 > .t{
  57. font-size: 34rpx;
  58. font-weight: 700;
  59. color: #161719
  60. }
  61. .model_box_1 > .desc{
  62. font-size: 34rpx;
  63. color: #5F6268;
  64. line-height: 48rpx;
  65. margin-top: 32rpx;
  66. padding: 0 48rpx 32rpx;
  67. }
  68. .model_box_1 > .btn_box{
  69. font-size: 34rpx;
  70. color: #576B95;
  71. line-height: 48rpx;
  72. padding-top: 30rpx;
  73. border-top: 1px solid #E5E5E5;
  74. width: 100%;
  75. }