12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /* pages/kabaw/viplist.wxss */
- page{
- background: #e3e3e3;
- }
- .main{
- width: 80vw;
- height: auto;
- margin: 5vw 10vw;
- }
- .main .cardlist{
- width:80vw;
- height: auto;
- }
- .cardlist .cardbox{
- width: 100%;
- height: 165px;
- margin-top: 20px;
- border-bottom: 1px solid #eee;
- }
- .cardbox .name{
- width: 100%;
- height: 50px;
- line-height: 50px;
- font-size: 20px;
- font-weight: 500;
- }
- .cardbox .cardimg{
- width: 100%;
- height: 100px;
- position: relative;
- }
- .cardimg .bg{
- width: 100%;
- height: 100px;
- background: #bbb;
- border-radius: 5px;
- }
- .cardimg .title{
- width: 100%;
- height: 40px;
- line-height: 40px;
- text-indent: 20px;
- position: absolute;
- font-size: 22px;
- font-weight: 500;
- top: 20px;
- left: 0;
- color: #fff;
- }
- .cardimg .txt{
- width: 100%;
- height: 20px;
- line-height: 20px;
- text-indent: 20px;
- position: absolute;
- bottom: 20px;
- font-size: 16px;
- left: 0;
- color: #fff;
- }
- .main .more{
- width: 80vw;
- height: 40px;
- display: flex;
- justify-content: center;
- background: #fff;
- /* border: 1px solid #bbb; */
- margin-top: 20px;
- background:rgba(15,40,98,1);
- border-radius: 40px;
- }
- .more .moreimg{
- width: 20px;
- height: 20px;
- margin: 10px 15px;
- }
- .more view{
- width: auto;
- height: 40px;
- line-height: 40px;
- /* font-weight: 550; */
- color: #fff;
- }
- .main .nolist{
- width: 100%;
- height: 50px;
- line-height: 50px;
- text-align: center;
- }
|