123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- view {
- box-sizing: border-box;
- }
- ::v-deep .u-button{
- // background: red!important;
- width: 130rpx!important;
- height: 52rpx!important;
- background: #017AFF!important;
- box-shadow: 0rpx 4rpx 8rpx -4rpx #C2F4F6!important;
- border-radius: 26rpx!important;
- display: flex!important;
- justify-content: center!important;
- align-items: center!important;
-
- font-size: 26rpx!important;
- font-family: PingFang-SC, PingFang-SC!important;
- font-weight: 500!important;
- color: #FFFFFF!important;
- }
- ::v-deep .u-button__text{
- font-size: 26rpx!important;
- font-family: PingFang-SC, PingFang-SC!important;
- font-weight: 500!important;
- color: #FFFFFF!important;
- }
-
- .container {
- .navBox {
- display: flex;
- align-items: center;
- }
- .box {
- // min-height: 100vh;
- // background: linear-gradient(to right, #D2EEF1 0%, #DEE8F6 35%, #DEF4F5 100%);
- background: #0180FB;
- padding-top: 44rpx;
- .list {
- // width: 750rpx;
- min-height: 1424rpx;
- background: #FFFFFF;
- border-radius: 32rpx 32rpx 0rpx 0rpx;
- padding-top: 30rpx;
- overflow-y: scroll;
- .item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx 30rpx;
- .left {
- display: flex;
- flex-direction: column;
- // align-items: flex-start;
- // justify-content: start;
- .top {
- font-size: 28rpx;
- font-family: PingFangSC, PingFang SC;
- font-weight: 600;
- color: #000000;
-
- .icon {
- width: 26rpx;
- height: 26rpx;
- margin-right: 6rpx;
- }
- }
- .bot {
- font-size: 28rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #000000;
- margin-top: 24rpx;
- }
- }
- .right {
- display: flex;
- align-items: center;
- .btnBox {
- // width: 116rpx;
- width: 130rpx;
- height: 52rpx;
- background: #017AFF;
- box-shadow: 0rpx 4rpx 8rpx -4rpx #C2F4F6;
- border-radius: 26rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 26rpx;
- font-family: PingFang-SC, PingFang-SC;
- font-weight: 500;
- color: #FFFFFF;
- }
- .conBtn{
- // background: red;
- display: flex;
- align-items: center;
- justify-content: center;
- border: none;
- width: 130rpx;
- }
- }
- }
- }
- }
- }
|