| 123456789101112131415161718192021222324252627282930313233343536373839 |
- .deviceInfo{
- width: 100%;
- height: 340px;
- padding: 0 30px;
- box-sizing: border-box;
- margin-bottom: 25px;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- }
- .deviceImgBox{
- width: 256px;
- height: 256px;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #FFFFFF;
- box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
- opacity: 1;
- border-radius: 128px;
- margin-top: 20px;
- }
- .deviceId{
- height: 40px;
- font-size: 28px;
- font-family: '.PingFang SC';
- font-weight: 300;
- line-height: 18px;
- color: #646464;
- }
- .deviceBtnBox{
- width: 100%;
- padding: 0 30px;
- box-sizing: border-box;
- .deviceBtn{
- margin-top: 40px;
- }
- }
|