1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* 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);
- }
- .downloadInvoice{
- /* position:absolute; */
- /* bottom:15px;
- right:10px; */
- color:#358BFF;
- margin-bottom:10px;
- }
|