Initial project files: BESCMS full source

This commit is contained in:
bes
2026-08-13 23:37:46 +08:00
parent fa6cddb540
commit 2e26f85723
2166 changed files with 396625 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
@@ -0,0 +1,987 @@
/* Element Plus 风格 PC 模板布局与组件补充 */
.ep-layout {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.ep-header {
position: sticky;
top: 0;
z-index: 100;
height: var(--ep-header-height);
background: var(--el-bg-color);
border-bottom: 1px solid var(--el-border-color-light);
box-shadow: var(--el-box-shadow-lighter);
}
.ep-header-inner {
max-width: var(--ep-container-max);
margin: 0 auto;
padding: 0 20px;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}
.ep-logo img {
height: 40px;
width: auto;
vertical-align: middle;
}
.ep-nav {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
min-width: 0;
}
.ep-nav > ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 4px;
}
.ep-nav-item {
position: relative;
}
.ep-nav-item > a {
display: inline-flex;
align-items: center;
padding: 0 14px;
height: 36px;
border-radius: var(--el-border-radius-base);
color: var(--el-text-color-regular);
font-size: 15px;
font-weight: 500;
}
.ep-nav-item > a:hover {
color: var(--el-color-primary);
background: var(--el-color-primary-light-9);
}
.ep-nav-item.is-active > a {
color: var(--el-color-primary);
background: var(--el-color-primary-light-9);
}
.ep-nav-arrow {
margin-left: 4px;
font-size: 10px;
opacity: 0.65;
}
/* 子菜单与父级之间禁止留 margin,否则鼠标经过空隙时父级失去 :hover,菜单会收起 */
.ep-submenu {
display: none;
position: absolute;
left: 0;
top: 100%;
min-width: 180px;
padding: 8px 0;
margin: 0;
background: var(--el-bg-color-overlay);
border: 1px solid var(--el-border-color-light);
border-radius: var(--el-border-radius-base);
box-shadow: var(--el-box-shadow-light);
list-style: none;
z-index: 200;
}
.ep-nav-item:hover > .ep-submenu {
display: block;
}
.ep-submenu li a {
display: block;
padding: 8px 16px;
color: var(--el-text-color-regular);
font-size: 14px;
}
.ep-submenu li a:hover {
background: var(--el-fill-color-light);
color: var(--el-color-primary);
}
.ep-submenu li.is-active > a {
color: var(--el-color-primary);
font-weight: 600;
}
/* 三级菜单与二级项之间不留缝;左侧透明带承接鼠标,避免移入时丢 hover */
.ep-submenu-nested {
left: 100%;
top: 0;
margin-left: 0;
padding-left: 0;
}
.ep-submenu-nested::before {
content: "";
position: absolute;
left: -14px;
top: 0;
bottom: 0;
width: 14px;
}
.ep-submenu > li {
position: relative;
}
.ep-submenu > li:hover > .ep-submenu-nested {
display: block;
}
.ep-header-actions {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}
.ep-search-popover {
position: relative;
}
.ep-search-toggle {
cursor: pointer;
padding: 8px;
border-radius: var(--el-border-radius-base);
color: var(--el-text-color-secondary);
}
.ep-search-toggle:hover {
background: var(--el-fill-color-light);
color: var(--el-color-primary);
}
/* 与 ep-submenu 相同:不能与触发区留缝,否则 .ep-search-popover 仅图标高度,鼠标经空隙会丢 hover */
.ep-search-panel {
display: none;
position: absolute;
right: 0;
top: 100%;
margin-top: 0;
width: 320px;
padding: 16px;
padding-top: 20px;
background: var(--el-bg-color-overlay);
border: 1px solid var(--el-border-color-light);
border-radius: var(--el-border-radius-base);
box-shadow: var(--el-box-shadow-light);
z-index: 300;
}
.ep-search-panel::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -12px;
height: 12px;
}
.ep-search-popover:hover .ep-search-panel {
display: block;
}
.ep-user {
position: relative;
}
.ep-user-trigger {
cursor: pointer;
display: flex;
align-items: center;
}
.ep-user-trigger img {
width: 36px;
height: 36px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--el-border-color-lighter);
}
.ep-user-menu {
display: none;
position: absolute;
right: 0;
top: 100%;
margin-top: 0;
min-width: 200px;
padding: 8px 0;
background: var(--el-bg-color-overlay);
border: 1px solid var(--el-border-color-light);
border-radius: var(--el-border-radius-base);
box-shadow: var(--el-box-shadow-light);
z-index: 300;
}
.ep-user-menu::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: -12px;
height: 12px;
}
.ep-user:hover .ep-user-menu {
display: block;
}
.ep-user-menu a {
display: block;
padding: 10px 16px;
color: var(--el-text-color-regular);
font-size: 14px;
}
.ep-user-menu a:hover {
background: var(--el-fill-color-light);
color: var(--el-color-primary);
}
.ep-user-hd {
display: flex;
align-items: center;
gap: 12px;
padding: 12px 16px;
border-bottom: 1px solid var(--el-border-color-lighter);
}
.ep-user-hd img {
width: 48px;
height: 48px;
border-radius: 50%;
}
.ep-main {
flex: 1;
padding: 20px 0 40px;
}
.ep-container {
max-width: var(--ep-container-max);
margin: 0 auto;
padding: 0 20px;
}
.ep-breadcrumb {
margin-bottom: 16px;
font-size: 14px;
color: var(--el-text-color-secondary);
}
.ep-breadcrumb a {
color: var(--el-text-color-secondary);
}
.ep-breadcrumb a:hover {
color: var(--el-color-primary);
}
.ep-breadcrumb .ep-bc-sep {
margin: 0 8px;
color: var(--el-text-color-placeholder);
}
.ep-row {
display: flex;
flex-wrap: wrap;
gap: 20px;
align-items: flex-start;
}
.ep-col-main {
flex: 1 1 640px;
min-width: 0;
}
.ep-col-side {
flex: 0 1 340px;
min-width: 280px;
}
@media (max-width: 991px) {
.ep-col-main,
.ep-col-side {
flex: 1 1 100%;
}
.ep-nav {
display: none;
}
}
.ep-card {
background: var(--el-bg-color-overlay);
border-radius: var(--el-border-radius-base);
border: 1px solid var(--el-border-color-lighter);
overflow: hidden;
margin-bottom: 20px;
}
.ep-card-hd {
padding: 16px 20px;
border-bottom: 1px solid var(--el-border-color-lighter);
font-size: 16px;
font-weight: 600;
color: var(--el-text-color-primary);
}
.ep-card-bd {
padding: 20px;
}
.ep-list-item {
display: flex;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid var(--el-border-color-lighter);
}
.ep-list-item:last-child {
border-bottom: none;
}
.ep-thumb {
width: 120px;
height: 80px;
border-radius: var(--el-border-radius-base);
background-size: cover;
background-position: center;
flex-shrink: 0;
background-color: var(--el-fill-color);
}
img.ep-thumb {
object-fit: cover;
display: block;
}
.ep-thumb--sm {
width: 72px;
height: 48px;
}
@media (max-width: 576px) {
.mobile-hidden {
display: none !important;
}
.ep-list-item {
flex-direction: column;
}
.ep-thumb,
img.ep-thumb {
width: 100%;
height: 160px;
}
}
.ep-article-title {
margin: 0 0 8px;
font-size: 16px;
font-weight: 600;
}
.ep-article-title a {
color: var(--el-text-color-primary);
}
.ep-article-title a:hover {
color: var(--el-color-primary);
}
.ep-meta {
font-size: 13px;
color: var(--el-text-color-secondary);
}
.ep-meta span,
.ep-meta a {
margin-right: 12px;
}
.ep-badge {
display: inline-block;
padding: 0 8px;
height: 22px;
line-height: 22px;
font-size: 12px;
border-radius: var(--el-border-radius-round);
background: var(--el-color-primary-light-9);
color: var(--el-color-primary);
margin: 4px 8px 4px 0;
}
.ep-badge.is-plain {
background: var(--el-fill-color-blank);
border: 1px solid var(--el-color-primary-light-5);
}
.ep-footer {
margin-top: auto;
padding: 20px;
background: var(--el-bg-color);
border-top: 1px solid var(--el-border-color-light);
font-size: 14px;
color: var(--el-text-color-secondary);
}
.ep-footer-inner {
max-width: var(--ep-container-max);
margin: 0 auto;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.ep-footer-links {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 8px 16px;
}
.ep-footer-links a {
color: var(--el-text-color-secondary);
}
.ep-footer-links a:hover {
color: var(--el-color-primary);
}
.ep-scrolltop {
position: fixed;
right: 24px;
bottom: 32px;
width: 40px;
height: 40px;
border-radius: 50%;
background: var(--el-color-primary);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
box-shadow: var(--el-box-shadow);
z-index: 99;
border: none;
transition: opacity 0.2s;
}
.ep-scrolltop:hover {
opacity: 0.9;
}
/* 分页区域(系统 {$pages} 输出)
典型结构:<div class="xrpagination"><ul class="pagination"><li class="active"><a>1</a></li>...</ul></div> */
.xrpagination {
width: 100%;
margin-top: 24px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.xrpagination ul.pagination {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 8px;
}
.xrpagination ul.pagination li {
margin: 0;
padding: 0;
list-style: none;
}
.xrpagination ul.pagination li > a,
.xrpagination ul.pagination li > span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 32px;
height: 32px;
padding: 0 12px;
font-size: 14px;
line-height: 1;
border-radius: var(--el-border-radius-base);
border: 1px solid var(--el-border-color);
background: var(--el-bg-color-overlay);
color: var(--el-text-color-regular);
box-sizing: border-box;
text-decoration: none;
transition: color 0.2s, border-color 0.2s, background 0.2s;
}
/* 总条数等无 href 的 <a> */
.xrpagination ul.pagination li > a:not([href]) {
cursor: default;
background: var(--el-fill-color-light);
border-color: var(--el-border-color-lighter);
color: var(--el-text-color-secondary);
}
.xrpagination ul.pagination li > a[href]:hover {
color: var(--el-color-primary);
border-color: var(--el-color-primary-light-5);
}
.xrpagination ul.pagination li.active > a,
.xrpagination ul.pagination li.active > span {
background: var(--el-color-primary);
border-color: var(--el-color-primary);
color: #fff;
cursor: default;
}
.xrpagination ul.pagination li.active > a:hover {
color: #fff;
border-color: var(--el-color-primary);
background: var(--el-color-primary);
}
.xrpagination ul.pagination li.disabled > a,
.xrpagination ul.pagination li.disabled > span {
cursor: not-allowed;
opacity: 0.55;
background: var(--el-fill-color-light);
}
/* 兼容:分页直接挂在 .xrpagination 下(无 ul */
.xrpagination > a,
.xrpagination > span {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 32px;
height: 32px;
padding: 0 12px;
font-size: 14px;
border-radius: var(--el-border-radius-base);
border: 1px solid var(--el-border-color);
background: var(--el-bg-color-overlay);
color: var(--el-text-color-regular);
box-sizing: border-box;
text-decoration: none;
}
.xrpagination > a:hover {
color: var(--el-color-primary);
border-color: var(--el-color-primary-light-5);
}
.xrpagination .active > span,
.xrpagination .active > a,
.xrpagination li.active > a,
.xrpagination span.current,
.xrpagination .current {
background: var(--el-color-primary);
border-color: var(--el-color-primary);
color: #fff;
}
/* 正文区域 */
.neirong {
line-height: 1.75;
font-size: 15px;
color: var(--el-text-color-regular);
}
.neirong img {
max-width: 100%;
height: auto;
}
.fc-show-prev-next {
font-size: 14px;
color: var(--el-text-color-secondary);
}
/* Swiper 容器在首页 */
.ep-swiper-wrap {
border-radius: var(--el-border-radius-base);
overflow: hidden;
border: 1px solid var(--el-border-color-lighter);
background: var(--el-bg-color-overlay);
}
.ep-swiper-wrap .swiper-slide img {
display: block;
width: 100%;
height: 400px;
object-fit: cover;
}
/* 提示页 / 404 */
.ep-auth-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
background: linear-gradient(135deg, var(--el-color-primary-light-9) 0%, var(--el-fill-color-light) 100%);
}
.ep-auth-card {
width: 100%;
max-width: 480px;
text-align: center;
}
.ep-auth-card .el-card__body {
padding: 40px 32px;
}
.ep-404-visual {
width: 100%;
max-width: 280px;
height: 160px;
margin: 0 auto 16px;
border-radius: var(--el-border-radius-base);
background: linear-gradient(145deg, var(--el-color-primary-light-7), var(--el-color-primary-light-9));
display: flex;
align-items: center;
justify-content: center;
font-size: 64px;
font-weight: 700;
color: var(--el-color-primary);
}
/* ========== 页面模块化(模板不写内联 style ========== */
.ep-mt-8 {
margin-top: 8px;
}
.ep-mb-20 {
margin-bottom: 20px;
}
.ep-mb-16 {
margin-bottom: 16px;
}
.ep-mt-16 {
margin-top: 16px;
}
.ep-flex-grow {
flex: 1;
min-width: 0;
}
.ep-list-desc {
margin: 0 0 8px;
font-size: 14px;
color: var(--el-text-color-secondary);
line-height: 1.6;
}
.ep-list-desc--tight {
line-height: 1.5;
}
.ep-list-item--flush {
padding: 0;
border: none;
}
.ep-side-hit-row {
display: flex;
gap: 12px;
margin-bottom: 16px;
}
.ep-side-hit-title {
display: block;
font-weight: 600;
font-size: 14px;
color: var(--el-text-color-primary);
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
a.ep-side-hit-title:hover {
color: var(--el-color-primary);
}
.ep-side-hit-desc {
font-size: 12px;
color: var(--el-text-color-secondary);
margin-top: 4px;
}
.ep-latest-row {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(--el-border-color-lighter);
}
.ep-latest-title {
font-weight: 600;
font-size: 14px;
color: var(--el-text-color-primary);
text-decoration: none;
}
a.ep-latest-title:hover {
color: var(--el-color-primary);
}
.ep-latest-time {
font-size: 12px;
color: var(--el-text-color-secondary);
margin-top: 4px;
}
.ep-yqlj-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid var(--el-border-color-lighter);
}
.ep-card-body--tight-y {
padding-top: 8px;
padding-bottom: 8px;
}
.ep-btn-icon-noshrink {
flex-shrink: 0;
}
.ep-header-search-input {
width: 100%;
margin-bottom: 12px;
}
.ep-header-search-submit {
width: 100%;
}
.ep-user-name {
font-weight: 600;
}
.ep-user-meta {
font-size: 12px;
color: var(--el-text-color-secondary);
}
/* 搜索页筛选区 */
.ep-search-filters {
margin-bottom: 24px;
}
.ep-search-row {
display: flex;
align-items: flex-start;
gap: 16px;
margin-bottom: 16px;
flex-wrap: wrap;
}
.ep-search-row--center {
align-items: center;
}
.ep-search-label {
width: 72px;
font-weight: 600;
flex-shrink: 0;
}
.ep-search-field {
flex: 1;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.ep-search-divider {
border-bottom: 1px dashed var(--el-border-color);
margin: 12px 0;
}
.ep-search-keyword-wrap {
width: 260px;
max-width: 100%;
}
/* 详情页 */
.ep-show-card-body {
padding: 28px;
}
.ep-show-title {
margin: 0 0 16px;
font-size: 22px;
font-weight: 600;
color: var(--el-text-color-primary);
}
.ep-show-meta {
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 20px;
font-size: 13px;
color: var(--el-text-color-secondary);
}
.ep-show-tags {
margin-top: 24px;
}
.ep-show-prevnext-wrap {
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid var(--el-border-color-lighter);
}
.ep-show-related {
margin-top: 28px;
}
.ep-show-related-title {
font-size: 16px;
font-weight: 600;
margin-bottom: 16px;
}
.ep-show-related-grid {
gap: 16px;
}
.ep-show-related-col {
flex: 1 1 calc(33.333% - 12px);
min-width: 200px;
}
.ep-related-card {
height: 100%;
}
.ep-related-cover {
display: block;
height: 140px;
overflow: hidden;
border-radius: 4px 4px 0 0;
}
.ep-related-cover img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.ep-related-title {
font-weight: 600;
font-size: 14px;
color: var(--el-text-color-primary);
}
a.ep-related-title:hover {
color: var(--el-color-primary);
}
.ep-related-desc {
font-size: 12px;
color: var(--el-text-color-secondary);
margin: 8px 0;
}
.ep-related-date {
font-size: 12px;
color: var(--el-text-color-placeholder);
}
/* 单页 */
.ep-page-card {
margin-top: 16px;
}
.ep-page-body {
padding: 32px 40px;
}
.ep-page-title {
text-align: center;
margin: 0 0 24px;
font-size: 26px;
font-weight: 600;
}
/* 频道封面标题链 */
.ep-cat-title-link {
font-size: 16px;
font-weight: 600;
}
/* 提示 / 404 文案 */
.ep-msg-icon-box {
font-size: 48px;
margin-bottom: 16px;
}
.ep-msg-icon--ok {
color: var(--el-color-success);
}
.ep-msg-icon--err {
color: var(--el-color-danger);
}
.ep-msg-title {
margin: 0 0 12px;
font-size: 20px;
font-weight: 600;
}
.ep-msg-actions {
font-size: 14px;
color: var(--el-text-color-secondary);
}
.ep-404-msg {
margin: 0 0 20px;
font-size: 15px;
color: var(--el-text-color-secondary);
}
/* 可视化编辑占位(dev/action */
.ep-dev-hint {
text-align: center;
padding-top: 30px;
}
@@ -0,0 +1,8 @@
(function () {
var btn = document.getElementById("ep_scrolltop");
if (btn) {
btn.addEventListener("click", function () {
window.scrollTo({ top: 0, behavior: "smooth" });
});
}
})();
@@ -0,0 +1 @@
;
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
/**
* Element Plus 风格基础层:本地引入官方样式(element-plus@2.8.8 dist/index.css)并做 CMS 模板微调
*/
@import url("element-plus-index.css");
:root {
--ep-header-height: 60px;
--ep-container-max: 1200px;
}
html, body {
margin: 0;
min-height: 100%;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
background-color: var(--el-bg-color-page, #f5f7fa);
color: var(--el-text-color-primary, #303133);
}
*, *::before, *::after {
box-sizing: border-box;
}
a {
color: var(--el-color-primary);
text-decoration: none;
}
a:hover {
color: var(--el-color-primary-light-3);
}
@@ -0,0 +1,2 @@
/* Element Plus 主题:不依赖 Metronic 插件脚本,保留占位以兼容模板引用 */
;
File diff suppressed because one or more lines are too long
+619
View File
@@ -0,0 +1,619 @@
/**
* Swiper 4.5.3
* Most modern mobile touch slider and framework with hardware accelerated transitions
* http://www.idangero.us/swiper/
*
* Copyright 2014-2019 Vladimir Kharlampidi
*
* Released under the MIT License
*
* Released on: October 16, 2019
*/
.swiper-container {
margin-left: auto;
margin-right: auto;
position: relative;
overflow: hidden;
list-style: none;
padding: 0;
/* Fix of Webkit flickering */
z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
float: left;
}
.swiper-container-vertical > .swiper-wrapper {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.swiper-wrapper {
position: relative;
width: 100%;
height: 100%;
z-index: 1;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
-o-transition-property: transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
-webkit-transform: translate3d(0px, 0, 0);
transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
-webkit-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
margin: 0 auto;
}
.swiper-slide {
-webkit-flex-shrink: 0;
-ms-flex-negative: 0;
flex-shrink: 0;
width: 100%;
height: 100%;
position: relative;
-webkit-transition-property: -webkit-transform;
transition-property: -webkit-transform;
-o-transition-property: transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
-webkit-box-align: start;
-webkit-align-items: flex-start;
-ms-flex-align: start;
align-items: flex-start;
-webkit-transition-property: height, -webkit-transform;
transition-property: height, -webkit-transform;
-o-transition-property: transform, height;
transition-property: transform, height;
transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
-webkit-perspective: 1200px;
perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
-ms-touch-action: pan-y;
touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
-ms-touch-action: pan-x;
touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
position: absolute;
top: 50%;
width: 27px;
height: 44px;
margin-top: -22px;
z-index: 10;
cursor: pointer;
background-size: 27px 44px;
background-position: center;
background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
opacity: 0.35;
cursor: auto;
pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
left: 10px;
right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
right: 10px;
left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
display: none;
}
.swiper-pagination {
position: absolute;
text-align: center;
-webkit-transition: 300ms opacity;
-o-transition: 300ms opacity;
transition: 300ms opacity;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
bottom: 10px;
left: 0;
width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
overflow: hidden;
font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
-webkit-transform: scale(0.33);
-ms-transform: scale(0.33);
transform: scale(0.33);
position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
-webkit-transform: scale(0.66);
-ms-transform: scale(0.66);
transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
-webkit-transform: scale(0.33);
-ms-transform: scale(0.33);
transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
-webkit-transform: scale(0.66);
-ms-transform: scale(0.66);
transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
-webkit-transform: scale(0.33);
-ms-transform: scale(0.33);
transform: scale(0.33);
}
.swiper-pagination-bullet {
width: 8px;
height: 8px;
display: inline-block;
border-radius: 100%;
background: #000;
opacity: 0.2;
}
button.swiper-pagination-bullet {
border: none;
margin: 0;
padding: 0;
-webkit-box-shadow: none;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
cursor: pointer;
}
.swiper-pagination-bullet-active {
opacity: 1;
background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
right: 10px;
top: 50%;
-webkit-transform: translate3d(0px, -50%, 0);
transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 6px 0;
display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
display: inline-block;
-webkit-transition: 200ms top, 200ms -webkit-transform;
transition: 200ms top, 200ms -webkit-transform;
-o-transition: 200ms transform, 200ms top;
transition: 200ms transform, 200ms top;
transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
-webkit-transition: 200ms left, 200ms -webkit-transform;
transition: 200ms left, 200ms -webkit-transform;
-o-transition: 200ms transform, 200ms left;
transition: 200ms transform, 200ms left;
transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
-webkit-transition: 200ms right, 200ms -webkit-transform;
transition: 200ms right, 200ms -webkit-transform;
-o-transition: 200ms transform, 200ms right;
transition: 200ms transform, 200ms right;
transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
background: rgba(0, 0, 0, 0.25);
position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
background: #007aff;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
-webkit-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
-webkit-transform-origin: right top;
-ms-transform-origin: right top;
transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
width: 100%;
height: 4px;
left: 0;
top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
width: 4px;
height: 100%;
left: 0;
top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
background: #000000;
}
.swiper-pagination-lock {
display: none;
}
/* Scrollbar */
.swiper-scrollbar {
border-radius: 10px;
position: relative;
-ms-touch-action: none;
background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
position: absolute;
left: 1%;
bottom: 3px;
z-index: 50;
height: 5px;
width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
position: absolute;
right: 3px;
top: 1%;
z-index: 50;
width: 5px;
height: 98%;
}
.swiper-scrollbar-drag {
height: 100%;
width: 100%;
position: relative;
background: rgba(0, 0, 0, 0.5);
border-radius: 10px;
left: 0;
top: 0;
}
.swiper-scrollbar-cursor-drag {
cursor: move;
}
.swiper-scrollbar-lock {
display: none;
}
.swiper-zoom-container {
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
max-width: 100%;
max-height: 100%;
-o-object-fit: contain;
object-fit: contain;
}
.swiper-slide-zoomed {
cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
width: 42px;
height: 42px;
position: absolute;
left: 50%;
top: 50%;
margin-left: -21px;
margin-top: -21px;
z-index: 10;
-webkit-transform-origin: 50%;
-ms-transform-origin: 50%;
transform-origin: 50%;
-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
display: block;
content: '';
width: 100%;
height: 100%;
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
background-position: 50%;
background-size: 100%;
background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes swiper-preloader-spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/* a11y */
.swiper-container .swiper-notification {
position: absolute;
left: 0;
top: 0;
pointer-events: none;
opacity: 0;
z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
-webkit-transition-timing-function: ease-out;
-o-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
pointer-events: none;
-webkit-transition-property: opacity;
-o-transition-property: opacity;
transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
}
.swiper-container-cube {
overflow: visible;
}
.swiper-container-cube .swiper-slide {
pointer-events: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 1;
visibility: hidden;
-webkit-transform-origin: 0 0;
-ms-transform-origin: 0 0;
transform-origin: 0 0;
width: 100%;
height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
-webkit-transform-origin: 100% 0;
-ms-transform-origin: 100% 0;
transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
pointer-events: auto;
visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
z-index: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
position: absolute;
left: 0;
bottom: 0px;
width: 100%;
height: 100%;
background: #000;
opacity: 0.6;
-webkit-filter: blur(50px);
filter: blur(50px);
z-index: 0;
}
.swiper-container-flip {
overflow: visible;
}
.swiper-container-flip .swiper-slide {
pointer-events: none;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
z-index: 0;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
/* Windows 8 IE 10 fix */
-ms-perspective: 1200px;
}
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long