12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* component/fileBottomPop/fileBottomPop.wxss */
- .layout {
- height: 70%;
- width: 100%;
- background-color: #FFFFFF;
- position: absolute;
- bottom: 0;
- border-radius: 14px 14px 0px 0px;
- }
- .content_layout {
- width: 100%;
- height: 100%;
- margin-top: 43rpx;
- display: flex;
- flex-direction: column;
- }
- .toplayout {
- display: flex;
- flex-direction: column;
- margin-left: 28rpx;
- margin-right: 28rpx;
- }
- .img_name_layout {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: flex-start;
- }
- .time_text {
- font-size: 28rpx;
- color: #666666;
- }
- .line {
- background-color: #979797;
- opacity: 0.2;
- height: 1rpx;
- width: 100%;
- }
- .action_layout {
- height: 114rpx;
- width: 100%;
- margin-left: 28rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .action_icon {
- width: 38rpx;
- height: 41rpx;
- }
- .action_text {
- font-size: 28rpx;
- color: #333333;
- margin-left: 53rpx
- }
- .cancel_layout {
- position: absolute;
- bottom: 0;
- height: 92rpx;
- width: 100%;
- background-color: #F4F4F4;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .cancel_text {
- text-align: center;
- width: 200rpx;
- font-size: 36rpx;
- color: #6d6d6d;
- }
|