phone-input.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* components/phone-input/phone-input.wxss */
  2. @import '../../style/opacity.wxss';
  3. .bg {
  4. position: fixed;
  5. right: 0;
  6. top: 0;
  7. width: 300rpx;
  8. height: 300rpx;
  9. z-index: -1;
  10. }
  11. .header {
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. justify-content: center;
  16. margin-top: 75rpx;
  17. }
  18. .title {
  19. width: 100%;
  20. font-size: 54rpx;
  21. padding: 0 90rpx;
  22. box-sizing: border-box;
  23. margin: 59rpx 0;
  24. }
  25. .inputphone {
  26. width: 570rpx;
  27. height: 100rpx;
  28. border-bottom: 4rpx solid rgba(238, 238, 238, 1);
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. }
  33. .inputphone-input {
  34. flex: 1;
  35. height: 100%;
  36. }
  37. .clear {
  38. height: 100%;
  39. width: 80rpx;
  40. display: flex;
  41. align-items: center;
  42. justify-content: flex-end;
  43. }
  44. .clear-image {
  45. width: 23rpx;
  46. height: 23rpx;
  47. }
  48. .agreement {
  49. width: 570rpx;
  50. font-size: 24rpx;
  51. color: #777;
  52. margin: 35rpx auto;
  53. }
  54. .agreement-content {
  55. color: #0177FF;
  56. }
  57. .button {
  58. display: flex;
  59. align-items: center;
  60. justify-content: center;
  61. }
  62. .button-content {
  63. width: 570rpx;
  64. height: 88rpx;
  65. color: #fff;
  66. font-size: 34rpx;
  67. background: rgba(1, 119, 255);
  68. border-radius: 10rpx;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. }