123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- .main {
- float: left;
- width: 92%;
- margin: 40rpx 30rpx 0 30rpx;
- }
- .main .topTable {
- float: left;
- width: 100%;
- height: 118rpx;
- background: rgba(255, 255, 255, 1);
- box-shadow: 0px 2rpx 15rpx 0px rgba(233, 237, 244, 1);
- border-radius: 20rpx;
- z-index: 999;
- }
- .main .topTable view {
- float: left;
- width: 20%;
- font-size: 26rpx;
- text-align: center;
- margin: 35rpx 0 0 0;
- }
- /* .main .topTable view:last-child {
- margin: 20rpx 0 0 0;
- }
- .main .topTable view:last-child p {
- float: left;
- width: 100%;
- font-size: 26rpx;
- } */
- .main .mainList {
- float: left;
- width: 100%;
- position: relative;
- }
- .main .list {
- float: left;
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- border-bottom: 1px solid #ccc;
- }
- .main .list image {
- float: left;
- /* width: 107rpx; */
- width: 70rpx;
- height: 70rpx;
- margin: 10rpx 17rpx;
- }
- .main .list text {
- float: left;
- width: 19%;
- text-align: center;
- font-size: 26rpx;
- font-family: Source Han Sans SC;
- font-weight: 400;
- color: rgba(40, 40, 40, 1);
- }
- .main .list text:last-child {
- font-size: 23rpx;
- }
- .textOver {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .table {
- height: 200px;
- margin: 20% 30rpx 0 30rpx;
-
- }
- .tr {
- display: flex;
- width: 100%;
- justify-content: center;
- height: 3rem;
- align-items: center;
- border-bottom: 1rpx solid #ccc;
- }
- .td {
- width:20%;
- justify-content: center;
- text-align: center;
- font-size: 26rpx;
- }
- .tdColor{
- background-color: #e4f6ff;
- }
- /* .th:nth-child(2){
- width:25%;
- } */
- /* .td:nth-child(2){
- width:30%;
- }
- .td:nth-child(4){
- width:35%;
- } */
- .bg-w{
- /* background: snow; */
- box-shadow: 0px 2rpx 15rpx 0px rgba(233, 237, 244, 1);
- border-radius: 20rpx;
- height: 130rpx;
- }
- .bg-g{
- background: #E6F3F9;
- }
- .th {
- width: 20%;
- justify-content: center;
- display: flex;
- height: 3rem;
- align-items: center;
- font-size: 26rpx;
-
- }
|