.listTemplateComponent .list-template {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1112;
}
.listTemplateComponent .list-template-box {
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.listTemplateComponent .list-template-title {
  background: #F7F5F4;
  display: flex;
  align-items: center;
  padding: 16px;
  line-height: 1;
}
.listTemplateComponent .list-template-title .back {
  flex: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  cursor: pointer;
}
.listTemplateComponent .list-template-title .back.hide {
  visibility: hidden;
}
.listTemplateComponent .list-template-title .back .iconfont {
  font-size: 18px;
}
.listTemplateComponent .list-template-title .back:hover {
  color: var(--color-theme-1);
}
.listTemplateComponent .list-template-title h3 {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
}
.listTemplateComponent .list-template-title .closeIcon {
  cursor: pointer;
  flex: none;
  font-size: 14px;
  color: #666;
  width: 53px;
  text-align: right;
}
.listTemplateComponent .list-template-content {
  padding: 20px;
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
}
.listTemplateComponent .list-template-tip {
  background: rgba(247, 186, 42, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 179, 0, 0.3);
  padding: 8px 16px;
  display: flex;
  line-height: 1;
}
.listTemplateComponent .list-template-tip .iconfont {
  color: #F7BA2A;
  flex: none;
  margin-right: 8px;
}
.listTemplateComponent .list-template-tip p {
  flex: 1;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 18px;
}
.listTemplateComponent .list-template-list .add {
  min-width: 112px;
  padding: 0 10px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid var(--color-theme-1);
  font-size: 14px;
  color: var(--color-theme-1);
  background: #fff;
  margin-top: 20px;
}
.listTemplateComponent .list-template-list .add:hover {
  background: var(--color-theme-1-opacity10);
}
.listTemplateComponent .list-template-ul li {
  display: flex;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}
.listTemplateComponent .list-template-ul p {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  word-break: break-word;
}
.listTemplateComponent .list-template-ul .error-box {
  margin-top: 8px;
  font-size: 12px;
  color: #DD4B1A;
  line-height: 17px;
}
.listTemplateComponent .list-template-ul .error-box .iconfont {
  color: #DD4B1A;
  font-size: 12px;
}
.listTemplateComponent .list-template-ul .operate {
  flex: none;
  margin-left: auto;
  padding-left: 30px;
}
.listTemplateComponent .list-template-ul .operate .cj-tooltip {
  margin-left: 16px;
}
.listTemplateComponent .list-template-ul .operate .iconfont {
  color: #000000;
  cursor: pointer;
}
.listTemplateComponent .list-template-ul .operate .delete:hover {
  color: #DD4B1A;
}
.listTemplateComponent .list-template-ul .operate .edit:hover {
  color: var(--color-theme-1);
}
.listTemplateComponent .list-template-nodata {
  text-align: center;
}
.listTemplateComponent .list-template-nodata .img {
  margin-top: 100px;
}
.listTemplateComponent .list-template-nodata img {
  width: 120px;
  height: 120px;
}
.listTemplateComponent .list-template-nodata .text1 {
  font-size: 14px;
  color: #999999;
  line-height: 20px;
  margin: 20px 0;
}
.listTemplateComponent .list-template-nodata button {
  padding: 0 5px;
  height: 32px;
  background: var(--color-theme-1);
  border-radius: 4px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #fff;
}
.listTemplateComponent .list-template-nodata button:hover {
  background: var(--color-theme-1-1);
}
.listTemplateComponent .list-template .bottom-btn-box {
  width: 100%;
  text-align: center;
  background: #FFFFFF;
  padding: 20px;
  box-shadow: 0px -2px 3px 0px rgba(0, 0, 0, 0.05);
}
.listTemplateComponent .list-template .bottom-btn-box button {
  min-width: 80px !important;
  height: 30px !important;
  padding: 0 8px !important;
  line-height: 30px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
}
.listTemplateComponent .list-template .bottom-btn-box .close-btn {
  color: #666666 !important;
  border: 1px solid #E4E4E4 !important;
  background: #F9F9F9 !important;
  margin-right: 15px;
}
.listTemplateComponent .list-template .bottom-btn-box .close-btn:hover {
  color: var(--color-font-1) !important;
  border: 1px solid var(--color-line-1) !important;
  background: var(--color-bg-14-1) !important;
}
.listTemplateComponent .list-template .bottom-btn-box .confirm-btn {
  color: #fff;
  background: var(--color-theme-1);
}
.listTemplateComponent .list-template .bottom-btn-box .confirm-btn:hover {
  background: var(--color-theme-1-1);
}
.listTemplateComponent .vip.list-template .list-template-title .back:hover {
  color: var(--color-theme-1-vip);
}
.listTemplateComponent .vip.list-template .list-template-list .add {
  color: var(--color-theme-1-vip);
  border-color: var(--color-theme-1-vip);
}
.listTemplateComponent .vip.list-template .list-template-list .add:hover {
  background: rgba(221, 169, 100, 0.1);
}
.listTemplateComponent .vip.list-template .list-template-ul .edit:hover {
  color: var(--color-theme-1-vip);
}
.listTemplateComponent .vip.list-template .list-template-nodata button {
  color: var(--color-font-1);
  background: var(--color-theme-2-vip);
}
.listTemplateComponent .vip.list-template .list-template-nodata button:hover {
  background: var(--color-theme-2-1-vip);
}
.listTemplateComponent .vip.list-template .bottom-btn-box .confirm-btn {
  color: var(--color-font-1);
  background: var(--color-theme-2-vip);
}
.listTemplateComponent .vip.list-template .bottom-btn-box .confirm-btn:hover {
  background: var(--color-theme-2-1-vip);
}
.listTemplateComponent .second-modal {
  background-color: rgba(0, 0, 0, 0.3) !important;
}
