123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- page {
- position: relative;
- background-color: #F7F7F7;
- }
- .shuangchaung .enptyStatus {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- padding: 30px 10px;
- }
- .shuangchaung .enptyStatus image {
- width: 120px;
- height: 150px;
- margin-top: 100px;
- }
- .shuangchaung .enptyStatus .words {
- color: #ffae21;
- font-size: 18px;
- padding-top: 18px;
- }
- .shuangchaung .search {
- background-color: #FFFFFF;
- padding: 8px 15px;
- display: flex;
- justify-items: center;
- justify-content: center;
- align-items: center;
- }
- .shuangchaung .search .search-button {
- padding: 0 10px;
- color: #D12727;
- font-size: 15px;
- text-align: center;
- }
- .shuangchaung .search .u-demo-block__content {
- flex: 1;
- }
- .shuangchaung .search .u-action {
- color: #D12727 !important;
- }
- .shuangchaung .item_wrap {
- padding: 15px;
- }
- .shuangchaung .item_wrap .item {
- background-color: #fff;
- opacity: 1;
- border-radius: 4px;
- padding: 16px 15px;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 10px;
- overflow: hidden;
- }
- .shuangchaung .item_wrap .item .right {
- width: 30%;
- flex-shrink: 0;
- border-left: 1px solid #eee;
- text-align: center;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .shuangchaung .item_wrap .item .right text {
- display: block;
- font-size: 12px;
- color: #999;
- }
- .shuangchaung .item_wrap .item .right .nums {
- display: inline-block;
- width: 70%;
- text-align: center;
- font-size: 20px;
- color: #D12727;
- padding-left: 5px;
- }
- .shuangchaung .item_wrap .item .right .detail {
- display: flex;
- align-items: center;
- justify-content: center;
- flex-shrink: 0;
- width: 25px;
- height: 25px;
- text-align: center;
- border-radius: 50%;
- border: 1px solid #eee;
- color: #999;
- font-size: 16px;
- }
- .shuangchaung .item_wrap .item .left {
- width: 70%;
- flex-shrink: 0;
- }
- .shuangchaung .item_wrap .item .left .center {
- flex-shrink: 0;
- }
- .shuangchaung .item_wrap .item .left .center .title {
- font-size: 16px;
- color: #333;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .shuangchaung .item_wrap .item .left .center .name {
- margin-top: 5px;
- font-size: 14px;
- color: #666;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .shuangchaung .item_wrap .item .left .center .name text {
- flex-shrink: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .shuangchaung .item_wrap .item .left .center .name text:first-child {
- width: calc(100% - 75px);
- }
- .shuangchaung .item_wrap .item .left .center .name .success {
- display: inline-block;
- color: #67C23A;
- background-color: rgba(103, 194, 58, 0.2);
- padding: 2px 5px;
- font-size: 12px;
- border-radius: 3px;
- margin-right: 15px;
- }
- .shuangchaung .item_wrap .item .left .center .name .wrang {
- display: inline-block;
- color: #F56C6C;
- background-color: rgba(245, 108, 108, 0.2);
- padding: 2px 5px;
- font-size: 12px;
- border-radius: 3px;
- margin-right: 15px;
- }
- .shuangchaung .item_wrap .item .left .center .name .wait {
- display: inline-block;
- color: #E6A23C;
- background-color: rgba(230, 162, 60, 0.2);
- padding: 2px 5px;
- font-size: 12px;
- border-radius: 3px;
- margin-right: 15px;
- }
|