| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- /* components/send-code/send-code.wxss */
- .container {
- padding: 30rpx;
- position: relative;
- }
- .bg {
- position: fixed;
- right: 0;
- top: 0;
- width: 300rpx;
- height: 300rpx;
- z-index: -1;
- }
- .header {
- color: #333;
- font-size: 36rpx;
- margin-top: 90rpx;
- }
- .title {
- font-size: 54rpx;
- color: #000000;
- margin-bottom: 25rpx;
- }
- .phone {
- color: #000;
- font-size: 28rpx;
- }
- .content {
- width: 100%;
- margin-top: 75rpx;
- }
- .bar,
- .nums {
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .nums-content {
- height: 70rpx;
- width: 68rpx;
- text-align: center;
- font-size: 68rpx;
- font-weight: 600;
- color: #333;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .flash {
- width: 4rpx;
- height: 60rpx;
- background: #327ae1;
- opacity: 0;
- animation: flash 1s infinite steps(1);
- }
- .bar {
- margin-top: 30rpx;
- }
- .bar-view {
- width: 68rpx;
- height: 4rpx;
- background: #ccc;
- }
- .count {
- color: #000;
- font-size: 28rpx;
- margin-top: 30rpx;
- text-align: right;
- }
- .keyboard {
- width: 100%;
- position: fixed;
- left: 0;
- bottom: -490rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- flex-wrap: wrap;
- border-top: 2rpx solid #ddd;
- transition: bottom 600ms;
- }
- .board {
- flex: 1;
- flex-basis: 33%;
- height: 120rpx;
- font-size: 36rpx;
- line-height: 120rpx;
- text-align: center;
- background: #fff;
- border-right: 1rpx solid #ddd;
- border-bottom: 1rpx solid #ddd;
- }
- .board:nth-child(3n) {
- border-right: none;
- }
- .del {
- font-size: 32rpx;
- background: #f5f5f5;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .board-image {
- width: 60rpx;
- height: 60rpx;
- }
- @keyframes flash {
- 0%,
- 100% {
- opacity: 0;
- }
- 50% {
- opacity: 1;
- }
- }
- .time {
- color: #327ae1;
- }
- .show {
- bottom: 0;
- }
|