123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- /* pages/index/index.wxss */
- .page {
- height: 100%;
- display: flex;
- justify-content: start;
- flex-direction: column;
- align-items: center;
- width: 100%;
- }
- .layout {
- height: 560rpx;
- margin-top: 60rpx;
- width: 75%;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- align-items: center;
- max-width: 75%;
- max-height: 560rpx;
- }
- .item_bg {
- width: 100%;
- display: flex;
- justify-content: space-between;
- flex-direction: row;
- }
- .teacher {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(136deg, #fe9f68 2%, #ff8f74);
- border-radius: 10px;
- }
- .teacher_enable_false {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(136deg, #838383 2%, #838383);
- border-radius: 10px;
- }
- .installer {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(135deg, #04e6bc, #1be5bc 38%);
- border-radius: 10px;
- }
- .installer_enable_false {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(135deg, #838383 2%, #838383 38%);
- border-radius: 10px;
- }
- .repairman {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(170deg, #a6d5ff 0%, #6dabfe 100%);
- border-radius: 10px;
- }
- .repairman_enable_false {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(135deg, #838383 2%, #838383 38%);
- border-radius: 10px;
- }
- .it {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(171deg, #cdbdff 0%, #9e88ff 100%);
- border-radius: 10px;
- }
- .it_enable_false {
- width: 250rpx;
- height: 250rpx;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- background: linear-gradient(135deg, #838383 2%, #838383 38%);
- border-radius: 10px;
- }
- .item_icon {
- height: 76rpx;
- width: 76rpx
- }
- .item_text {
- margin-top: 30rpx;
- color: white;
- font-size: 36rpx;
- }
|