提交 3256f254 authored 作者: JSHorse's avatar JSHorse

整体UI调整

上级 7b933485
差异被折叠。
差异被折叠。
......@@ -67,24 +67,192 @@ li {
}
.content-wrapper {
// width: 1200px;
// width: 100vw;
padding: 0 13%;
display: flex;
// padding: 0 13%;
// width: 1400px;
/* display: flex;
flex-direction: column;
align-items: center;
align-items: center; */
>.content {
width: 1400px;
margin: auto;
}
}
.el-pager {
.btn-quicknext,.number {
.btn-quicknext,
.number {
background: transparent !important;
border: 1px solid $themeColor !important;
color: $themeColor !important;
border: 1px solid $themeColor !important;
color: $themeColor !important;
}
.number.active {
background: $themeColor !important;
color: #b7b7b7 !important;
background: $themeColor !important;
color: #fff !important;
}
}
.content-wrapper:not(.relic) {
padding-top: 0!important;
padding-bottom: 40px!important;
>.content {
box-shadow: none!important;
>.search {
// padding: 24px 20%;
// padding: 16px 13%;
padding: 16px 0 32px;
background: #fff;
background-image: none!important;
.item {
width: 100%;
height: 46px;
>div {
width: 100%;
height: 100%;
}
.el-input__suffix-inner {
i.el-input__icon {
color: #333;
font-size: 18px;
line-height: 46px;
}
}
input {
width: 100%;
height: 100%;
line-height: 46px;
border: 1px solid #fff;
background-color: #c5cade;
&.el-input__inner {
border-radius: 0;
font-size: 14px;
color: #2b2d35;
}
}
input::-webkit-input-placeholder {
color: #666;
}
input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: #666;
}
input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: #666;
}
input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #666;
}
}
.search-button {
cursor: pointer;
width: 156px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
background: url("@/assets/imgs/list/search-button-bg.png") transparent;
background-size: 100% 100%;
color: #444;
font-size: 14px;
transition: all 0.2s ease;
.svg-icon {
margin-right: 4px;
}
}
}
.cr-item .container {
border: none !important;
.desc {
padding: 0!important;
height: auto !important;
>.name {
padding: 20px 0 !important;
margin: 0 !important;
font-size: 20px !important;
font-weight: 400 !important;
}
}
.img-container {
display: flex;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: calc(100% - 4px);
height: calc(100% - 4px);
z-index: 1;
border: 2px solid #999;
}
>div[class|=deco] {
z-index: 2;
}
}
&:hover {
border: none !important;
.desc {
background: none !important;
>.name {
color: #0e45ab !important;
}
}
.img-container {
&::before {
border-color: #3554ee;
}
}
}
}
>.pagination-container {
>.pagination {
margin: 0!important;
background-image: none!important;
.el-pager {
li {
width: 42px;
height: 42px;
line-height: 42px;
font-size: 16px;
background: #fff;
min-width: 0;
margin: 0 16px;
color: $themeColor;
border-radius: 0!important;
}
.active {
color: #fff;
}
}
}
}
}
}
\ No newline at end of file
// $themeColor:#223e36;
// $themeColor: #2069c4;
$themeColor:#132c33;
// $themeColor:#132c33;
$themeColor: #252F57;
$themeSecondaryColor:#dfab46;
$puHuiTi: "Alibaba-PuHuiTi";
$siyuanSongBold: "SourceHanSerifCN-Bold";
......
......@@ -24,11 +24,11 @@ export default {
<style lang="scss" scoped>
::v-deep .el-breadcrumb__inner{
color:#ccc;
color:#aaa;
}
::v-deep .el-breadcrumb__item:last-child .el-breadcrumb__inner{
color: #999;
color: #666;
}
::v-deep .el-breadcrumb__inner.is-link:hover{
......
......@@ -6,6 +6,10 @@
</div>
<div class="text">{{ title }}</div>
</div> -->
<div class="main-title">
<p v-for="(label, i) in info" :key="i">{{ label }}</p>
</div>
<img src="@/assets/imgs/show/list-bg.png" alt="" />
<div class="total">
<div class="total-title">{{ title }}</div>
<div class="amount">
......@@ -16,9 +20,9 @@
<!-- <div class="banner-1">
<img src="@/assets/imgs/list/banner3.png" alt="" />
</div> -->
<div class="banner-2 wow animate__animated animate__fadeInLeftBig" data-wow-duration="2s">
<!-- <div class="banner-2 wow animate__animated animate__fadeInLeftBig" data-wow-duration="2s">
<img src="@/assets/imgs/list/banner2.png" alt="" />
</div>
</div> -->
</div>
</template>
......@@ -32,11 +36,15 @@ export default {
},
num: {
type: [String, Number],
default: '0',
default: "0",
},
unit: {
type: String,
default: '个',
default: "个",
},
info: {
type: Array,
default: () => [],
},
},
};
......@@ -45,10 +53,13 @@ export default {
<style lang='scss' scoped>
.banner {
width: 100%;
height: 360px;
height: calc(100vh - 100px);
position: relative;
background-image: linear-gradient(to right, $themeColor, rgba($themeColor, 0.9), $themeColor);
padding: 0 13%;
// background-image: linear-gradient(to right, $themeColor, rgba($themeColor, 0.9), $themeColor);
// background-image: url(@/assets/imgs/show/list-bg.png);
// background-size: cover;
// background-repeat: no-repeat;
// padding: 0 13%;
display: flex;
align-items: center;
justify-content: space-between;
......@@ -60,31 +71,72 @@ export default {
// align-items: center;
// background-size: 100%;
// background-position: 0 -100px;
> img {
position: absolute;
top: -100px;
left: 0;
width: 100%;
height: calc(100vh);
}
.main-title {
position: absolute;
top: 39%;
left: 45%;
font-size: 100px;
z-index: 1;
line-height: 1.2;
letter-spacing: 10px;
padding-left: 10px;
border: 3px solid #fff;
font-family: '宋体';
font-weight: 800;
color: #fff;
> p {
margin: 0;
}
}
.total {
width: 400px;
// width: 400px;
color: #fff;
font-family: $puHuiTi;
position: relative;
z-index: 1;
font-size: 40px;
position: absolute;
bottom: 60px;
display: flex;
align-items: center;
justify-content: center;
left: 50%;
transform: translateX(-50%);
font-weight: normal;
// position: absolute;
// left: 200px;
// top: 50%;
// transform: translateY(-50%);
.total-title {
/* .total-title {
font-size: 28px;
}
} */
.amount {
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
margin-left: 50px;
font-weight: normal;
.num {
font-size: 56px;
// font-size: 56px;
font-family: $puHuiTi;
font-size: 60px;
margin-right: 10px;
color: #ffbe1a;
font-weight: 800;
}
.unit {
/* .unit {
font-size: $font-size-base;
}
} */
}
}
......
......@@ -521,7 +521,10 @@ export default {
height: 100px;
width: 100%;
transition: all 0.5s ease;
background-color: $themeColor;
// background-color: rgba($themeColor, 0.5);
background-color: rgba(0, 0, 0, 0.3) ;
position: relative;
z-index: 99;
// background-color: #fff;
// background-image: url('@/assets/imgs/home/panel-bg.png');
box-shadow: rgba(0, 0, 0, 0.3) 0 1px 5px 0px;
......
<template>
<div class="cultural-relic">
<ListBanner title="共计已上线文创产品" :num="list.total" unit="件/套" />
<ListBanner
title="共计已上线文创产品"
:num="list.total"
unit="件/套"
:info="['文创', '展示']"
/>
<div class="content-wrapper">
<div class="content">
<div class="search wow animate__animated animate__fadeIn">
<el-input class="input item" v-model="keyword" placeholder="请输入关键词" @keyup.enter.native="search" clearable>
</el-input>
<el-cascader class="years item" v-model="regionCode" :options="regionTree" :props="culturalRegionProps"
placeholder="请选择所属地区" filterable @change="handleRegionChange" clearable>
</el-cascader>
<el-select class="years item" v-model="deptId" placeholder="请选择所属单位" filterable @change="handleDeptChange"
clearable>
<el-option v-for="(item, index) in deptList" :key="index" :label="item.name" :value="item.id">
</el-option>
</el-select>
<el-col :span="3">
<div class="search-button" @click="search" style="width: 100%">
<el-row
:gutter="40"
class="search wow animate__animated animate__fadeIn"
>
<el-col :span="6">
<el-input
class="input item"
v-model="keyword"
placeholder="请输入关键词"
@keyup.enter.native="search"
clearable
>
</el-input>
</el-col>
<el-col :span="6">
<el-cascader
class="years item"
v-model="regionCode"
:options="regionTree"
:props="culturalRegionProps"
placeholder="请选择所属地区"
filterable
@change="handleRegionChange"
clearable
>
</el-cascader>
</el-col>
<el-col :span="6">
<el-select
class="years item"
v-model="deptId"
placeholder="请选择所属单位"
filterable
@change="handleDeptChange"
clearable
>
<el-option
v-for="(item, index) in deptList"
:key="index"
:label="item.name"
:value="item.id"
>
</el-option>
</el-select>
</el-col>
<el-col :span="6">
<div class="search-button" @click="search">
<svg-icon icon-class="search"></svg-icon>
检索
</div>
</el-col>
</div>
</el-row>
<el-row :gutter="40" class="cr-list">
<el-col :span="item.status == 1 ? 8 : 0" class="cr-item" @click.native="handleClick(item)"
@mouseenter.native="handleEnterImg(item)" @mouseleave.native="handleLeaveImg(item)"
v-for="(item, index) in list.records" :key="index">
<div class="container wow animate__animated animate__fadeInUp" v-if="item.status == 1">
<el-col
:span="item.status == 1 ? 8 : 0"
class="cr-item"
@click.native="handleClick(item)"
@mouseenter.native="handleEnterImg(item)"
@mouseleave.native="handleLeaveImg(item)"
v-for="(item, index) in list.records"
:key="index"
>
<div
class="container wow animate__animated animate__fadeInUp"
v-if="item.status == 1"
>
<div class="img-container">
<img :src="$getFullUrl(item.imagesVo[0].pressUrl)" width="100%" class="face-image" lazy />
<img
:src="$getFullUrl(item.imagesVo[0].pressUrl)"
width="100%"
class="face-image"
lazy
/>
<div class="deco-left-top">
<img :src="
require(`@/assets/imgs/list/img-deco${item == currentImg ? '' : '-g'
<img
:src="
require(`@/assets/imgs/list/img-deco${
item == currentImg ? '' : '-g'
}.png`)
" alt="" />
"
alt=""
/>
</div>
<div class="deco-left-bottom">
<img :src="
require(`@/assets/imgs/list/img-deco${item == currentImg ? '' : '-g'
<img
:src="
require(`@/assets/imgs/list/img-deco${
item == currentImg ? '' : '-g'
}.png`)
" alt="" />
"
alt=""
/>
</div>
<div class="deco-right-top">
<img :src="
require(`@/assets/imgs/list/img-deco${item == currentImg ? '' : '-g'
<img
:src="
require(`@/assets/imgs/list/img-deco${
item == currentImg ? '' : '-g'
}.png`)
" alt="" />
"
alt=""
/>
</div>
<div class="deco-right-bottom">
<img :src="
require(`@/assets/imgs/list/img-deco${item == currentImg ? '' : '-g'
<img
:src="
require(`@/assets/imgs/list/img-deco${
item == currentImg ? '' : '-g'
}.png`)
" alt="" />
"
alt=""
/>
</div>
</div>
<div class="desc">
......@@ -80,11 +148,21 @@
</div>
</el-col>
</el-row>
<el-empty description="暂无数据" v-if="list.records.length == 0"></el-empty>
<el-empty
description="暂无数据"
v-if="list.records.length == 0"
></el-empty>
<div class="pagination-container">
<el-pagination @size-change="handleSizeChange" @current-change="handleCurrentChange"
:current-page="Number(list.current)" :page-sizes="[20, 40, 100]" :page-size="Number(list.size)"
layout="total, prev, pager, next" :total="Number(list.total)" class="pagination">
<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:current-page="Number(list.current)"
:page-sizes="[20, 40, 100]"
:page-size="Number(list.size)"
layout="total, prev, pager, next"
:total="Number(list.total)"
class="pagination"
>
</el-pagination>
</div>
</div>
......@@ -116,7 +194,6 @@ export default {
value: "code",
label: "name",
children: "children",
},
deptId: "",
deptList: [],
......@@ -244,7 +321,7 @@ $text-indent: 16px;
background-color: #fff;
padding-bottom: 126px;
.search {
/* .search {
display: flex;
justify-content: center;
align-items: center;
......@@ -258,7 +335,8 @@ $text-indent: 16px;
margin-right: 20px;
&:hover {
-webkit-box-reflect: below 2px linear-gradient(transparent, rgba(0, 0, 0, 0.3));
-webkit-box-reflect: below 2px
linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}
}
......@@ -286,7 +364,8 @@ $text-indent: 16px;
}
&:hover {
-webkit-box-reflect: below 2px linear-gradient(transparent, rgba(0, 0, 0, 0.5));
-webkit-box-reflect: below 2px
linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
// .box {
......@@ -323,21 +402,22 @@ $text-indent: 16px;
transition: all 0.2s ease;
&:hover {
-webkit-box-reflect: below 2px linear-gradient(transparent, rgba(0, 0, 0, 0.3));
-webkit-box-reflect: below 2px
linear-gradient(transparent, rgba(0, 0, 0, 0.3));
}
.svg-icon {
margin-right: 4px;
}
}
}
} */
.content {
width: 100%;
// width: 100%;
box-shadow: 0px 1px 56px 4px rgba(0, 0, 0, 0.16);
.cr-list {
padding: 0 74px;
// padding: 0 74px;
.cr-item {
margin-bottom: 40px;
......@@ -358,7 +438,6 @@ $text-indent: 16px;
}
.img-container {
.deco-left-top,
.deco-left-bottom,
.deco-right-top,
......@@ -522,14 +601,13 @@ $text-indent: 16px;
}
}
::v-deep .el-cascader .el-input .el-icon-arrow-down,
/* ::v-deep .el-cascader .el-input .el-icon-arrow-down,
::v-deep .el-select .el-input .el-select__caret {
font-weight: bold;
}
::v-deep .el-input,
.el-cascader {
// width: 368px !important;
.el-input__inner {
// width: 100%;
......@@ -552,7 +630,6 @@ $text-indent: 16px;
}
::v-deep .el-pagination {
.btn-prev,
.btn-next {
background: transparent;
......@@ -573,5 +650,5 @@ $text-indent: 16px;
.active {
color: #fff;
}
}
} */
</style>
\ No newline at end of file
<template>
<div class="cultural-relic">
<ListBanner title="共计已上线文物" :num="list.total" unit="件/套"/>
<ListBanner title="共计已上线文物" :num="list.total" unit="件/套" :info="['文物','展示']"/>
<div class="search-bar wow animate__animated animate__fadeIn">
<div class="search-wrapper">
<div class="search-item" @click="handleClickSearchBar('type')">
......@@ -660,7 +660,7 @@ $text-indent: 16px;
.content {
padding: 16px 0 60px;
width: 100%;
// width: 100%;
// margin-top: 32px;
// box-shadow: 0px 1px 56px 4px rgba(0, 0, 0, 0.16);
......
<template>
<div class="display">
<!-- <NavBar /> -->
<ListBanner title="共计已上线展览" :num="list.total" />
<div class="search-bar wow animate__animated animate__fadeIn">
<ListBanner
title="共计已上线展览"
:num="list.total"
:info="['展览', '展示']"
/>
<!-- <div class="search-bar wow animate__animated animate__fadeIn">
<div class="search-wrapper">
<!-- <div class="search-item" @click="handleClickSearchBar('type')">
<div class="search-item" @click="handleClickSearchBar('type')">
<span>{{ currentType }}</span>
<i class="el-icon-caret-bottom"></i>
</div>
......@@ -16,7 +20,7 @@
<div :span="4" class="search-item" @click="handleClickThreeD">
<div class="text">3D文物</div>
<svg-icon :icon-class="onlyShow3d ? 'filter-s' : 'filter'"></svg-icon>
</div> -->
</div>
<div class="search-item">
<input
type="text"
......@@ -27,18 +31,31 @@
<i class="el-icon-search" @click="search"></i>
</div>
</div>
</div> -->
<div class="type-group">
<el-row>
<el-col
:class="{ 'type-item': true, active: item.value == currentType }"
v-for="(item, index) in typeList"
:key="index"
:span="3"
@click.native="handleClickTypeItem(item)"
>
{{ item.label }}
</el-col>
<el-col :span="6">
<div class="search-item">
<input
type="text"
v-model="keyword"
placeholder="展览名称"
@keyup.enter="search"
/>
<i class="el-icon-search" @click="search"></i>
</div>
</el-col>
</el-row>
</div>
<el-row class="type-group">
<el-col
:class="{ 'type-item': true, active: item.value == currentType }"
v-for="(item, index) in typeList"
:key="index"
:span="3"
@click.native="handleClickTypeItem(item)"
>
{{ item.label }}
</el-col>
</el-row>
<div class="content-wrapper">
<div class="content">
<el-row :gutter="40" class="cr-list">
......@@ -111,7 +128,7 @@ import ListBanner from "@/components/ListBanner";
import { getList, getDisplayExistDict } from "@/api/display";
import { mapGetters } from "vuex";
import { debounce } from "@/utils/index";
import { titles} from './boutiqueTitles'
import { titles } from "./boutiqueTitles";
export default {
name: "Display",
components: { ListBanner },
......@@ -141,7 +158,7 @@ export default {
},
],
currentType: "",
boutiqueTitles:titles
boutiqueTitles: titles,
};
},
computed: {
......@@ -408,14 +425,23 @@ $text-indent: 16px;
}
.type-group {
padding: 0 13%;
margin-bottom: 32px;
// padding: 0 13%;
// margin-bottom: 32px;
background: #fff;
> div {
width: 1400px;
margin: auto;
position: relative;
padding: 20px 0;
}
.type-item {
display: flex;
justify-content: center;
align-content: center;
padding: 8px 0;
// padding: 8px 0;
height: 46px;
line-height: 46px;
margin-right: 16px;
cursor: pointer;
// border: 1px solid $themeSecondaryColor;
......@@ -430,6 +456,54 @@ $text-indent: 16px;
background: $themeSecondaryColor;
color: #fff;
}
.search-item {
position: absolute;
right: 0;
width: 300px;
// width: 30%;
height: 46px;
// color: #999;
padding: 0 20px;
display: flex;
font-size: 14px;
align-items: center;
justify-content: center;
/* border: 1px solid #ccc;
background-color: #fff; */
margin-right: 20px;
cursor: pointer;
border: 1px solid #fff;
background-color: #c5cade;
input {
outline: none;
border: none;
height: 100%;
background: transparent;
width: 100%;
color: #2b2d35;
}
::-webkit-input-placeholder {
/*Webkit browsers*/
color: #666;
}
:-moz-placeholder {
/*Mozilla Firefox 4 to 8*/
color: #666;
}
::moz-placeholder {
/*Mozilla Firefox 19+*/
color: #666;
}
:-ms-input-placeholder {
/*Internet Explorer 10+*/
color: #666;
}
}
}
.content-wrapper {
......@@ -438,7 +512,7 @@ $text-indent: 16px;
background-color: #fff;
.content {
width: 100%;
// width: 100%;
// box-shadow: 0px 1px 16px 4px rgba(0, 0, 0, 0.16);
.cr-list {
......@@ -497,10 +571,13 @@ $text-indent: 16px;
transition: all 0.5s ease;
overflow: hidden;
position: relative;
&::before {
content: none;
}
.face-image {
height: 100%;
object-fit: contain;
object-fit: cover;
transition: all 0.5s ease;
}
......
......@@ -10,7 +10,10 @@
.boutique {
.banner {
width: 100%;
height: 100%;
height: 100vh;
position: absolute;
top: -100px;
left: 0;
> img {
width: 100%;
height: 100%;
......
......@@ -39,8 +39,9 @@ export default {
background-color: #fff;
.home-item {
height: 100vh;
height: calc(100vh - 100px);
width: 100%;
position: relative;
}
}
</style>
\ No newline at end of file
......@@ -167,7 +167,7 @@ export default {
right: 0;
width: 100%;
height: 100%;
background-color: rgba($themeColor, 0.8);
// background-color: rgba($themeColor, 0.8);
z-index: 3;
}
}
......@@ -195,7 +195,8 @@ export default {
display: flex;
justify-content: center;
align-content: center;
color: #d9cfa6;
// color: #d9cfa6;
color: #333;
img {
position: absolute;
......@@ -268,7 +269,7 @@ export default {
height: 400px;
background-color: rgba(0, 0, 0, 0.3);
padding: 80px 60px;
color: #d9cfa6;
// color: #d9cfa6;
display: flex;
align-content: center;
......
<template>
<div class="display">
<!-- <NavBar /> -->
<ListBanner title="共计已收录博物馆" :num="list.total"/>
<ListBanner
title="共计已收录博物馆"
:num="list.total"
:info="['州馆', '展示']"
/>
<div class="content-wrapper">
<div class="content">
<div class="search wow animate__animated animate__fadeIn">
<el-input
class="input item"
suffix-icon="el-icon-search"
v-model="keyword"
placeholder="请输入关键词"
@keyup.enter.native="search"
clearable
>
</el-input>
<el-cascader
class="years item"
v-model="regionCode"
:options="regionTree"
:props="culturalRegionProps"
placeholder="请选择所属地区"
filterable
@change="handleRegionChange"
clearable
>
</el-cascader>
<div class="search-button" @click="search">
<svg-icon icon-class="search"></svg-icon>
检索
</div>
</div>
<el-row
:gutter="40"
class="search wow animate__animated animate__fadeIn"
>
<el-col :span="8">
<el-input
class="input item"
suffix-icon="el-icon-search"
v-model="keyword"
placeholder="请输入关键词"
@keyup.enter.native="search"
clearable
>
</el-input>
</el-col>
<el-col :span="8">
<el-cascader
class="years item"
v-model="regionCode"
:options="regionTree"
:props="culturalRegionProps"
placeholder="请选择所属地区"
filterable
@change="handleRegionChange"
clearable
>
</el-cascader>
</el-col>
<el-col :span="8">
<div class="search-button" @click="search">
<svg-icon icon-class="search"></svg-icon>
检索
</div>
</el-col>
</el-row>
<el-row :gutter="40" class="cr-list">
<el-col
:span="item.status == 1 ? 8 : 0"
......@@ -143,7 +155,6 @@ export default {
value: "code",
label: "name",
children: "children",
},
culturalRelicYears: [],
onlyShow3d: false,
......@@ -267,18 +278,18 @@ $text-indent: 16px;
// background-color: $themeColor;
// color: #fff;
.content-wrapper {
padding-top: 60px;
// padding-top: 60px;
padding-bottom: 126px;
background-color: #fff;
.search {
/* .search {
display: flex;
justify-content: center;
align-items: center;
background-image: url("@/assets/imgs/list/search-bg.png");
background-size: 22%;
// background-image: url("@/assets/imgs/list/search-bg.png");
// background-size: 22%;
margin-bottom: 40px;
padding: 90px 70px 80px;
height: 214px;
// padding: 90px 70px 80px;
// height: 214px;
.item {
margin-right: 20px;
}
......@@ -297,13 +308,13 @@ $text-indent: 16px;
margin-right: 4px;
}
}
}
} */
.content {
width: 100%;
box-shadow: 0px 1px 56px 4px rgba(0, 0, 0, 0.16);
// width: 100%;
// box-shadow: 0px 1px 56px 4px rgba(0, 0, 0, 0.16);
.cr-list {
padding: 0 74px;
// padding: 0 74px;
.cr-item {
margin-bottom: 40px;
.container {
......@@ -338,8 +349,8 @@ $text-indent: 16px;
overflow: hidden;
position: relative;
.face-image {
height: 100%;
object-fit: contain;
width: 100%;
object-fit: cover;
transition: all 0.5s ease;
}
.deco-left-top,
......@@ -411,7 +422,7 @@ $text-indent: 16px;
}
}
::v-deep .el-cascader .el-input .el-icon-arrow-down,
/* ::v-deep .el-cascader .el-input .el-icon-arrow-down,
::v-deep .el-select .el-input .el-select__caret {
font-weight: bold;
}
......@@ -452,5 +463,5 @@ $text-indent: 16px;
.active {
color: #fff;
}
}
} */
</style>
\ No newline at end of file
......@@ -328,7 +328,7 @@ $text-indent: 16px;
}
}
.content {
width: 100%;
// width: 100%;
box-shadow: 0px 1px 56px 4px rgba(0, 0, 0, 0.16);
.cr-list {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论