2021-08-29 04:36:17 -07:00
|
|
|
.color-wrap {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
.box-card-header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.demo-line {
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
|
|
|
.component-preview h4 {
|
|
|
|
font-size: 20px;
|
|
|
|
margin: 40px 0 20px;
|
|
|
|
color: #909399;
|
|
|
|
}
|
|
|
|
.demo-block {
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 3px;
|
|
|
|
transition: 0.2s;
|
|
|
|
}
|
|
|
|
.demo-block.hover {
|
2023-08-16 08:13:57 -07:00
|
|
|
box-shadow:
|
|
|
|
0 0 8px 0 rgba(232, 237, 250, 0.6),
|
|
|
|
0 2px 4px 0 rgba(232, 237, 250, 0.5);
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
.demo-block code {
|
|
|
|
font-family: Menlo, Monaco, Consolas, Courier, monospace;
|
|
|
|
}
|
|
|
|
.demo-block .demo-button {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.demo-block .source {
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
.demo-block .meta {
|
|
|
|
background-color: #fafafa;
|
|
|
|
border-top: 1px solid #eaeefb;
|
|
|
|
overflow: hidden;
|
|
|
|
height: 0;
|
|
|
|
transition: height 0.2s;
|
|
|
|
}
|
|
|
|
.demo-block .description {
|
|
|
|
padding: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border: 1px solid #ebebeb;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 22px;
|
|
|
|
color: #666;
|
|
|
|
word-break: break-word;
|
|
|
|
margin: 10px;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.demo-block .description p {
|
|
|
|
margin: 0;
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
|
|
|
.demo-block .description code {
|
|
|
|
color: #5e6d82;
|
|
|
|
background-color: #e6effb;
|
|
|
|
margin: 0 4px;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 1px 5px;
|
|
|
|
font-size: 12px;
|
|
|
|
border-radius: 3px;
|
|
|
|
height: 18px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|
|
|
|
.demo-block .highlight pre {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.demo-block .highlight code.hljs {
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
max-height: none;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
.demo-block .highlight code.hljs:before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control {
|
|
|
|
border-top: 1px solid #eaeefb;
|
|
|
|
height: 44px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
text-align: center;
|
|
|
|
margin-top: -1px;
|
|
|
|
color: #d3dce6;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control.is-fixed {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 868px;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control i {
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 44px;
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control i.hovering {
|
|
|
|
transform: translateX(-40px);
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control > span {
|
|
|
|
position: absolute;
|
|
|
|
transform: translateX(-30px);
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 44px;
|
|
|
|
transition: 0.3s;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control:hover {
|
|
|
|
color: #409eff;
|
|
|
|
background-color: #f9fafc;
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control .text-slide-enter,
|
|
|
|
.demo-block .demo-block-control .text-slide-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(10px);
|
|
|
|
}
|
|
|
|
.demo-block .demo-block-control .control-button {
|
|
|
|
line-height: 26px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-left: 5px;
|
|
|
|
padding-right: 25px;
|
|
|
|
}
|
|
|
|
.footer {
|
|
|
|
background-color: #f7fbfd;
|
|
|
|
width: 100%;
|
|
|
|
padding: 40px 150px;
|
|
|
|
margin-top: -340px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
height: 340px;
|
|
|
|
}
|
|
|
|
.footer .container {
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.footer .footer-main {
|
|
|
|
font-size: 0;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-right: 110px;
|
|
|
|
}
|
|
|
|
.footer .footer-main h4 {
|
|
|
|
font-size: 18px;
|
|
|
|
color: #333;
|
|
|
|
line-height: 1;
|
|
|
|
margin: 0 0 15px;
|
|
|
|
}
|
|
|
|
.footer .footer-main .footer-main-link {
|
|
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 2;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #666;
|
|
|
|
}
|
|
|
|
.footer .footer-main .footer-main-link:hover {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.footer .footer-social {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.footer .footer-social .footer-social-title {
|
|
|
|
color: #666;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 1;
|
|
|
|
margin: 0 0 20px;
|
|
|
|
padding: 0;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.footer .footer-social .elementdoc {
|
|
|
|
transition: 0.3s;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 32px;
|
|
|
|
text-align: center;
|
|
|
|
color: #c8d6e8;
|
|
|
|
background-color: transparent;
|
|
|
|
size: 32px;
|
|
|
|
font-size: 32px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
.footer .footer-social .elementdoc:hover {
|
|
|
|
transform: scale(1.2);
|
|
|
|
color: #8d99ab;
|
|
|
|
}
|
|
|
|
.footer .footer-social .doc-icon-gitter {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
.el-popover.footer-popover {
|
|
|
|
padding: 0;
|
|
|
|
min-width: 120px;
|
|
|
|
line-height: normal;
|
|
|
|
box-shadow: 0 0 11px 0 rgba(174, 187, 211, 0.24);
|
|
|
|
}
|
|
|
|
.el-popover.footer-popover .footer-popover-title {
|
|
|
|
border-bottom: 1px solid #eaeefb;
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
text-align: center;
|
|
|
|
color: #99a9bf;
|
|
|
|
background-color: #f8f9fe;
|
|
|
|
}
|
|
|
|
.el-popover.footer-popover img {
|
|
|
|
size: 100px;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
@media (max-width: 1140px) {
|
|
|
|
.footer {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 1000px) {
|
|
|
|
.footer-social {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.footer .footer-main {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.theme-picker {
|
|
|
|
height: 80px;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.theme-picker .el-color-picker__trigger {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.theme-picker-dropdown .el-color-dropdown__link-btn {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.algolia-search {
|
|
|
|
width: 450px !important;
|
|
|
|
}
|
|
|
|
.algolia-search.is-empty .el-autocomplete-suggestion__list {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.algolia-search .el-autocomplete-suggestion__list {
|
|
|
|
position: static !important;
|
|
|
|
padding-bottom: 28px;
|
|
|
|
}
|
|
|
|
.algolia-search li {
|
|
|
|
border-bottom: 1px solid #ebebeb;
|
|
|
|
}
|
|
|
|
.algolia-search li:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-highlight {
|
|
|
|
color: #409eff;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-title {
|
|
|
|
font-size: 14px;
|
|
|
|
margin: 6px 0;
|
|
|
|
line-height: 1.8;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-separator {
|
|
|
|
padding: 0 6px;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-content {
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 6px 0;
|
|
|
|
line-height: 2.4;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-link {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
padding-right: 20px;
|
|
|
|
background-color: #e4e7ed;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-link:hover {
|
|
|
|
background-color: #e4e7ed;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-link img {
|
|
|
|
display: inline-block;
|
|
|
|
height: 17px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.algolia-search .algolia-search-empty {
|
|
|
|
margin: 5px 0;
|
|
|
|
text-align: center;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.progress[data-v-3285c94c] {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 2px;
|
|
|
|
width: 0;
|
2023-08-16 08:13:57 -07:00
|
|
|
transition:
|
|
|
|
width 0.2s,
|
|
|
|
opacity 0.4s;
|
2021-08-29 04:36:17 -07:00
|
|
|
opacity: 1;
|
|
|
|
z-index: 999999;
|
|
|
|
}
|
|
|
|
.loadingClass {
|
|
|
|
z-index: 0 !important;
|
|
|
|
}
|
|
|
|
.loadingClass .el-loading-spinner {
|
|
|
|
top: 0;
|
|
|
|
margin-top: 30%;
|
|
|
|
}
|
|
|
|
.headerWrapper[data-v-70469f40] {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
#v3-banner[data-v-70469f40] {
|
|
|
|
background-color: #409eff;
|
|
|
|
min-height: 30px;
|
|
|
|
padding: 5px 60px;
|
|
|
|
z-index: 19;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
#v3-banner a[data-v-70469f40] {
|
|
|
|
color: #fff;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.header[data-v-70469f40] {
|
|
|
|
height: 80px;
|
|
|
|
background-color: #fff;
|
|
|
|
color: #fff;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
line-height: 80px;
|
|
|
|
z-index: 100;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.header .container[data-v-70469f40] {
|
|
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
border-bottom: 1px solid #dcdfe6;
|
|
|
|
}
|
|
|
|
.header .nav-lang-spe[data-v-70469f40] {
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
.header h1[data-v-70469f40] {
|
|
|
|
margin: 0;
|
|
|
|
float: left;
|
|
|
|
font-size: 32px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
.header h1 a[data-v-70469f40] {
|
|
|
|
color: #333;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.header h1 span[data-v-70469f40] {
|
|
|
|
font-size: 12px;
|
|
|
|
display: inline-block;
|
|
|
|
width: 34px;
|
|
|
|
height: 18px;
|
|
|
|
border: 1px solid hsla(0, 0%, 100%, 0.5);
|
|
|
|
text-align: center;
|
|
|
|
line-height: 18px;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-left: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
.header .nav[data-v-70469f40] {
|
|
|
|
float: right;
|
|
|
|
height: 100%;
|
|
|
|
line-height: 80px;
|
|
|
|
background: transparent;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.header .nav[data-v-70469f40]:after,
|
|
|
|
.header .nav[data-v-70469f40]:before {
|
|
|
|
display: table;
|
|
|
|
content: '';
|
|
|
|
}
|
|
|
|
.header .nav[data-v-70469f40]:after {
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.header .nav-gap[data-v-70469f40] {
|
|
|
|
position: relative;
|
|
|
|
width: 1px;
|
|
|
|
height: 80px;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
.header .nav-gap[data-v-70469f40]:before {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: calc(50% - 8px);
|
|
|
|
width: 1px;
|
|
|
|
height: 16px;
|
|
|
|
background: #ebebeb;
|
|
|
|
}
|
|
|
|
.header .nav-logo-small[data-v-70469f40],
|
|
|
|
.header .nav-logo[data-v-70469f40] {
|
|
|
|
vertical-align: sub;
|
|
|
|
}
|
|
|
|
.header .nav-logo-small[data-v-70469f40] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.header .nav-item[data-v-70469f40] {
|
|
|
|
margin: 0;
|
|
|
|
float: left;
|
|
|
|
list-style: none;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.header .nav-item.nav-algolia-search[data-v-70469f40] {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item[data-v-70469f40],
|
|
|
|
.header .nav-item[data-v-70469f40]:last-child {
|
|
|
|
cursor: default;
|
|
|
|
margin-left: 34px;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item span[data-v-70469f40],
|
|
|
|
.header .nav-item:last-child span[data-v-70469f40] {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item .nav-lang[data-v-70469f40],
|
|
|
|
.header .nav-item:last-child .nav-lang[data-v-70469f40] {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
color: #888;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item .nav-lang[data-v-70469f40]:hover,
|
|
|
|
.header .nav-item:last-child .nav-lang[data-v-70469f40]:hover {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item .nav-lang.active[data-v-70469f40],
|
|
|
|
.header .nav-item:last-child .nav-lang.active[data-v-70469f40] {
|
|
|
|
font-weight: 700;
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.header .nav-item a[data-v-70469f40] {
|
|
|
|
text-decoration: none;
|
|
|
|
color: #1989fa;
|
|
|
|
opacity: 0.5;
|
|
|
|
display: block;
|
|
|
|
padding: 0 22px;
|
|
|
|
}
|
|
|
|
.header .nav-item a.active[data-v-70469f40],
|
|
|
|
.header .nav-item a[data-v-70469f40]:hover {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
.header .nav-item a.active[data-v-70469f40]:after {
|
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: calc(50% - 15px);
|
|
|
|
width: 30px;
|
|
|
|
height: 2px;
|
|
|
|
background: #409eff;
|
|
|
|
}
|
|
|
|
.nav-dropdown[data-v-70469f40] {
|
|
|
|
margin-bottom: 6px;
|
|
|
|
padding-left: 18px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.nav-dropdown span[data-v-70469f40] {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #888;
|
|
|
|
line-height: 40px;
|
|
|
|
transition: 0.2s;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
.nav-dropdown span[data-v-70469f40]:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.nav-dropdown i[data-v-70469f40] {
|
|
|
|
transition: 0.2s;
|
|
|
|
font-size: 12px;
|
|
|
|
color: #979797;
|
|
|
|
transform: translateY(-2px);
|
|
|
|
}
|
|
|
|
.nav-dropdown .is-active i[data-v-70469f40],
|
|
|
|
.nav-dropdown .is-active span[data-v-70469f40] {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.nav-dropdown .is-active i[data-v-70469f40] {
|
|
|
|
transform: rotate(180deg) translateY(3px);
|
|
|
|
}
|
|
|
|
.nav-dropdown:hover i[data-v-70469f40],
|
|
|
|
.nav-dropdown:hover span[data-v-70469f40] {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.nav-dropdown-list[data-v-70469f40] {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
@media (max-width: 850px) {
|
|
|
|
.header .nav-logo[data-v-70469f40] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.header .nav-logo-small[data-v-70469f40] {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.header .nav-item[data-v-70469f40] {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item[data-v-70469f40],
|
|
|
|
.header .nav-item[data-v-70469f40]:last-child {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.header .nav-item a[data-v-70469f40] {
|
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
.header .nav-algolia-search[data-v-70469f40],
|
|
|
|
.header .nav-theme-switch[data-v-70469f40] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 700px) {
|
|
|
|
.header .container[data-v-70469f40] {
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
.header .nav-item a[data-v-70469f40] {
|
|
|
|
font-size: 12px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item[data-v-70469f40] {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item .nav-lang[data-v-70469f40] {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.header .nav-item.lang-item .nav-lang span[data-v-70469f40] {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.header .nav-dropdown[data-v-70469f40] {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.header .nav-dropdown span[data-v-70469f40] {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.header .nav-gap[data-v-70469f40] {
|
|
|
|
padding: 0 8px;
|
|
|
|
}
|
|
|
|
.header .nav-versions[data-v-70469f40] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.side-nav {
|
|
|
|
width: 100%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
padding-right: 30px;
|
|
|
|
transition: opacity 0.3s;
|
|
|
|
}
|
|
|
|
.side-nav.is-fade {
|
|
|
|
transition: opacity 3s;
|
|
|
|
}
|
|
|
|
.side-nav li {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.side-nav ul {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.side-nav > ul > .nav-item > a {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
.side-nav > ul > .nav-item:nth-child(-n + 4) > a {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item a {
|
|
|
|
font-size: 16px;
|
|
|
|
color: #333;
|
|
|
|
line-height: 40px;
|
|
|
|
height: 40px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
text-decoration: none;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
transition: 0.15s ease-out;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item a.active {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item .nav-item a {
|
|
|
|
display: block;
|
|
|
|
height: 40px;
|
|
|
|
color: #444;
|
|
|
|
line-height: 40px;
|
|
|
|
font-size: 14px;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item .nav-item a.active,
|
|
|
|
.side-nav .nav-item .nav-item a:hover {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors > .sub-nav {
|
|
|
|
margin-top: -10px;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors > a {
|
|
|
|
color: #777;
|
|
|
|
font-weight: 300;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors .nav-item {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors .nav-item a {
|
|
|
|
height: auto;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: 8px 12px 12px 0;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors .nav-item a img {
|
|
|
|
width: 42px;
|
|
|
|
}
|
|
|
|
.side-nav .nav-item.sponsors .nav-item:first-child a img {
|
|
|
|
width: 36px;
|
|
|
|
}
|
|
|
|
.side-nav .nav-group__title {
|
|
|
|
font-size: 12px;
|
|
|
|
color: #999;
|
|
|
|
line-height: 26px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
.side-nav #code-sponsor-widget {
|
|
|
|
margin: 0 0 0 -20px;
|
|
|
|
}
|
|
|
|
.nav-dropdown-list {
|
|
|
|
width: 120px;
|
|
|
|
margin-top: -8px;
|
|
|
|
}
|
|
|
|
.footer-nav,
|
|
|
|
.nav-dropdown-list li {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.footer-nav {
|
|
|
|
padding: 40px 0;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
.footer-nav:after {
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
|
|
|
.footer-nav i {
|
|
|
|
transition: 0.3s;
|
|
|
|
color: #999;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
.footer-nav-link {
|
|
|
|
cursor: pointer;
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
.footer-nav-link:hover,
|
|
|
|
.footer-nav-link:hover i {
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.footer-nav-left {
|
|
|
|
float: left;
|
|
|
|
margin-left: -4px;
|
|
|
|
}
|
|
|
|
.footer-nav-right {
|
|
|
|
float: right;
|
|
|
|
margin-right: -4px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-alert .el-alert {
|
|
|
|
margin: 20px 0 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-alert .el-alert:first-child {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.demo-badge.demo-block .el-dropdown {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.demo-badge.demo-block .share-button {
|
|
|
|
width: 36px;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.demo-badge.demo-block .mark {
|
|
|
|
margin-top: 8px;
|
|
|
|
line-height: 1;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.demo-badge.demo-block .item {
|
|
|
|
margin-right: 40px;
|
|
|
|
}
|
|
|
|
.demo-border .text {
|
|
|
|
width: 15%;
|
|
|
|
}
|
|
|
|
.demo-border .line {
|
|
|
|
width: 70%;
|
|
|
|
}
|
|
|
|
.demo-border .line div {
|
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
|
|
|
border-top: 1px solid #eee;
|
|
|
|
}
|
|
|
|
.demo-border .line .dashed {
|
|
|
|
border-top: 2px dashed #eee;
|
|
|
|
}
|
|
|
|
.demo-shadow {
|
|
|
|
height: 100px;
|
|
|
|
width: 50%;
|
|
|
|
border: 1px solid #eee;
|
|
|
|
}
|
|
|
|
.demo-shadow-text {
|
|
|
|
line-height: 50px;
|
|
|
|
color: #666;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.demo-radius .title {
|
|
|
|
color: #666;
|
|
|
|
font-size: 18px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
.demo-radius .value {
|
|
|
|
color: #333;
|
|
|
|
font-size: 16px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
.demo-radius .radius {
|
|
|
|
height: 60px;
|
|
|
|
width: 70%;
|
|
|
|
border: 1px solid #d7dae2;
|
|
|
|
border-radius: 0;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.demo-radius .radius-30 {
|
|
|
|
border-radius: 30px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-button .el-row {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-button .el-row:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-button .el-button + .el-button {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-button .el-button-group .el-button + .el-button {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-button .el-button-group + .el-button-group {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-calendar.demo-block .is-selected {
|
|
|
|
color: #1989fa;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .text {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .time {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #999;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .bottom {
|
|
|
|
margin-top: 13px;
|
|
|
|
line-height: 12px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .item {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .button {
|
|
|
|
padding: 0;
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .image {
|
|
|
|
width: 100%;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.demo-block.demo-card .box-card {
|
|
|
|
width: 480px;
|
|
|
|
}
|
|
|
|
.demo-carousel .block {
|
|
|
|
padding: 30px;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
display: inline-block;
|
|
|
|
width: 49%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-carousel .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-carousel .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__container {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__item h3 {
|
|
|
|
color: #fff;
|
|
|
|
font-size: 18px;
|
|
|
|
line-height: 300px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__item h3.small {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 150px;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__item h3.medium {
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 200px;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__item:nth-child(2n) {
|
|
|
|
background-color: #99a9bf;
|
|
|
|
}
|
|
|
|
.demo-carousel .el-carousel__item:nth-child(odd) {
|
|
|
|
background-color: #d3dce6;
|
|
|
|
}
|
|
|
|
.demo-cascader .el-cascader {
|
|
|
|
width: 222px;
|
|
|
|
}
|
|
|
|
.demo-cascader-size .el-cascader {
|
|
|
|
vertical-align: top;
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.demo-cascader .source > div {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.demo-cascader .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-cascader .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-cascader .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-collapse .el-collapse-item__header .header-icon {
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|
|
|
|
.demo-color-picker .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
display: inline-block;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-color-picker .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-color-picker .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-color-picker .el-color-picker + .el-color-picker {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
.demo-color-box {
|
|
|
|
position: relative;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 20px;
|
|
|
|
margin: 5px 0;
|
|
|
|
height: 114px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.demo-color-box .value {
|
|
|
|
font-size: 12px;
|
|
|
|
opacity: 0.69;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
.demo-color-box-other {
|
|
|
|
height: 74px;
|
|
|
|
margin: 10px 0 !important;
|
|
|
|
border-radius: 4px 4px 4px 4px !important;
|
|
|
|
padding: 15px 20px;
|
|
|
|
}
|
|
|
|
.demo-color-box-group .demo-color-box {
|
|
|
|
border-radius: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.demo-color-box-group .demo-color-box:first-child {
|
|
|
|
border-radius: 4px 4px 0 0;
|
|
|
|
}
|
|
|
|
.bg-color-sub,
|
|
|
|
.demo-color-box-group .demo-color-box:last-child {
|
|
|
|
border-radius: 0 0 4px 4px;
|
|
|
|
}
|
|
|
|
.bg-color-sub {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
.bg-blue-sub-item {
|
|
|
|
width: 11.1111111%;
|
|
|
|
height: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.bg-blue-sub-item:first-child {
|
|
|
|
border-radius: 0 0 0 4px;
|
|
|
|
}
|
|
|
|
.bg-success-sub-item {
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.bg-success-sub-item:first-child {
|
|
|
|
border-radius: 0 0 0 4px;
|
|
|
|
}
|
|
|
|
.bg-success-sub-item:last-child {
|
|
|
|
border-radius: 0 0 4px 0;
|
|
|
|
}
|
|
|
|
.bg-transparent {
|
|
|
|
border: 1px solid #fcc3c3;
|
|
|
|
color: #303133;
|
|
|
|
background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M0 98 L100 0 L100 1 L1 98' fill='%23FCC3C3' /></svg>");
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-position: 50%;
|
2023-08-16 08:13:57 -07:00
|
|
|
background-size:
|
|
|
|
100% 100%,
|
|
|
|
auto;
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
.demo-color-box-lite {
|
|
|
|
color: #303133;
|
|
|
|
}
|
|
|
|
.el-footer,
|
|
|
|
.el-header {
|
|
|
|
background-color: #b3c0d1;
|
|
|
|
color: #333;
|
|
|
|
line-height: 60px;
|
|
|
|
}
|
|
|
|
.el-aside {
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container .el-footer,
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container .el-header {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container .el-aside {
|
|
|
|
background-color: #d3dce6;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 200px;
|
|
|
|
}
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container .el-main {
|
|
|
|
background-color: #e9eef3;
|
|
|
|
color: #333;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 160px;
|
|
|
|
}
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container > .source > .el-container {
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
2022-11-15 09:20:54 -08:00
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container > .source > .el-container:nth-child(5) .el-aside,
|
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container > .source > .el-container:nth-child(6) .el-aside {
|
2021-08-29 04:36:17 -07:00
|
|
|
line-height: 260px;
|
|
|
|
}
|
2022-11-15 09:20:54 -08:00
|
|
|
#chang-jian-ye-mian-bu-ju + .demo-container > .source > .el-container:nth-child(7) .el-aside {
|
2021-08-29 04:36:17 -07:00
|
|
|
line-height: 320px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-date-picker .source > div {
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.demo-date-picker .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.demo-date-picker .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-date-picker .container {
|
|
|
|
flex: 1;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.demo-date-picker .container .block {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-date-picker .container .block:last-child {
|
|
|
|
border-top: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.demo-date-picker .container:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-date-picker .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-datetime-picker .source > div {
|
|
|
|
padding: 0;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.demo-datetime-picker .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.demo-datetime-picker .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-datetime-picker .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-dialog .dialog-footer button:first-child {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-dialog .full-image {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.demo-block.demo-dialog .el-dialog__wrapper {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-dialog .el-input,
|
|
|
|
.demo-block.demo-dialog .el-select {
|
|
|
|
width: 300px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-dialog .el-button--text {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.demo-block .el-dropdown {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.demo-block .el-dropdown + .el-dropdown {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.demo-block .el-dropdown-link {
|
|
|
|
cursor: pointer;
|
|
|
|
color: #409eff;
|
|
|
|
}
|
|
|
|
.demo-block .el-icon-arrow-down {
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.block-col-2 {
|
|
|
|
margin: -24px;
|
|
|
|
}
|
|
|
|
.block-col-2 .el-col {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.block-col-2 .el-col:last-child {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
.demo-dropdown .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-form .el-select .el-input {
|
|
|
|
width: 380px;
|
|
|
|
}
|
|
|
|
.demo-form .el-form {
|
|
|
|
width: 460px;
|
|
|
|
}
|
|
|
|
.demo-form .line {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-form .el-checkbox-group {
|
|
|
|
width: 320px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.demo-form .el-checkbox-group:after,
|
|
|
|
.demo-form .el-checkbox-group:before {
|
|
|
|
content: ' ';
|
|
|
|
display: table;
|
|
|
|
}
|
|
|
|
.demo-form .el-checkbox-group:after {
|
|
|
|
clear: both;
|
|
|
|
visibility: hidden;
|
|
|
|
font-size: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
.demo-form .el-checkbox-group .el-checkbox {
|
|
|
|
float: left;
|
|
|
|
width: 160px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.demo-form .el-checkbox-group .el-checkbox + .el-checkbox {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.demo-form .demo-form-normal {
|
|
|
|
width: 460px;
|
|
|
|
}
|
|
|
|
.demo-form .demo-form-inline {
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
.demo-form .demo-form-inline .el-input {
|
|
|
|
width: 150px;
|
|
|
|
}
|
|
|
|
.demo-form .demo-form-inline > * {
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
.demo-form .demo-ruleForm {
|
|
|
|
width: 460px;
|
|
|
|
}
|
|
|
|
.demo-form .demo-ruleForm .el-select .el-input {
|
|
|
|
width: 360px;
|
|
|
|
}
|
|
|
|
.demo-form .demo-dynamic .el-input {
|
|
|
|
margin-right: 10px;
|
|
|
|
width: 270px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.demo-form .fr {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
ul.language-list {
|
|
|
|
color: #5e6d82;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
ul.language-list li {
|
|
|
|
line-height: 1.8;
|
|
|
|
}
|
|
|
|
.demo-icon .source > div > i {
|
|
|
|
color: #606266;
|
|
|
|
margin: 0 20px;
|
|
|
|
font-size: 1.5em;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.demo-icon .source button {
|
|
|
|
margin: 0 20px;
|
|
|
|
}
|
|
|
|
.page-component .content > ul.icon-list {
|
|
|
|
overflow: hidden;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0 !important;
|
|
|
|
border: 1px solid #eaeefb;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.icon-list li {
|
|
|
|
float: left;
|
|
|
|
width: 16.66%;
|
|
|
|
text-align: center;
|
|
|
|
height: 120px;
|
|
|
|
line-height: 120px;
|
|
|
|
color: #666;
|
|
|
|
font-size: 13px;
|
|
|
|
border-right: 1px solid #eee;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
margin-right: -1px;
|
|
|
|
margin-bottom: -1px;
|
|
|
|
}
|
|
|
|
.icon-list li:after {
|
|
|
|
content: '';
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.icon-list li:after,
|
|
|
|
.icon-list li span {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
.icon-list li span {
|
|
|
|
line-height: normal;
|
2023-08-16 08:13:57 -07:00
|
|
|
font-family:
|
|
|
|
Helvetica Neue,
|
|
|
|
Helvetica,
|
|
|
|
PingFang SC,
|
|
|
|
Hiragino Sans GB,
|
|
|
|
Microsoft YaHei,
|
|
|
|
SimSun,
|
2022-11-15 09:20:54 -08:00
|
|
|
sans-serif;
|
2021-08-29 04:36:17 -07:00
|
|
|
color: #99a9bf;
|
|
|
|
transition: color 0.15s linear;
|
|
|
|
}
|
|
|
|
.icon-list li i {
|
|
|
|
display: block;
|
|
|
|
font-size: 32px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
color: #606266;
|
|
|
|
transition: color 0.15s linear;
|
|
|
|
}
|
|
|
|
.icon-list li .icon-name {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 3px;
|
|
|
|
height: 1em;
|
|
|
|
}
|
|
|
|
.icon-list li:hover i,
|
|
|
|
.icon-list li:hover span {
|
|
|
|
color: #5cb6ff;
|
|
|
|
}
|
|
|
|
.demo-block.demo-input-number .el-input-number + .el-input-number {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-input .el-select .el-input {
|
|
|
|
width: 130px;
|
|
|
|
}
|
|
|
|
.demo-input .el-input {
|
|
|
|
width: 180px;
|
|
|
|
}
|
|
|
|
.demo-input .el-textarea {
|
|
|
|
width: 414px;
|
|
|
|
}
|
|
|
|
.demo-input .el-input-group {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.demo-input .demo-input-size .el-input {
|
|
|
|
vertical-align: top;
|
|
|
|
margin: 0 10px 10px 0;
|
|
|
|
}
|
|
|
|
.demo-input .input-with-select .el-input-group__prepend {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
.demo-input .demo-autocomplete {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-input .demo-autocomplete .sub-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
}
|
|
|
|
.demo-input .demo-autocomplete .el-col:not(:last-child) {
|
|
|
|
border-right: 1px solid rgba(224, 230, 237, 0.5);
|
|
|
|
}
|
|
|
|
.demo-input .demo-autocomplete .el-autocomplete {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.el-autocomplete-suggestion.my-autocomplete li {
|
|
|
|
line-height: normal;
|
|
|
|
padding-top: 7px;
|
|
|
|
padding-bottom: 7px;
|
|
|
|
}
|
|
|
|
.el-autocomplete-suggestion.my-autocomplete li .name {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.el-autocomplete-suggestion.my-autocomplete li .addr {
|
|
|
|
font-size: 12px;
|
|
|
|
color: #b4b4b4;
|
|
|
|
}
|
|
|
|
.el-autocomplete-suggestion.my-autocomplete li .highlighted .addr {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
.demo-input-suffix {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.demo-input-suffix .el-input {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.demo-layout .el-row {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-layout .el-row:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.demo-layout .el-col {
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
.demo-layout .bg-purple-dark {
|
|
|
|
background: #99a9bf;
|
|
|
|
}
|
|
|
|
.demo-layout .bg-purple {
|
|
|
|
background: #d3dce6;
|
|
|
|
}
|
|
|
|
.demo-layout .bg-purple-light {
|
|
|
|
background: #e5e9f2;
|
|
|
|
}
|
|
|
|
.demo-layout .grid-content {
|
|
|
|
border-radius: 4px;
|
|
|
|
min-height: 36px;
|
|
|
|
}
|
|
|
|
.demo-layout .row-bg {
|
|
|
|
padding: 10px 0;
|
|
|
|
background-color: #f9fafc;
|
|
|
|
}
|
|
|
|
.demo-loading .el-table {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu .el-menu-demo {
|
|
|
|
padding-left: 55px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu .el-menu-vertical-demo:not(.el-menu--collapse) {
|
|
|
|
width: 240px;
|
|
|
|
min-height: 400px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu .line {
|
|
|
|
height: 1px;
|
|
|
|
background-color: #e0e6ed;
|
|
|
|
margin: 35px -24px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu h5 {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu .tac {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-block.demo-menu .tac .el-menu-vertical-demo {
|
|
|
|
display: inline-block;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.demo-pagination .source.first {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.demo-pagination .first .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
display: inline-block;
|
|
|
|
width: 50%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-pagination .first .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-pagination .first .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-pagination .source.last {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.demo-pagination .last .block {
|
|
|
|
padding: 30px 24px;
|
|
|
|
border-bottom: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.demo-pagination .last .block:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.demo-pagination .last .demonstration {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
line-height: 44px;
|
|
|
|
}
|
|
|
|
.demo-pagination .last .demonstration + .el-pagination {
|
|
|
|
width: 70%;
|
|
|
|
margin: 5px 20px 0 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-popover .el-popover + .el-popover {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-popover .el-input {
|
|
|
|
width: 360px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-popover .el-button {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-progress .el-progress--line {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
width: 350px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-progress .el-progress--circle {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
|
|
|
.demo-rate .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
display: inline-block;
|
|
|
|
width: 49%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-rate .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-rate .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-select .el-select {
|
|
|
|
width: 240px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-slider .source {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-slider .block {
|
|
|
|
padding: 30px 24px;
|
|
|
|
overflow: hidden;
|
|
|
|
border-bottom: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.demo-block.demo-slider .block:last-child {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
.demo-block.demo-slider .demonstration {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
line-height: 44px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-slider .demonstration + .el-slider {
|
|
|
|
float: right;
|
|
|
|
width: 70%;
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-switch .el-switch {
|
|
|
|
margin: 20px 20px 20px 0;
|
|
|
|
}
|
|
|
|
.el-table .warning-row {
|
|
|
|
background: #fdf5e6;
|
|
|
|
}
|
|
|
|
.el-table .success-row {
|
|
|
|
background: #f0f9eb;
|
|
|
|
}
|
|
|
|
.demo-table .name-wrapper {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.demo-table .demo-table-expand label {
|
|
|
|
width: 90px;
|
|
|
|
color: #99a9bf;
|
|
|
|
}
|
|
|
|
.demo-table .demo-table-expand .el-form-item {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-bottom: 0;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .el-tag + .el-tag {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .button-new-tag {
|
|
|
|
margin-left: 10px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 30px;
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .input-new-tag {
|
|
|
|
width: 90px;
|
|
|
|
margin-left: 10px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .tag-group {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .tag-group__title {
|
|
|
|
width: 45px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #606266;
|
|
|
|
}
|
|
|
|
.demo-block.demo-tag .tag-group + .tag-group {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.demo-block .el-date-editor + .el-date-editor {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.demo-timeline .source .radio {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-timeline .source .radio .el-radio-group {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .el-tooltip + .el-tooltip {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box {
|
|
|
|
width: 400px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .top {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .left {
|
|
|
|
float: left;
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .right {
|
|
|
|
float: right;
|
|
|
|
width: 60px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .bottom {
|
|
|
|
clear: both;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .item {
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .left .el-tooltip__popper,
|
|
|
|
.demo-tooltip .box .right .el-tooltip__popper {
|
|
|
|
padding: 8px 10px;
|
|
|
|
}
|
|
|
|
.demo-tooltip .box .el-tooltip {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.demo-transition .transition-box {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
width: 200px;
|
|
|
|
height: 100px;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #409eff;
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
padding: 40px 20px;
|
|
|
|
margin-right: 20px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.demo-transfer .transfer-footer {
|
|
|
|
margin-left: 15px;
|
|
|
|
padding: 6px 5px;
|
|
|
|
}
|
|
|
|
.demo-tree .leaf {
|
|
|
|
width: 20px;
|
|
|
|
background: #ddd;
|
|
|
|
}
|
|
|
|
.demo-tree .folder {
|
|
|
|
width: 20px;
|
|
|
|
background: #888;
|
|
|
|
}
|
|
|
|
.demo-tree .buttons,
|
|
|
|
.demo-tree .filter-tree {
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.demo-tree .custom-tree-container {
|
|
|
|
display: flex;
|
|
|
|
margin: -24px;
|
|
|
|
}
|
|
|
|
.demo-tree .block {
|
|
|
|
flex: 1;
|
|
|
|
padding: 8px 24px 24px;
|
|
|
|
}
|
|
|
|
.demo-tree .block:first-child {
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
}
|
|
|
|
.demo-tree .block > p {
|
|
|
|
text-align: center;
|
|
|
|
margin: 0;
|
|
|
|
line-height: 4;
|
|
|
|
}
|
|
|
|
.demo-tree .custom-tree-node {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
.demo-typo-size .color-dark-light {
|
|
|
|
color: #99a9bf;
|
|
|
|
}
|
|
|
|
.demo-term-box img {
|
|
|
|
width: 24%;
|
|
|
|
margin: 0 4% 20px 0;
|
|
|
|
}
|
|
|
|
.lineH-left {
|
|
|
|
display: inline-block;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
.lineH-right {
|
|
|
|
display: inline-block;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0 0 0 90px;
|
|
|
|
margin: 0;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.lineH-right li {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #666;
|
|
|
|
height: 20px;
|
|
|
|
line-height: 20px;
|
|
|
|
}
|
|
|
|
.lineH-right li span {
|
|
|
|
padding-left: 40px;
|
|
|
|
}
|
|
|
|
.upload-tip {
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 12px;
|
|
|
|
margin-top: 7px;
|
|
|
|
}
|
|
|
|
.demo-block {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
.demo-block .upload-demo {
|
|
|
|
width: 360px;
|
|
|
|
}
|
|
|
|
.demo-block .avatar-uploader .el-upload {
|
|
|
|
border: 1px dashed #d9d9d9;
|
|
|
|
border-radius: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.demo-block .avatar-uploader .el-upload:focus,
|
|
|
|
.demo-block .avatar-uploader .el-upload:hover {
|
|
|
|
border-color: #409eff;
|
|
|
|
}
|
|
|
|
.demo-block .avatar-uploader .avatar-uploader-icon {
|
|
|
|
font-size: 28px;
|
|
|
|
color: #8c939d;
|
|
|
|
width: 178px;
|
|
|
|
height: 178px;
|
|
|
|
line-height: 178px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-block .avatar-uploader .avatar {
|
|
|
|
width: 178px;
|
|
|
|
height: 178px;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.demo-divider-container-1 {
|
|
|
|
display: inline-block;
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
.demo-divider-container-2 {
|
|
|
|
display: inline-block;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
@keyframes dot {
|
|
|
|
0% {
|
|
|
|
width: 0;
|
|
|
|
margin-right: 1em;
|
|
|
|
}
|
|
|
|
to {
|
|
|
|
width: 1em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.demo-image .block,
|
|
|
|
.demo-image__error .block,
|
|
|
|
.demo-image__placeholder .block {
|
|
|
|
padding: 30px 0;
|
|
|
|
text-align: center;
|
|
|
|
border-right: 1px solid #eff2f6;
|
|
|
|
display: inline-block;
|
|
|
|
width: 20%;
|
|
|
|
box-sizing: border-box;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.demo-image .block:last-child,
|
|
|
|
.demo-image__error .block:last-child,
|
|
|
|
.demo-image__placeholder .block:last-child {
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
.demo-image .demonstration,
|
|
|
|
.demo-image__error .demonstration,
|
|
|
|
.demo-image__placeholder .demonstration {
|
|
|
|
display: block;
|
|
|
|
color: #8492a6;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.demo-image__error .block,
|
|
|
|
.demo-image__placeholder .block {
|
|
|
|
width: 49%;
|
|
|
|
}
|
|
|
|
.demo-image__error .el-image,
|
|
|
|
.demo-image__placeholder .el-image {
|
|
|
|
width: 300px;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
.demo-image__error .image-slot,
|
|
|
|
.demo-image__placeholder .image-slot {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: #f5f7fa;
|
|
|
|
color: #909399;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.demo-image__placeholder .dot {
|
|
|
|
animation: dot 2s steps(3, start) infinite;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.demo-image__error .image-slot {
|
|
|
|
font-size: 30px;
|
|
|
|
}
|
|
|
|
.demo-image__lazy {
|
|
|
|
height: 400px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
.demo-image__lazy .el-image {
|
|
|
|
display: block;
|
|
|
|
min-height: 200px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.demo-image__lazy .el-image:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
.infinite-list {
|
|
|
|
height: 300px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.infinite-list .infinite-list-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 50px;
|
|
|
|
background: #e8f3fe;
|
|
|
|
margin: 10px;
|
|
|
|
color: #7dbcfc;
|
|
|
|
}
|
|
|
|
.infinite-list .infinite-list-item + .list-item {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.infinite-list-wrapper {
|
|
|
|
height: 300px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.infinite-list-wrapper .list {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
.infinite-list-wrapper .list-item {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 50px;
|
|
|
|
background: #fff6f6;
|
|
|
|
color: #ff8484;
|
|
|
|
}
|
|
|
|
.infinite-list-wrapper .list-item + .list-item {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.demo-avatar.demo-basic {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-avatar.demo-basic .demo-basic--circle,
|
|
|
|
.demo-avatar.demo-basic .demo-basic--square {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.demo-avatar.demo-basic .demo-basic--circle .block,
|
|
|
|
.demo-avatar.demo-basic .demo-basic--square .block {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.demo-avatar.demo-basic .demo-basic--circle .block:not(:last-child),
|
|
|
|
.demo-avatar.demo-basic .demo-basic--square .block:not(:last-child) {
|
|
|
|
border-right: 1px solid rgba(224, 230, 237, 0.5);
|
|
|
|
}
|
|
|
|
.demo-avatar .sub-title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
}
|
|
|
|
.demo-avatar .el-col:not(:last-child) {
|
|
|
|
border-right: 1px solid rgba(224, 230, 237, 0.5);
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-type {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-type > div {
|
|
|
|
flex: 1;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-type > div:not(:last-child) {
|
|
|
|
border-right: 1px solid rgba(224, 230, 237, 0.5);
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-fit {
|
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-fit .block {
|
|
|
|
flex: 1;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-grow: 0;
|
|
|
|
}
|
|
|
|
.demo-avatar .demo-fit .title {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #8492a6;
|
|
|
|
}
|
|
|
|
.demo-drawer__content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.demo-drawer__content form {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.demo-drawer__footer {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.demo-drawer__footer button {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
.el-drawer__body {
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 100%;
|
2023-08-16 08:13:57 -07:00
|
|
|
font-family:
|
|
|
|
Helvetica Neue,
|
|
|
|
Helvetica,
|
|
|
|
PingFang SC,
|
|
|
|
Hiragino Sans GB,
|
|
|
|
Microsoft YaHei,
|
|
|
|
SimSun,
|
2022-11-15 09:20:54 -08:00
|
|
|
sans-serif;
|
2021-08-29 04:36:17 -07:00
|
|
|
font-weight: 400;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
body.is-component,
|
|
|
|
html.is-component {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
#app {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#app.is-component {
|
|
|
|
overflow-y: hidden;
|
|
|
|
}
|
|
|
|
#app.is-component .main-cnt {
|
|
|
|
padding: 0;
|
|
|
|
margin-top: 0;
|
|
|
|
height: 100%;
|
|
|
|
min-height: auto;
|
|
|
|
}
|
|
|
|
#app.is-component .headerWrapper {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1500;
|
|
|
|
}
|
|
|
|
#app.is-component .headerWrapper .container {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color: #409eff;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
code {
|
|
|
|
background-color: #f9fafc;
|
|
|
|
padding: 0 4px;
|
|
|
|
border: 1px solid #eaeefb;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
|
|
|
button,
|
|
|
|
input,
|
|
|
|
select,
|
|
|
|
textarea {
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
|
|
|
line-height: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
.hljs {
|
|
|
|
line-height: 1.8;
|
|
|
|
font-family: Menlo, Monaco, Consolas, Courier, monospace;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 18px 24px;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border: 1px solid #eaeefb;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
border-radius: 4px;
|
|
|
|
-webkit-font-smoothing: auto;
|
|
|
|
}
|
|
|
|
.main-cnt {
|
|
|
|
margin-top: -80px;
|
|
|
|
padding: 80px 0 340px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
.container,
|
|
|
|
.page-container {
|
|
|
|
width: 1140px;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.page-container {
|
|
|
|
padding-top: 55px;
|
|
|
|
}
|
|
|
|
.page-container h2 {
|
|
|
|
font-size: 28px;
|
|
|
|
color: #1f2d3d;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.page-container h3 {
|
|
|
|
font-size: 22px;
|
|
|
|
}
|
|
|
|
.page-container h2,
|
|
|
|
.page-container h3,
|
|
|
|
.page-container h4,
|
|
|
|
.page-container h5 {
|
|
|
|
font-weight: 400;
|
|
|
|
color: #1f2f3d;
|
|
|
|
}
|
|
|
|
.page-container h2:hover a,
|
|
|
|
.page-container h3:hover a,
|
|
|
|
.page-container h4:hover a,
|
|
|
|
.page-container h5:hover a {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
.page-container h2 a,
|
|
|
|
.page-container h3 a,
|
|
|
|
.page-container h4 a,
|
|
|
|
.page-container h5 a {
|
|
|
|
float: left;
|
|
|
|
margin-left: -20px;
|
|
|
|
opacity: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.page-container h2 a:hover,
|
|
|
|
.page-container h3 a:hover,
|
|
|
|
.page-container h4 a:hover,
|
|
|
|
.page-container h5 a:hover {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
.page-container p {
|
|
|
|
font-size: 14px;
|
|
|
|
color: #5e6d82;
|
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
.page-container .tip {
|
|
|
|
padding: 8px 16px;
|
|
|
|
background-color: #ecf8ff;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-left: 5px solid #50bfff;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
.page-container .tip code {
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.7);
|
|
|
|
color: #445368;
|
|
|
|
}
|
|
|
|
.page-container .warning {
|
|
|
|
padding: 8px 16px;
|
|
|
|
background-color: #fff6f7;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-left: 5px solid #fe6c6f;
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
.page-container .warning code {
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.7);
|
|
|
|
color: #445368;
|
|
|
|
}
|
|
|
|
.demo {
|
|
|
|
margin: 20px 0;
|
|
|
|
}
|
|
|
|
@media (max-width: 1140px) {
|
|
|
|
.container,
|
|
|
|
.page-container {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.container,
|
|
|
|
.page-container {
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
#app.is-component .headerWrapper .container {
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: icomoon;
|
|
|
|
src: url(data:application/vnd.ms-fontobject;base64,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);
|
2023-08-16 08:13:57 -07:00
|
|
|
src:
|
|
|
|
url(data:application/vnd.ms-fontobject;base64,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#iefix)
|
2021-08-29 04:36:17 -07:00
|
|
|
format('embedded-opentype'),
|
|
|
|
url(data:font/ttf;base64,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)
|
|
|
|
format('truetype'),
|
|
|
|
url(data:font/woff;base64,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)
|
|
|
|
format('woff'),
|
|
|
|
url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxmb250IGlkPSJpY29tb29uIiBob3Jpei1hZHYteD0iMTAyNCI+PGZvbnQtZmFjZSB1bml0cy1wZXItZW09IjEwMjQiIGFzY2VudD0iOTYwIiBkZXNjZW50PSItNjQiLz48Z2x5cGggaG9yaXotYWR2LXg9IjUxMiIvPjxnbHlwaCB1bmljb2RlPSLupIAiIGdseXBoLW5hbWU9InJhdGUtZmFjZS1vZmYiIGQ9Ik0wIDQ0OGMwIDI4Mi43NjYgMjI5LjIzNCA1MTIgNTEyIDUxMnM1MTItMjI5LjIzNCA1MTItNTEyYzAtMjgyLjc2Ni0yMjkuMjM0LTUxMi01MTItNTEyUzAgMTY1LjIzNCAwIDQ0OHptOTQ3LjIgMGMwIDI0MC4zNTEtMTk0Ljg0OSA0MzUuMi00MzUuMiA0MzUuMlM3Ni44IDY4OC4zNTEgNzYuOCA0NDggMjcxLjY0OSAxMi44IDUxMiAxMi44IDk0Ny4yIDIwNy42NDkgOTQ3LjIgNDQ4ek0yOTQuNCA1ODguODUzQzI5NC40IDYxNy4xIDMxNy4xMjYgNjQwIDM0NS42IDY0MGMyOC4yNzcgMCA1MS4yLTIyLjY2NCA1MS4yLTUxLjE0N3YtNTEuMzA3YzAtMjguMjQ3LTIyLjcyNi01MS4xNDctNTEuMi01MS4xNDctMjguMjc3IDAtNTEuMiAyMi42NjQtNTEuMiA1MS4xNDd2NTEuMzA3em0zMzIuOCAwQzYyNy4yIDYxNy4xIDY0OS45MjYgNjQwIDY3OC40IDY0MGMyOC4yNzcgMCA1MS4yLTIyLjY2NCA1MS4yLTUxLjE0N3YtNTEuMzA3YzAtMjguMjQ3LTIyLjcyNi01MS4xNDctNTEuMi01MS4xNDctMjguMjc3IDAtNTEuMiAyMi42NjQtNTEuMiA1MS4xNDd2NTEuMzA3ek0zNjEuMTQzIDI4MS42QzMzOC40MzIgMjgxLjYgMzIwIDI2Mi45NjMgMzIwIDI0MHMxOC40MzItNDEuNiA0MS4xNDMtNDEuNmgzMDEuNzE0QzY4NS41NjggMTk4LjQgNzA0IDIxNy4wMzcgNzA0IDI0MHMtMTguNDMyIDQxLjYtNDEuMTQzIDQxLjZIMzYxLjE0M3oiLz48Z2x5cGggdW5pY29kZT0i7qSBIiBnbHlwaC1uYW1lPSJyYXRlLWZhY2UtMSIgZD0iTTUxMi4wMDEgOTYwQzIyOS4yMyA5NjAgMCA3MzAuNzcgMCA0NDcuOTk4IDAgMTY1LjIyOCAyMjkuMjMtNjQgNTEyLjAwMS02NCA3OTQuNzctNjQgMTAyNCAxNjUuMjI3IDEwMjQgNDQ3Ljk5OFM3OTQuNzcgOTYwIDUxMi4wMDEgOTYwek0yOTQuNCA1ODguODUzQzI5NC40IDYxNy4xIDMxNy4xMjYgNjQwIDM0NS42IDY0MGMyOC4yNzcgMCA1MS4yLTIyLjY2NCA1MS4yLTUxLjE0N3YtNTEuMzA3YzAtMjguMjQ3LTIyLjcyNi01MS4xNDctNTEuMi01MS4xNDctMjguMjc3IDAtNTEuMiAyMi42NjQtNTEuMiA1MS4xNDd2NTEuMzA3em0zMzIuOCAwQzYyNy4yIDYxNy4xIDY0OS45MjYgNjQwIDY3OC40IDY0MGMyOC4yNzcgMCA1MS4yLTIyLjY2NCA1MS4yLTUxLjE0N3YtNTEuMzA3YzAtMjguMjQ3LTIyLjcyNi01MS4xNDctNTEuMi01MS4xNDctMjguMjc3IDAtNTEuMiAyMi42NjQtNTEuMiA1MS4xNDd2NTEuMzA3em02Ny4zMjktNDA3LjY1NmwtMy40MjIgMS4yMTZjLTU2LjE1IDI3Ljg3Mi0xMTYuMzg4IDQyLjA0Ny0xNzguODgyIDQyLjA0Ny02NC41NTYgMC0xMjUuNjExLTE0LjMxNi0xODEuNTE1LTQyLjQ1bC0zLjM4Mi0xLjEzMmMtMi4xMDItLjYyOC00Ljk0NS0xLjUyOS04LjQ4OS0xLjUyOS0yMC41NTQgMC0zNy4yMzkgMTguMjktMzcuMjM5IDQwLjczNCAwIDEwLjY1NSA0LjU3MSAyMS4zNjEgMTIuMTE0IDI5LjM5OWwtLjQ1NiAyLjQ4MyA5LjUxNiA0LjY5OGM2Ni43NCAzMy4xMDQgMTM5LjMzNiA1MC41MzcgMjA5LjkwNyA1MC41MzcgNzEuODg5IDAgMTQyLjMzNi0xNi45ODQgMjEwLjMxNC01MC45NDggMTEuOTQzLTcuMTgxIDE5LjQwNS0yMC45NTMgMTkuNDA1LTM1LjkwMyAwLTI2LjMyOC0yMS43MS00Ny45NTgtNDcuODcxLTM5LjE1M3oiLz48Z2x5cGggdW5pY29kZT0i7qSCIiBnbHlwaC1uYW1lPSJyYXRlLWZhY2UtMiIgZD0iTTUxMi02NEMyMjkuMjM0LTY0IDAgMTY1LjIzNCAwIDQ0OHMyMjkuMjM0IDUxMiA1MTIgNTEyYzI4Mi43NjYgMCA1MTItMjI5LjIzNCA1MTItNTEyUzc5NC43NjYtNjQgNTEyLTY0ek0yOTQuNCA1ODguODUzdi01MS4zMDdjMC0yOC40ODIgMjIuOTIzLTUxLjE0NyA1MS4yLTUxLjE0NyAyOC40NzQgMCA1MS4yIDIyLjg5OSA1MS4yIDUxLjE0N3Y1MS4zMDdjMCAyOC40ODItMjIuOTIzIDUxLjE0Ny01MS4yIDUxLjE0Ny0yOC40NzQgMC01MS4yLTIyLjg5OS01MS4yLTUxLjE0N3ptMzMyLjggMHYtNTEuMzA3YzAtMjguNDgyIDIyLjkyMy01MS4xNDcgNTEuMi01MS4xNDcgMjguNDc0IDAgNTEuMiAyMi44OTkgNTEuMiA1MS4xNDd2NTEuMzA3YzAgMjguNDgyLTIyLjkyMyA1MS4xNDctNTEuMiA1MS4xNDctMjguNDc0IDAtNTEuMi0yMi44OTktNTEuMi01MS4xNDd6TTM2MS4xNDMgMjgxLjZDMzM4LjQzMiAyODEuNiAzMjAgMjYyLjk2MyAzMjAgMjQwczE4LjQzMi00MS42IDQxLjE0My00MS42aDMwMS43MTRDNjg1LjU2OCAxOTguNCA3MDQgMjE3LjAzNyA3MDQgMjQwcy0xOC40MzIgNDEuNi00MS4xNDMgNDEuNkgzNjEuMTQzeiIvPjxnbHlwaCB1bmljb2RlPSLupIMiIGdseXBoLW5hbWU9InJhdGUtZmFjZS0zIiBkPSJNNTEyLjAwMSA5NjBDMjI5LjIzMSA5NjAgMCA3MzAuNzcgMCA0NDguMDAxUzIyOS4yMy02NCA1MTIuMDAxLTY0Qzc5NC43NzEtNjQgMTAyNCAxNjUuMjMgMTAyNCA0NDcuOTk5Uzc5NC43NzEgOTYwIDUxMi4wMDEgOTYwem0zMDUuNDk0LTY1NC40MzVhNDAuNDA2IDQwLjQwNiAwIDAgMC0xLjU2OS00LjM1IDQwLjg1IDQwLjg1IDAgMCAwLTIuMzE3LTQuNTU2Qzc1Ny45NzggMTg5LjA0NiA2NDQuMDkxIDExNS4yIDUxMi4yODYgMTE1LjJsLS4yODYuMDAyLS4yODYtLjAwMmMtMTMxLjgwNCAwLTI0NS42OTMgNzMuODQ1LTMwMS4zMjMgMTgxLjQ1OWE0MC44NSA0MC44NSAwIDAgMC0yLjMxNyA0LjU1NiA0MC4zMjggNDAuMzI4IDAgMCAwLTEuNTY5IDQuMzUgNDAuMzE3IDQwLjMxNyAwIDAgMC0xLjcwNSAxMS41OTcgNDAuMzE0IDQwLjMxNCAwIDAgMCA0LjM3MiAxOC4yODJjNi44OTcgMTMuNjAxIDIxLjIzOSAyMi45NTUgMzcuODIyIDIyLjk1NXMzMC45MjctOS4zNTUgMzcuODIzLTIyLjk1NWguNjc2QzMyNi45MDQgMjUzLjk5MSA0MTIuNjI0IDE
|
|
|
|
format('svg');
|
|
|
|
font-weight: 400;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
[class*=' icon-'],
|
|
|
|
[class^='icon-'] {
|
|
|
|
font-family: icomoon !important;
|
|
|
|
speak: none;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: 400;
|
|
|
|
font-variant: normal;
|
|
|
|
text-transform: none;
|
|
|
|
line-height: 1;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
}
|
|
|
|
.icon-rate-face-off:before {
|
|
|
|
content: '\e900';
|
|
|
|
}
|
|
|
|
.icon-rate-face-1:before {
|
|
|
|
content: '\e901';
|
|
|
|
}
|
|
|
|
.icon-rate-face-2:before {
|
|
|
|
content: '\e902';
|
|
|
|
}
|
|
|
|
.icon-rate-face-3:before {
|
|
|
|
content: '\e903';
|
|
|
|
}
|
|
|
|
|
|
|
|
.config {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
.config-label {
|
|
|
|
color: #606266;
|
|
|
|
font-size: 14px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
.content-80 {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
.content-20 {
|
|
|
|
width: 20%;
|
|
|
|
}
|
|
|
|
.content-10,
|
|
|
|
.content-20 {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
.content-10 {
|
|
|
|
width: 10%;
|
|
|
|
}
|
|
|
|
.content-15 {
|
|
|
|
box-sizing: border-box;
|
|
|
|
display: inline-block;
|
|
|
|
width: 15%;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
input {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.colorPicker {
|
|
|
|
margin-left: 10px;
|
|
|
|
vertical-align: bottom;
|
|
|
|
}
|
|
|
|
.select {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.plus-button[data-v-98c1688e] {
|
|
|
|
position: absolute;
|
|
|
|
left: 90%;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.colorPicker[data-v-98c1688e] {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
.content-20 .el-input__suffix-inner span[data-v-98c1688e] {
|
|
|
|
line-height: 28px;
|
|
|
|
}
|
|
|
|
.content-20[data-v-98c1688e] {
|
|
|
|
padding: 0 3px;
|
|
|
|
}
|
|
|
|
.content-10[data-v-98c1688e] {
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
.content-tip[data-v-98c1688e] {
|
|
|
|
color: #909399;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
.config-content[data-v-98c1688e] {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
.el-button--mini.is-round[data-v-98c1688e] {
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
.editor-main {
|
|
|
|
padding: 0 18px 15px;
|
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
.category-name {
|
|
|
|
color: #c0c4cc;
|
|
|
|
font-size: 18px;
|
|
|
|
display: block;
|
|
|
|
margin: 13px 0 3px;
|
|
|
|
}
|
|
|
|
.configurator-action {
|
|
|
|
padding: 15px 18px 0;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group {
|
|
|
|
padding: 5px 0;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group img {
|
|
|
|
cursor: not-allowed;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
padding: 7px 0;
|
|
|
|
margin-left: 5px;
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group img.active {
|
|
|
|
opacity: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group img:last-of-type {
|
|
|
|
margin-left: 10px;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group .button-group {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group .button-group .el-button {
|
|
|
|
padding: 6px 15px;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group .button-group .el-button.is-disabled {
|
|
|
|
color: #c0c4cc;
|
|
|
|
background-color: #fff;
|
|
|
|
border-color: #ebeef5;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group .button-group .reset {
|
|
|
|
background: #e6f1fc;
|
|
|
|
color: #1989fa;
|
|
|
|
border-color: #a2cffc;
|
|
|
|
}
|
|
|
|
.configurator-action .action-group .button-group .download {
|
|
|
|
background: #1989fa;
|
|
|
|
color: #fff;
|
|
|
|
border-color: #1989fa;
|
|
|
|
}
|
|
|
|
.configurator-action .selector {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.configurator-action .selector input {
|
|
|
|
background: #f5f7fa;
|
|
|
|
border: none;
|
|
|
|
font-size: 18px;
|
|
|
|
padding-left: 0;
|
|
|
|
color: #606266;
|
|
|
|
}
|
|
|
|
.configurator-action .line {
|
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
|
|
|
border-bottom: 1px solid #dcdfe6;
|
|
|
|
}
|
|
|
|
.main-configurator {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.component-preview {
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
.component-preview:last-of-type {
|
|
|
|
padding-bottom: 20px;
|
|
|
|
}
|
|
|
|
.component-preview h4 {
|
|
|
|
font-size: 20px;
|
|
|
|
margin: 40px 0 20px;
|
|
|
|
color: #909399;
|
|
|
|
}
|
|
|
|
.component-preview .demo-item {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-right: 40px;
|
|
|
|
}
|
|
|
|
.component-preview .demo-line {
|
|
|
|
margin: 15px 0;
|
|
|
|
}
|
|
|
|
.component-preview .el-carousel__item:nth-child(2n) {
|
|
|
|
background-color: #99a9bf;
|
|
|
|
}
|
|
|
|
.component-preview .el-carousel__item:nth-child(odd) {
|
|
|
|
background-color: #d3dce6;
|
|
|
|
}
|
|
|
|
.component-preview .el-avatar:not(:last-child) {
|
|
|
|
margin-right: 20px;
|
|
|
|
}
|
|
|
|
.component-preview .avatar-demo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.component-preview .heading > div {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
.component-preview .title {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
.component-preview .paragraph {
|
|
|
|
padding: 0 20px;
|
|
|
|
}
|
|
|
|
.component-preview .demo-color-box {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
.component-preview .color {
|
|
|
|
margin-right: -12%;
|
|
|
|
}
|
|
|
|
.theme-card-item {
|
|
|
|
user-select: none;
|
|
|
|
border-radius: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
background: #fff;
|
|
|
|
height: 90%;
|
|
|
|
margin: 25px 0;
|
|
|
|
box-shadow: 0 0 1px 0 #666;
|
|
|
|
}
|
|
|
|
.theme-card-item.is-hidden {
|
|
|
|
opacity: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
|
|
|
.theme-card-item .upload {
|
|
|
|
cursor: pointer;
|
|
|
|
background: #f5f7fa;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.theme-card-item .upload .upload-action {
|
|
|
|
width: 40%;
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
color: #606266;
|
|
|
|
}
|
|
|
|
.theme-card-item .upload .upload-action img {
|
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.theme-card-item .upload .upload-action span {
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview {
|
|
|
|
position: relative;
|
|
|
|
height: 70%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .line {
|
|
|
|
height: 50%;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .line-2 {
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .line-4 {
|
|
|
|
width: 25%;
|
|
|
|
height: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action {
|
|
|
|
transition: all 0.3s;
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-mask {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
background: #000;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-block {
|
|
|
|
position: absolute;
|
|
|
|
width: 50%;
|
|
|
|
height: 50%;
|
|
|
|
left: 25%;
|
|
|
|
top: 25%;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item {
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
width: 30%;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item:hover .circle {
|
|
|
|
border-color: #fff;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item .icon {
|
|
|
|
height: 50%;
|
|
|
|
font-size: 22px;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item .icon img {
|
|
|
|
width: 130%;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item .name {
|
|
|
|
font-size: 12px;
|
|
|
|
height: 50%;
|
|
|
|
text-align: center;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
.theme-card-item .preview .action .action-item-right {
|
|
|
|
margin-left: 40%;
|
|
|
|
}
|
|
|
|
.theme-card-item .info {
|
|
|
|
height: 30%;
|
|
|
|
line-height: 16px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
.theme-card-item .info .info-center {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.theme-card-item .info .title {
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 16px;
|
|
|
|
color: #303133;
|
|
|
|
padding: 0 12px;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.theme-card-item .info .right {
|
|
|
|
float: right;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #909399;
|
|
|
|
}
|
|
|
|
.theme-card-item .info .more {
|
|
|
|
font-size: 16px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.theme-card-item .info .description {
|
|
|
|
padding: 0 12px;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #606266;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.theme-card-item.is-upload {
|
|
|
|
box-shadow: none;
|
|
|
|
border: 1px dashed #dcdfe6;
|
|
|
|
}
|
|
|
|
.theme-card-item.is-upload:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.theme-card-item:hover {
|
|
|
|
box-shadow: 0 0 10px 0 #999;
|
|
|
|
}
|
|
|
|
.theme-card-item:hover .action {
|
|
|
|
opacity: 1;
|
|
|
|
}
|