| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .intr {
- position: relative;
- width: 100vw;
- box-sizing: border-box;
- background-color: #fff;
- padding: 20rpx 30rpx;
- .num {
- height: 40rpx;
- line-height: 40rpx;
- font-size: 32rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .tags {
- margin-bottom: 15rpx;
- text {
- display: inline-block;
- height: 40rpx;
- line-height: 40rpx;
- background: #E7EEFF;
- border-radius: 20rpx;
- padding: 0 15rpx;
- font-size: 20rpx;
- color: #fff;
- margin-right: 10rpx;
- }
- }
- .exp {
- line-height: 34rpx;
- font-size: 26rpx;
- margin-top: 10rpx;
- color: #666;
- }
- .copy {
- position: absolute;
- right: 30rpx;
- top: 20rpx;
- background-color: #FF9933;
- border-radius: 12rpx;
- padding: 0 10rpx;
- color: #fff;
- border: none;
- height: 70rpx;
- }
- }
- .footer {
- display: flex;
- justify-content: space-between;
- padding: 0 30rpx;
- position: fixed;
- width: 100vw;
- height: 130rpx;
- background: #FFFFFF;
- box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
- bottom: 0;
- box-sizing: border-box;
- z-index: 99;
- padding-top: 10rpx;
- .but-box {
- display: flex;
- .but {
- min-width: 160rpx;
- height: 90rpx;
- border-radius: 8rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- margin-left: 10rpx;
- }
- .delete {
- background: var(--warning);
- }
- }
- }
- .remarks {
- display: flex;
- align-items: center;
- textarea {
- border: 1px solid #ccc;
- padding: 10rpx;
- }
- }
|