12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /* pages/deviceRoter1/deviceRoter1.wxss */
- .deviceRoter1 .wifiInfo {
- padding: 0 66rpx;
- }
- .fake-password {
- /* 自定义密文样式 */
- -webkit-text-security: disc;
- }
- .deviceRoter1 .wifiInfo>view.ssid {
- width: calc(100vw - 136rpx);
- height: 96rpx;
- border-radius: 48rpx;
- border: 2rpx solid #999999;
- margin-bottom: 40rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .deviceRoter1 .wifiInfo>view.ssid input {
- width: calc(100% - 104rpx);
- height: 98rpx;
- line-height: 98rpx;
- font-weight: bold;
- font-size: 32rpx;
- color: #353535;
- }
- .deviceRoter1 .wifiInfo .pwd {
- position: relative;
- }
- .deviceRoter1 .wifiInfo .pwd input {
- width: calc(100% - 154rpx) !important;
- }
- .deviceRoter1 .wifiInfo .pwd .yz {
- width: 48rpx;
- height: 98rpx;
- display: flex;
- align-items: center;
- }
- .deviceRoter1 .wifiInfo .pwd .yz image {
- width: 48rpx;
- }
- .deviceRoter1 .wifiInfo .ps {
- overflow: hidden;
- }
- .deviceRoter1 .wifiInfo .ps image {
- width: 48rpx;
- margin-right: 20rpx;
- line-height: 48rpx;
- float: left;
- }
- .deviceRoter1 .wifiInfo .ps text {
- float: left;
- font-size: 28rpx;
- line-height: 48rpx;
- color: #FA5151;
- width: calc(100% - 68rpx);
- }
|