123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /**app.wxss**/
- body {
- font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
- }
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 200rpx 0;
- box-sizing: border-box;
- }
- .flex_center {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .abs_img {
- position: absolute;
- width: 100%;
- height: 100%;
- left: 0;
- top: 0;
- }
- .pos_rel {
- position: relative;
- }
- .one_line_hidden {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- }
- .padLR30 {
- padding-left: 30px;
- padding-right: 30px;
- }
- .f0 {
- font-size: 0;
- }
- .f24 {
- font-size: 24rpx;
- }
- .f28 {
- font-size: 28rpx;
- }
- .col333 {
- color: #333;
- }
- .colef524d {
- color: #ef524d;
- }
- .f_left {
- float: left;
- }
- .f_right {
- float: right;
- }
- .vux-1px-b {
- position: relative;
- }
- .vux-1px-b::after {
- content: " ";
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #c7c7c7;
- color: #c7c7c7;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .comment-1px-b::after {
- content: " ";
- position: absolute;
- left: 24rpx;
- bottom: 0;
- right: 0;
- height: 1px;
- border-bottom: 1px solid #c7c7c7;
- color: #c7c7c7;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
|