index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // ::v-deep .u-popup__content{
  2. // }
  3. .popup-box {
  4. width: 90vw;
  5. // height: 40vh;
  6. overflow: hidden;
  7. background: #ffffff;
  8. padding: 30rpx;
  9. border-radius: 24rpx;
  10. z-index: 99999999999999999999999999999!important;
  11. .weui-half-screen-dialog__hd {
  12. font-size: 34rpx;
  13. font-family: Source Han Sans CN-Bold, Source Han Sans CN;
  14. font-weight: bold;
  15. color: #000000;
  16. line-height: 56rpx;
  17. }
  18. .weui-half-screen-dialog__bd {
  19. margin-top: 48rpx;
  20. text-indent: 2em;
  21. .weui-half-screen-dialog__tips {
  22. font-size: 28rpx;
  23. font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  24. font-weight: 400;
  25. color: #000000;
  26. line-height: 33rpx;
  27. }
  28. }
  29. .weui-half-screen-dialog__ft {
  30. display: flex;
  31. justify-content: space-evenly;
  32. align-items: center;
  33. margin-top: 48rpx;
  34. .weui-btn {
  35. padding: 0 60rpx;
  36. margin: 0;
  37. background: none;
  38. font-size: 32rpx;
  39. font-family: Source Han Sans CN-Normal, Source Han Sans CN;
  40. font-weight: 400;
  41. color:#017FFF;
  42. line-height: 80rpx;
  43. // border: 2rpx solid #8BC21F;
  44. }
  45. .agree {
  46. color: #ffffff;
  47. // background: linear-gradient(90deg, orange 0%, orangered 100%);
  48. background: linear-gradient(132deg, #0298FF 0%, #017AFF 100%);
  49. }
  50. }
  51. .color-8BC21F {
  52. color: #017FFF !important;
  53. }
  54. }