1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- page {
- width: 100%;
- height: 100%;
- background: #eee;
- }
- .box {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .box .view {
- position: relative;
- width: 690rpx;
- height: 230rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 0px 13rpx 0px rgba(216, 216, 216, 1);
- border-radius: 10rpx;
- display: flex;
- flex-direction: column;
- margin-top: 20rpx;
- justify-content: space-around;
- padding-bottom:10rpx;
- }
- .box .view .top {
- width: 100%;
- display: flex;
- justify-content: space-between;
- margin-top: 24rpx;
- }
- .box .view .top view {
- position: absolute;
- top: 0rpx;
- right: 0rpx;
- padding: 0 40rpx;
- height: 42rpx;
- border-radius: 0px 2rpx 0px 20rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 22rpx;
- font-family: PingFang SC;
- color: rgba(255, 255, 255, 1);
- }
- .box .view .center {
- display: flex;
- justify-content: space-between;
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(77, 77, 77, 1);
- opacity: 0.75;
- padding: 0rpx 25rpx;
- margin: 10rpx 0 10rpx 0;
- }
- .box .view .text {
- font-size: 26rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: rgba(77, 77, 77, 1);
- opacity: 0.75;
- padding-left: 25rpx;
- }
- .box .cut {
- margin: 35rpx 0 20rpx;
- }
|