switch.scss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .unopen-box{
  2. width: 668rpx;
  3. background-color: #fff;
  4. border-radius: 6rpx;
  5. padding: 60rpx 60rpx 40rpx;
  6. position: relative;
  7. .z-close{
  8. position: absolute;
  9. right: 20rpx;
  10. top: 20rpx;
  11. color: #c6c3c3e6;
  12. font-weight: bold;
  13. }
  14. .unopen-title{
  15. font-size: 48rpx;
  16. font-weight: bold;
  17. text-align: center;
  18. letter-spacing: 1px;
  19. line-height: 1.1;
  20. }
  21. .hint-text{
  22. padding-top: 50rpx;
  23. font-size: 26rpx;
  24. }
  25. .unopen-content{
  26. width: 100%;
  27. padding-top: 50rpx;
  28. .account-box{
  29. width: 100%;
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: stretch;
  33. .account-link{
  34. width: 100rpx;
  35. display: flex;
  36. flex-direction: column;
  37. font-size: 22rpx;
  38. align-items: center;
  39. color: $Theme-Color;
  40. .iconfont{
  41. font-size: 24rpx;
  42. transform: rotateY(180deg);
  43. margin-bottom: 16rpx;
  44. // font-weight: bold;
  45. }
  46. }
  47. .account-item{
  48. flex: 1;
  49. height: 80rpx;
  50. background-color: #f1f1f3;
  51. line-height: 80rpx;
  52. font-size: 22rpx;
  53. border-radius: 6rpx;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. padding: 0 10rpx;
  58. .account-item-lable{
  59. flex: 1;
  60. text-align: center;
  61. }
  62. .iconfont{
  63. flex-shrink: 0;
  64. font-size: 20rpx;
  65. color: $Theme-Color;
  66. }
  67. }
  68. }
  69. .capital-type{
  70. margin-top: 30rpx;
  71. width: 100%;
  72. height: 80rpx;
  73. border: 1px solid $border-color6;
  74. border-radius: 6rpx;
  75. display: flex;
  76. justify-content: space-between;
  77. align-items: center;
  78. padding: 0 20rpx;
  79. .type-left{
  80. font-size: 24rpx;
  81. color: $Theme-Color;
  82. flex-shrink: 0;
  83. // font-weight: bold;
  84. }
  85. .type-input{
  86. flex: 1;
  87. height: 100%;
  88. font-size: 26rpx;
  89. font-weight: bold;
  90. padding:0 20rpx;
  91. letter-spacing: 1px;
  92. }
  93. .type-rigth{
  94. flex-shrink: 0;
  95. font-size: 24rpx;
  96. font-weight: 900;
  97. color: #000;
  98. }
  99. }
  100. .capital-nums{
  101. width: 100%;
  102. padding: 50rpx 0;
  103. font-size: 26rpx;
  104. text-align: right;
  105. color: #acacae;
  106. .num{
  107. color: $Theme-Color;
  108. font-weight: bold;
  109. }
  110. }
  111. .capital-btn{
  112. width: 100%;
  113. height: 80rpx;
  114. background-color: $Theme-Color;
  115. border-radius: 6rpx;
  116. text-align: center;
  117. line-height: 80rpx;
  118. color: #fff;
  119. }
  120. }
  121. }