123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* pages/home/components/topic/topic.wxss */
- @import "../../../../app.wxss";
- .topic {
- width: 750rpx;
- }
- .topTable {
- display: flex;
- margin-bottom: 10px;
- }
- .topTable .topicTable {
- flex: 1;
- white-space: nowrap;
- }
- .topTable .topicTable .topicItem {
- padding: 5px 0 5px 5px;
- }
- .topic .itemView {
- padding: 5px 10px
- }
- .topic .pKvm {
- text-align: right;
- margin-right: 10px;
- margin-top: -20px;
- }
- .topic .kvm {
- display: inline-block;
- width: 3.5em;
- color: #fff;
- background-color: #1989fa;
- height: 3.5em;
- border-radius: 50%;
- text-align: center;
- box-shadow: 0 0 7px #1989fa;
- margin-left: 5rpx;
- }
- .topic .kvmText {
- padding-top: 0.7em;
- width: 2em;
- margin: 0 auto;
- line-height: 1.1em;
- color: #bfcbd9;
- font-weight: 400;
- }
- .show {
- display: inline-block;
- /* border: 1rpx solid #e2dd52;
- color: #e2dd52; */
- border: 1rpx solid #1989fa;
- color: #1989fa;
- width: var(--tips-btn);
- height: var(--tips-btn);
- line-height: var(--tips-btn);
- font-size: 12px;
- text-align: center;
- border-radius: 50%;
- }
- .self_toptips {
- background-color: rgba(0, 0, 0, .3);
- }
- .modolBg {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- z-index: 1;
- background-color: rgba(0, 0, 0, .5);
- }
- .local_dialog {
- top: 50%;
- left: 50%;
- width: 600rpx;
- position: absolute;
- border-radius: 1em;
- background-color: #eee;
- transform: translate(-50%, -50%);
- }
- .local_dialog_title {
- position: relative;
- text-align: right;
- padding: 8px 15px;
- margin-bottom: 1rpx;
- line-height: 1.5em;
- }
- .local_dialog_close {
- float: right;
- position: relative;
- width: 1.5em;
- height: 1.5em;
- }
- .local_dialog_title .title {
- font-size: 16px;
- height: 25px;
- white-space: pre-wrap;
- text-align: center;
- line-height: 25px;
- color: #121212;
- text-align: center;
- }
- .local_dialog_close_left,
- .local_dialog_close_right {
- position: absolute;
- width: 100%;
- height: 1rpx;
- background-color: #121212;
- top: 50%;
- transform: rotate(45deg);
- }
- .local_dialog_close_right {
- transform: rotate(135deg);
- }
- .local_dialog_body {
- max-height: 60vh;
- overflow-y: scroll;
- padding: 8px 15px 15px 15px;
- white-space: normal;
- line-height: 2em;
- font-size: 14px;
- color: #222;
- }
|