1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- .top {
- display: flex;
- padding: 0.48rem 1.8rem 0.25rem 0;
- font-family: Source Han Sans, Source Han Sans;
- font-weight: 500;
- color: #615d5d;
- font-size: 0.32rem;
- justify-content: space-around;
- .left {
- // width: 50%;
- display: flex;
- align-items: center;
- }
- .img {
- width: 1.52rem;
- margin-right: 0.45rem;
- }
- .right {
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- }
- .listContent {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .itemLong {
- padding: 0.6rem 0.4rem 0.6rem 1rem;
- font-size: 0.34rem;
- margin-top: 0.28rem;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-family: Source Han Sans, Source Han Sans;
- color: #615d5d;
- line-height: 34rem;
- letter-spacing: 0.04rem;
- box-shadow: 0.01rem 0.06rem 0.1rem 0rem rgba(0, 0, 0, 0.1);
- .arr {
- width: 0.14rem;
- height: 0.22rem;
- background: url('@/assets/arr-right2.png') no-repeat center;
- background-size: 100% 100%;
- }
- }
- .item {
- padding: 0.4rem 0.6rem;
- font-size: 0.32rem;
- margin-top: 0.28rem;
- display: flex;
- align-items: center;
- width: 48%;
- }
- .select {
- border: 1px solid #66ccff;
- }
- .icon {
- width: 0.2rem;
- height: 0.2rem;
- // border-radius: 50%;
- display: inline-block;
- background-color: #12ceb3;
- margin-right: 0.44rem;
- vertical-align: middle;
- &.error {
- background-color: #fe5850;
- }
- &.offline {
- background-color: #9b9b9b;
- }
- }
- .btns {
- flex: right;
- }
|