| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /**index.wxss**/
- page{
- background: #F1F1F1;
- padding: 30rpx 30rpx 0;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- }
- .search{
- position: relative;
- }
- input{
- display: block;
- height: 70rpx;
- background: #fff;
- border-radius: 10rpx;
- width: 100%;
- padding: 0 16rpx;
- }
- input::placeholder{
- color: #CCCCCC;
- }
- .search image{
- width: 35rpx;
- position: absolute;
- right: 16rpx;
- top: 0;
- bottom: 0;
- margin: auto;
- }
- swiper{
- margin: 20rpx 0;
- width: 100%;
- box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.08);
- height: 240rpx;
- }
- swiper-item{
- border-radius: 20rpx;
- /* border: 1px solid red; */
- overflow: hidden;
-
- }
- swiper-item image{
- width: 100%;
- height: 100%;
- }
- .wx-swiper-dots{position:relative;left: unset!important;right: 0;}
- .wx-swiper-dots.wx-swiper-dots-horizontal{
- /* margin-bottom: rpx; */
- }
- .swiper-item{
- position: absolute;
- z-index: 9;
- bottom: 15rpx;
- left: 0;
- color: #fff;
- background: #1934FD;
- opacity: 0.37;
- line-height: 58rpx;
- padding: 0 30rpx;
- }
- .tab{
- display: flex;
- justify-content: space-between;
- }
- .tab .active{
- color: #3780CD;
- }
- .content{
- background: #fff;
- border-radius: 20rpx;
- padding: 20rpx 25rpx;
- margin: 20rpx 0 0;
- position: relative;
- height: 60vh;
- overflow: auto;
- }
- .zm{
- position: fixed;
-
-
- right: 12rpx;
- top: 480rpx;
- bottom:40rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- /* line-height: 12px; */
- text-align: center;
- z-index: 999;
- }
- .zm view{
- color: #3780CD;
- font-size: 20rpx;
- line-height: 12px;
- /* border: 1px solid red; */
- /* width: 60rpx; */
- }
- .tt{
- margin-bottom: 20rpx;
- }
- .list{
- box-shadow: 0px 2rpx 9rpx 0px rgba(0, 0, 0, 0.08);
- border-radius: 20rpx;
- display: flex;
- padding: 20rpx;
- margin-bottom: 30rpx;
- }
- .list image{
- width: 20%;
- }
- .list>view{
- width: 80%;
- padding-left: 20rpx;
- }
- .list .title{
- margin-bottom: 30rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- .list text{
- color: #999;
- display: block;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- @media(max-height:667px){
- .zm{
- top: 425rpx;
- }
- }
- .hint_bok{
- position:fixed;
- top:50%;
- left:50%;
- transform:translate(-50%,-50%);
- background:rgba(0,0,0,.5);
- color:#fff;
- width:100rpx;
- border-radius:10rpx;
- text-align:center;
- padding:15rpx 0;
- font-size:54rpx;
- }
- .nav{
- position: fixed;
- top: 425rpx;
- right: 0;
- width:30rpx;
- z-index:1;
- }
- .nav.touchmove{
- background:#ddd;
- }
- .nav view{
- font-size: 20rpx;
- color: #666;
- text-align: center;
- line-height: 26rpx;
- }
|