123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .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%;
- }
- .main .two .tab {
- padding: 0 20rpx;
- margin: 20rpx 0 0 0;
- }
- .main .two .tab .list {
- /* border: 1px solid #ff0000; */
- margin: 0 0 15rpx 0;
- padding: 15rpx;
- border-radius: 15rpx;
- box-shadow: 0 0 5px #999;
- }
- .main .two .tab .list .mobile {
- font-size: 40rpx;
- font-weight: bold;
- color: #ff0000;
- }
- .main .two .tab .list .other {
- font-size: 35rpx;
- color: #666;
- }
- .main .two .tab .list .other view {
- margin: 10rpx 0 0 0;
- }
- .main .two .tab .list .other view text {
- color: #000;
- }
- .main .two .tab .list .btn {
- text-align: center;
- margin: 10rpx 0 0 0;
- }
|