123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- page {
- position: relative;
- box-sizing: border-box;
- padding-bottom: 250rpx;
- overflow: hidden;
- width: 100%;
- height: 100%;
- }
- .count {
- z-index: 99;
- position: fixed;
- top: 30rpx;
- left: 30rpx;
- }
- .panel {
- box-sizing: border-box;
- padding-top: 10rpx;
- width: 100%;
- height: 250rpx;
- }
- .panel-base {
- position: relative;
- width: 100%;
- height: 120rpx;
- box-sizing: border-box;
- padding-left: 120rpx;
- }
- .panel-base-avatar {
- position: absolute;
- top: 15rpx;
- left: 15rpx;
- width: 90rpx;
- height: 90rpx;
- }
- .panel-base-name {
- box-sizing: border-box;
- width: 100%;
- height: 60rpx;
- line-height: 60rpx;
- font-size: 28rpx;
- }
- .panel-base-battery {
- box-sizing: border-box;
- line-height: 20rpx;
- }
- .panel-base-battery image {
- vertical-align: text-top;
- width: 40rpx;
- height: 40rpx;
- }
- .panel-base-battery text {
- margin-left: 10rpx;
- font-size: 24rpx;
- }
- .panel-base-call {
- text-align: center;
- line-height: 60rpx;
- color: white;
- top: 25rpx;
- right: 20rpx;
- border-radius: 100rpx;
- position: absolute;
- width: 120rpx;
- height: 60rpx;
- background: linear-gradient(45deg, rgb(135, 235, 111), rgb(18, 220, 123));
- }
- .panel-site {
- margin-top: 10rpx;
- overflow: hidden;
- width: 100%;
- height: 100rpx;
- }
- .panel-site-text {
- display: inline-block;
- position: relative;
- box-sizing: border-box;
- padding-left: 20rpx;
- width: 480rpx;
- height: 100rpx;
- color: var(--darkGray);
- font-size: 26rpx;
- line-height: 40rpx;
- text-indent: 100rpx;
- }
- .panel-site-nav {
- position: absolute;
- top: 0;
- left: 15rpx;
- width: 90rpx;
- height: 40rpx;
- background: var(--greyLight);
- border-radius: 100rpx;
- font-size: 22rpx;
- line-height: 40rpx;
- color: var(--black);
- text-indent: 0;
- text-align: center;
- }
- .panel-site-nav image {
- width: 20rpx;
- height: 20rpx;
- }
- .panel-site-date {
- float: right;
- margin-right: 10rpx;
- background: rgba(89, 170, 255, 0.2);
- text-align: center;
- font-size: 22rpx;
- color: #2d8cf0;
- border-radius: 20rpx;
- width: 120rpx;
- height: 40rpx;
- line-height: 40rpx;
- }
- .panel-site-refresh {
- box-sizing: border-box;
- padding-top: 12rpx;
- text-align: center;
- float: right;
- width: 70rpx;
- height: 70rpx;
- background: var(--greyLight);
- border-radius: 70rpx;
- margin: 15rpx 30rpx;
- }
- .map {
- z-index: 1;
- width: 100%;
- height: 100%;
- }
- .debug {
- border-radius: 10rpx;
- z-index: 99;
- min-height: 270rpx;
- box-sizing: border-box;
- padding: 10rpx;
- width: 280rpx;
- position: absolute;
- top: 30rpx;
- right: 30rpx;
- background: rgba(0, 0, 0, .4);
- }
- .debug view {
- color: white;
- width: 100%;
- line-height: 36rpx;
- font-size: 24rpx;
- }
|