| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873 |
- <template>
- <view :class="[AppTheme]" class="all_box" v-if="thflag==2">
- <u-navbar :titleStyle="{color:'#ffffff'}" :bgColor="primary" :autoBack="false" :fixed="true" :placeholder="true"
- :height="45">
- <view class="u-nav-slot" slot="left" @click="scancode">
- <u-icon name="scan" color="#ffffff" size="24"></u-icon>
- </view>
- <!-- #ifdef APP-PLUS || H5 -->
- <view class="u-nav-slot" slot="center" style="width: 580rpx;">
- <u-search actionText="" :showAction="false" placeholder="输入商品名称" bg-color="#fff" @search="doSearch"
- v-model="search"></u-search>
- </u-icon>
- </view>
- <!-- #endif -->
- <!-- #ifdef MP-WEIXIN -->
- <view class="u-nav-slot" slot="center" style="width: 580rpx;">
- <view class="u-nav-slot" slot="center" style="width: 460rpx;">
- <u-search actionText="" :showAction="false" placeholder="输入商品名称" bg-color="#fff" @search="doSearch"
- v-model="search"></u-search>
- </u-icon>
- </view>
- </view>
- <!-- #endif -->
- <!-- #ifdef APP-PLUS || H5 -->
- <view class="u-nav-slot" slot="right" @click="tocar">
- <u-icon name="shopping-cart" color="#ffffff" size="24"></u-icon>
- </view>
- <!-- #endif -->
- </u-navbar>
- <!-- 头部轮播 -->
- <view class="lunbo" :style="{background: primary}">
- <view class="carousel-section" v-if="lunbo&&lunbo.length>0">
- <u-swiper imgMode="aspectFill" :list="lunbo" keyName="ad_pic" showTitle :autoplay="false" circular
- @change="swiperChange">
- </u-swiper>
- </view>
- </view>
- <view class=" farm-block1">
- <u-notice-bar :text="announcetext" @click="goMessage" :color="primary" direction="column" mode="closable"
- speed="200"></u-notice-bar>
- </view>
- <view class="cate-section1" v-if="modular.length > 0">
- <view class="cate-section ">
- <view class="cate-item" v-for="(item, index) in modular" :key="index" @click="navTo(item.url)">
- <u--image :src="item.img" radius="10rpx" width="88rpx" height="88rpx" :lazyLoad="true" :fade="true"
- duration="450">
- <template v-slot:loading>
- <u-loading-icon color="#f7f7f7"></u-loading-icon>
- </template>
- </u--image>
- <text>{{ item.modularname }}</text>
- </view>
- </view>
- </view>
- <view class="coupon" v-if="couponlist&&couponlist.length > 0">
- <view class="coupon_title">
- <view class="cupin_left">
- <view class="cupin_left_p1">专享优惠卷</view>
- </view>
- <view class="cupin_right" @click="gogetactivity">查看全部></view>
- </view>
- <navigator url="/pagesB/pages/getcoupon/getcoupon" open-type="navigate" class="coupon_item"
- v-for="(item, index) in couponlist.slice(0,2)" :key="index">
- <view class="coupon_item_p1">
- <view class="coupon_item_p2_ti1_p1">¥</view>
- <view class="coupon_item_p2_ti1">{{ item.money }}</view>
- <view class="coupon_item_p2_ti2">
- <view class="describe">满{{ item.usemoney }}元可用</view>
- <view class="describe2">{{ item.type }}</view>
- <view class="describe3">使用时间:{{ item.stime }}-{{ item.etime }}</view>
- </view>
- </view>
- <view class="coupon_item_p2">
- <view>
- 立即领取
- </view>
- </view>
- </navigator>
- </view>
- <Ugoods2 ref="goodlist" :datas="datas"></Ugoods2>
- <view class="leaveblank_bottom"></view>
- </view>
- </template>
- <script>
- import Ugoods2 from '@/components/ui-component/U_goods2/m/index.vue';
- import homeApi from '@/api/home/index.js'
- export default {
- name: "themes2",
- props: ['primary2', 'thflag'],
- components: {
- Ugoods2
- },
- data() {
- return {
- datas: {
- "title": "商品列表B",
- "text_size": 15,
- "show_title": false,
- "goods": [],
- "margin_top": 0,
- "margin_bottom": 10,
- "bg_color": "#f7f7f8",
- "text_color": "#333333",
- "good_text_size": 15,
- "good_text_color": "#333333",
- "shop_price_color": "#FC0404",
- "market_price_color": "#999999",
- "buynow_bg_color": this.$theme.primary,
- "show_num": 0
- },
- primary: this.primary2,
- config: {
- site_info: {
- index_logo: ''
- },
- home: [],
- },
- title: '',
- list: [],
- bodymodular1: '',
- dlsetting: [],
- search: '',
- settingFile: [],
- titleNViewBackground: '',
- swiperCurrent: 0,
- swiperLength: 0,
- carouselList: [],
- newsList: [],
- goodsList: [],
- sellList: [],
- sysname: '',
- ischar: false,
- city: '获取中...',
- key: '',
- loadingImg: '',
- errorImg: '',
- weather: {
- tem: '-4',
- tem1: 2,
- tem2: -5,
- win_speed: 3,
- air_pm25: 8,
- humidity: 0
- },
- lunbo: [],
- announce: [],
- announcetext: [],
- isShow: true,
- ifhavehead: false,
- isnone: 'block',
- isshow: false,
- navHeight: 125,
- heig: 20,
- placeMargin: -155,
- addressName: '',
- district: '',
- marTop: 90,
- marTops: 70,
- searchTop: 110, //123
- placeHeig: 439,
- placeHeig2: 370,
- isSearch: false,
- temlist: '',
- modular: [],
- couponlist: [],
- carnum: 0
- }
- },
- onPageScroll: function(e) {
- if (!this.ifhavehead) {
- if (e.scrollTop > 45) {
- this.ifhavehead = true
- }
- } else {
- if (e.scrollTop < 45) {
- this.ifhavehead = false
- }
- }
- },
- methods: {
- //打开扫一扫
- scancode() {
- uni.scanCode({
- scanType: ['qrCode'],
- success: function(res) {
- uni.navigateTo({
- url: '/pagesB/pages/activorderdails/writeoffdetails/writeoffdetails?code=' +
- res.result
- })
- }
- })
- },
- //打开购物车
- tocar() {
- uni.navigateTo({
- url: '/pagesE/pages/cart/cart'
- })
- },
- toBottom(type) {
- let that = this
- that.$refs.goodlist.toBottom(type)
- },
- init() {
- let that = this
- if (that.$config) {
- if (that.primary == '' || that.primary != that.$theme.primary) {
- that.primary = that.$theme.primary;
- }
- that.sysname = that.$config.shop.name;
- that.addressName = that.$config.shop.name;
- // #ifdef H5
- uni.setNavigationBarTitle({
- title: that.$config.shop.name
- })
- // #endif
- that.goodsList = that.$config.cache1
- that.newsList = that.$config.cache3
- that.sellList = that.$config.cache5
- that.temlist = that.$config.temlist
- that.modular = that.$config.modular
- if (that.$config.app && that.$config.app.gaodekey) {
- that.key = that.$config.app.gaodekey
- uni.setStorageSync('mapkey', that.key)
- }
- that.ischar = that.$config.app.ischar
- that.couponlist = that.$config.card
- that.district = that.$config.shop.name;
- // 缓存订阅消息id
- uni.setStorageSync('temlist', that.temlist)
- if (that.$config.app.position == 1) {
- that.getAuthorizeInfo()
- } else {
- that.addressName = that.$config.shop.name;
- }
- this.homeInit();
- }
- },
- goMessage(index) {
- uni.navigateTo({
- url: '/pagesC/pages/index/message/message?id=' + this.announce[index].id
- })
- },
- getCity() {
- },
- getCityInfo() {
- },
- doSearch() {
- uni.navigateTo({
- url: `/pagesA/pages/search/search?value=${this.search}`
- })
- },
- async homeInit() {
- let that = this;
- let res = await homeApi.index()
- if (res.data.lunbo) {
- var list = res.data.lunbo.filter(item => item.pid == 14)
- if (list.length) {
- that.lunbo = list
- }
- }
- that.announce = res.data.announce;
- if (res.data.announce) {
- res.data.announce.forEach(item => {
- that.announcetext.push(item.title);
- });
- }
- },
- // 位置授权
- getAuthorizeInfo() {
- const that = this
- // #ifndef MP-WEIXIN
- that.getLocationInfo()
- // #endif
- // #ifdef MP-WEIXIN
- uni.authorize({
- scope: 'scope.userLocation',
- success() {
- // 允许授权
- that.getLocationInfo()
- },
- fail(err) {
- console.log(err)
- // 拒绝授权
- that.openConfirm()
- }
- })
- // #endif
- },
- // 获取地理位置
- getLocationInfo() {
- let that = this
- this.getCity()
- },
- // 再次获取授权
- // 当用户第一次拒绝后再次请求授权
- openConfirm() {
- let that = this
- uni.showModal({
- title: '请求授权当前位置',
- content: '需要获取您的地理位置,请确认授权',
- success: res => {
- if (res.confirm) {
- uni.openSetting({
- success: function(data) {
- if (data.authSetting['scope.userLocation'] ===
- true) {
- that.getCity()
- uni.showToast({
- title: '授权成功',
- icon: 'success',
- duration: 1000,
- success() {}
- })
- } else {
- uni.showToast({
- title: '授权失败',
- icon: 'success',
- duration: 1000
- })
- }
- }
- })
- } else if (res.cancel) {
- uni.showToast({
- title: '你拒绝了授权,无法获得周边信息',
- icon: 'none',
- duration: 1000
- })
- }
- }
- })
- },
- navTo(url) {
- if (url == '#') {
- this.$api.msg('暂未开放')
- return
- }
- this.$until.toUrl(url)
- },
- switchTo(url) {
- uni.switchTab({
- url
- })
- },
- noOpen() {
- this.$api.msg('暂未开放')
- },
- /**
- * 请求静态数据只是为了代码不那么乱
- * 分次请求未作整合
- */
- // //轮播图切换修改背景色
- swiperChange(e) {
- const index = e.detail.current
- this.swiperCurrent = index
- // this.titleNViewBackground = this.carouselList[index].background;
- },
- navtopage(index) {
- var item = lunbo[index]
- homeApi.navtopage(item)
- },
- switchTabPage() {
- uni.switchTab({
- url: '/pagesE/pages/broadcast/broadcast'
- })
- },
- //跳转活动链接
- gogetactivity() {
- uni.navigateTo({
- url: '/pagesB/pages/getcoupon/getcoupon'
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .all_box {
- .left {
- display: flex;
- justify-content: center;
- justify-items: center;
- width: 10%
- }
- .right {
- display: flex;
- justify-content: center;
- justify-items: center;
- width: 10%
- }
- .leaveblank_bottom {
- height: 120rpx;
- }
- .coupon {
- padding: 20rpx 5% 10rpx 5%;
- background-color: #ffffff;
- width: 95%;
- margin: 15rpx 2.5%;
- border-radius: 5%;
- .coupon_title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- padding: 10rpx 0;
- .cupin_left {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .coupon_icon {
- width: 70rpx;
- height: 70rpx;
- }
- .cupin_left_p1 {
- font-size: 28rpx;
- color: #56ab2f;
- }
- }
- .cupin_right {
- font-size: 26rpx;
- color: #666;
- }
- }
- .center {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 7.5rpx 0;
- .tttle {
- width: 180rpx;
- text-align: center;
- font-weight: 700;
- }
- .line1,
- .line2 {
- height: 2rpx;
- width: 45%;
- }
- }
- .coupon_item {
- margin: 15rpx 0;
- position: relative;
- width: 100%;
- height: 137rpx;
- background: #ffffff;
- justify-content: space-between;
- display: inline-flex;
- color: #CF8201;
- align-items: center;
- .coupon_item_p1 {
- height: 100%;
- font-size: 35rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- width: calc(100% - 100rpx);
- background-color: #FDD48D;
- border-radius: 15rpx 0 0 15rpx;
- .coupon_item_p2_ti1_p1 {
- font-size: 55rpx;
- }
- .coupon_item_p2_ti1 {
- font-size: 80rpx;
- font-family: fantasy;
- }
- .coupon_item_p2_ti2 {
- margin-left: 15rpx;
- .describe {
- font-size: 28rpx;
- color: #8F5D25;
- font-weight: 600;
- }
- .describe2 {
- font-size: 22rpx;
- color: #8F5D25;
- font-weight: 600;
- margin: 15rpx 0;
- }
- .describe3 {
- font-size: 22rpx;
- color: #EE992A;
- }
- }
- }
- .coupon_item_p2 {
- display: flex;
- align-items: center;
- width: 100rpx;
- padding: 0 20rpx;
- height: 100%;
- text-align: center;
- background-color: #3D5479;
- color: #FFFFFF;
- border-radius: 0 15rpx 15rpx 0;
- }
- }
- }
- .place {
- width: 100%;
- height: 100px;
- .place_location {
- margin-left: 23rpx;
- font-size: 32rpx;
- color: #ffffff;
- }
- .flex {
- margin-top: 28rpx;
- display: flex;
- justify-content: flex-start;
- .fff {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- margin-left: 37rpx;
- }
- .weather {
- margin-left: 34rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #fff;
- }
- }
- }
- .cate-section1 {
- padding: 15rpx;
- }
- .cate-section {
- position: relative;
- border-radius: 16upx 16upx 16upx 16upx;
- }
- .cate-section.mt0 {
- margin-top: 0;
- }
- .lunbo {
- padding-bottom: 30rpx;
- height: 150rpx;
- padding-top: 10rpx;
- /* 头部 轮播图 */
- .carousel-section {
- width: calc(100% - 30rpx);
- margin: 0 auto;
- .titleNview-placing {
- padding-top: 0;
- height: 0;
- }
- .carousel {
- .carousel-item {
- padding: 0;
- border-radius: 10rpx;
- }
- }
- .swiper-dots {
- left: 45upx;
- bottom: 40upx;
- }
- .titleNview-placing {
- height: var(--status-bar-height);
- padding-top: 44px;
- box-sizing: content-box;
- }
- .titleNview-background {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 426upx;
- transition: 0.4s;
- }
- }
- }
- .farm-block1 {
- padding-left: 15rpx;
- padding-top: 15rpx;
- padding-right: 15rpx;
- margin-top: 60rpx;
- }
- .farm-block {
- position: relative;
- z-index: 5;
- border-radius: 16upx 16upx 16upx 16upx;
- display: flex;
- margin-top: 50rpx;
- justify-content: flex-start;
- align-items: center;
- flex-wrap: wrap;
- padding: 10upx 30upx;
- background: #fff;
- .farm {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- padding: 12rpx 0;
- width: 100%;
- .farm-img {
- width: 36rpx;
- height: 26rpx;
- .img {
- width: 36rpx;
- height: 26rpx;
- }
- }
- .ml35 {
- margin-left: 25rpx;
- border: 0.5rpx solid #f5f5f5;
- height: 20rpx;
- .dynamic,
- .news {
- width: 85rpx;
- height: 40rpx;
- background: #42c998;
- border-radius: 10rpx;
- line-height: 40rpx;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #ffffff;
- text-align: center;
- }
- .news {
- margin-top: 16rpx;
- background: #ffa92e;
- }
- }
- .flex {
- display: flex;
- flex-wrap: wrap;
- margin-left: 26rpx;
- .swiper-block {
- height: 40rpx;
- swiper {
- height: 100%;
- width: 580rpx;
- }
- }
- .swiper-block2 {
- margin-top: 15rpx;
- }
- .swiper-item {
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- line-height: 40rpx;
- font-size: 25rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #56ab2f;
- display: flex;
- justify-content: space-between;
- .detail {
- font-weight: bold;
- margin-right: 0rpx;
- color: #100c0f;
- }
- .item-l {
- width: 490rpx;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- }
- }
- }
- }
- }
- .carousel {
- width: 100%;
- height: 350upx;
- .carousel-item {
- width: 100%;
- height: 100%;
- padding: 0 28upx;
- overflow: hidden;
- }
- image {
- width: 100%;
- height: 100%;
- max-width: 100%;
- max-height: 100%;
- // border-radius: 10upx;
- }
- }
- .swiper-dots {
- display: flex;
- position: absolute;
- left: 60upx;
- bottom: 15upx;
- width: 72upx;
- height: 36upx;
- background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAABkCAYAAADDhn8LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTMyIDc5LjE1OTI4NCwgMjAxNi8wNC8xOS0xMzoxMzo0MCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTk4MzlBNjE0NjU1MTFFOUExNjRFQ0I3RTQ0NEExQjMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OTk4MzlBNjA0NjU1MTFFOUExNjRFQ0I3RTQ0NEExQjMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6Q0E3RUNERkE0NjExMTFFOTg5NzI4MTM2Rjg0OUQwOEUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6Q0E3RUNERkI0NjExMTFFOTg5NzI4MTM2Rjg0OUQwOEUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4Gh5BPAAACTUlEQVR42uzcQW7jQAwFUdN306l1uWwNww5kqdsmm6/2MwtVCp8CosQtP9vg/2+/gY+DRAMBgqnjIp2PaCxCLLldpPARRIiFj1yBbMV+cHZh9PURRLQNhY8kgWyL/WDtwujjI8hoE8rKLqb5CDJaRMJHokC6yKgSCR9JAukmokIknCQJpLOIrJFwMsBJELFcKHwM9BFkLBMKFxNcBCHlQ+FhoocgpVwwnv0Xn30QBJGMC0QcaBVJiAMiec/dcwKuL4j1QMsVCXFAJE4s4NQA3K/8Y6DzO4g40P7UcmIBJxbEesCKWBDg8wWxHrAiFgT4fEGsB/CwIhYE+AeBAAdPLOcV8HRmWRDAiQVcO7GcV8CLM8uCAE4sQCDAlHcQ7x+ABQEEAggEEAggEEAggEAAgQACASAQQCCAQACBAAIBBAIIBBAIIBBAIABe4e9iAe/xd7EAJxYgEGDeO4j3EODp/cOCAE4sYMyJ5cwCHs4rCwI4sYBxJ5YzC84rCwKcXxArAuthQYDzC2JF0H49LAhwYUGsCFqvx5EF2T07dMaJBetx4cRyaqFtHJ8EIhK0i8OJBQxcECuCVutxJhCRoE0cZwMRyRcFefa/ffZBVPogePihhyCnbBhcfMFFEFM+DD4m+ghSlgmDkwlOgpAl4+BkkJMgZdk4+EgaSCcpVX7bmY9kgXQQU+1TgE0c+QJZUUz1b2T4SBbIKmJW+3iMj2SBVBWz+leVfCQLpIqYbp8b85EskIxyfIOfK5Sf+wiCRJEsllQ+oqEkQfBxmD8BBgA5hVjXyrBNUQAAAABJRU5ErkJggg==);
- background-size: 100% 100%;
- .num {
- width: 36upx;
- height: 36upx;
- border-radius: 50px;
- font-size: 24upx;
- color: #fff;
- text-align: center;
- line-height: 36upx;
- }
- .sign {
- position: absolute;
- top: 0;
- left: 50%;
- line-height: 36upx;
- font-size: 12upx;
- color: #fff;
- transform: translateX(-50%);
- }
- }
- /* 分类 */
- .cate-section {
- display: flex;
- justify-content: space-between;
- align-items: center;
- flex-wrap: wrap;
- padding: 30rpx 20rpx 5rpx 20rpx;
- background: #fff;
- .cate-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- font-size: $font-sm + 2upx;
- color: $font-color-dark;
- width: 19%;
- background: #fff;
- padding-bottom: 30rpx;
- float: left;
- }
- /* 原图标颜色太深,不想改图了,所以加了透明度 */
- text {
- margin-top: 14upx;
- }
- }
- .ad-1 {
- width: 100%;
- height: 210upx;
- padding: 10upx 0;
- background: #fff;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .btn1 {
- background-color: transparent;
- position: fixed;
- right: 0;
- top: 77.5%;
- z-index: 11;
- width: 200rpx;
- height: 100rpx;
- outline: none;
- border: none;
- }
- .btnImg {
- width: 100%;
- height: 100%;
- }
- .btn1::after {
- outline: none;
- border: none;
- }
- .tag {
- display: flex;
- justify-content: space-around;
- margin-top: 20rpx;
- .tag-box {
- width: 200rpx;
- height: 113rpx;
- border: 1px solid $tab-color-1;
- color: $tab-color-1;
- border-radius: 10rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- font-size: 24rpx;
- .tag-img {
- width: 60rpx;
- height: 60rpx;
- }
- }
- }
- .updatepage {
- position: fixed;
- }
- }
- </style>
|