123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- .page {
- padding-bottom: calc(var(--window-bottom) + 120rpx);
- box-sizing: border-box;
- min-height: 100vh;
- background: #f2f6f2;
- }
- .topbg {
- }
- .topBody {
- width: 750rpx;
- }
- .mainBody {
- width: 750rpx;
- padding: 1rpx 60rpx;
- z-index: 9;
- display: flex;
- flex-direction: column;
- border-bottom: solid 2rpx #F2F6F2;
- background: #fff;
- padding-top: calc(var(--status-bar-height) + 40rpx);
- padding-bottom: 10rpx;
- position: fixed;
- top: 0;
- left: 0;
- .tabs {
- display: flex;
- height: 100%;
- justify-content: space-between;
- align-items: center;
- width: 390rpx;
- .tab {
- position: relative;
- // width: 96rpx;
- height: 48rpx;
- font-size: 32rpx;
- font-family: "PingFang SC-Bold";
- color: #999;
- font-weight: 400;
- transition: all .5s;
- ::after {
- content: "";
- position: absolute;
- right: -15rpx;
- top: 0;
- width: 96rpx;
- height: 48rpx;
- background-image: url("../../static/me/wd_img_qiehuan.png");
- background-size: auto 100%;
- background-repeat: no-repeat;
- opacity: 0;
- }
- &.active {
- color: #1f1f1f;
- text{
- font-family: "PingFang SC-Bold";
- }
- ::after {
- opacity: 0.7;
- }
- }
- }
- }
- }
- .reserveASeat {
- width: 100%;
- height: calc(var(--status-bar-height) + 100rpx);
- }
- .list_info {
- width: 750rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- // background-color: #fff;
- padding: 0 32rpx;
- box-sizing: border-box;
- // position: absolute;
- // left: 50%;
- // top: 50%;
- // transform: translate(-50%, -50%);
- .item {
- // margin-top: 20rpx;
- color: #333;
- font-size: 28rpx;
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 690rpx;
- height: 200rpx;
- position: relative;
- left: 0;
- top: 0;
- .line{
- width: 100%;
- height: 2rpx;
- position: absolute;
- left:32rpx;
- bottom: 0;
- background: #F2F6F2;
- }
- .avator {
- width: 108rpx;
- height: 108rpx;
- margin-right: 20rpx;
- }
- .content {
- flex: 1;
- width: auto;
- padding: 0;
- margin-top: 0;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .tit {
- flex: 1;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: flex-start;
- margin-right: 20rpx;
- .name {
- font-size: 32rpx;
- font-family: "PingFang SC-Bold";
- font-weight: 400;
- }
- .time {
- font-size: 24rpx;
- color: #999;
- margin-top: 8rpx;
- max-width: 400rpx;
- }
- .desc {
- color: #1f1f1f;
- font-size: 28rpx;
- margin-top: 12rpx;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- }
- }
- .right-image {
- .right-image-icon {
- width: 36rpx;
- height: 36rpx;
- }
- .works-image {
- width: 92rpx;
- height: auto;
- border-radius: 12rpx;
- }
- }
- .thumbnail {
- width: 120rpx;
- height: 120rpx;
- border-radius: 12rpx;
- overflow: hidden;
- background: #fff;
- flex-shrink: 0;
- image {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- }
- }
- }
- .list_article {
- width: 750rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 0 28rpx;
- background: #f2f6f2;
- // position: absolute;
- // top: 50%;
- // left: 50%;
- // transform: translate(-50%, -50%);
- .item {
- margin-top: 20rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 690rpx;
- background: #f2f6f2;
- border-radius: 28rpx;
- padding-bottom: 30rpx;
- .thumbnail {
- width: 690rpx;
- height: 460rpx;
- border-radius: 28rpx 28rpx 0 0;
- overflow: hidden;
- image {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- }
- .title {
- width: 650rpx;
- margin-top: 30rpx;
- font-size: 32rpx;
- color: #333;
- line-height: 1.4;
- }
- .content {
- width: 650rpx;
- margin-top: 20rpx;
- font-size: 26rpx;
- color: #666;
- line-height: 1.6;
- }
- .divider {
- width: 650rpx;
- height: 2rpx;
- background: #eeeeee;
- margin-top: 30rpx;
- }
- .time {
- width: 650rpx;
- margin-top: 20rpx;
- font-size: 26rpx;
- color: #999;
- }
- }
- .items {
- width: 100%;
- .items-content {
- background: #ffffff;
- border-radius: 12rpx;
- }
- .dateAndTime {
- text-align: center;
- padding: 28rpx 0 16rpx 0;
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- font-family: "PingFang SC-Medium";
- }
- .items-content {
- > image {
- width: 100%;
- height: auto;
- }
- .title {
- padding: 16rpx 28rpx;
- }
- .content {
- padding: 0 28rpx;
- font-family: "PingFang SC-Medium";
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- display: -webkit-box;
- -webkit-line-clamp: 6;
- overflow: hidden;
- text-overflow: ellipsis;
- -webkit-box-orient: vertical;
- }
- .viewDetails {
- padding: 16rpx 28rpx;
- margin-top: 16rpx;
- font-family: "PingFang SC-Medium";
- font-weight: 400;
- font-size: 24rpx;
- color: #999999;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-top: 2rpx solid #f2f6f2;
- image {
- width: 28rpx;
- height: 28rpx;
- }
- }
- }
- }
- }
- .blankHeight {
- height: 300rpx;
- }
- .loading-more {
- width: 100%;
- height: 80rpx;
- text-align: center;
- color: #999;
- font-size: 24rpx;
- line-height: 80rpx;
- margin-bottom: 20rpx;
- }
- .noData {
- display: flex;
- flex-direction: column;
- align-items: center;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- .tips-title{
- padding: 20rpx 0;
- padding-bottom: 30rpx;
- }
- > view {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- image {
- width: 380rpx;
- height: 308rpx;
- }
- .tips-title {
- font-family: "PingFang SC-Bold";
- font-weight: 400;
- font-size: 28rpx;
- color: #1f1f1f;
- line-height: 1;
- }
- .tips-content {
- font-weight: 400;
- font-size: 24rpx;
- font-family: "PingFang SC-Medium";
- color: #999999;
- text-wrap: nowrap;
- }
- }
- .msg-card {
- display: flex;
- align-items: flex-start;
- background: #fff;
- border-radius: 18rpx;
- margin: 0 24rpx 24rpx 24rpx;
- padding: 20rpx;
- position: relative;
- box-shadow: 0 2rpx 8rpx rgba(0,0,0,0.04);
- .avatar {
- width: 72rpx;
- height: 72rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- flex-shrink: 0;
- }
- .msg-main {
- flex: 1;
- .msg-header {
- display: flex;
- align-items: center;
- margin-bottom: 8rpx;
- .nickname {
- font-size: 28rpx;
- color: #222;
- font-weight: bold;
- margin-right: 12rpx;
- }
- .tag {
- font-size: 20rpx;
- color: #acf934;
- background: #1f1f1f;
- border-radius: 8rpx;
- padding: 2rpx 12rpx;
- margin-right: 12rpx;
- }
- .time {
- margin-left: auto;
- color: #bdbdbd;
- font-size: 24rpx;
- }
- }
- .msg-content {
- font-size: 24rpx;
- color: #666;
- }
- }
- .red-dot {
- position: absolute;
- right: 24rpx;
- bottom: 24rpx;
- width: 32rpx;
- height: 32rpx;
- background: #ff3b30;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 22rpx;
- color: #fff;
- line-height: 0;
- }
- &.selected {
- box-shadow: 0 4rpx 16rpx rgba(172,249,52,0.15);
- border: 2rpx solid #acf934;
- }
- }
|