123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /* pages/deviceConMode/index.wxss */
- .main {
- position: relative;
- width: 100vw;
- height: 100vh;
- }
- .model_bg {
- top: 80;
- left: 0;
- position: absolute;
- width: 100%;
- height: 100%;
- z-index: -1;
- background-size: cover;
- background-position: center;
- }
- .select_tips {
- position: relative;
- z-index: 1;
- padding: 20px;
- }
- .devicePicItem {
- display: flex;
- align-items: center;
- padding: 10px;
- }
- .setDeviceModel {
- padding: 10px;
- text-align: center;
- left: 0;
- font-size: 32rpx;
- }
- .setDeviceModelTips {
- color: #FFFFFFB3;
- text-align: center;
- font-size: 24rpx;
- }
- .deviceList {
- margin-top: 60px;
- }
- .devicePicItem {
- position: relative;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- border-radius: 5px;
- height: 100rpx;
- margin-top: 32rpx;
- background-color: #ffffff0d;
- }
- .select_icon {
- width: 32rpx;
- height: 32rpx;
- position: absolute;
- z-index: 1;
- top: 16rpx;
- right: 16rpx;
- }
- .device_text {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: center;
- }
- .model_icon {
- width: 48rpx;
- height: 48rpx;
- margin-right: 10rpx;
- }
- .model_text {
- font-size: 32rpx;
- color: white;
- }
- .devicePicItem_0 {
- margin-left: 32rpx;
- margin-right: 32rpx;
- }
- .devicePicItem_1 {
- margin-left: 64rpx;
- margin-right: 64rpx;
- }
- .devicePicItem_2 {
- margin-left: 96rpx;
- margin-right: 96rpx;
- }
- .connect_button {
- position: fixed;
- display: flex;
- justify-content: center;
- align-items: center;
- bottom: 100rpx;
- left: 60rpx;
- right: 60rpx;
- font-size: 32rpx;
- font-weight: Medium;
- color: white;
- text-align: center;
- border-radius: 44rpx;
- height: 88rpx;
- }
|