123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /**app.wxss**/
- @import"iconfont.wxss";
- page{
- font-family:Arial, Helvetica, sans-serif;
- }
- .wid15{
- margin: 0px 30rpx;
- }
- .line{
- height: 4rpx;
- background: #dddddd;
- }
- .line2{
- height: 1rpx;
- background: #dddddd;
- }
- .line3{
- height: 1rpx;
- background: #dddddd;
- }
- /* 搜索 */
- .search-container{
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 10rpx 20rpx 10rpx 40rpx;
- box-sizing: border-box;
- background-color: rgb(240, 240, 240);
- margin: 30rpx;
- border-radius: 50rpx;
- position: relative;
- }
- .search-left{
- flex: 2;
- border-radius: 40rpx;
- padding-right: 40rpx;
- box-sizing: border-box;
- }
- .search-left input{
- display: inline-block;
- vertical-align: middle;
- width: calc(100% - 90rpx);
- height: 70rpx;
- }
- .search-right{
- background: none;
- width: 130rpx!important;
- height: 80rpx;
- padding: 0px!important;
- position: absolute;
- right: 0rpx;
- top: 7rpx;
- z-index: 99;
- }
- .search-right .img{
- width: 45rpx;
- height: 45rpx;
- padding: 10rpx 0;
- vertical-align: middle;
- }
- .icon-sousuo{
- font-size: 55rpx;
- color: rgb(206, 205, 205);
- }
- /* 列表 */
- .list_vi{
- margin: 40rpx 30rpx 20rpx 30rpx;
- }
- .list_vi .list_li{
- display: flex;
- flex-direction: row;
- height: 100rpx;
- line-height: 100rpx;
- padding-bottom: 10rpx;
- border-bottom: 1px solid #f3f3f3;
- }
- .list_vi .list_li:active{
- background: rgb(240, 240, 240);
- }
- .list_r{
- display: flex;
- flex-direction: column;
- }
- .list_li_c{
- display: flex;
- flex-direction: row;
- height: auto;
- line-height: auto;
- padding-top: 10rpx;
- }
- .list_vi .list_li1{
- display: flex;
- flex-direction: row;
- height: auto;
- line-height: 50rpx;
- }
- .list_vi .list_li2{
- display: flex;
- flex-direction: row;
- height: auto;
- line-height: 50rpx;
- padding-bottom: 10rpx;
- padding-left: 58rpx;
- }
- .list_vi .list_li2 text{
- font-size: 29rpx!important;
- color: #999!important;
- margin-right: 20rpx;
- }
- .list_vi .iconfont{
- margin-right: 20rpx;
- font-size: 40rpx;
- }
- .list_vi .list_li text{
- font-size: 34rpx;
- color: #181818;
- }
- .list_vi .icon-queding{
- color:rgb(13, 145, 13);
- }
- .list_vi .icon-yingjipingtai{
- color:rgb(230, 61, 19);
- }
- .list_vi .list_right{
- color:rgb(207, 207, 207);
- margin-left: auto;
- font-size: 40rpx;
- }
- /* 暂无数据 */
- .zwsj{
- font-size: 260rpx!important;
- display: flex;
- text-align: center;
- justify-content: center;
- color: rgb(206, 206, 206);
- margin: 200rpx auto 40rpx auto!important;
- }
- .zwsj_text{
- display: flex;
- text-align: center;
- justify-content: center;
- font-size:40rpx;
- color: #666;
- }
- /* 悬浮按钮 */
- .float_btn{
- bottom: 150rpx;
- right: 30rpx;
- border-radius: 50%;
- text-align: center;
- position: fixed;
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- background-color: #f94b0e;
- color: #fff;
- font-size: 36rpx;
- box-shadow: 5rpx 5rpx 10rpx rgb(153, 153, 153);
- }
- /* 悬浮按钮 */
- .float_btn2{
- bottom: 290rpx;
- right: 30rpx;
- border-radius: 50%;
- text-align: center;
- position: fixed;
- width: 100rpx;
- height: 100rpx;
- line-height: 100rpx;
- background-color: #fdcd2e;
- color: #fff;
- font-size: 36rpx;
- box-shadow: 5rpx 5rpx 10rpx rgb(153, 153, 153);
- }
- .float_btn:active{
- background-color: #f14405;
- }
- .float_btn2:active{
- background-color: #f1c120;
- }
|