/*
 * @Author: fegq
 * @Date: 2021-09-11 14:43:58
 * @LastEditors: fegq
 * @LastEditTime: 2021-09-21 07:54:06
 * @Description: This is a light plugin style!
 * @Version: 0.3.3
 */
 @font-face {
  font-family: "plugin"; /* Project id 3684399 */
  src: url('../fonts/iconfont.eot?t=1664700514597'); /* IE9 */
  src: url('../fonts/iconfont.eot?t=1664700514597#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/iconfont.woff2?t=1664700514597') format('woff2'),
       url('../fonts/iconfont.woff?t=1664700514597') format('woff'),
       url('../fonts/iconfont.ttf?t=1664700514597') format('truetype'),
       url('../fonts/iconfont.svg?t=1664700514597#plugin') format('svg');
}

.plugin {
  font-family: "plugin" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.plugin-search-minus:before {
  content: "\e82c";
}

.plugin-search-plus:before {
  content: "\e82d";
}

.plugin-times:before {
  content: "\e65c";
}

.plugin-fullscreen-exit:before {
  content: "\e7ec";
}

.plugin-download:before {
  content: "\e66c";
}

.plugin-arrow-left:before {
  content: "\e685";
}

.plugin-arrow-right:before {
  content: "\e687";
}

.plugin-fullscreen:before {
  content: "\e641";
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .7);
  overflow: hidden;
  z-index: 9999;
}

.lightbox.active {
  display: block;
}

.lightbox-title {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-size: 20px;
}

.lightbox-title p {
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
  width: 120px;
  height: 60px;
}

.lightbox-title p i {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.lightbox-title p i.active {
  display: inline-block;
}

.lightbox-content {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
  height: 100%;
}

.lightbox-ls {
  position: relative;
  top: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.lightbox-ls .lightbox-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  cursor: pointer;
}

.lightbox-arrow i {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}

.lightbox-ls ul {
  flex: 1;
  width: 100%;
  height: 85%;
  overflow: hidden;
}

.lightbox-ls ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.lightbox-ls ul li img {
  display: inline-block;
  max-width: 700px;
  width: auto;
  height: auto;
}

.lightbox-ls ul li .lightbox-arrow {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 100%;
  cursor: pointer;
}