downContract.wxss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. page{
  2. height: 100%;
  3. }
  4. .page-contract{
  5. height: 100%;
  6. position: relative;
  7. padding: 0 50rpx;
  8. padding-top: 200rpx;
  9. }
  10. .page-contract .bg{
  11. position: absolute;
  12. left: 0;
  13. top:0;
  14. z-index: 1;
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .alert-content{
  19. position: relative;
  20. z-index: 2;
  21. width:600rpx;
  22. height:394rpx;
  23. background:rgba(255,255,255,1);
  24. border-radius:4rpx;
  25. margin: 0 auto;
  26. padding: 30rpx;
  27. }
  28. .alert-content .mail-input{
  29. position: relative;
  30. height:90rpx;
  31. background:rgba(255,255,255,1);
  32. border-radius:4rpx;
  33. border:2rpx solid rgba(236,238,243,1);
  34. margin-top: 30rpx;
  35. margin-bottom: 30rpx;
  36. }
  37. .alert-content .mail-input .icon{
  38. position: absolute;
  39. left: 30rpx;
  40. top:50%;
  41. transform: translate(0,-50%);
  42. display: block;
  43. width: 42rpx;
  44. height: 32rpx;
  45. }
  46. .alert-content .mail-input .input-text{
  47. position: relative;
  48. z-index: 2;
  49. padding-left: 100rpx;
  50. height:90rpx;
  51. line-height: 90rpx;
  52. }
  53. .alert-content .info{
  54. display: block;
  55. text-align: left;
  56. font-size: 24rpx;
  57. color: #B4BAC5;
  58. margin-bottom: 70rpx;
  59. }
  60. .alert-content .close{
  61. position: absolute;
  62. display: block;
  63. width: 100rpx;
  64. height: 100rpx;
  65. top:100%;
  66. left: 50%;
  67. margin-top: 40rpx;
  68. transform: translate(-50%,0);
  69. }