/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  -webkit-box-shadow: 0 0 10px #29d, 0 0 5px #29d;
          box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
      -ms-transform: rotate(3deg) translate(0px, -4px);
          transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
          animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}
@keyframes nprogress-spinner {
  0%   { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}


.cursor-pointer {
  cursor: pointer;
}
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.justify-content-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.absolute-center-y {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.text-overflow {
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.placeholder:empty:before {
  content: attr(placeholder);
  color: #b5b5b5;
}
.placeholder:focus:before {
  content: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.MainLayout-Header {
  z-index: 100;
}
.LinkGroup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.LinkGroup a:nth-child(n + 2) {
  margin-left: 8px;
}
.submit-btn {
  width: 80px;
}
.contentLayout {
  border-radius: 16px;
  background-color: #ffffff;
  padding: 16px;
  padding-bottom: 100px;
}
.contentLayout .list-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.contentLayout .list-bar .list-add-btn {
  display: block;
  height: 24px;
  line-height: 24px;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #ff5c5c;
  color: #ffffff;
  border-radius: 8px;
}
.contentLayout .list-content {
  margin-top: 16px;
}
.contentLayout .list-content .ant-table-thead > tr > th {
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.table-img {
  width: 100px;
  height: 100px;
}
.chart-tooltip {
  text-align: center;
  width: 100%;
}
.chart-tooltip-name {
  background: #5e6289;
  color: #ffffff;
  padding: 2px 9px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.chart-tooltip-value {
  background: rgba(41, 47, 109, 0.65);
  padding: 2px 9px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.chart-tooltip-icon {
  position: absolute;
  bottom: -4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(41, 47, 109, 0.65);
}
.publisherName {
  display: block;
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.Spin-Tip {
  white-space: nowrap;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ant-avatar {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: block;
}
#nprogress .bar {
  background: #0084ff;
}
#nprogress .bar .peg {
  -webkit-box-shadow: 0 0 10px #0084ff, 0 0 5px #0084ff;
          box-shadow: 0 0 10px #0084ff, 0 0 5px #0084ff;
}
.ant-menu-item,
.ant-menu-submenu-title {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.richtext-editor-main {
  min-height: 300px;
  max-height: 600px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
  border-color: #2188ff;
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(27, 31, 35, 0.075), 0 0 0 0.2em rgba(3, 102, 214, 0.3);
          box-shadow: inset 0 1px 2px rgba(27, 31, 35, 0.075), 0 0 0 0.2em rgba(3, 102, 214, 0.3);
}
.richtext-editor-main img {
  max-width: 100% !important;
}
.richtext-editor .rdw-image-modal-upload-option-label {
  word-break: break-all;
}

.PageIndex .content {
  min-height: 400px;
  margin-top: 48px;
  padding-top: 24px;
  background: #ffffff;
}
.PageIndex .content .title {
  padding-left: 24px;
}
.PageIndex .content .chart {
  width: 600px;
  height: 300px;
}




.PageNewsListEdit .form-layout .ant-input,
.PageNewsListEdit .form-layout .ant-select {
  width: 500px;
}
.PageNewsListEdit .richtext-editor {
  background: #ffffff;
}
.PageNewsListEdit .richtext-editor-main {
  min-height: 300px;
}
.PageNewsListEdit .richtext-editor .rdw-image-modal-upload-option-label {
  word-break: break-all;
}

.PageNewsList .tool-icon {
  width: 32px;
  height: 32px;
}







.PageParaListEdit .form-layout .ant-input,
.PageParaListEdit .form-layout .ant-select {
  width: 500px;
}
.PageParaListEdit .richtext-editor {
  background: #ffffff;
}
.PageParaListEdit .richtext-editor-main {
  min-height: 300px;
}
.PageParaListEdit .richtext-editor .rdw-image-modal-upload-option-label {
  word-break: break-all;
}

.PageParaList .tool-icon {
  width: 32px;
  height: 32px;
}












.PageToolsListEdit .form-layout .ant-input,
.PageToolsListEdit .form-layout .ant-select {
  width: 500px;
}

.PageToolsList .tool-icon {
  width: 32px;
  height: 32px;
}




.PageUploadBrandlogo .form-layout {
  width: 500px;
}

.MainLayout {
  min-height: 100vh;
}
.MainLayout-Sider::-webkit-scrollbar {
  width: 0 !important;
}
.MainLayout-Sider-Logo {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  padding-left: 24px;
  height: 60px;
  line-height: 60px;
}
.MainLayout-Main-Header {
  color: #ffffff;
  position: relative;
}
.MainLayout-Main-Header .Collapser {
  left: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.MainLayout-Main-Header .Collapser svg {
  width: 24px;
  height: 24px;
}
.MainLayout-Main-Header .Collapser:hover svg {
  color: #40a9ff;
}
.MainLayout-Main-Header .LoginStatus {
  right: 24px;
}
.MainLayout-Main-Content {
  padding: 24px;
  padding-bottom: 100px;
}

.PageLogin {
  background-color: #f0f2f5;
  min-height: 100vh;
}
.PageLogin .header {
  height: 40px;
}
.PageLogin .main {
  padding: 32px 0 24px;
}
.PageLogin .main .logo {
  text-align: center;
}
.PageLogin .main .logo-title {
  font-weight: 600;
  font-size: 33px;
}
.PageLogin .main .logo-title img {
  margin-right: 16px;
  height: 44px;
}
.PageLogin .main .logo-title .label {
  position: relative;
  top: 2px;
}
.PageLogin .main .logo-tip {
  margin-top: 12px;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
}
.PageLogin .main .userLogin {
  width: 368px;
  margin: 0 auto;
}


.BreadcrumbLink {
  padding-bottom: 24px;
}






.ImgUpload .uploadedImg {
  display: block;
  width: 100%;
  height: 100%;
}
.ImgUpload .uploadedImg img {
  -o-object-fit: contain;
     object-fit: contain;
}
.ImgUploadOrAdd .ant-upload-picture-card-wrapper {
  width: auto;
}
.ImgUploadOrAdd .ant-upload-picture-card-wrapper .ant-upload-select {
  margin: 0;
}
.ImgUploadOrAdd .change {
  text-decoration: underline;
  vertical-align: bottom;
  margin-left: 16px;
}


.ListStar .star:nth-child(n + 2) {
  margin-left: 4px;
}

.Qrcode {
  cursor: pointer;
  margin: 0 auto;
  display: block;
  width: 164px;
  height: 164px;
  position: relative;
}
.Qrcode img {
  margin: 0 auto;
  display: block;
  width: 164px;
  height: 164px;
}
.Qrcode-ClickRefresh {
  color: #1890ff;
  width: 164px;
  height: 164px;
  padding-top: 59px;
}

.QrcodeBorder {
  position: absolute;
}
.QrcodeBorder-1 {
  width: 12px;
  height: 1px;
  background: #ff7a3a;
}
.QrcodeBorder-2 {
  width: 1px;
  height: 12px;
  background: #ff7a3a;
}
.QrcodeBorder.top-left {
  top: -6px;
  left: -6px;
}
.QrcodeBorder.top-right {
  top: -6px;
  right: -6px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.QrcodeBorder.bottom-left {
  bottom: -6px;
  left: -6px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.QrcodeBorder.bottom-right {
  bottom: -6px;
  right: -6px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.TimeBtn {
  border: none;
  background: inherit;
  cursor: pointer;
  width: 86px;
  outline: none;
  color: #1890ff;
}

.LoginStatus {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  width: 40px;
  height: 40px;
}
.LoginStatus .regBtn {
  width: 102px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  white-space: nowrap;
  color: #141b27;
  text-align: center;
}
.LoginStatus .regBtn:hover {
  background: rgba(20, 27, 39, 0.04);
  border-radius: 8px;
}
.LoginStatus-img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.LoginStatus-vipType {
  height: 15px;
  position: absolute;
  bottom: 0;
  left: 50%;
}
.ant-popover-inner-content {
  padding: 0;
}
.ant-popover-inner-content .menuBtn {
  cursor: pointer;
  height: auto;
  border: none;
  padding: 0;
  width: 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;
  font-size: 14px;
  line-height: 20px;
  color: #141b27;
}
.ant-popover-inner-content .menuBtn img {
  margin-right: 5.78px;
}
.ant-popover-inner-content .menuBtn:hover {
  color: #1890ff;
}
.ant-popover-inner-content .ant-card .ant-card-head-title {
  padding: 0;
}
.ant-popover-inner-content .ant-card .ant-card-head-title .ant-row {
  font-size: 14px;
  line-height: 20px;
}
.ant-popover-inner-content .ant-card .ant-card-head-title .ant-row > div:nth-child(1) {
  color: rgba(20, 27, 39, 0.4);
}
.ant-popover-inner-content .ant-card .ant-card-head-title .ant-row:nth-child(n + 2) {
  margin-top: 16px;
}
.ant-popover-inner-content .ant-card .ant-card-head {
  padding: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.ant-popover-inner-content .ant-card .ant-card-body {
  text-align: center;
  padding: 8px;
}

.SelectNav {
  margin-right: 16px;
}
.SelectNav-Item:nth-child(n + 2) {
  margin-left: 16px;
}
.SelectNav-Item-Com .ant-select-selector {
  min-width: 200px;
}

.AdvCollect .title {
  color: #141b27;
  font-size: 16px;
}
.AdvCollect .chart {
  min-height: 500px;
}
.AdvCollect .NoneData {
  padding-top: 64px;
}

.NoneData {
  font-family: PingFang SC;
  font-size: 14px;
  line-height: 20px;
  color: #bbb6c8;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 64px;
  width: 100%;
}
.NoneData .info {
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.56);
  margin-top: 24px;
}



.RichEditor .control {
  height: 50px;
  line-height: 30px;
}
.RichEditor .control-tip {
  color: #b5b5b5;
  margin-left: 24px;
}
.RichEditor .area img {
  max-width: 100% !important;
}

