123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- <template>
- <view class="specialQuestion">
- <view class="title">专项答题</view>
- <view class="subTitle">术业有专攻,道义有精论</view>
- <!-- 专项卡 -->
- <view class="cardBox" v-for="item in 6" :key="item">
- <view class="card_title">
- 专家:就地过年要讲科打发时间开工红包达康书记发哈VB可代发激发好吧v学,低风险区没必要倡导低风险区没必要倡导
- </view>
- <view class="time">
- 2023/05/30
- </view>
- <view class="config">
- <view class="points">
- +1积分
- </view>
- <!-- <view class="viewAnalysis">
- 查看解析
- </view> -->
- <view class="continueBtn">
- 继续答题
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #f9f9f9;
- height: 100%;
- }
- .specialQuestion {
- padding: 40rpx;
- .title {
- font-size: 60rpx;
- font-weight: 900;
- }
- .subTitle {
- margin-top: 20rpx;
- margin-bottom: 60rpx;
- color: #666;
- }
- .cardBox {
- height: 260rpx;
- background-color: #fff;
- padding: 30rpx;
- margin: 24rpx 0;
- box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.2);
- border-radius: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- .card_title {
- font-weight: 600;
- font-size: 30rpx;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .time {
- color: #999;
- }
- .config {
- display: flex;
- justify-content: space-between;
- align-items: center;
- font-size: 24rpx;
- .points{
- color: #f8592e;
- background-color: pink;
- padding: 10rpx 20rpx;
- border-radius: 10rpx;
- }
- .continueBtn{
- color: #fff;
- background-color: pink;
- padding: 10rpx 20rpx;
- border-radius: 10rpx;
- background: linear-gradient(to top, #f94c1b, #fc7b34)
- }
- }
- }
- }
- ;
- </style>
|