1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- /* pages/zcmx/zcmx.wxss */
- .table_title {
- width: 70%;
- height: 100rpx;
- margin: 30rpx auto;
- text-align: center;
- line-height: 100rpx;
- color: #fff;
- /* background: rgb(182, 55, 55); */
- }
- .table_item {
- width: 95%;
- margin: 0 auto;
- }
- .col {
- width: 100%;
- height: 100rpx;
- /* text-align: center; */
- color: #666666;
- font-size: 20rpx;
- font-weight: bold;
- background: #DCF0FF;
- }
- .col_t {
- background: #2877E7;
- color: #fff;
- }
- .row_t {
- line-height: 100rpx;
- }
- .row {
- min-height: 80rpx;
- text-align: center;
- float: left;
- display:flex;
- text-align:center;
- align-items:center;
- justify-content:center;
- border-right: 1rpx #fff solid;
- display: -webkit-box;
- overflow: hidden;
- text-overflow: ellipsis;
- word-wrap: break-word;
- white-space: normal !important;
- -webkit-line-clamp: 3;
- -webkit-box-orient: vertical;
- }
- .orange {
- background-color: #FF842E;
- }
- .orange_d {
- background-color: #FFF4EB;
- }
- .page {
- width: 70%;
- height: 80rpx;
- margin: 25rpx auto;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .turning {
- width: 120rpx;
- height: 60rpx;
- line-height: 60rpx;
- /* background: #3B77E6; */
- color: #fff;
- text-align: center;
- float: left;
- border-radius: 20rpx;
- }
- .pagenum {
- margin: 0 40rpx;
- min-width: 50rpx;
- height: 60rpx;
- border: 1px #c9c9c9 solid;
- float: left;
- text-align: center;
- line-height: 60rpx;
- }
|