protocolConfirmationView.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* component/protocolConfirmationView.wxss */
  2. .protocol-confirmation-container {
  3. width: 100vw;
  4. height: 100vh;
  5. background: rgba(0, 0, 0, 0.5);
  6. position: fixed;
  7. left: 0;
  8. top: 0;
  9. z-index: 99999;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. .protocol-confirmation-content {
  14. width: 640rpx;
  15. height: 70vh;
  16. background: #FFFFFF;
  17. border-radius: 16rpx 16rpx 16rpx 16rpx;
  18. padding: 32rpx 0;
  19. box-sizing: border-box;
  20. display: flex;
  21. flex-direction: column;
  22. align-items: center;
  23. justify-content: space-between;
  24. .content {
  25. width: 100%;
  26. height: calc(100% - 96rpx);
  27. .text-content {
  28. padding: 0 32rpx;
  29. box-sizing: border-box;
  30. }
  31. }
  32. .btn {
  33. width: 326rpx;
  34. height: 64rpx;
  35. font-size: 32rpx;
  36. font-family: PingFang SC-Medium, PingFang SC;
  37. font-weight: 500;
  38. color: #777777;
  39. background: #E6E6E6;
  40. border-radius: 62rpx 62rpx 62rpx 62rpx;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .btn-active {
  46. color: #FFFFFF;
  47. background: #1A65FF;
  48. }
  49. }
  50. }