123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- .main {
- float: left;
- width: 100%;
- height: 100%;
- background-color: #f6f6f6;
- }
- .main .one {
- position: fixed;
- z-index: 9999;
- width: 100%;
- height: 80rpx;
- line-height: 80rpx;
- background-color: #409eff;
- color: #ffffff;
- text-align: center;
- }
- .main .two {
- position: absolute;
- top: 80rpx;
- width: 100%;
- background-color: #f6f6f6;
- }
- .main .two .top {
- float: left;
- width: 94%;
- height: 50rpx;
- line-height: 50rpx;
- padding: 20rpx;
- background-color: #ffffff;
- }
- .main .two .top .topView {
- float: left;
- width: 50%;
- }
- .main .two .top .topView:nth-child(2) {
- text-align: right;
- }
- .van-icon {
- top: 3px;
- }
- .main .two .down {
- float: left;
- width: 100%;
- }
- .main .two .down .downTxt {
- float: left;
- width: 100%;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- }
- .main .two .down .downTable {
- float: left;
- width: 100%;
- background-color: #ffffff;
- }
- .main .two .down .downTable .th {
- float: left;
- width: 100%;
- }
- .main .two .down .downTable .th text {
- float: left;
- width: 25%;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 28rpx;
- border-top: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- .main .two .down .downTable .th text:last-child {
- width: 24%;
- border-right: none;
- }
- .main .two .down .downTable .td {
- float: left;
- width: 100%;
- border-bottom: 1px solid #ccc;
- }
- .main .two .down .downTable .td .list {
- float: left;
- width: 100%;
- }
- .main .two .down .downTable .td .list text {
- float: left;
- width: 25%;
- text-align: center;
- height: 80rpx;
- line-height: 80rpx;
- font-size: 28rpx;
- border-top: 1px solid #ccc;
- border-right: 1px solid #ccc;
- }
- .main .two .down .downTable .td .list text:last-child {
- width: 24%;
- border-right: none;
- }
|