12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- .container {
- background-color: #ffffff;
- height: 100vh;
- }
- .bottom_view{
- width: 100%;
- position: fixed;
- bottom: 20rpx;
- left: 0;
- }
- .rich_text{
- margin: 30rpx;
- }
- .click_view{
- flex: 1;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- border-radius: 8rpx;
- margin-left: 15rpx;
- margin-right: 15rpx;
- background-color: #F56C6C;
- color: #ffffff;
- }
- .click_view_gray{
- flex: 1;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- border-radius: 8rpx;
- margin-left: 15rpx;
- margin-right: 15rpx;
- background-color: #797979;
- color: #ffffff;
- }
- .write_sign{
- text-align: center;
- margin-left: 10rpx;
- margin-right: 15rpx;
- height: 90rpx;
- width: 20%;
- border: 1rpx solid #F2F2F2;
- border-radius: 8rpx;
- }
- .write_sign_img{
- margin-top: 10rpx;
- width: 34rpx;
- height: 34rpx;
- }
- .sign_view{
- margin-top: -10rpx;
- color: #797979;
- font-size: 24rpx;
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- }
|