| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /**index.wxss**/
- .wrap_nr{
- padding-bottom: 48rpx;
- }
- .tips{
- width: 444rpx;
- height: 58rpx;
- margin: 20rpx auto 0;
- background: #F3F4F9;
- border-radius: 29rpx;
- font-size: 26rpx;
- color: rgba(0,0,0,.54);
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .sec_time{
- font-size: 26rpx;
- color: rgba(0,0,0,.54);
- text-align: center;
- margin-top: 40rpx;
- }
- .section {
- padding: 0 30rpx;
- }
- .section .item{
- display: flex;
- /* align-items: center; */
- margin-top: 48rpx;
- }
- /* .latest{
- margin-bottom: 48rpx;
- } */
- .section .item .icon{
- width: 90rpx;
- height: 90rpx;
- border-radius: 50%;
- }
- .section .item .item_wenzi{
- max-width: 427rpx;
- padding: 30rpx;
- font-size: 28rpx;
- color: rgba(255,255,255,.87);
- margin-left: 12rpx;
- background: #D54C43;
- border-radius: 0 15rpx 15rpx 15rpx;
- }
- .section.from_user .item{
- justify-content: flex-end;
- }
- .section.from_user .item .item_wenzi{
- background: #F3F4F9;
- border-radius: 15rpx 0rpx 15rpx 15rpx;
- margin-left: 0rpx;
- margin-right: 18rpx;
- color: rgba(0,0,0,.87);
- }
- .wrap_pub{
- width: 100%;
- padding: 0 30rpx 0;
- height: 160rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- background: #F6F6F6;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .wrap_pub .pub_l{
- width: 617rpx;
- border-radius: 35rpx;
- }
- .wrap_pub .icon_send{
- width: 42rpx;
- height: 42rpx;
- }
- .wrap_pub .van-cell{
- border-radius: 35rpx;
- height: 70rpx;
- padding: 0 20rpx !important;
- }
- .wrap_pub .van-field__body{
- height: 100%;
- }
|