|
|
@@ -1,310 +1,322 @@
|
|
|
<template>
|
|
|
<view>
|
|
|
-
|
|
|
<view style="z-index: 999;">
|
|
|
- <u-navbar title="中正云学堂" :is-back="false">
|
|
|
- <view class="slot-wrap">
|
|
|
- <image src="/static/search.png" class="search" @click="jumpSearch"></image>
|
|
|
-
|
|
|
- </view>
|
|
|
+ <u-navbar title="中正云学堂" :is-back="false">
|
|
|
+ <view class="slot-wrap"><image src="/static/search.png" class="search" @click="jumpSearch"></image></view>
|
|
|
</u-navbar>
|
|
|
</view>
|
|
|
- <scroll-view scroll-y="true" @scroll="scroll" :style="'height: '+windowHeight+'px;'" >
|
|
|
- <view class="box">
|
|
|
- <view class="my_swiper">
|
|
|
- <u-swiper :list="list" height="330" border-radius="25" mode="none"></u-swiper>
|
|
|
- </view>
|
|
|
- <!-- 日历-->
|
|
|
- <view class="calendar_card">
|
|
|
- <view class="card_box">
|
|
|
+ <scroll-view scroll-y="true" @scroll="scroll" :style="'height: ' + windowHeight + 'px;'" @scrolltolower="scrollTolower">
|
|
|
+ <view class="box">
|
|
|
+ <view class="my_swiper"><u-swiper :list="list" height="330" border-radius="25" mode="none"></u-swiper></view>
|
|
|
+ <!-- 日历-->
|
|
|
+ <view class="calendar_card">
|
|
|
+ <view class="card_box">
|
|
|
+ <u-row gutter="16">
|
|
|
+ <u-col span="11">
|
|
|
+ <view>
|
|
|
+ <text class="t1">距离</text>
|
|
|
+ <text class="t2">二级建造师</text>
|
|
|
+ <text class="t1">考试</text>
|
|
|
+ <text class="t3">365</text>
|
|
|
+ <text class="t1">天,继续加油哦!</text>
|
|
|
+ </view>
|
|
|
+ </u-col>
|
|
|
+ <u-col span="1">
|
|
|
+ <view @click="jumpPlan"><image src="/static/more.png" class="img_more"></image></view>
|
|
|
+ </u-col>
|
|
|
+ </u-row>
|
|
|
+ </view>
|
|
|
+ <u-line color="#EEEEEE" />
|
|
|
+ <view style="width: 100%;display: flex;justify-content:center;margin-top: 20rpx;">
|
|
|
+ <view v-for="(item, index) in date" :key="index" class="card_date">{{ item }}</view>
|
|
|
+ </view>
|
|
|
+ <view style="width: 100%;display: flex;justify-content:center;margin-top: 40rpx;">
|
|
|
+ <view v-for="(item, index) in date_num" :key="index" class="date_num">{{ item }}</view>
|
|
|
+ </view>
|
|
|
+ <view style="width: 100%;margin-top: 20rpx;">
|
|
|
+ <u-row gutter="16">
|
|
|
+ <u-col span="2" text-align="center">
|
|
|
+ <view><image src="/static/left.png" class="arr-icon"></image></view>
|
|
|
+ </u-col>
|
|
|
+ <u-col span="8" text-align="center"><view class="course_title">二级建造师市政公用工程</view></u-col>
|
|
|
+ <u-col span="2" text-align="center">
|
|
|
+ <view><image src="/static/right.png" class="arr-icon"></image></view>
|
|
|
+ </u-col>
|
|
|
+ </u-row>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <!-- 筛选-->
|
|
|
+ <view style="margin-top: 20rpx;">
|
|
|
<u-row gutter="16">
|
|
|
- <u-col span="11">
|
|
|
- <view >
|
|
|
- <text class="t1">距离</text>
|
|
|
- <text class="t2">二级建造师</text>
|
|
|
- <text class="t1">考试</text>
|
|
|
- <text class="t3">365</text>
|
|
|
- <text class="t1">天,继续加油哦!</text>
|
|
|
- </view>
|
|
|
- </u-col>
|
|
|
<u-col span="1">
|
|
|
- <view @click="jumpPlan">
|
|
|
- <image src="/static/more.png" class="img_more"></image>
|
|
|
- </view>
|
|
|
+ <view style="padding: 5rpx;"><image src="/static/select.png" class="arr-icon" @click="show = true"></image></view>
|
|
|
</u-col>
|
|
|
- </u-row>
|
|
|
- </view>
|
|
|
- <u-line color="#EEEEEE" />
|
|
|
- <view style="width: 100%;display: flex;justify-content:center;margin-top: 20rpx;">
|
|
|
- <view v-for="(item,index) in date" :key="index" class="card_date">{{item}}</view>
|
|
|
- </view>
|
|
|
- <view style="width: 100%;display: flex;justify-content:center;margin-top: 40rpx;">
|
|
|
- <view v-for="(item,index) in date_num" :key="index" class="date_num">{{item}}</view>
|
|
|
- </view>
|
|
|
- <view style="width: 100%;margin-top: 20rpx;">
|
|
|
- <u-row gutter="16">
|
|
|
- <u-col span="2" text-align="center">
|
|
|
+ <u-col span="11">
|
|
|
<view>
|
|
|
- <image src="/static/left.png" class="arr-icon"></image>
|
|
|
- </view>
|
|
|
- </u-col>
|
|
|
- <u-col span="8" text-align="center">
|
|
|
- <view class="course_title">二级建造师市政公用工程</view>
|
|
|
- </u-col>
|
|
|
- <u-col span="2" text-align="center">
|
|
|
- <view >
|
|
|
- <image src="/static/right.png" class="arr-icon"></image>
|
|
|
+ <u-subsection
|
|
|
+ @change="sectionChange"
|
|
|
+ height="54"
|
|
|
+ button-color="#2F4379"
|
|
|
+ bg-color="#F8F9FF"
|
|
|
+ active-color="#FFFFFF"
|
|
|
+ inactive-color="#636A75"
|
|
|
+ :list="tab_list"
|
|
|
+ :current="current"
|
|
|
+ ></u-subsection>
|
|
|
</view>
|
|
|
</u-col>
|
|
|
</u-row>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <!-- 筛选-->
|
|
|
- <view style="margin-top: 20rpx;">
|
|
|
- <u-row gutter="16">
|
|
|
- <u-col span="1" >
|
|
|
- <view style="padding: 5rpx;">
|
|
|
- <image src="/static/select.png" class="arr-icon" @click="show = true"></image>
|
|
|
- </view>
|
|
|
- </u-col>
|
|
|
- <u-col span="11" >
|
|
|
- <view>
|
|
|
- <u-subsection @change="sectionChange" height="54" button-color="#2F4379" bg-color="#F8F9FF" active-color="#FFFFFF" inactive-color="#636A75" :list="tab_list" :current="current"></u-subsection>
|
|
|
- </view>
|
|
|
- </u-col>
|
|
|
- </u-row>
|
|
|
- </view>
|
|
|
- <!-- 列表-->
|
|
|
- <view>
|
|
|
- <view @click="jumpDetail" class="list_box" v-for="(item,index) in list1" :key="index">
|
|
|
- <image src="/static/banner.png" class="list_img"></image>
|
|
|
- <view class="list_content">
|
|
|
- <view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
|
- <view class="list_title">二级建造师建筑工程(全科)</view>
|
|
|
- <view class="old_price">原价:¥599</view>
|
|
|
- <view class="price">现价:¥0</view>
|
|
|
+ <!-- 列表-->
|
|
|
+ <view>
|
|
|
+ <view @click="jumpDetail" class="list_box" v-for="(item, index) in list1" :key="index">
|
|
|
+ <image src="http://192.168.0.222:8080/img/banner1.png" class="list_img"></image>
|
|
|
+ <view class="list_content">
|
|
|
+ <view style="margin-left: 280rpx;margin-top: 10rpx;">
|
|
|
+ <view class="list_title">{{item.courseName}}</view>
|
|
|
+ <view class="old_price">原价:¥{{item.price}}</view>
|
|
|
+ <view class="price">现价:¥{{item.price}}</view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <u-popup v-model="show">
|
|
|
- <view style="width: 600rpx">
|
|
|
- <view class="popup_t1">
|
|
|
- 选择你需要的
|
|
|
- </view>
|
|
|
+ <view v-if="showStatus" style="text-align: center;margin-top: 24rpx;">
|
|
|
+ 到底啦~
|
|
|
</view>
|
|
|
- </u-popup>
|
|
|
- </view>
|
|
|
- </scroll-view>
|
|
|
+ <u-popup v-model="show">
|
|
|
+ <view style="width: 600rpx"><view class="popup_t1">选择你需要的</view></view>
|
|
|
+ </u-popup>
|
|
|
+ </view>
|
|
|
+ </scroll-view>
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- export default {
|
|
|
- name:"home",
|
|
|
- data() {
|
|
|
- return {
|
|
|
- show: false,
|
|
|
- tab_list: [
|
|
|
- {
|
|
|
- name: '课程'
|
|
|
- },
|
|
|
- {
|
|
|
- name: '刷题'
|
|
|
- },
|
|
|
- {
|
|
|
- name: '重点考点'
|
|
|
- }
|
|
|
- ],
|
|
|
- current: 0,
|
|
|
- list: [{
|
|
|
- image: '/static/banner.png',
|
|
|
- },
|
|
|
- {
|
|
|
- image: 'https://cdn.uviewui.com/uview/swiper/2.jpg',
|
|
|
- },
|
|
|
- {
|
|
|
- image: 'https://cdn.uviewui.com/uview/swiper/3.jpg',
|
|
|
- }
|
|
|
- ],
|
|
|
- date:['日','一','二','三','四','五','六'],
|
|
|
- date_num:[23,24,25,26,27,28,29],
|
|
|
- list1:[23,24,25,26,27,28,29,23,24,25,26,27,28,29,23,24,25,26,27,28,29],
|
|
|
- windowHeight:0,
|
|
|
- };
|
|
|
- },
|
|
|
- mounted(){
|
|
|
- this.windowHeight = uni.getSystemInfoSync().windowHeight
|
|
|
- console.log(this.windowHeight)
|
|
|
- },
|
|
|
- methods: {
|
|
|
- scroll(){
|
|
|
- console.log(43)
|
|
|
- },
|
|
|
- sectionChange(index) {
|
|
|
- this.current = index;
|
|
|
- },
|
|
|
- jumpDetail(){
|
|
|
- if(this.current==0){
|
|
|
- this.$navTo.togo('/pages/course/detail', {})
|
|
|
- return
|
|
|
+export default {
|
|
|
+ name: 'home',
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ show: false,
|
|
|
+ tab_list: [
|
|
|
+ {
|
|
|
+ name: '课程'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '刷题'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ name: '重点考点'
|
|
|
}
|
|
|
- if(this.current==1){
|
|
|
- this.$navTo.togo('/pages/bank/detail', {})
|
|
|
- return
|
|
|
+ ],
|
|
|
+ current: 0,
|
|
|
+ list: [
|
|
|
+ {
|
|
|
+ image: 'http://192.168.0.222:8080/img/banner1.png'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ image: 'https://cdn.uviewui.com/uview/swiper/2.jpg'
|
|
|
+ },
|
|
|
+ {
|
|
|
+ image: 'https://cdn.uviewui.com/uview/swiper/3.jpg'
|
|
|
}
|
|
|
- if(this.current==2){
|
|
|
- this.$navTo.togo('/pages/course/keynote', {})
|
|
|
- return
|
|
|
+ ],
|
|
|
+ pageNum:1,
|
|
|
+ pageSize: 10,
|
|
|
+ date: ['日', '一', '二', '三', '四', '五', '六'],
|
|
|
+ date_num: [23, 24, 25, 26, 27, 28, 29],
|
|
|
+ list1: [],
|
|
|
+ windowHeight: 0,
|
|
|
+ showStatus: false,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onLoad(){},
|
|
|
+ mounted() {
|
|
|
+ this.windowHeight = uni.getSystemInfoSync().windowHeight;
|
|
|
+ this.initList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ initList(){
|
|
|
+ var self = this
|
|
|
+ var data = {
|
|
|
+ status: '1',
|
|
|
+ pageNum : this.pageNum,
|
|
|
+ pageSize: this.pageSize
|
|
|
+ }
|
|
|
+ this.$api.courselist(data).then(res => {
|
|
|
+ if(self.list1.length === res.data.total){
|
|
|
+ this.showStatus = true
|
|
|
+ }else{
|
|
|
+ res.data.rows.forEach((item,index) => {
|
|
|
+ self.list1.push(item)
|
|
|
+ })
|
|
|
}
|
|
|
- },
|
|
|
- jumpPlan(){
|
|
|
- this.$navTo.togo('/pages/plan/detail', {})
|
|
|
- },
|
|
|
- jumpSearch(){
|
|
|
- this.$navTo.togo('/pages/index/search', {})
|
|
|
+ })
|
|
|
+ },
|
|
|
+ scroll(e) {},
|
|
|
+ scrollTolower(){
|
|
|
+ this.pageNum++
|
|
|
+ this.initList()
|
|
|
+ },
|
|
|
+ sectionChange(index) {
|
|
|
+ this.current = index;
|
|
|
+ },
|
|
|
+ jumpDetail() {
|
|
|
+ if (this.current == 0) {
|
|
|
+ this.$navTo.togo('/pages2/course/detail', {});
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (this.current == 1) {
|
|
|
+ this.$navTo.togo('/pages2/bank/detail', {});
|
|
|
+ return;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+ if (this.current == 2) {
|
|
|
+ this.$navTo.togo('/pages2/course/keynote', {});
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ jumpPlan() {
|
|
|
+ this.$navTo.togo('/pages2/plan/detail', {});
|
|
|
},
|
|
|
+ jumpSearch() {
|
|
|
+ this.$navTo.togo('/pages2/index/search', {});
|
|
|
+ }
|
|
|
}
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+.search {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+ margin-left: 30rpx;
|
|
|
+}
|
|
|
+.slot-wrap {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+}
|
|
|
+.popup_t1 {
|
|
|
+ height: 29rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #131b31;
|
|
|
+ margin: 100rpx;
|
|
|
+}
|
|
|
+.price {
|
|
|
+ font-size: 20rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #ff0000;
|
|
|
+ margin-top: 8rpx;
|
|
|
+}
|
|
|
+.old_price {
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ text-decoration: line-through;
|
|
|
+ color: #999999;
|
|
|
+ margin-top: 8rpx;
|
|
|
+}
|
|
|
+.list_title {
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #2f4379;
|
|
|
+}
|
|
|
+.list_content {
|
|
|
+ width: 656rpx;
|
|
|
+ height: 134rpx;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(47, 67, 121, 0.1);
|
|
|
+ border-radius: 24rpx;
|
|
|
+ position: absolute;
|
|
|
+ top: 20rpx;
|
|
|
+ left: 20rpx;
|
|
|
+}
|
|
|
+.list_box {
|
|
|
+ position: relative;
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 30rpx;
|
|
|
+}
|
|
|
+.list_img {
|
|
|
+ width: 278rpx;
|
|
|
+ height: 134rpx;
|
|
|
+ z-index: 100;
|
|
|
+ position: relative;
|
|
|
+}
|
|
|
+.course_title {
|
|
|
+ color: #2f4379;
|
|
|
+ box-shadow: 0rpx 0rpx 9rpx 1rpx rgba(47, 67, 121, 0.1);
|
|
|
+ border-radius: 28rpx;
|
|
|
+ width: 100%;
|
|
|
+ height: 48rpx;
|
|
|
+ line-height: 48rpx;
|
|
|
+}
|
|
|
+.arr-icon {
|
|
|
+ width: 40rpx;
|
|
|
+ height: 40rpx;
|
|
|
+}
|
|
|
+.wrap {
|
|
|
+ padding: 24rpx;
|
|
|
+}
|
|
|
|
|
|
-.search{
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
- margin-left: 30rpx;
|
|
|
- }
|
|
|
- .slot-wrap {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- }
|
|
|
- .popup_t1{
|
|
|
- height: 29rpx;
|
|
|
- font-size: 30rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- color: #131B31;
|
|
|
- margin: 100rpx;
|
|
|
- }
|
|
|
- .price{
|
|
|
- font-size: 20rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- color: #FF0000;
|
|
|
- margin-top: 8rpx;
|
|
|
- }
|
|
|
- .old_price{
|
|
|
- font-size: 24rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- text-decoration: line-through;
|
|
|
- color: #999999;
|
|
|
- margin-top: 8rpx;
|
|
|
- }
|
|
|
- .list_title{
|
|
|
- font-size: 24rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- color: #2F4379;
|
|
|
- }
|
|
|
- .list_content{
|
|
|
- width: 656rpx;
|
|
|
- height: 134rpx;
|
|
|
- background: #FFFFFF;
|
|
|
- box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(47, 67, 121, 0.1);
|
|
|
- border-radius: 24rpx;
|
|
|
- position: absolute;
|
|
|
- top:20rpx;
|
|
|
- left:20rpx;
|
|
|
- }
|
|
|
- .list_box{
|
|
|
- position: relative;
|
|
|
- width: 100%;
|
|
|
- margin-top: 30rpx;
|
|
|
- }
|
|
|
- .list_img{
|
|
|
- width: 278rpx;
|
|
|
- height: 134rpx;
|
|
|
- z-index: 100;
|
|
|
- position: relative;
|
|
|
- }
|
|
|
- .course_title{
|
|
|
- color: #2F4379;
|
|
|
- box-shadow: 0rpx 0rpx 9rpx 1rpx rgba(47, 67, 121, 0.1);
|
|
|
- border-radius: 28rpx;
|
|
|
- width: 100%;
|
|
|
- height: 48rpx;
|
|
|
- line-height: 48rpx;
|
|
|
- }
|
|
|
- .arr-icon{
|
|
|
- width: 40rpx;
|
|
|
- height: 40rpx;
|
|
|
- }
|
|
|
- .wrap {
|
|
|
- padding: 24rpx;
|
|
|
- }
|
|
|
-
|
|
|
- .u-row {
|
|
|
- margin: 40rpx 0;
|
|
|
- }
|
|
|
- .date_num{
|
|
|
- width: 14%;
|
|
|
- text-align: center;
|
|
|
- color: #34C759;
|
|
|
- }
|
|
|
- .card_date{
|
|
|
- width: 14%;
|
|
|
- text-align: center;
|
|
|
- color: #7F8CAF;
|
|
|
- }
|
|
|
- page {
|
|
|
- background: #ffffff;
|
|
|
- font-size: 28rpx;
|
|
|
- }
|
|
|
- .calendar_card{
|
|
|
- width: 100%;
|
|
|
- height: 300rpx;
|
|
|
- background: #FFFFFF;
|
|
|
- box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(47, 67, 121, 0.1);
|
|
|
- border-radius: 22rpx;
|
|
|
- margin-top: 25rpx;
|
|
|
- }
|
|
|
- .box{
|
|
|
- margin: 30rpx;
|
|
|
- }
|
|
|
- .my_swiper{
|
|
|
- box-shadow: 0rpx 20rpx 16rpx 4rpx rgba(47, 67, 121, 0.08);
|
|
|
- border-radius: 25rpx;
|
|
|
- }
|
|
|
- .calendar_card .card_box{
|
|
|
- height: 60rpx;
|
|
|
- line-height: 60rpx;
|
|
|
- margin-left: 40rpx;
|
|
|
- }
|
|
|
- .calendar_card .t1{
|
|
|
- color: #7F8CAF;
|
|
|
- font-size: 24rpx;
|
|
|
- }
|
|
|
- .calendar_card .t2{
|
|
|
- font-size: 24rpx;
|
|
|
- font-family: PingFang SC;
|
|
|
- font-weight: bold;
|
|
|
- color: #32467B;
|
|
|
- margin: 0 10rpx;
|
|
|
- }
|
|
|
- .calendar_card .t3{
|
|
|
- font-size: 30rpx;
|
|
|
- font-weight: bold;
|
|
|
- color: #32467B;
|
|
|
- text-shadow: 0rpx 3rpx 3rpx rgba(0, 0, 0, 0.2);
|
|
|
- margin: 0 10rpx;
|
|
|
- }
|
|
|
- .img_more{
|
|
|
- width: 26rpx;
|
|
|
- height: 26rpx;
|
|
|
- }
|
|
|
+.u-row {
|
|
|
+ margin: 40rpx 0;
|
|
|
+}
|
|
|
+.date_num {
|
|
|
+ width: 14%;
|
|
|
+ text-align: center;
|
|
|
+ color: #34c759;
|
|
|
+}
|
|
|
+.card_date {
|
|
|
+ width: 14%;
|
|
|
+ text-align: center;
|
|
|
+ color: #7f8caf;
|
|
|
+}
|
|
|
+page {
|
|
|
+ background: #ffffff;
|
|
|
+ font-size: 28rpx;
|
|
|
+}
|
|
|
+.calendar_card {
|
|
|
+ width: 100%;
|
|
|
+ height: 300rpx;
|
|
|
+ background: #ffffff;
|
|
|
+ box-shadow: 0rpx 0rpx 16rpx 4rpx rgba(47, 67, 121, 0.1);
|
|
|
+ border-radius: 22rpx;
|
|
|
+ margin-top: 25rpx;
|
|
|
+}
|
|
|
+.box {
|
|
|
+ margin: 30rpx;
|
|
|
+}
|
|
|
+.my_swiper {
|
|
|
+ box-shadow: 0rpx 20rpx 16rpx 4rpx rgba(47, 67, 121, 0.08);
|
|
|
+ border-radius: 25rpx;
|
|
|
+}
|
|
|
+.calendar_card .card_box {
|
|
|
+ height: 60rpx;
|
|
|
+ line-height: 60rpx;
|
|
|
+ margin-left: 40rpx;
|
|
|
+}
|
|
|
+.calendar_card .t1 {
|
|
|
+ color: #7f8caf;
|
|
|
+ font-size: 24rpx;
|
|
|
+}
|
|
|
+.calendar_card .t2 {
|
|
|
+ font-size: 24rpx;
|
|
|
+ font-family: PingFang SC;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #32467b;
|
|
|
+ margin: 0 10rpx;
|
|
|
+}
|
|
|
+.calendar_card .t3 {
|
|
|
+ font-size: 30rpx;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #32467b;
|
|
|
+ text-shadow: 0rpx 3rpx 3rpx rgba(0, 0, 0, 0.2);
|
|
|
+ margin: 0 10rpx;
|
|
|
+}
|
|
|
+.img_more {
|
|
|
+ width: 26rpx;
|
|
|
+ height: 26rpx;
|
|
|
+}
|
|
|
</style>
|