123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- /* pages/dynamic/post/post.wxss */
- @import "../../../../icon.wxss";
- .container {
- padding: 20rpx 25rpx;
- background-color: #fff;
- }
- .btn-area button {
- background-color: #ff5777;
- color: #fff;
- }
- .content {
- position: relative;
- }
- .content .area {
- width: 100%;
- margin-bottom: 20rpx;
- transition: all 500ms ease-in-out;
- }
- .currentWordNumber {
- position: absolute;
- bottom: 0;
- right: 0;
- color: #999;
- }
- .goods {
- position: relative;
- background: #f2f2f2;
- padding: 10rpx;
- align-items: center;
- margin-bottom: 20rpx;
- }
- .goods-cover {
- width: 80rpx;
- height: 80rpx;
- margin-right: 18rpx;
- }
- .goods-cover image {
- width: 80rpx;
- height: 80rpx;
- }
- .goods-name {
- overflow: hidden;
- padding-right: 22rpx;
- font-size: 24rpx;
- }
- .goods-name .goods-title {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .goods-name .goods-price {
- color: #ff5777;
- margin-top: 5rpx;
- font-weight: bold;
- }
- .menu-list {
- margin-bottom: 20rpx;
- }
- .menu-list .menu-icon {
- position: relative;
- display: inline-block;
- width: 120rpx;
- height: 60rpx;
- line-height: 60rpx;
- color: #666;
- font-size: 28rpx;
- text-align: center;
- border-radius: 30rpx;
- background-color: #f8f8f8;
- margin-right: 16rpx;
- }
- .menu-list .menu-icon image {
- width: 30rpx;
- height: 30rpx;
- vertical-align: text-bottom;
- }
- .menu-list .menu-icon text {
- vertical-align: middle;
- font-size: 28rpx;
- }
- .img {
- position: relative;
- display: inline-block;
- margin-right: 30rpx;
- }
- .img image {
- width: 200rpx;
- height: 200rpx;
- }
- .delete-btn {
- position: absolute;
- top: -15rpx;
- right: -15rpx;
- width: 40rpx;
- height: 40rpx;
- background: red;
- border-radius: 50%;
- text-align: center;
- line-height: 40rpx;
- color: #fff;
- font-size: 34rpx;
- }
- .goods_wrapper {
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- height: 100vh;
- transform: translate(-100%, -100%);
- background-color: #fff;
- overflow: hidden;
- transition: all 600ms linear;
- z-index: 999;
- }
- .goods_wrapper.visible {
- transform: translate(0, 0);
- }
- .guess_goods {
- padding: 10rpx 30rpx 60rpx;
- }
- .iwf .title {
- /* height: auto; */
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- /* text-overflow: ellipsis;
- white-space: nowrap; */
- }
- .p_price {
- color: #ff5777;
- }
- .scroll-wrapper {
- height: 100%;
- }
- .item-wrap {
- width: 48.5%;
- margin-bottom: 15rpx;
- }
- .img-wrap image {
- height: 325rpx;
- }
- .goods-tip {
- padding: 10rpx 30rpx;
- }
- .goods-tip-name {
- flex: 1;
- }
- .goods-tip-close {
- color: #ff5777;
- }
- .tips {
- clear: both;
- }
- .switch-btn {
- margin: 10rpx 0 30rpx;
- line-height: 30rpx;
- color: #666;
- }
- .checkbox text {
- vertical-align: middle;
- }
- .switch-btn .wx-checkbox-input{
- width: 30rpx;
- height: 30rpx;
- }
- .switch-btn .wx-checkbox-input.wx-checkbox-input-checked::before{
- font-size: 30rpx;
- }
|