12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- page {
- background-color: #f2f2f2;
- }
- .title-item {
- width: 100%;
- flex-direction: row;
- display: flex;
- align-items: center;
- margin-bottom: 30rpx;
- }
- .title-item .title {
- font-size: 28rpx;
- width: 200rpx;
- min-width: 200rpx;
- }
- .title-item .content {
- font-size: 28rpx;
- color: #666;
- }
- .reponse-item {
- flex-direction: column;
- display: flex;
- width: 100%;
- box-sizing: border-box;
- }
- .reponse-item .title {
- font-size: 28rpx;
- }
- .reponse-item textarea{
- height: 300rpx;
- width: 100%;
- border-radius: 8rpx;
- margin-top: 10rpx;
- background-color: #fff;
- padding: 10rpx;
- font-size: 28rpx;
- }
- .apply-btn{
- width: 200rpx;
- height: 70rpx;
- border-radius: 10rpx;
- flex-direction: row;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 32rpx;
- color: #fff;
- background-color: rgb(31, 96, 236);
- position: fixed;
- bottom: 100rpx;
- }
|