123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- /* pages/index/index.wxss */
- page {
- background: #fafafa;
- height: 100%;
- overflow: hidden;
- }
- .sp-tabs {
- position: fixed;
- height: 108rpx;
- width: 750rpx;
- top: 0;
- background: #fff;
- border-bottom: 1px solid #eee;
- z-index: 1000;
- }
- .sp-tabs text {
- display: inline-block;
- width: 250rpx;
- height: 104rpx;
- line-height: 104rpx;
- text-align: center;
- font-size: 30rpx;
- color: #999;
- }
- .sp-tabs text.active {
- color: #12c287;
- }
- .sp-tabs-line {
- position: absolute;
- width: 120rpx;
- height: 5rpx;
- bottom: -1rpx;
- background: #12c287;
- border-radius: 4rpx;
- }
- .sp-swiper {
- height: 100%;
- min-height: 100%;
- overflow: hidden;
- }
- .sp-swiper-item {
- overflow-x: hidden;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- }
- .sp-swiper-item::-webkit-scrollbar {
- display: none;
- }
- .sp-main {
- position: relative;
- min-height: 100%;
- overflow: hidden;
- }
- .sp-header-inner {
- width: 750rpx;
- height: 108rpx;
- }
- .sp-footer-inner {
- width: 750rpx;
- height: 140rpx;
- }
- .sp-footer {
- position: absolute;
- width: 750rpx;
- height: 140rpx;
- line-height: 140rpx;
- bottom: 0;
- text-align: center;
- }
- .sp-list-item {
- background: #fff;
- box-sizing: border-box;
- }
- .sp-list-item-hover {
- background: #fafafa;
- }
- .sp-list-item > image {
- width: 112rpx;
- height: 112rpx;
- margin: 30rpx;
- vertical-align: top;
- border-radius: 56rpx;
- }
- .sp-list-item > view {
- display: inline-block;
- width: 400rpx;
- margin: 41rpx 0;
- }
- .sp-list-item > view > text {
- display: block;
- line-height: 40rpx;
- }
- .sp-list-item > view > text.title {
- font-size: 34rpx;
- color: #333;
- }
- .sp-list-item > view > text.desc {
- margin: 10rpx 0 0;
- font-size: 28rpx;
- color: #999;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .sp-list-item > view > text.num {
- margin: 12rpx 0 0;
- font-size: 26rpx;
- color: #fe6d64;
- line-height: 36rpx;
- }
- .sp-list-item > button {
- display: inline-block;
- width: 108rpx;
- height: 64rpx;
- line-height: 60rpx;
- margin: 54rpx 0 0 40rpx;
- padding: 0;
- vertical-align: top;
- font-size: 28rpx;
- color: #12c287;
- border: 1px solid #12c287;
- border-radius: 8rpx;
- background: #fff;
- text-align: center;
- }
- .sp-list-item > button.button-hover {
- border: 1px solid #12c287;
- background: #12c287;
- color: #fff;
- }
- .sp-list-item > hr {
- display: block;
- width: 580rpx;
- margin-left: 170rpx;
- padding: 0;
- border-bottom: 1px solid #eee;
- }
- .sp-list-item > hr.hidden {
- display: none;
- }
- .sp-footer > hr {
- display: inline-block;
- width: 44rpx;
- height: 1rpx;
- margin: 72rpx 20rpx;
- background: #bbb;
- vertical-align: top;
- }
- .sp-footer > text {
- display: inline-block;
- font-size: 26rpx;
- color: #bbb;
- }
|