123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- /* pages/cardList/cardList.wxss */
- .card-view {
- position: relative;
- width: 700rpx;
- height: 300rpx;
- margin: 20rpx auto;
- }
- .bg-img {
- position: absolute;
- width: 700rpx;
- height: 300rpx;
- border-radius: 50rpx;
- }
- .card-detail {
- color: #FFF;
- width: 700rpx;
- height: 300rpx;
- position: absolute;
- top: 0;
- z-index: 2;
- display: flex;
- flex-wrap: wrap;
- }
- .schoolName {
- font-size: 24rpx;
- width: 100%;
- margin-bottom: 20rpx;
- line-height: 40rpx;
- height: 40rpx;
- text-align: center;
- border-bottom: 1px dashed #999;
- padding: 10rpx 0;
- color: #CCC;
- }
- .phone-view {
- font-size: 24rpx;
- text-align: center;
- }
- .callPhone-font {
- color: blue;
- }
- .card-other {
- position: relative;
- top: -50rpx;
- text-indent: 30rpx;
- height: 60rpx;
- width: 70%;
- font-size: 32rpx;
- }
- .toUse {
- width: 30%;
- text-align: center;
- position: relative;
- top: -30rpx;
- height: 50rpx;
- left: 20rpx;
- }
- .toUse view {
- border: 1px solid #FFF;
- width: 150rpx;
- height: 50rpx;
- line-height: 50rpx;
- border-radius: 150rpx;
- font-size: 28rpx;
- }
- .cardNum {
- line-height: 60rpx;
- font-size: 28rpx;
- }
- .card-scan {
- display: flex;
- font-size: 24rpx;
- margin-top: 10rpx;
- }
- .bottom-view {
- font-size: 24rpx;
- width: 100%;
- text-align: center;
- position: absolute;
- bottom: 10rpx;
- border-top: 1px dashed #999;
- padding: 10rpx 0;
- color: #CCC;
- }
- .loading-view {
- height: 200rpx;
- line-height: 100rpx;
- /* background: #f1f1f1; */
- color: #999;
- text-align: center;
- }
- .tip-view {
- position: fixed;
- top: 0;
- line-height: 60rpx;
- width: 100%;
- background: #FFF;
- height: 60rpx;
- z-index: 99;
- }
- /* .card-list{
- padding-top: 60rpx;
- } */
- .title-box-view {
- display: flex;
- width: 750rpx;
- height: 80rpx;
- line-height: 80rpx;
- position: relative;
- background: #FFF;
- padding-bottom: 20rpx;
- }
- .title-box-view view {
- width: 50%;
- font-size: 32rpx;
- text-align: center;
- }
- .curTitle {
- /* color: #EC3A4E; */
- color: #cc6031;
- }
- .title-line {
- width: 64rpx;
- height: 4rpx;
- /* background: #EC3A4E; */
- background: #cc6031;
- position: absolute;
- margin-left: -32rpx;
- margin-top: -20rpx;
- }
- .piano-box {
- width: 700rpx;
- margin: 25rpx;
- box-shadow: 0 0 10rpx #eee;
- background: #FFF;
- border-radius: 10rpx;
- }
- .piano-title {
- font-size: 32rpx;
- height: 80rpx;
- line-height: 80rpx;
- width: 650rpx;
- margin: 0 25rpx;
- }
- .piano-line {
- width: 100%;
- height: 6rpx;
- background: #f1f1f1;
- margin-bottom: 20rpx;
- }
- .piano-msg {
- width: 650rpx;
- margin: 0 25rpx;
- display: flex;
- height: 240rpx;
- margin-bottom: 40rpx;
- }
- .piano-img {
- width: 240rpx;
- height: 180rpx;
- margin-right: 20rpx;
- }
- .piano-img image {
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- .piano-detail view {
- height: 40rpx;
- margin-bottom: 8rpx;
- color: #666;
- }
- .piano-btn-view {
- position: relative;
- width: 100%;
- height: 60rpx;
- }
- .piano-btn {
- width: 200rpx;
- height: 60rpx;
- line-height: 60rpx;
- text-align: center;
- border: 1px solid #ccc;
- border-radius: 50rpx;
- position: absolute;
- top: -20rpx;
- right: 25rpx;
- }
- page {
- background: #F9F9F9;
- }
|