12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* plugin/etc/pages/activeStatus/activeStatus.wxss */
-
- .col-center {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- }
-
- .col-start {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- }
-
- .title {
- margin-top: 32rpx;
- height: 50rpx;
- font-weight: 500;
- font-size: 36rpx;
- color: black;
- line-height: 50rpx;
- }
-
- .msg {
- margin-top: 8rpx;
- height: 40rpx;
- font-size: 30rpx;
- color: #676767;
- line-height: 40rpx;
- }
-
- .tip-bg {
- width: 582rpx;
- height: 16rpx;
- background: #DEE2EA;
- border-radius: 16rpx;
- }
-
- .dev-info-bg {
- width: 564rpx;
- background: #F6F6F6;
- box-shadow: inset 0rpx 6rpx 6rpx 2rpx rgba(255, 255, 255, 0.16);
- border-radius: 16rpx;
-
- box-sizing: border-box;
- padding: 0 32rpx;
- font-size: 28rpx;
- color: #000;
- }
-
- .dev-item-bg {
- width: 100%;
- height: 104rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: start;
- }
-
- .dev-name {
- width: 140rpx;
- color: #666666;
- }
-
- .normal-btn {
- margin-top: 300rpx;
- width: 360rpx;
- font-weight: 500;
- font-size: 32rpx;
- border-radius: 40rpx;
- height: 80rpx;
- }
-
- .green-btn {
- margin-top: 300rpx;
- font-weight: 500;
- font-size: 32rpx;
- color: #FFFFFF;
- width: 240rpx;
- height: 80rpx;
- background: #48CF3C;
- border-radius: 16rpx;
- }
|