123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- page {
- background: #f8f8f8;
- }
- .maincolor {
- color: #2b9dff;
- }
- .mainbackcolcor {
- background: #2b9dff;
- }
- view {
- font-size: 28rpx;
- }
- .flexrow {
- display: flex;
- }
- .flex05 {
- flex: 0.5;
- }
- .flex1 {
- flex: 1;
- }
- .bottomborder {
- border-bottom: 1rpx solid #e6e6e6;
- }
- .placeholder {
- color: #c9c9c9;
- }
- .whitecover {
- position: fixed;
- z-index: 20;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: #fff;
- opacity: 0;
- }
- .blackcover {
- position: fixed;
- z-index: 20;
- left: 0;
- right: 0;
- top: 0;
- bottom: 0;
- background: #555;
- opacity: 0.8;
- }
- .title1 {
- text-align: center;
- font-size: 36rpx;
- font-weight: 800;
- }
- .title2 {
- font-size: 34rpx;
- font-weight: 600;
- }
- .title3 {
- color: #919191;
- }
- .titledl {
- margin-top: 30rpx;
- }
- .dztitle {
- font-size: 40rpx;
- line-height: 60rpx;
- margin-top: 20rpx;
- }
- .empty {
- height: 100rpx;
- }
- .vercenter {
- display: -webkit-flex;
- display: flex;
- -webkit-align-items: center;
- align-items: center;
- }
- .numbreak {
- word-wrap: break-word;
- word-break: break-all;
- }
- .navigator-arrow {
- padding-right: 30rpx;
- position: relative;
- }
- .navigator-arrow:after {
- content: " ";
- display: inline-block;
- height: 16rpx;
- width: 16rpx;
- border-width: 2rpx 2rpx 0 0;
- border-color: #888;
- border-style: solid;
- transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
- position: absolute;
- top: 50%;
- margin-top: -8rpx;
- }
- .navigator-arrow-down::after {
- transform: matrix(-0.71, 0.71, -0.71, -0.71, 0, 0) !important;
- margin-top: -10rpx !important;
- }
- .right {
- text-align: right;
- }
- .backcover {
- position: fixed;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- background: #555;
- opacity: 0.8;
- }
- .overflow {
- white-space: nowrap;
- text-overflow: ellipsis;
- -o-text-overflow: ellipsis;
- overflow: hidden;
- }
- .down-arrow {
- position: relative;
- }
- .down-arrow::after {
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #555;
- content: "";
- position: relative;
- top: 26rpx;
- width: 0;
- left: 10rpx;
- }
- .up-arrow {
- position: relative;
- }
- .up-arrow::after {
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #555;
- content: "";
- position: relative;
- bottom: 13px;
- width: 0;
- left: 10rpx;
- }
- .nodata {
- text-align: center;
- margin: 50rpx;
- }
- .sort {
- width: 40rpx;
- display: inline-block;
- position: relative;
- }
- .sort::before {
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-bottom: 5px solid #555;
- content: "";
- position: absolute;
- bottom: 13px;
- width: 0;
- left: 10rpx;
- }
- .sort::after {
- border-left: 5px solid transparent;
- border-right: 5px solid transparent;
- border-top: 5px solid #555;
- content: "";
- position: absolute;
- top: 26rpx;
- width: 0;
- left: 10rpx;
- }
- .redstar {
- color: red;
- }
|