123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /* pages/recordPages/pdjl/pdjl.wxss */
- .containers {
- width: 100%;
- height: 100vh;
- }
- .tips {
- padding: 0 32rpx;
- width: 100%;
- height: 140rpx;
- font-family: "苹方R";
- font-size: 60rpx;
- color: #FFFFFF;
- display: flex;
- align-items: center;
- background: #CCCCCC;
- }
- .tipsWarning {
- background: #FF9200;
- }
- .tipsSuccess {
- background: #02C3CA;
- }
- .numbers {
- margin-top: 60rpx;
- width: 100%;
- height: 140rpx;
- font-family: "苹方M";
- font-size: 100rpx;
- color: #333333;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .tip {
- width: 100%;
- font-family: "苹方R";
- font-size: 24rpx;
- color: #5BAFED;
- text-align: center;
- }
- .infosBox {
- padding: 30rpx 50rpx;
- margin: 60rpx 32rpx;
- width: calc(100% - 64rpx);
- background: #ffffff;
- border: 0.5px solid #dfdfdf;
- border-radius: 20rpx;
- box-shadow: 0px 2rpx 8rpx 0px rgba(0, 0, 0, 0.08);
- box-sizing: border-box;
- }
- .infosBox .item {
- padding: 15rpx 0;
- display: flex;
- align-items: flex-start;
- justify-content: space-between;
- }
- .infosBox .item .label {
- width: 170rpx;
- font-family: "苹方R";
- font-size: 28rpx;
- color: #8E8E8E;
- }
- .infosBox .item .value {
- width: 0;
- flex: 1;
- font-family: "苹方R";
- font-size: 28rpx;
- color: #333333;
- text-align: left;
- }
- .button {
- margin: 30rpx 32rpx;
- width: calc(100% - 64rpx);
- height: 80rpx;
- font-family: "苹方R";
- font-size: 36rpx;
- color: #ffffff;
- border-radius: 40rpx;
- background: #4686F6;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .button1 {
- margin: 60rpx 32rpx 0 32rpx;
- font-family: "苹方M";
- font-size: 46rpx;
- }
- .active {
- opacity: 0.6;
- }
|