123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- .header {
- background: #fff;
- padding: 24rpx;
- position: sticky;
- top: 0;
- }
- .search {
- background-color: #f1f1f1;
- border-radius: 10rpx;
- padding: 8rpx 10rpx;
- }
- .search input {
- background-color: #f1f1f1;
- font-size: 26rpx;
- }
- .search image {
- width: 30rpx;
- height: 30rpx;
- margin-left: 10rpx;
- }
- .li {
- background-color: #fff;
- }
- .img-left {
- margin: 0 28rpx;
- background-color: rgba(38, 162, 255, 0.1);
- padding: 10rpx;
- border-radius: 50%;
- width: 90rpx;
- height: 90rpx;
- text-align: center;
- box-sizing: border-box;
- }
- .img-tx {
- margin: 0 28rpx;
- }
- .img-left image {
- width: 50rpx;
- height: 50rpx;
- position: relative;
- top: 5rpx;
- }
- .img-right {
- width: 24rpx;
- height: 24rpx;
- margin-right: 28rpx;
- }
- .li-right {
- padding: 32rpx 0;
- }
- .logo {
- width: 100rpx;
- height: 100rpx;
- border-radius: 6rpx;
- margin-right: 20rpx;
- }
- .name {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- padding-right: 20rpx;
- font-size: 36rpx;
- }
- .title2 {
- font-size: 28rpx;
- padding: 20rpx 28rpx;
- }
- .shu {
- padding: 24rpx 28rpx;
- font-size: 28rpx;
- color: #26A2FF;
- padding-top: 0rpx;
- }
- .shu view:last-child {
- color: #ccc;
- }
- .footer {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(245, 247, 250, 1);
- padding: 10rpx;
- padding-bottom: 30rpx;
- /* border-top: 1px solid #f1f1f1; */
- }
- .footer .jin {
- border-radius: 6rpx;
- background: #fff;
- color: #F56C6C;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- border: 1px solid #F56C6C;
- margin-right: 28rpx
- }
- .footer .kai {
- border-radius: 6rpx;
- background: #26A2FF;
- color: #fff;
- height: 88rpx;
- text-align: center;
- line-height: 88rpx;
- border: 1px solid #26A2FF;
- }
- .tbImg {
- width: 50rpx;
- height: 50rpx;
- }
- .tbText {
- font-size: 24rpx;
- color: #26A2FF;
- }
- .userItem {
- padding: 14rpx 24rpx;
- border-bottom: 1px solid #f1f1f1;
- }
- .state {
- font-size: 24rpx;
- }
- .selectText{
- position: relative
- }
- .selectText::after {
- position: absolute;
- top:50%;
- right: -0.2rem;
- margin-top: -0.1rem;
- border-width: 0.06rem;
- border-style: solid;
- border-image: initial;
- border-color: transparent transparent rgb(192, 196, 204) rgb(192, 196, 204);
- transform: rotate(-45deg);
- opacity: 0.8;
- content: "";
- }
|