1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- .box {
- position: relative;
- width: 690rpx;
- height: 242rpx;
- background: #FFFFFF;
- border-radius: 16rpx;
- margin: 20rpx auto 0;
- box-sizing: border-box;
- padding: 20rpx;
- padding-left: 24rpx;
- >view {
- margin-top: 20rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #333333;
- }
- .title {
- width: 520rpx;
- height: 40rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-top: 0;
- }
- /* 右上 */
- .r-t-state {
- position: absolute;
- width: 112rpx;
- height: 48rpx;
- border-radius: 8rpx;
- text-align: center;
- line-height: 48rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #FFFFFF;
- top: 0rpx;
- right: 20rpx;
- }
- .fff {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 1px solid #CCCCCC;
- box-sizing: border-box;
- }
- /* 右下 */
- .r-b-state {
- position: absolute;
- width: 112rpx;
- height: 48rpx;
- line-height: 44rpx;
- text-align: center;
- background: #FFFFFF;
- border-radius: 8rpx;
- border: 1px solid #CCCCCC;
- box-sizing: border-box;
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #666666;
- right: 20rpx;
- bottom: 20rpx;
- }
- }
|