123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /* pages/handleFile/handleFile.wxss */
- .handle-file-content {
- width: 100%;
- height: 100%;
- background-color: #f7f7f7;
- overflow: hidden;
- }
- .main-content {
- width: 690rpx;
- height: calc(100% - 180rpx);
- margin: 0 auto;
- overflow-y: auto;
- }
- .file-item {
- width: 100%;
- height: 160rpx;
- background: #FFFFFF;
- border-radius: 20rpx;
- margin-top: 20rpx;
- }
- .f-left {
- width: 100%;
- height: 100%;
- }
- .f-radio {
- width: 40rpx;
- height: 40rpx;
- border: 2rpx solid #DDDDDD;
- border-radius: 50%;
- margin-left: 20rpx;
- }
- .f-radio-active {
- background-color: var(--maincolor);
- border-color: var(--maincolor);
- }
- .f-avatar {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- margin: 0 14rpx 0 20rpx;
- }
- .head-img {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .report-text {
- padding: 20rpx;
- font-size: 26rpx;
- font-weight: 400;
- color: var(--maincolor);
- }
- .fu-name {
- font-size: 30rpx;
- font-weight: bold;
- color: #333333;
- margin-right: 12rpx;
- }
- .suer-sex {
- width: 30rpx;
- height: 30rpx;
- }
- .img {
- width: 30rpx;
- height: 30rpx;
- }
- .fu-date {
- font-size: 26rpx;
- font-weight: 400;
- color: #999999;
- }
- .f-qrcode {
- width: 80rpx;
- height: 80rpx;
- margin-left: 20rpx;
- }
- .qrcode-item {
- width: 60rpx;
- height: 60rpx;
- }
- .actions {
- width: 100%;
- height: 80rpx;
- position: fixed;
- bottom: 60rpx;
- background-color: #f7f7f7;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .handle-btn {
- width: 690rpx;
- height: 80rpx;
- border-radius: 10rpx;
- }
- .wrapper {
- height: 100%;
- }
- .model {
- width: 540rpx;
- height: 280rpx;
- background: #FFFFFF;
- border-radius: 24rpx;
- }
- .top-title {
- height: 190rpx;
- border-bottom: 1rpx solid #DDDDDD;
- box-sizing:border-box;
- padding-top: 1rpx;
- }
- .main-title {
- font-size: 34rpx;
- font-weight: bold;
- color: #333333;
- text-align: center;
- margin-top: 37rpx;
- }
- .sub-title {
- font-size: 26rpx;
- text-align: center;
- font-weight: 400;
- color: #333333;
- }
- .btn {
- width: 270rpx;
- height: 90rpx;
- box-sizing: border-box;
- font-size: 34rpx;
- color: #333333;
- }
- .w-cancel-btn {
- font-weight: 400;
- }
- .w-confirm-btn {
- border-left: 1rpx solid #DDDDDD;
- font-weight: bold;
- }
|