123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /**app.wxss**/
- page {
- font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", 微软雅黑, Arial, sans-serif;
- background-color: #f7f7f7;
- }
- .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;
- }
- .f30 {
- font-size: 30rpx;
- }
- .ml8 {
- margin-left: 8rpx;
- }
- .ml16 {
- margin-left: 16rpx;
- }
- mr16 {
- margin-right: 16rpx;
- }
- .mt8 {
- margin-top: 8rpx;
- }
- .mt10 {
- margin-top: 10rpx;
- }
- .mt20 {
- margin-top: 20rpx;
- }
- .cola7 {
- color: #a7a7a7;
- }
- .col333 {
- color: #333;
- }
- .coleb4e4f {
- color: #EB4E4F
- }
- .col09BB07 {
- color: #09BB07
- }
- .colef524d {
- color: #ef524d;
- }
- .bacfff {
- background: #fff;
- }
- .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 #D9D9D9;
- color: #D9D9D9;
- -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 #D9D9D9;
- color: #D9D9D9;
- -webkit-transform-origin: 0 100%;
- transform-origin: 0 100%;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .flex_1px_d {
- position: relative;
- }
- .flex_1px_d::after {
- content: "";
- position: absolute;
- bottom: 0;
- right: 0;
- width: 720rpx;
- height: 2rpx;
- background: #d9d9d9;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- }
- .arrow_right {
- position: relative;
- }
- .arrow_right::after {
- position: absolute;
- content: " ";
- height: 14rpx;
- width: 14rpx;
- border-width: 2rpx 2rpx 0 0;
- border-color: #999999;
- border-style: solid;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- top: 50%;
- right: -15rpx;
- margin-top: -7rpx;
- }
- .back_top_btn {
- position: fixed;
- right: 50rpx;
- bottom: 50rpx;
- width: 106rpx;
- }
|