@keyframes loading {
  from {
    transform: rotate(0);
    opacity: 0.5;
  }
  to {
    transform: rotate(360deg);
    opacity: 1;
  }
}
.component-style {
  background: #F3F5F6;
  padding-bottom: 40px;
}
.component-style * {
  box-sizing: border-box;
  -moz-user-select: none;
  /*���*/
  -webkit-user-select: none;
  /*webkit�����*/
  -ms-user-select: none;
  /*IE10*/
  user-select: none;
}
.component-style .common-loading {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.78);
  z-index: 9999999;
}
.component-style .common-loading .content {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  border-radius: 2px;
  background: #fff;
}
.component-style .common-loading .content .u-pure-rotate {
  width: 40%;
  animation: loading  linear infinite;
}
.component-style .common-search {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 800px;
  height: 48px;
  background: #FFFFFF;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid #E7E7E9;
  transition: all 0.3s;
  max-width: 100%;
}
.component-style .common-search .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 17px;
  margin: auto;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.component-style .common-search input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 56px;
  font-size: 16px;
  font-weight: 400;
  color: #344750;
  outline: none;
  background: rgba(0, 0, 0, 0);
  -moz-user-select: auto;
  /*���*/
  -webkit-user-select: auto;
  /*webkit�����*/
  -ms-user-select: auto;
  /*IE10*/
  user-select: auto;
}
.component-style .common-search input::placeholder {
  color: #BBBBBB;
}
.component-style .common-search .clear {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.component-style .common-search .clear svg {
  cursor: pointer;
}
.component-style .common-search .clear svg:hover > g > path {
  fill: #ff822c;
}
.component-style .common-search.focus {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #ff782d;
}
.component-style .common-search .search-history {
  position: absolute;
  width: 100%;
  padding: 20px 14px 12px;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  border: 1px solid #e7e7e9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: -1;
  left: 0;
  top: 50px;
}
.component-style .common-search .search-history.show {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.component-style .common-search .search-history .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.component-style .common-search .search-history .head span {
  color: #344750;
  font-size: 15px;
  opacity: 0.6;
}
.component-style .common-search .search-history .head .clearHistory {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.component-style .common-search .search-history .head .clearHistory:hover {
  background: #eeeeee;
}
.component-style .common-search .search-history .keyword-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.component-style .common-search .search-history .keyword-list .item {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  max-width: 120px;
  padding: 0 16px;
  margin: 0 8px 8px 0;
  transition: all 0.3s;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.component-style .common-search .search-history .keyword-list .item:hover {
  background-color: #e4e4e4;
}
.component-style .resource-item {
  position: relative;
  width: 280px;
  height: 280px;
  transition: all 0.3s;
  cursor: grab;
  overflow: hidden;
}
.component-style .resource-item .load {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #EDEDED;
}
.component-style .resource-item .load .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 10px solid #ffffff;
  border-right-color: #767676;
  transition: all 0.75s ease 0s;
  animation: loading 0.8s linear infinite;
}
.component-style .resource-item img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.component-style .resource-item .mask {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.component-style .resource-item .mask .delete {
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
}
.component-style .resource-item .mask .delete:hover g {
  transition: all 0.3s;
  fill: #ff0000;
}
.component-style .resource-item .num {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
}
.component-style .resource-item .num span {
  height: 21px;
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 21px;
}
.component-style .resource-item:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.component-style .resource-item:hover .mask {
  opacity: 1;
}
.component-style .resource-item.drag-ele {
  transition: none;
  cursor: grabbing;
  z-index: 99999;
}
.component-style .resource-list .resource-list-head {
  position: relative;
}
.component-style .resource-list .resource-list-head h3 {
  height: 156px;
  font-size: 32px;
  font-weight: 500;
  color: #17191D;
  line-height: 156px;
  text-align: center;
}
.component-style .resource-list .resource-list-head .next {
  position: absolute;
  top: 50px;
  right: 55px;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 18px 0 42px;
  background: #FF782D;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  outline: none;
}
.component-style .resource-list .resource-list-head .next:hover {
  background: #E0640D;
}
.component-style .resource-list .resource-list-head .next .text {
  height: 18px;
  margin-right: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 18px;
}
.component-style .resource-list .resource-list-head .next .count {
  margin-right: 28px;
  font-size: 12px;
  font-weight: bold;
  color: #F3F5F6;
  line-height: 22px;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}
.component-style .resource-list .resource-list-head .next.disabled {
  background: #d6d6d6;
  pointer-events: none;
}
.component-style .resource-list .resource-list-view {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: auto auto;
  transition: all 0.2s;
  min-height: 750px;
}
.component-style .resource-list .resource-list-view .resource-list-add {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;
  height: 280px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #E3E3E3;
  cursor: pointer;
}
.component-style .resource-list .resource-list-view .resource-list-add .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: 100px;
  background: #FF782D;
  border-radius: 50%;
  transition: all 0.3s;
}
.component-style .resource-list .resource-list-view .resource-list-add span {
  height: 23px;
  margin-top: 10px;
  font-size: 19px;
  font-weight: 500;
  color: #17191D;
  line-height: 23px;
}
.component-style .resource-list .resource-list-view .resource-list-add:hover .icon {
  background: #E0640D;
  transform: scale(1.12);
}
.component-style .resource-list .resource-list-view .resource-item {
  position: absolute;
}
@media screen and (max-width: 800px) {
  .component-style .resource-list .resource-list-head .next {
    position: static;
    margin: auto auto 50px;
  }
}
.component-style .template-list {
  position: relative;
}
.component-style .template-list .template-list-head h3 {
  height: 128px;
  font-size: 32px;
  font-weight: 500;
  color: #17191D;
  line-height: 128px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.component-style .template-list .template-list-head .go-back {
  position: absolute;
  top: 44px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-left: 56px;
  transition: all 0.3s;
  cursor: pointer;
}
.component-style .template-list .template-list-head .go-back svg {
  margin-right: 11px;
}
.component-style .template-list .template-list-head .go-back svg path {
  fill: #17191D;
}
.component-style .template-list .template-list-head .go-back span {
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #17191D;
  line-height: 40px;
}
.component-style .template-list .template-list-head .go-back:hover svg path {
  fill: #ff782d;
}
.component-style .template-list .template-list-head .go-back:hover span {
  color: #ff782d;
}
.component-style .template-list .template-list-head .scratch-btn {
  position: absolute;
  right: 56px;
  top: 44px;
  height: 40px;
  padding: 0 31px;
  background: #FF782D;
  border-radius: 20px;
  line-height: 40px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  outline: none;
}
.component-style .template-list .template-list-head .scratch-btn:hover {
  background: #e0640d;
}
.component-style .template-list .search-template {
  width: 800px;
  margin: auto;
  max-width: 80%;
}
.component-style .template-list .category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 70px 8px;
  display: none;
}
.component-style .template-list .category .category-name {
  min-width: 116px;
  height: 18px;
  margin: 0 3px;
  font-size: 15px;
  font-weight: 500;
  color: #344750;
  line-height: 18px;
  cursor: pointer;
  text-transform: capitalize;
  text-align: center;
}
.component-style .template-list .line {
  position: relative;
  height: 1px;
  margin: 0 70px;
  background: #E7E7E9;
  display: none;
}
.component-style .template-list .line .nonius {
  position: absolute;
  top: 0;
  height: 4px;
  background: #FF782D;
  transition: all 0.3s;
}
.component-style .template-list .no-search-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 35px auto 100px;
}
.component-style .template-list .no-search-result .keyword {
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #1e2832;
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: auto;
}
.component-style .template-list .no-search-result .icon {
  margin-top: 16px;
  text-align: center;
}
.component-style .template-list .no-search-result .desc {
  width: 600px;
  height: 44px;
  font-size: 15px;
  font-weight: 400;
  color: #1e2832;
  text-align: center;
  margin: 15px auto auto;
  opacity: 0.5;
}
.component-style .template-list .list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 50px auto 0;
  min-height: 650px;
}
.component-style .template-list .list .template-item {
  margin: 0 10px 30px;
}
.component-style .template-item {
  width: 340px;
  height: 242px;
}
.component-style .template-item .preview {
  width: 100%;
  height: 192px;
}
.component-style .template-item .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.component-style .template-item .preview video {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}
.component-style .template-item .template-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.component-style .template-item .template-item-footer span {
  height: 21px;
  font-size: 15px;
  font-weight: 400;
  color: #4A4E57;
  line-height: 18px;
  text-transform: capitalize;
}
.component-style .template-item .template-item-footer button {
  display: none;
  height: 30px;
  padding: 0 20px 0;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 30px;
  background: #FF822C;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s;
  outline: none;
}
.component-style .template-item .template-item-footer button:hover {
  background: #e0640d;
}
.component-style .template-item:hover .preview {
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.2);
}
.component-style .template-item:hover .preview.video-loaded img {
  display: none;
}
.component-style .template-item:hover .preview.video-loaded video {
  display: block;
}
.component-style .template-item:hover .template-item-footer button {
  display: block;
}
.component-style .resource-list,
.component-style .template-list {
  position: fixed;
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.component-style .resource-list.active,
.component-style .template-list.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
/*# sourceMappingURL=slideshow_component.css.map */