1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /* pages/setWifi/setWifi.wxss */
- .container {
- padding-inline: 20rpx;
- }
- .wifi_icon {
- margin-top: 40rpx;
- width: 100%;
- height: 200rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .wifi_icon>image {
- width: 229rpx;
- height: 200rpx;
- }
- .title {
- margin-top: 20px;
- font-size: 40rpx;
- color: #333333;
- margin-bottom: 20px;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: bold;
- }
- .input-group {
- margin-bottom: 15px;
- height: 80rpx;
- border-radius: 40rpx;
- }
- .input-with-icon {
- position: relative;
- display: flex;
- align-items: center;
- border: 1px solid #ccc;
- padding: 10px;
- border-radius: 5px;
- }
- .icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10px;
- color: black;
- }
- .eye-icon {
- width: 20px;
- height: 20px;
- margin-left: 10px;
- }
- .input {
- flex: 1;
- border: none;
- outline: none;
- font-size: 16px;
- }
- .title_tips {
- margin-top: 40rpx;
- width: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- color: #333333;
- }
- .confirm-button {
- margin-top: 60rpx;
- background-color: rgb(211, 118, 88);
- color: white;
- border: none;
- height: 88rpx;
- margin-inline: 80rpx;
- border-radius: 44rpx;
- justify-content: center;
- align-items: center;
- display: flex;
- }
|