123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224 |
- #device_container {
- position: relative;
- top: -65px;
- }
- .head .line {
- width: 4px;
- height: 14px;
- background-color: #5d4db8;
- margin-right: 7px;
- }
- .head view {
- display: flex;
- justify-self: start;
- align-items: center;
- }
- .ring_2 {
- width: 199px;
- height: 203px;
- background: rgba(93, 77, 184, 0);
- border: 2px solid #f7f7f7;
- opacity: 0.43;
- border-radius: 50%;
- }
- .ring_3 {
- width: 158px;
- height: 158px;
- background: rgba(93, 77, 184, 0);
- border: 3px solid #f6f6f6;
- opacity: 0.54;
- border-radius: 50%;
- }
- .connect_img {
- width: 85px;
- height: 80px;
- }
- .left {
- line-height: 35px;
- }
- /*设备连接模块*/
- .device_bg {
- width: 90px;
- height: 100px;
- background-image: url("https://img.shuimuai.com/web/device_bg.png");
- background-position: center;
- background-size: 100% 100%;
- }
- .dot_container {
- height: 100px;
- }
- .dot_wait {
- height: 5px;
- width: 80px;
- background-image: url("https://img.shuimuai.com/web/connect_line.png");
- background-position: center;
- background-size: 100% 100%;
- }
- .device_phone {
- width: 30px;
- height: 40px;
- }
- .device_brain {
- width: 40px;
- height: 40px;
- }
- .device_text {
- padding: 3px;
- font-size: 10px;
- }
- .moving_dot {
- width: 18px;
- height: 18px;
- position: relative;
- left: 15px;
- bottom: 7px;
- }
- .moving {
- animation: moving 2s linear infinite;
- }
- /*左右移动动画*/
- @keyframes moving {
- 0% {
- left: 0px;
- }
- 50% {
- left: 35px;
- }
- 100% {
- left: 0px;
- }
- }
- /*玩具列表*/
- .toy_list {
- overflow-x: scroll;
- }
- .toy_item {
- width: 120px;
- height: 130px;
- }
- /*玩具不同背景*/
- .toy_item_normal_bg {
- background-image: url("https://img.shuimuai.com/web/toy_bg.png");
- background-position: center;
- background-size: 100% 100%;
- }
- /*玩具选中背景*/
- .toy_item_action_bg {
- background-image: url("https://img.shuimuai.com/web/toy_bg_action.png");
- background-position: center;
- background-size: 100% 100%;
- }
- /*玩具图片*/
- .toy_img {
- width: 65px;
- height: 65px;
- }
- .toy_text {
- font-size: 12px;
- }
- .toy_action_text {
- font-size: 11px;
- width: 100%;
- }
- .cut_brain_icon {
- width: 11px;
- height: 11px;
- }
- .cut_text {
- font-size: 12px;
- }
- /*设备绿色信号灯*/
- .sign_green {
- width: 20px;
- height: 10px;
- position: relative;
- top: 18px;
- left: 1px;
- }
- /*水母男孩*/
- .connected_boy {
- width: 110px;
- height: 110px;
- position: absolute;
- right: -60px;
- top: 63px;
- }
- .boy_session {
- background-image: url("https://img.shuimuai.com/web/boy_session.png");
- background-position: center;
- background-size: 100% 100%;
- width: 120px;
- height: 100px;
- position: absolute;
- top: 18px;
- right: 25px;
- z-index: 4;
- }
- .boy_session_text {
- font-size: 12px;
- color: #6b6b6b;
- }
- .device_electric {
- position: relative;
- width: 16px;
- height: 16px;
- top: 0px;
- right: 0px;
- z-index: 5;
- }
- /*玩具模块*/
- .uav_toy {
- width: 40px;
- height: 40px;
- }
- /* 选择玩具 */
- .toy_list {
- width: 100%;
- overflow-x: auto;
- }
- .toy_list_content {
- width: 120%;
- display: inline-block;
- display: flex;
- flex-wrap: wrap;
- }
- /* 测试标签 */
- /* toy_item_action_bg toy_item_normal_bg
- toy_list_content
- */
|