123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- /* pages/index-guest/index-guest.wxss */
- .container {
- padding: 20rpx;
- align-items: flex-start;
- background-size: 100% 100%;
- z-index: -99;
- width: 100%;
- }
- .login-info {
- margin: 10rpx;
- margin-top: 80rpx;
- font-size: 1.2em;
- color: #ffffff;
- }
- .role-name {
- font-size: .6em;
- background-color: #86b9ff;
- border-radius: 20rpx;
- padding: 8rpx 14rpx;
- margin: 0 20rpx;
- color: #ffffff;
- }
- .app-bottom {
- color: #eee;
- font-size: .8em;
- position: relative;
- top: 20rpx;
- }
- .next {
- width: 90%;
- margin-left: 5%;
- background-size: 100% 100%;
- position: relative;
- bottom: -30rpx;
- }
- .line-row {
- text-align: center;
- color: #EC6D27;
- font-size: 1.5em;
- margin-top: 20rpx;
- }
- .next-line {
- height: 9rpx;
- width: 60%;
- text-align: center;
- margin-left: 20%;
- /* margin-top: -10rpx; */
- }
- .next-row-org {
- margin-top: 20rpx;
- margin-bottom: 10rpx;
- color: #8C441C;
- text-align: center;
- }
- .next-row-time {
- margin-top: 10rpx;
- margin-bottom: 20rpx;
- font-size: .8em;
- color: #8C441C60;
- text-align: center;
- }
- .second-part {
- width: 94%;
- height: 50%;
- padding: 30rpx 3%;
- background-color: #F0F4F7;
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- }
- .curr-meeting {
- width: 90%;
- height: 180rpx;
- margin-top: 20rpx;
- border-radius: 20rpx;
- background-color: #ffffff;
- padding: 30rpx;
- }
- .curr-time {
- font-size: 32rpx;
- border-bottom: solid 1rpx #EBE8E3;
- padding-bottom: 20rpx;
- }
- .curr-row {
- margin-top: 20rpx;
- }
- .row-title {
- color: #999999;
- font-size: 28rpx;
- }
- .row-value {
- margin-left: 13rpx;
- font-size: 28rpx;
- }
- .bottmo-module {
- width: 100%;
- margin-top: 10rpx;
- display: inline-flex;
- flex-direction: row;
- align-items: flex-start;
- justify-content: space-between;
- }
- .light {
- height: 130rpx;
- width: 32%;
- margin-right: 15rpx;
- margin-top: 15rpx;
- background: #fff;
- line-height: 130rpx;
- border-radius: 10rpx;
- display: inline-flex;
- align-items: center;
- text-align: center;
- }
- .light image {
- width: 72rpx;
- height: 72rpx;
- margin-left: 15rpx;
- }
- .light text {
- font-size: .8em;
- margin-left: 10rpx;
- }
- .big {
- height: 275rpx;
- width: 32%;
- background: #fff;
- text-align: center;
- border-radius: 10rpx;
- display: inline-flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-top: 15rpx;
- }
- .big image {
- width: 70rpx;
- height: 70rpx;
- }
- .big text {
- font-size: .8em;
- margin-top: 10rpx;
- }
|