123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- /* pointExchange/index.wxss */
- .top-bg{
- width: 770rpx;
- height: 404rpx;
- background-position: bottom;
- background-size: 100%,100%;
- margin-left: -20rpx;
- background-repeat: no-repeat;
- }
- .title-box{
- width: 80%;
- height: 38px;
- }
- .title-box .left{
- display: inline-block;
- vertical-align: middle;
- width: 50%;
- color: white;
- font-size: 30rpx;
- padding-left: 30rpx;
- }
- .title-box .right{
- display: inline-block;
- vertical-align: middle;
- width: 30%;
- color: white;
- line-height: 38px;
- }
- .title-box .left image{
- width: 40rpx;
- }
- .point{
- font-size: 80rpx;
- font-weight: 700;
- text-align: center;
- color: #ffffff;
- margin-bottom: 12rpx;
- }
- .tip{
- font-size: 32rpx;
- font-weight: 400;
- text-align: center;
- color: #ffffff;
- margin-bottom: 38rpx;
- }
- .content{
- width: 100%;
- box-sizing: border-box;
- padding: 0 30rpx;
- position: absolute;
- top: 355rpx;
- left: 0;
- }
- .tool-box{
- height: 179rpx;
- width: 100%;
- background: #ffffff;
- border-radius: 10rpx;
- display: flex;
- justify-content: space-around;
- align-items: center;
- }
- .tool{
- font-size: 34rpx;
- font-weight: 400;
- text-align: center;
- color: #1a1a1a;
- }
- .tool image{
- width: 61rpx;
- height: 61rpx;
- margin-bottom: 14rpx;
- }
- .namewrap {
- position: relative;
- padding-top: 20rpx;
- }
- .namewrap .nameitem {
- display: inline-block;
- font-size: 30rpx;
- font-weight: 600;
- text-align: left;
- color: #666666;
- margin-right: 43rpx;
- position: relative;
- height: 80rpx;
- }
- .namewrap .nameactive {
- font-size: 34rpx;
- font-weight: 700;
- text-align: left;
- color: #1a1a1a;
- }
- .item-box {
- width: 100%;
- white-space: nowrap;
- overflow-x: auto;
- }
- .card{
- position: relative;
- width: 100%;
- background: #ffffff;
- border-radius: 20px;
- padding: 22rpx 20rpx;
- box-sizing: border-box;
- }
- .card .head{
- display: inline-block;
- vertical-align: middle;
- width: 206rpx;
- height: 206rpx;
- border-radius: 20rpx;
- background: #f6f6f6;
- margin-right: 28rpx;
- }
- .card .right{
- display: inline-block;
- vertical-align: top;
- width: calc(100% - 206rpx - 40rpx - 48rpx);
- }
- .card .right .title{
- font-size: 34rpx;
- font-weight: 400;
- color: #292929;
- margin-bottom: 16rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .card .right .tip{
- font-size: 28rpx;
- font-weight: 400;
- color: #999999;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- text-align: left;
- margin-bottom: 16rpx;
- }
- .card .right .addr{
- width: 200rpx;
- font-size: 28rpx;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- margin-bottom: 14rpx;
- }
- .card .right .sub{
- display: inline-block;
- vertical-align: top;
- font-size: 28rpx;
- font-weight: 400;
- text-align: left;
- color: #999999;
- }
- .sub .red{
- color: #FF0000;
- font-weight: 500;
- text-align: left;
- }
- .right .btn{
- position: absolute;
- bottom: 20rpx;
- right: 20rpx;
- font-size: 32rpx;
- line-height: 60rpx;
- background: #9ddb52;
- color: white;
- border: 2px solid #ffffff;
- border-radius: 32rpx;
- text-align: center;
- }
- .nodata-img{
- margin-top: 150rpx;
- }
- .top-tip{
- font-size: 34rpx;
- font-weight: 400;
- color: #333333;
- margin-bottom: 7rpx;
- text-align: center;
- }
- .bottom-tip{
- font-size: 30rpx;
- font-weight: 400;
- text-align: center;
- color: #999999;
- text-align: center;
- }
- .success-icon{
- display: block;
- width: 57rpx;
- height: 57rpx;
- margin: 0 auto 27rpx auto;
- }
|