1234567891011121314151617181920212223242526272829 |
- /* components/certificates/index.wxss */
- .red{
- color: red;
- }
- .father{
- box-sizing: border-box;
- padding: 20rpx;
- font-size: 28rpx;
- line-height: 50rpx;
- height: 700rpx;
- }
- .btns{
- position: absolute;
- bottom: 0;
- width: calc(100% - 40rpx);
- padding: 10rpx 20rpx;
- background: #fff;
- z-index: 10002;
- box-shadow: 0 -2rpx 5rpx rgba(0,0,0,.2);
- }
- .sure {
- left: 0;
- width: 100%;
- background-color: #ee3a43;
- color: white;
- height: 80rpx;
- text-align: center;
- line-height: 80rpx;
- }
|