123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- /* pages/apply/apply.wxss */
- page{
- background: #F4F7F9;
- }
- .nope{
- text-align: center;
- color: #999;
- font-size: 36rpx;
- padding: 20px 0;
- }
- .content{
- padding: 12px;
- padding-bottom: 60px;
- }
- .list{
- background: #fff;
- padding: 12px;
- box-shadow:0px 2px 12px 0px rgba(0,0,0,0.08);
- border-radius:4px;
- margin-bottom: 12px;
- position: relative;
- }
- .title{
- color: #222;
- font-weight: 600;
- font-size: 32rpx;
- margin-bottom: 12px;
- }
- .title text{
- display: block;
- color: #358BFF;
- font-size: 28rpx;
- font-weight: 400;
- }
- .title .signup_count{
- color: #E85546;
- font-size: 28rpx;
- font-weight: 400;
- }
- .info text{
- display: block;
- color: #222;
- line-height: 25px;
- }
- .status{
- float: right;
- }
- .status text{
- display: block;
- color: #E85546;
- text-align: right;
- }
- .study{
- width:88px;
- height:32px;
- background:rgba(53,139,255,1);
- border-radius:16px;
- color: #fff;
- text-align: center;
- line-height: 32px;
- position: absolute;
- bottom: 12px;
- right: 12px;
- }
- .post{
- display: block;
- height:48px;
- background:rgba(53,139,255,1);
- border-radius:4px;
- color: #fff;
- text-align: center;
- line-height: 48px;
- margin-top: 50px;
- position: fixed;
- bottom: 5px;
- width: calc(100% - 24px);
- }
|