1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* pages/admin/index.wxss */
- .swiper {
- width: 750rpx;
- height: 100vh;
- }
- .swiper-item {
- width: 100%;
- height: 100%;
- position: relative;
- }
- .zp {
- width: 100%;
- height: 100%;
- }
- .jj {
- position: absolute;
- width: 100%;
- bottom: 0;
- height: 45vh;
- background-color: #00000090;
- color: #fff;
- font-size: 30rpx;
- padding: 20rpx;
- box-sizing: border-box;
- line-height: 1.5em;
- }
- .jj_content {
- text-indent: 2em;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 5;
- -webkit-box-orient: vertical;
- text-overflow: ellipsis;
- }
- .zuopin_gongju_tool {
- display: flex;
- }
- .zuopin_gongju_item {
- flex: 1;
- text-align: center;
- padding: 1em 0;
- }
- .zuopin_gongju_btn {
- color: #000;
- height: 64rpx;
- line-height: 64rpx;
- width: 6em;
- margin: 0 auto;
- border: 1px solid #eee;
- border-radius: 2em;
- background-color: #eee;
- }
- .zuopin_gongju_btn_err {
- background-color: #ee0a24;
- border-color: #ee0a24;
- color: #fff;
- }
|