@charset "UTF-8";
/* 员工管理抽屉样式 */
.employee-drawer-overlay[data-v-065fde52] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.employee-drawer-overlay.drawer-active[data-v-065fde52] {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
.employee-drawer-overlay.drawer-active .employee-drawer-container[data-v-065fde52] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.employee-drawer-backdrop[data-v-065fde52] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.employee-drawer-container[data-v-065fde52] {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.employee-drawer-header[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 16px;
}
.employee-drawer-title[data-v-065fde52] {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: white;
}
.employee-stats[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.employee-stats .stat-item[data-v-065fde52] {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.employee-drawer-close[data-v-065fde52] {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
  opacity: 0.8;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.employee-drawer-close[data-v-065fde52]:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.employee-drawer-content[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  height: 0;
}

/* 工具栏样式 */
.employee-toolbar[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e2e8f0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.toolbar-btn[data-v-065fde52] {
  padding: 10px 16px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: white;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.toolbar-btn[data-v-065fde52]:hover:not(:disabled) {
  background: #f8fafc;
  border-color: #cbd5e1;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.toolbar-btn.primary[data-v-065fde52] {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: transparent;
  -webkit-box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
          box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}
.toolbar-btn.primary[data-v-065fde52]:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}
.toolbar-btn[data-v-065fde52]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  -webkit-transform: none;
          transform: none;
}
.toolbar-btn i[data-v-065fde52] {
  font-size: 14px;
}
.toolbar-btn i.rotating[data-v-065fde52] {
  -webkit-animation: rotate-065fde52 1s linear infinite;
          animation: rotate-065fde52 1s linear infinite;
}

/* 搜索栏样式 */
.employee-search-bar[data-v-065fde52] {
  padding: 12px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-bottom: 1px solid #e2e8f0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.search-input-wrapper[data-v-065fde52] {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-icon[data-v-065fde52] {
  position: absolute;
  left: 14px;
  font-size: 16px;
  color: #94a3b8;
  z-index: 1;
}
.search-input[data-v-065fde52] {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  outline: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.search-input[data-v-065fde52]:focus {
  border-color: #667eea;
  -webkit-box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.search-input[data-v-065fde52]::-webkit-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.search-input[data-v-065fde52]::-moz-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.search-input[data-v-065fde52]:-ms-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.search-input[data-v-065fde52]::-ms-input-placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.search-input[data-v-065fde52]::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.clear-btn[data-v-065fde52] {
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #94a3b8;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.clear-btn[data-v-065fde52]:hover {
  background-color: #f1f5f9;
  color: #64748b;
}

/* 员工列表容器 */
.employee-list-container[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

/* 加载状态 */
.loading-container[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.loading-spinner[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  color: #667eea;
}
.loading-spinner i[data-v-065fde52] {
  font-size: 24px;
  -webkit-animation: rotate-065fde52 1s linear infinite;
          animation: rotate-065fde52 1s linear infinite;
}
.loading-spinner span[data-v-065fde52] {
  font-size: 14px;
  font-weight: 500;
}

/* 空状态 */
.empty-container[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 20px;
}
.empty-content[data-v-065fde52] {
  text-align: center;
  max-width: 300px;
}
.empty-icon[data-v-065fde52] {
  font-size: 64px;
  color: #cbd5e1;
  margin-bottom: 16px;
}
.empty-text[data-v-065fde52] {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 24px;
}
.empty-action-btn[data-v-065fde52] {
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.empty-action-btn[data-v-065fde52]:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
          box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* 员工列表 */
.employee-list[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.employee-list[data-v-065fde52]::-webkit-scrollbar {
  width: 6px;
}
.employee-list[data-v-065fde52]::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 6px;
}
.employee-list[data-v-065fde52]::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#cbd5e1), to(#94a3b8));
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
  border-radius: 6px;
}
.employee-list[data-v-065fde52]::-webkit-scrollbar-thumb:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#94a3b8), to(#64748b));
  background: linear-gradient(to bottom, #94a3b8, #64748b);
}

/* 员工卡片 */
.employee-card[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  padding: 10px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.employee-card[data-v-065fde52]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#667eea), to(#764ba2));
  background: linear-gradient(to bottom, #667eea, #764ba2);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.employee-card[data-v-065fde52]:hover {
  border-color: #667eea;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
          box-shadow: 0 8px 20px rgba(102, 126, 234, 0.12);
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}
.employee-card[data-v-065fde52]:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

/* 员工主要信息 */
.employee-main-info[data-v-065fde52] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  min-width: 0;
  margin-right: 16px;
}
.employee-name[data-v-065fde52] {
  font-weight: 700;
  color: #1e293b;
  font-size: 14px;
  line-height: 1.3;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.employee-id[data-v-065fde52] {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
}
.employee-extra-info .info-tag[data-v-065fde52] {
  color: #64748b;
  font-size: 11px;
  font-weight: 500;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  padding: 3px 6px;
  border-radius: 6px;
  border: 1px solid #bbf7d0;
}

/* 员工操作按钮 */
.employee-actions[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.action-btn[data-v-065fde52] {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.action-btn.edit[data-v-065fde52] {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  -webkit-box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
          box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}
.action-btn.edit[data-v-065fde52]:hover {
  -webkit-transform: translateY(-1px) scale(1.05);
          transform: translateY(-1px) scale(1.05);
  -webkit-box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
          box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
}
.action-btn.delete[data-v-065fde52] {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  -webkit-box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
          box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}
.action-btn.delete[data-v-065fde52]:hover {
  -webkit-transform: translateY(-1px) scale(1.05);
          transform: translateY(-1px) scale(1.05);
  -webkit-box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
          box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

/* 分页 */
.pagination-container[data-v-065fde52] {
  padding: 16px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f9fafb;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 自定义弹窗样式 */
.custom-dialog-overlay[data-v-065fde52] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0);
  visibility: hidden;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.custom-dialog-overlay.dialog-active[data-v-065fde52] {
  background-color: rgba(0, 0, 0, 0.5);
  visibility: visible;
}
.custom-dialog-overlay.dialog-active .custom-dialog-container[data-v-065fde52] {
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
  opacity: 1;
}
.custom-dialog-backdrop[data-v-065fde52] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.custom-dialog-container[data-v-065fde52] {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(0.9) translateY(20px);
          transform: scale(0.9) translateY(20px);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  min-width: 500px;
}
.custom-dialog-container.small[data-v-065fde52] {
  min-width: 400px;
}
@media (max-width: 768px) {
.custom-dialog-container[data-v-065fde52] {
    min-width: 320px;
    max-width: 95vw;
}
}
.custom-dialog-header[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 16px 16px 0 0;
}
.custom-dialog-title[data-v-065fde52] {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: white;
}
.custom-dialog-close[data-v-065fde52] {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: white;
  opacity: 0.8;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.custom-dialog-close[data-v-065fde52]:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
}
.custom-dialog-content[data-v-065fde52] {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
}
.custom-dialog-content[data-v-065fde52]::-webkit-scrollbar {
  width: 6px;
}
.custom-dialog-content[data-v-065fde52]::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
.custom-dialog-content[data-v-065fde52]::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
.custom-dialog-content[data-v-065fde52]::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
.custom-dialog-footer[data-v-065fde52] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  border-radius: 0 0 16px 16px;
}
.dialog-btn[data-v-065fde52] {
  padding: 8px 20px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  min-width: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.dialog-btn[data-v-065fde52]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.dialog-btn.cancel[data-v-065fde52] {
  background: white;
  color: #374151;
  border-color: #d1d5db;
}
.dialog-btn.cancel[data-v-065fde52]:hover:not(:disabled) {
  background: #f9fafb;
  border-color: #9ca3af;
}
.dialog-btn.confirm[data-v-065fde52] {
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-color: #667eea;
}
.dialog-btn.confirm[data-v-065fde52]:hover:not(:disabled) {
  background: -webkit-gradient(linear, left top, right top, from(#5a67d8), to(#6b46c1));
  background: linear-gradient(90deg, #5a67d8 0%, #6b46c1 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.dialog-btn.danger[data-v-065fde52] {
  background: -webkit-gradient(linear, left top, right top, from(#ef4444), to(#dc2626));
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border-color: #ef4444;
}
.dialog-btn.danger[data-v-065fde52]:hover:not(:disabled) {
  background: -webkit-gradient(linear, left top, right top, from(#dc2626), to(#b91c1c));
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}
.dialog-btn i[data-v-065fde52] {
  font-size: 14px;
}

/* 删除确认弹窗特殊样式 */
.delete-confirm-content[data-v-065fde52] {
  text-align: center;
  padding: 20px 0;
}
.delete-warning-icon[data-v-065fde52] {
  font-size: 48px;
  color: #f59e0b;
  margin-bottom: 16px;
}
.delete-confirm-text[data-v-065fde52] {
  font-size: 16px;
  color: #374151;
  margin-bottom: 8px;
}
.delete-confirm-tip[data-v-065fde52] {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Element UI 表单样式优化 */
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item {
  margin-bottom: 18px;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-form-item__label {
  color: #374151;
  font-weight: 500;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-input__inner {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-input__inner:focus {
  border-color: #667eea;
  -webkit-box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
          box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-select {
  width: 100%;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-select .el-input__inner {
  cursor: pointer;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-radio-group .el-radio {
  margin-right: 20px;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-radio-group .el-radio .el-radio__label {
  color: #374151;
  font-weight: 500;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item .el-radio-group .el-radio.is-checked .el-radio__inner {
  background: #667eea;
  border-color: #667eea;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item.is-error .el-input__inner {
  border-color: #ef4444;
}
.custom-dialog-content[data-v-065fde52] .el-form .el-form-item.is-error .el-input__inner:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
          box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
.employee-drawer-container[data-v-065fde52] {
    width: 100vw;
}
.employee-stats[data-v-065fde52] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
}
.employee-card[data-v-065fde52] {
    padding: 16px;
    gap: 12px;
}
.employee-actions[data-v-065fde52] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
}
.detail-avatar-section[data-v-065fde52] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
}
.detail-info-grid[data-v-065fde52] {
    grid-template-columns: 1fr;
}
}
/* 动画 */
@-webkit-keyframes rotate-065fde52 {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@keyframes rotate-065fde52 {
from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
}
}
@charset "UTF-8";
.feature-card[data-v-3b18c2dc] {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.feature-card[data-v-3b18c2dc]:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
#btnClass[data-v-3b18c2dc] {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 3rem;
  color: #FFFFFF;
  border-radius: 8px;
}
.glass-effect[data-v-3b18c2dc] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* 弹窗动画相关样式 */
#contactDialog[data-v-3b18c2dc] {
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
#contactDialog .glass-effect[data-v-3b18c2dc] {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  opacity: 0;
}
#contactDialog.show[data-v-3b18c2dc] {
  opacity: 1 !important;
  pointer-events: auto !important;
}
#contactDialog.show .glass-effect[data-v-3b18c2dc] {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}
.bgCode[data-v-3b18c2dc] {
  background-image: url(../img/codeBg.9cd8cd50.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qiwei-container[data-v-3b18c2dc]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* 右对齐 */
  width: 100%;
  height: 100%;
  background-image: url("https://cdn-prod.ykdsaas.com/upload/20250521/8df24d260ca0349e1bb654c1232281e8.png");
  background-position: right center; /* 右对齐 + 垂直居中 */
  background-size: cover;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  z-index: -1;
}
.absolute[data-v-3b18c2dc] {
  /* position: relative; */
  z-index: 2;
  padding: 20px;
  color: white;
}

/* 企微页面容器样式 */
.qiwei-container[data-v-3b18c2dc] {
  min-height: 100vh;
  position: relative;
  padding-top: 0; /* 默认无顶部间距 */
}
.qiwei-content[data-v-3b18c2dc] {
  min-height: calc(100vh - 64px); /* 减去导航栏高度 */
}

/* 移动端适配 */
@media screen and (max-width: 992px) {
.qiwei-container[data-v-3b18c2dc] {
    padding-top: 80px; /* 为移动端导航菜单留出空间 */
    min-height: calc(100vh - 80px);
}
.qiwei-content[data-v-3b18c2dc] {
    min-height: calc(100vh - 160px); /* 减去导航栏和额外间距 */
    padding-top: 2rem; /* 调整内容顶部间距 */
}
  /* 调整移动端背景显示 */
.qiwei-container[data-v-3b18c2dc]::before {
    top: 80px; /* 背景从导航菜单下方开始 */
    height: calc(100% - 80px);
}
  /* 移动端标题和按钮样式调整 */
.qiwei-content h1[data-v-3b18c2dc] {
    font-size: 2rem !important; /* 移动端标题适当缩小 */
    margin-bottom: 1.5rem !important;
}
.qiwei-content .grid[data-v-3b18c2dc] {
    grid-template-columns: 1fr !important; /* 移动端改为单列布局 */
    gap: 1.5rem !important;
}
#btnClass[data-v-3b18c2dc] {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}
}
/* CRM功能卡片样式 */
.features-grid[data-v-3b18c2dc] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  /* 桌面端：4列 */
  /* 平板端：2列 */
  /* 移动端：1列 */
}
@media (min-width: 1200px) {
.features-grid[data-v-3b18c2dc] {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 0;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.features-grid[data-v-3b18c2dc] {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
}
@media (max-width: 767px) {
.features-grid[data-v-3b18c2dc] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
}
}
.feature-card[data-v-3b18c2dc] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* 悬停效果 */
  /* 移动端优化 */
  /* 渐变光晕效果 */
}
.feature-card[data-v-3b18c2dc]:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
          transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
.feature-card[data-v-3b18c2dc] {
    padding: 1.5rem;
    border-radius: 16px;
}
.feature-card[data-v-3b18c2dc]:hover {
    -webkit-transform: translateY(-4px) scale(1.01);
            transform: translateY(-4px) scale(1.01);
}
}
.feature-card[data-v-3b18c2dc]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.feature-card[data-v-3b18c2dc]:hover::before {
  opacity: 1;
}
.feature-icon[data-v-3b18c2dc] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
.feature-icon[data-v-3b18c2dc] {
    margin-bottom: 1rem;
}
}
.icon-wrapper[data-v-3b18c2dc] {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-wrapper[data-v-3b18c2dc]::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.feature-card:hover .icon-wrapper[data-v-3b18c2dc] {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.feature-card:hover .icon-wrapper[data-v-3b18c2dc]::before {
  opacity: 1;
}
.icon-wrapper svg[data-v-3b18c2dc] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
.icon-wrapper[data-v-3b18c2dc] {
    width: 3rem;
    height: 3rem;
}
.icon-wrapper svg[data-v-3b18c2dc] {
    width: 1.5rem;
    height: 1.5rem;
}
}
.feature-content[data-v-3b18c2dc] {
  text-align: center;
}
.feature-title[data-v-3b18c2dc] {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
  background-clip: text;
  -webkit-background-clip: text;
  position: relative;
}
@media (max-width: 767px) {
.feature-title[data-v-3b18c2dc] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
}
@media (max-width: 480px) {
.feature-title[data-v-3b18c2dc] {
    font-size: 1.125rem;
}
}
.feature-list[data-v-3b18c2dc] {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.feature-item[data-v-3b18c2dc] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
}
.feature-item[data-v-3b18c2dc]:last-child {
  margin-bottom: 0;
}
.feature-item span[data-v-3b18c2dc] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.feature-card:hover .feature-item span[data-v-3b18c2dc] {
  color: #2d3748;
}
@media (max-width: 767px) {
.feature-item[data-v-3b18c2dc] {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
}
.check-icon[data-v-3b18c2dc] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.check-icon[data-v-3b18c2dc]::before {
  content: "\2713";
  font-weight: bold;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
.check-icon[data-v-3b18c2dc] {
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.5rem;
}
.check-icon[data-v-3b18c2dc]::before {
    font-size: 0.6875rem;
}
}

/* 不同主题色的特殊效果 */
.feature-card[data-v-3b18c2dc]:nth-child(1):hover {
  -webkit-box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 8px 24px rgba(99, 102, 241, 0.08);
          box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 8px 24px rgba(99, 102, 241, 0.08);
}
.feature-card[data-v-3b18c2dc]:nth-child(2):hover {
  -webkit-box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 8px 24px rgba(59, 130, 246, 0.08);
          box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 8px 24px rgba(59, 130, 246, 0.08);
}
.feature-card[data-v-3b18c2dc]:nth-child(3):hover {
  -webkit-box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15), 0 8px 24px rgba(34, 197, 94, 0.08);
          box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15), 0 8px 24px rgba(34, 197, 94, 0.08);
}
.feature-card[data-v-3b18c2dc]:nth-child(4):hover {
  -webkit-box-shadow: 0 20px 60px rgba(147, 51, 234, 0.15), 0 8px 24px rgba(147, 51, 234, 0.08);
          box-shadow: 0 20px 60px rgba(147, 51, 234, 0.15), 0 8px 24px rgba(147, 51, 234, 0.08);
}

/* 响应式优化 */
@media (max-width: 992px) {
.features-grid[data-v-3b18c2dc] {
    margin-top: 2rem;
}
}
@media (max-width: 576px) {
.features-grid[data-v-3b18c2dc] {
    padding: 0;
    gap: 1rem;
}
.feature-card[data-v-3b18c2dc] {
    padding: 1.25rem;
    border-radius: 12px;
}
}
@charset "UTF-8";
.feature-card[data-v-43e52a68] {
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.feature-card[data-v-43e52a68]:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
#btnClass[data-v-43e52a68] {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 1rem 3rem;
  color: #FFFFFF;
  border-radius: 8px;
}
.glass-effect[data-v-43e52a68] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

/* 弹窗动画相关样式 */
#contactDialog[data-v-43e52a68] {
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
#contactDialog .glass-effect[data-v-43e52a68] {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  opacity: 0;
}
#contactDialog.show[data-v-43e52a68] {
  opacity: 1 !important;
  pointer-events: auto !important;
}
#contactDialog.show .glass-effect[data-v-43e52a68] {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  opacity: 1 !important;
}
.bgCode[data-v-43e52a68] {
  background-image: url(../img/codeBg.9cd8cd50.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qiwei-container[data-v-43e52a68]::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0; /* 右对齐 */
  width: 100%;
  height: 100%;
  background-image: url("https://cdn-prod.ykdsaas.com/upload/20250521/8df24d260ca0349e1bb654c1232281e8.png");
  background-position: right center; /* 右对齐 + 垂直居中 */
  background-size: cover;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  z-index: -1;
}
.absolute[data-v-43e52a68] {
  /* position: relative; */
  z-index: 2;
  padding: 20px;
  color: white;
}

/* 企微页面容器样式 */
.qiwei-container[data-v-43e52a68] {
  min-height: 100vh;
  position: relative;
  padding-top: 0; /* 默认无顶部间距 */
}
.qiwei-content[data-v-43e52a68] {
  min-height: calc(100vh - 64px); /* 减去导航栏高度 */
}

/* 移动端适配 */
@media screen and (max-width: 992px) {
.qiwei-container[data-v-43e52a68] {
    padding-top: 80px; /* 为移动端导航菜单留出空间 */
    min-height: calc(100vh - 80px);
}
.qiwei-content[data-v-43e52a68] {
    min-height: calc(100vh - 160px); /* 减去导航栏和额外间距 */
    padding-top: 2rem; /* 调整内容顶部间距 */
}
  /* 调整移动端背景显示 */
.qiwei-container[data-v-43e52a68]::before {
    top: 80px; /* 背景从导航菜单下方开始 */
    height: calc(100% - 80px);
}
  /* 移动端标题和按钮样式调整 */
.qiwei-content h1[data-v-43e52a68] {
    font-size: 2rem !important; /* 移动端标题适当缩小 */
    margin-bottom: 1.5rem !important;
}
.qiwei-content .grid[data-v-43e52a68] {
    grid-template-columns: 1fr !important; /* 移动端改为单列布局 */
    gap: 1.5rem !important;
}
#btnClass[data-v-43e52a68] {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}
}
/* CRM功能卡片样式 */
.features-grid[data-v-43e52a68] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  /* 桌面端：4列 */
  /* 平板端：2列 */
  /* 移动端：1列 */
}
@media (min-width: 1200px) {
.features-grid[data-v-43e52a68] {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    padding: 0;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
.features-grid[data-v-43e52a68] {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
}
@media (max-width: 767px) {
.features-grid[data-v-43e52a68] {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
}
}
.feature-card[data-v-43e52a68] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* 悬停效果 */
  /* 移动端优化 */
  /* 渐变光晕效果 */
}
.feature-card[data-v-43e52a68]:hover {
  -webkit-transform: translateY(-8px) scale(1.02);
          transform: translateY(-8px) scale(1.02);
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
.feature-card[data-v-43e52a68] {
    padding: 1.5rem;
    border-radius: 16px;
}
.feature-card[data-v-43e52a68]:hover {
    -webkit-transform: translateY(-4px) scale(1.01);
            transform: translateY(-4px) scale(1.01);
}
}
.feature-card[data-v-43e52a68]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#667eea), to(#764ba2));
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.feature-card[data-v-43e52a68]:hover::before {
  opacity: 1;
}
.feature-icon[data-v-43e52a68] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
.feature-icon[data-v-43e52a68] {
    margin-bottom: 1rem;
}
}
.icon-wrapper[data-v-43e52a68] {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.icon-wrapper[data-v-43e52a68]::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.feature-card:hover .icon-wrapper[data-v-43e52a68] {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
  -webkit-box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.feature-card:hover .icon-wrapper[data-v-43e52a68]::before {
  opacity: 1;
}
.icon-wrapper svg[data-v-43e52a68] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
.icon-wrapper[data-v-43e52a68] {
    width: 3rem;
    height: 3rem;
}
.icon-wrapper svg[data-v-43e52a68] {
    width: 1.5rem;
    height: 1.5rem;
}
}
.feature-content[data-v-43e52a68] {
  text-align: center;
}
.feature-title[data-v-43e52a68] {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  background: linear-gradient(135deg, currentColor 0%, currentColor 100%);
  background-clip: text;
  -webkit-background-clip: text;
  position: relative;
}
@media (max-width: 767px) {
.feature-title[data-v-43e52a68] {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
}
@media (max-width: 480px) {
.feature-title[data-v-43e52a68] {
    font-size: 1.125rem;
}
}
.feature-list[data-v-43e52a68] {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.feature-item[data-v-43e52a68] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
}
.feature-item[data-v-43e52a68]:last-child {
  margin-bottom: 0;
}
.feature-item span[data-v-43e52a68] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.feature-card:hover .feature-item span[data-v-43e52a68] {
  color: #2d3748;
}
@media (max-width: 767px) {
.feature-item[data-v-43e52a68] {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
}
.check-icon[data-v-43e52a68] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.75rem;
  margin-top: 0.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.check-icon[data-v-43e52a68]::before {
  content: "\2713";
  font-weight: bold;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
.check-icon[data-v-43e52a68] {
    width: 0.875rem;
    height: 0.875rem;
    margin-right: 0.5rem;
}
.check-icon[data-v-43e52a68]::before {
    font-size: 0.6875rem;
}
}

/* 不同主题色的特殊效果 */
.feature-card[data-v-43e52a68]:nth-child(1):hover {
  -webkit-box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 8px 24px rgba(99, 102, 241, 0.08);
          box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 8px 24px rgba(99, 102, 241, 0.08);
}
.feature-card[data-v-43e52a68]:nth-child(2):hover {
  -webkit-box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 8px 24px rgba(59, 130, 246, 0.08);
          box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15), 0 8px 24px rgba(59, 130, 246, 0.08);
}
.feature-card[data-v-43e52a68]:nth-child(3):hover {
  -webkit-box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15), 0 8px 24px rgba(34, 197, 94, 0.08);
          box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15), 0 8px 24px rgba(34, 197, 94, 0.08);
}
.feature-card[data-v-43e52a68]:nth-child(4):hover {
  -webkit-box-shadow: 0 20px 60px rgba(147, 51, 234, 0.15), 0 8px 24px rgba(147, 51, 234, 0.08);
          box-shadow: 0 20px 60px rgba(147, 51, 234, 0.15), 0 8px 24px rgba(147, 51, 234, 0.08);
}

/* 响应式优化 */
@media (max-width: 992px) {
.features-grid[data-v-43e52a68] {
    margin-top: 2rem;
}
}
@media (max-width: 576px) {
.features-grid[data-v-43e52a68] {
    padding: 0;
    gap: 1rem;
}
.feature-card[data-v-43e52a68] {
    padding: 1.25rem;
    border-radius: 12px;
}
}
.modules-initcategory-wrap .modules-initcategory-main-init-area[data-v-190627a8] {
  border: 1px dotted #409EFF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-190627a8] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-icon[data-v-190627a8] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-text[data-v-190627a8] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-190627a8]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area[data-v-75e41128] {
  border: 1px dotted #409EFF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-75e41128] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-icon[data-v-75e41128] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-text[data-v-75e41128] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-initcategory-wrap .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-75e41128]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .el-col[data-v-390ecb60] {
  margin: 0;
}
.modules-layout-wrap .init-l-components-area[data-v-390ecb60] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn[data-v-390ecb60] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-icon[data-v-390ecb60] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-text[data-v-390ecb60] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn[data-v-390ecb60]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .el-col[data-v-58788217] {
  margin: 0;
}
.modules-layout-wrap .init-s-components-area[data-v-58788217] {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modules-layout-wrap .init-s-components-area .move_btn[data-v-58788217] {
  display: none;
  position: absolute;
  background-color: #409EFF;
  color: #fff;
  top: 0;
  right: 0;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  cursor: move;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn[data-v-58788217] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-icon[data-v-58788217] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-text[data-v-58788217] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn[data-v-58788217]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .init-s-components-area:hover .move_btn[data-v-58788217] {
  display: block;
}
.modules-layout-wrap .el-col[data-v-674c1e1a] {
  margin: 0;
}
.modules-layout-wrap .init-xs-components-area[data-v-674c1e1a] {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.modules-layout-wrap .init-xs-components-area .move_btn[data-v-674c1e1a] {
  display: none;
  position: absolute;
  background-color: #409EFF;
  color: #fff;
  top: 0;
  right: 0;
  font-size: 14px;
  padding: 10px;
  border-radius: 10px;
  cursor: move;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-674c1e1a] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-icon[data-v-674c1e1a] {
  cursor: pointer;
  padding: 10px;
  background: #409EFF;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-text[data-v-674c1e1a] {
  font-size: 14px;
  color: #409EFF;
  margin: 5px 0 0;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-674c1e1a]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .init-xs-components-area:hover .move_btn[data-v-674c1e1a] {
  display: block;
}
.modules-layout-wrap .el-col[data-v-3d540491] {
  margin: 0;
}
.modules-layout-wrap .init-xs-components-area[data-v-3d540491] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-3d540491] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-icon[data-v-3d540491] {
  cursor: pointer;
  padding: 10px;
  background: #409EFF;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-text[data-v-3d540491] {
  font-size: 14px;
  color: #409EFF;
  margin: 5px 0 0;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-3d540491]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .el-col[data-v-52d11884] {
  margin: 0;
}
.modules-layout-wrap .init-l-components-area[data-v-52d11884] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn[data-v-52d11884] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-icon[data-v-52d11884] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-text[data-v-52d11884] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-l-components-area .init-l-components-area-btn[data-v-52d11884]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .init-xs-components-area[data-v-52d11884] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-52d11884] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-icon[data-v-52d11884] {
  cursor: pointer;
  padding: 10px;
  background: #409EFF;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-text[data-v-52d11884] {
  font-size: 14px;
  color: #409EFF;
  margin: 5px 0 0;
}
.modules-layout-wrap .init-xs-components-area .init-xs-components-area-btn[data-v-52d11884]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .init-s-components-area[data-v-52d11884] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn[data-v-52d11884] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-icon[data-v-52d11884] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-text[data-v-52d11884] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-s-components-area .init-s-components-area-btn[data-v-52d11884]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .el-col[data-v-95a24e68] {
  margin: 0;
}
.modules-layout-wrap .init-xl-components-area[data-v-95a24e68] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.modules-layout-wrap .init-xl-components-area .init-xl-components-area-btn[data-v-95a24e68] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-icon[data-v-95a24e68] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-text[data-v-95a24e68] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-xl-components-area .init-xl-components-area-btn[data-v-95a24e68]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-layout-wrap .el-col[data-v-afad2110] {
  margin: 0;
}
.modules-layout-wrap .init-xxl-components-area[data-v-afad2110] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modules-layout-wrap .init-xxl-components-area .init-xxl-components-area-btn[data-v-afad2110] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.modules-layout-wrap .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-icon[data-v-afad2110] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.modules-layout-wrap .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-text[data-v-afad2110] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.modules-layout-wrap .init-xxl-components-area .init-xxl-components-area-btn[data-v-afad2110]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.modules-category-wrap .industry-page-box[data-v-1ca4c7ac] {
  padding-bottom: 20px;
}
.modules-category-wrap .industry-page-box .industry-title-box[data-v-1ca4c7ac] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 28px;
  overflow: hidden;
}
.modules-category-wrap .industry-page-box .industry-title-box .industry-title-icon[data-v-1ca4c7ac] {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.modules-category-wrap .industry-page-box .industry-title-box .industry-title[data-v-1ca4c7ac] {
  color: #191919;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.modules-category-wrap .industry-page-box .industry-title-box .industry-title-link-tag[data-v-1ca4c7ac] {
  color: #555;
  font-size: 16px;
}
.modules-category-wrap .industry-page-box .industry-title-box .industry-divider[data-v-1ca4c7ac] {
  background-color: #EEE;
  margin: 0 20px !important;
}
.grid-content[data-v-5e900aaf] {
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.grid-content .data-setting-btn-wrap[data-v-5e900aaf] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box[data-v-5e900aaf] {
  text-align: center;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-5e900aaf] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-5e900aaf] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.grid-content .tools-box[data-v-5e900aaf] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.grid-content .tools-box .tools-btn[data-v-5e900aaf] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.grid-content .tools-box .tools-btn[data-v-5e900aaf]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.grid-content .el-row[data-v-5e900aaf] {
  height: 126px;
}
.grid-content .industy-intro-link-tag[data-v-5e900aaf] {
@apply rounded-md mb-4;
  height: 32px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 14px;
  line-height: 30px;
  display: inline-block;
  background-color: #F9FAFB;
  color: #707070;
  border: 1px solid #EEEEEE;
}
.grid-content .industy-intro-link-tag[data-v-5e900aaf]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #D01C1F;
  scale: 1.1;
  color: #fff;
  border: 1px solid #B91C1C;
}
.grid-content .industry-intro-intro[data-v-5e900aaf] {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #555555;
  font-size: 14px;
  line-height: 22px;
  height: 110px;
  margin: 16px 0;
}
.grid-content .industry-intro-intro[data-v-5e900aaf] p {
  margin: 0 !important;
  padding: 0 !important;
}
.grid-content .industry-intro-detail-btn[data-v-5e900aaf] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: 1px solid #B91C1C;
  color: #B91C1C;
  border-radius: 17px;
  height: 34px;
  width: 73%;
  line-height: 34px;
  text-align: center;
  display: block;
  margin: 16px auto 0;
}
.grid-content .industry-intro-detail-btn[data-v-5e900aaf]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  color: #fff;
  background-color: #B91C1C;
}
.industry-box[data-v-5e900aaf]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-5e900aaf] {
  display: block;
}
.grid-content[data-v-76f7bb95] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14px 24px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.white_bg[data-v-76f7bb95] {
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(25%, rgb(255, 255, 255))) !important;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 255, 255) 25%) !important;
}
.industry-classtype-box[data-v-76f7bb95] {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 163, 74, 0.5)), color-stop(25%, rgba(239, 221, 202, 0)));
  background: linear-gradient(to bottom, rgba(224, 163, 74, 0.5), rgba(239, 221, 202, 0) 25%);
}
.industry-classtype-box .data-setting-btn-wrap[data-v-76f7bb95] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-classtype-box .data-setting-btn-wrap .data-setting-btn-box[data-v-76f7bb95] {
  text-align: center;
}
.industry-classtype-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-76f7bb95] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-classtype-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-76f7bb95] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-classtype-box .tools-box[data-v-76f7bb95] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-classtype-box .tools-box .tools-btn[data-v-76f7bb95] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-classtype-box .tools-box .tools-btn[data-v-76f7bb95]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-classtype-box[data-v-76f7bb95] .el-tabs__header {
  margin-bottom: 9px !important;
}
.industry-classtype-box[data-v-76f7bb95] .el-tabs__nav-wrap::after {
  background-color: #EEE !important;
}
.industry-classtype-box[data-v-76f7bb95] .el-tabs__active-bar {
  height: 3px !important;
  border-radius: 6px !important;
  background-color: #D87706 !important;
}
.industry-classtype-box[data-v-76f7bb95] .is-active {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #D87706 !important;
}
.industry-classtype-box[data-v-76f7bb95] .el-tabs__item:hover {
  font-weight: bold !important;
  color: #D87706 !important;
}
.industry-classtype-box[data-v-76f7bb95] .el-tabs__item {
  font-size: 16px !important;
  color: #555555;
}
.industry-classtype-box .industry-classtype-chapter-box[data-v-76f7bb95] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 46px;
  overflow: hidden;
  margin-bottom: 5px;
}
.industry-classtype-box .industry-classtype-chapter-box .industry-classtype-chapter-tag-box .industry-classtype-chapter-tag[data-v-76f7bb95] {
  font-size: 14px;
  color: #555555;
  display: inline-block;
}
.industry-classtype-box .industry-classtype-chapter-box .industry-classtype-chapter-tag-box .industry-classtype-chapter-tag[data-v-76f7bb95]:hover {
  color: #D01C1F;
}
.industry-classtype-box .industry-classtype-hotpoint-tag-box[data-v-76f7bb95] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 28px;
  overflow: hidden;
}
.industry-classtype-box .industry-classtype-hotpoint-tag-box .industry-classtype-hotpoint-tag[data-v-76f7bb95] {
  display: block;
  font-size: 12px;
  color: #D87706;
  margin-right: 5px !important;
  padding: 4px 11px;
  background: #F4E2CE;
  border-radius: 3px;
  margin-bottom: 5px;
}
.industry-classtype-box .industry-classtype-intro-text-wrap[data-v-76f7bb95] {
  height: 60px;
  margin: 8px 0;
}
.industry-classtype-box .industry-classtype-intro-text-wrap .industry-classtype-intro-text[data-v-76f7bb95] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  color: #555555;
}
.industry-classtype-box .industry-classtype-intro-text-wrap .industry-classtype-intro-text .industry-classtype-intro-text-item[data-v-76f7bb95] {
  display: inline;
  font-weight: normal;
}
.industry-classtype-box .industry-classtype-intro-text-wrap .industry-classtype-intro-text .industry-classtype-intro-span[data-v-76f7bb95] {
  color: #191919;
  font-weight: bold;
}
.industry-classtype-box .industry-classtype-intro-text-wrap .industry-classtype-intro-more-link[data-v-76f7bb95] {
  color: #D01C1F;
  float: right;
  clear: both;
  font-size: 14px;
}
.industry-classtype-box .industry-classtype-teacher-box[data-v-76f7bb95] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 62px;
  padding: 0;
  margin: 9px 0;
  overflow: hidden;
}
.industry-classtype-box .industry-classtype-teacher-box .industry-classtype-teacher-li[data-v-76f7bb95] {
  width: 40px;
  list-style: none;
  margin-right: 8px;
}
.industry-classtype-box .industry-classtype-teacher-box .industry-classtype-teacher-li .industry-classtype-teacher-img[data-v-76f7bb95] {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
}
.industry-classtype-box .industry-classtype-teacher-box .industry-classtype-teacher-li .industry-classtype-teacher-name[data-v-76f7bb95] {
  color: #707070;
  font-size: 12px;
  margin: 0;
  text-align: center;
}
.industry-classtype-box .industry-classtype-btn-box[data-v-76f7bb95] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.industry-classtype-box .industry-classtype-btn-box .industry-classtype-exam-btn[data-v-76f7bb95] {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  display: block;
  width: 45%;
  height: 34px;
  background: #FFFFFF;
  border-radius: 17px 17px 17px 17px;
  border: 1px solid #B91C1C;
  color: #B91C1C;
  text-align: center;
  line-height: 34px;
}
.industry-classtype-box .industry-classtype-btn-box .industry-classtype-exam-btn[data-v-76f7bb95]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  color: #fff;
  background: #B91C1C;
}
.industry-classtype-box .industry-classtype-btn-box .industry-classtype-study-btn[data-v-76f7bb95] {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  display: block;
  width: 45%;
  height: 34px;
  background: #B91C1C;
  border-radius: 17px 17px 17px 17px;
  color: #fff;
  border: 1px solid #B91C1C;
  text-align: center;
  line-height: 34px;
}
.industry-classtype-box .industry-classtype-btn-box .industry-classtype-study-btn[data-v-76f7bb95]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  color: #B91C1C;
  background: #fff;
}
.industry-box[data-v-76f7bb95]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-76f7bb95] {
  display: block;
}
@charset "UTF-8";
ul[data-v-7d433da7] {
  padding: 0;
  margin: 0;
}
li[data-v-7d433da7] {
  list-style: none !important;
}
p[data-v-7d433da7], h1[data-v-7d433da7], h2[data-v-7d433da7], h3[data-v-7d433da7], h4[data-v-7d433da7], h5[data-v-7d433da7] {
  margin: 0;
}
.grid-content[data-v-7d433da7] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.industry-course-system-box[data-v-7d433da7] {
  position: relative;
}
.industry-course-system-box .data-setting-btn-wrap[data-v-7d433da7] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-course-system-box .data-setting-btn-wrap .data-setting-btn-box[data-v-7d433da7] {
  text-align: center;
}
.industry-course-system-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-7d433da7] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-course-system-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-7d433da7] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-course-system-box .tools-box[data-v-7d433da7] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-course-system-box .tools-box .tools-btn[data-v-7d433da7] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-course-system-box .tools-box .tools-btn[data-v-7d433da7]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-course-system-box[data-v-7d433da7] .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #EEE;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-course-system-box[data-v-7d433da7] .is-active {
  color: #D01C1F;
}
.industry-course-system-box[data-v-7d433da7] .is-active .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D01C1F;
  background-color: #D01C1F;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-course-system-box[data-v-7d433da7] .el-carousel__indicators {
  bottom: 10px;
}
.industry-course-system-box .industry-course-system-title[data-v-7d433da7] {
  background-color: #FAD5A4;
  height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #933A02;
  line-height: 50px;
  text-align: center;
}
.industry-course-system-box .industry-course-system-content-box[data-v-7d433da7] {
  padding: 16px 24px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list[data-v-7d433da7] {
  height: 144px;
  overflow: hidden;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li[data-v-7d433da7] {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-title-box[data-v-7d433da7] {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-title-box .industry-course-system-li-icon[data-v-7d433da7] {
  width: 18px;
  height: 19px;
  margin-right: 8px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-title-box .industry-course-system-li-title[data-v-7d433da7] {
  width: calc(100% - 18px);
  font-weight: normal;
  font-size: 16px;
  color: #191919;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-info-box[data-v-7d433da7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33%;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-info-box .industry-course-system-li-info-left[data-v-7d433da7] {
  display: inline-block;
  text-align: right;
  width: 35%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 14px;
  font-weight: normal;
  color: #555;
  height: 28px;
  line-height: 28px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-info-box .industry-course-system-li-info-right[data-v-7d433da7] {
  display: inline-block;
  text-align: left;
  width: 63%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 14px;
  font-weight: normal;
  color: #555;
  height: 28px;
  line-height: 28px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-info-box .industry-course-system-li-info-line[data-v-7d433da7] {
  font-size: 14px;
  color: #555;
  height: 28px;
  line-height: 28px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-btn[data-v-7d433da7] {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25%;
  height: 28px;
  background: #FFFFFF;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  font-weight: normal;
  color: #D01C1F;
  margin-bottom: 10pxaw;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list .industry-course-system-li .industry-course-system-li-btn[data-v-7d433da7]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  font-weight: normal;
  color: #fff;
  background-color: #D01C1F;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-list-more-btn[data-v-7d433da7] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: block;
  width: 80px;
  height: 20px;
  font-weight: 500;
  font-size: 14px;
  color: #D01C1F;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 18px;
  font-weight: normal;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-teacher-list[data-v-7d433da7] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 65px;
  overflow: hidden;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-teacher-list .industry-course-system-teacher-li[data-v-7d433da7] {
  width: 40px;
  margin-right: 15px;
  margin-bottom: 5px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-teacher-list .industry-course-system-teacher-li .industry-course-system-teacher-img[data-v-7d433da7] {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.industry-course-system-box .industry-course-system-content-box .industry-course-system-teacher-list .industry-course-system-teacher-li .industry-course-system-teacher-name[data-v-7d433da7] {
  font-size: 12px;
  color: #707070;
  text-align: center;
  font-weight: normal;
}
.industry-box[data-v-7d433da7]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-7d433da7] {
  display: block;
}
ul[data-v-2058062d] {
  padding: 0;
  margin: 0;
}
li[data-v-2058062d] {
  list-style: none !important;
}
p[data-v-2058062d], h1[data-v-2058062d], h2[data-v-2058062d], h3[data-v-2058062d], h4[data-v-2058062d], h5[data-v-2058062d] {
  margin: 0;
}
.grid-content[data-v-2058062d] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.industry-famous-teacher-box[data-v-2058062d] {
  position: relative;
}
.industry-famous-teacher-box .tools-box[data-v-2058062d] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-famous-teacher-box .tools-box .tools-btn[data-v-2058062d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-famous-teacher-box .tools-box .tools-btn[data-v-2058062d]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-famous-teacher-box[data-v-2058062d] .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #EEE;
  background-color: #fff;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-famous-teacher-box[data-v-2058062d] .is-active {
  color: #D01C1F;
}
.industry-famous-teacher-box[data-v-2058062d] .is-active .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D01C1F;
  background-color: #D01C1F;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-famous-teacher-box[data-v-2058062d] .el-carousel__indicators {
  bottom: 10px;
}
.industry-famous-teacher-box .industry-famous-teacher-title[data-v-2058062d] {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 50px;
  line-height: 50px;
  color: #191919;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .industry-famous-teacher-content-list[data-v-2058062d] {
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 240px;
  overflow: hidden;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .industry-famous-teacher-content-list .industry-famous-teacher-content-li[data-v-2058062d] {
  width: calc(25% - 20px);
  margin: 0 10px 20px;
  text-align: center;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .industry-famous-teacher-content-list .industry-famous-teacher-content-li .industry-famous-teacher-content-img[data-v-2058062d] {
  width: 100%;
  height: auto;
  max-height: 80px;
  max-width: 80px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 3px;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .industry-famous-teacher-content-list .industry-famous-teacher-content-li .industry-famous-teacher-content-name[data-v-2058062d] {
  font-size: 14px;
  font-weight: normal;
  color: #555;
  text-align: center;
}
.industry-box[data-v-2058062d]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-2058062d] {
  display: block;
}
@charset "UTF-8";
.grid-content[data-v-077fa9ef] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.industry-famous-teacher-box[data-v-077fa9ef] {
  position: relative;
}
.industry-famous-teacher-box .tools-box[data-v-077fa9ef] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-famous-teacher-box .tools-box .tools-btn[data-v-077fa9ef] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-famous-teacher-box .tools-box .tools-btn[data-v-077fa9ef]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-famous-teacher-box[data-v-077fa9ef] .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #EEE;
  background-color: #191919;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-famous-teacher-box[data-v-077fa9ef] .is-active {
  color: #D01C1F;
}
.industry-famous-teacher-box[data-v-077fa9ef] .is-active .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D01C1F;
  background-color: #D01C1F;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-famous-teacher-box[data-v-077fa9ef] .el-carousel__indicators {
  bottom: 10px;
}
.industry-famous-teacher-box .industry-famous-teacher-title[data-v-077fa9ef] {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  height: 50px;
  line-height: 50px;
  color: #191919;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box[data-v-077fa9ef] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .goodsImage[data-v-077fa9ef] {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .title[data-v-077fa9ef] {
  width: calc(50% - 20px);
  font-size: 18px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .title .text[data-v-077fa9ef] {
  display: -webkit-box;
  font-weight: normal;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis; /* 显示省略号 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.1rem;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .title .currentPrice[data-v-077fa9ef] {
  color: #D01C1F;
}
.industry-famous-teacher-box .industry-famous-teacher-content-box .title .originPrice[data-v-077fa9ef] {
  font-size: 16px;
  text-decoration: line-through;
}
.industry-famous-teacher-box .btn[data-v-077fa9ef] {
  border: 1px solid;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: 1px solid #B91C1C;
  color: #B91C1C;
  border-radius: 17px;
  font-size: 16px;
  height: 34px;
  width: 73%;
  line-height: 34px;
  font-weight: normal;
  text-align: center;
  display: block;
  margin: 16px auto 0;
  cursor: pointer;
}
.industry-famous-teacher-box .btn[data-v-077fa9ef]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  color: #fff;
  background-color: #B91C1C;
}
.industry-box[data-v-077fa9ef]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-077fa9ef] {
  display: block;
}
@charset "UTF-8";
ul[data-v-381f6c8e] {
  padding: 0;
  margin: 0;
}
li[data-v-381f6c8e] {
  list-style: none !important;
}
p[data-v-381f6c8e], h1[data-v-381f6c8e], h2[data-v-381f6c8e], h3[data-v-381f6c8e], h4[data-v-381f6c8e], h5[data-v-381f6c8e] {
  margin: 0;
}
.grid-content[data-v-381f6c8e] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  overflow: hidden;
}
.industry-single-subject-box[data-v-381f6c8e] {
  position: relative;
}
.industry-single-subject-box .data-setting-btn-wrap[data-v-381f6c8e] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-single-subject-box .data-setting-btn-wrap .data-setting-btn-box[data-v-381f6c8e] {
  text-align: center;
}
.industry-single-subject-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-381f6c8e] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-single-subject-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-381f6c8e] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-single-subject-box .tools-box[data-v-381f6c8e] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-single-subject-box .tools-box .tools-btn[data-v-381f6c8e] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-single-subject-box .tools-box .tools-btn[data-v-381f6c8e]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-single-subject-box .industry-single-subject-title[data-v-381f6c8e] {
  height: 50px;
  background-color: #FAD5A4;
  font-size: 18px;
  color: #933A02;
  line-height: 50px;
  text-align: center;
  font-weight: bold;
}
.industry-single-subject-box .industry-single-subject-content-box[data-v-381f6c8e] {
  padding: 16px 0 0;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list[data-v-381f6c8e] {
  height: 185px;
  margin-bottom: 10px;
  overflow-y: scroll;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list .industry-single-subject-li[data-v-381f6c8e] {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list .industry-single-subject-li .industry-single-subject-li-title[data-v-381f6c8e] {
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 16px;
  color: #191919;
  width: 46%;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list .industry-single-subject-li-btn-box[data-v-381f6c8e] {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 9px;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list .industry-single-subject-li-btn-box .industry-single-subject-li-free-btn[data-v-381f6c8e] {
  text-align: center;
  display: block;
  width: 46%;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #B91C1C;
  font-size: 14px;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  line-height: 28px;
  color: #fff;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list .industry-single-subject-li-btn-box .industry-single-subject-li-get-btn[data-v-381f6c8e] {
  text-align: center;
  display: block;
  color: #B91C1C;
  font-size: 14px;
  height: 28px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 46%;
  border: 1px solid #B91C1C;
  line-height: 28px;
  background-color: #fff;
  border-radius: 28px;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-list-more-btn[data-v-381f6c8e] {
  padding: 0 20px;
  display: block;
  font-size: 14px;
  color: #D01C1F;
  margin-bottom: 10px;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-type-list[data-v-381f6c8e] {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 54px;
  overflow: hidden;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-type-li[data-v-381f6c8e] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 54px;
  height: 54px;
  box-sizing: border-box;
  text-align: center;
  line-height: 20px;
  padding: 6px;
  font-size: 16px;
  color: #D01C1F;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG4AAABuCAYAAADGWyb7AAAAAXNSR0IArs4c6QAABYxJREFUeF7tmG9o1HUcx9/fO91WbepWuQpJVmSSZC17IpS1B2kUNOhBkCIJRQX1QAgSSpeh/aGCCMGyP2ugLKkosQQxyGBQ+GDlZnPeZnMNvd3mdq45b3fn3X3jtpz/puLu9/705L1n2+/3fb2P14vf3TaHy3z5eHwmcqlawD8JYD7gboFD2eXO6NpVGvA4CfhjAA4hjO/gS3a6iop/rkRxk93gR/oqkcq+Bo/n4VzJlSC6HqAB75Nw2ILi8DuutLLvUuSLwvl47+PwaAQwI8CXI9TVGxhGyK105TftnOzoRDjvvUM89gaAOgCTPolXv60TBRrwuZOn3grNvb3OOefPZZ0NF+9bAZ/bVuCQjhMMjOxrqSt77NENF4XzJ3prkMMeANMIu0IWaMBns7n+Ld/UVa5b/bbD+JM39sT5gegOOFdbIF/HiQYSzW3dHUtfWFGNv34dC+dPxmYj7WP6XCNaDwDtvUdk8dMNic7oe4vQ2e58PPoivPs4ALYQZAP9m7Y2Rdd/sr0aXZudH+j9BQ4PkTeFD8BA4kDkaOfDq3ZlEFrj/GDvEICZAXCFIBvIjSbTrXNqGjzQ6PxANAnnismbwgdgwGcy2ZbKB78IAW35J+68P+wC4AtBNLD/+sWfAhhVOKJkBno8nMsoHMMukfnfEweFI0pmoBWOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJs6GG4gm4VwxY0TMYA3kRpPp1jk1DXmq84O93QDmBjshGsNAJnZ86M8FT3w9Hm4gugPO1TKGxAzWQKK5rbtj6XN7AIw6PxhdDbgPg50QjWGgf9PWpuj6ze0eri//xM2Hc+2MITGDNRCpeaZxtLVjBAi1uDzaD0Z3A25ZsDOiBWngnLdJeKBxPNzw8TuRPt2i3y6DVB0cy2cy2UNLVn6VinQn8tQsil4fCzcWb6B3FRy+DG5OpKAMxN79bG/s/frOcV6opRpdmyfC5X+UjrR9MP2GileCGhSncAPx7buae17a2DxOcpkwStcuxIET54XLX4rXb3t11rIHNriS4qLCZ0WYqgGfTKWPrvvo58H673sm3hXhG+7D37+NJZwMfPiR5atuXvPsm9dW33XrVId1buoGEn8c7Ol5eWNT8tCRU2coObgfF+HID2e+nzRc/uLvqLqn4qmla0uX3F91zYI7ZhfNrigLl8+4zhUXT5/6S9LJCw34VOp0Zmg4cbovPpw8eLh/eO++Y0Pf/hQ7+5QhOQ2hzxei68C5Zy8ZLn9TK+4uz2JkOeAXSvn/YcC1hlHamP9Mu3D9suHO3Lwft80DMA/wVTngRgCzHLz+MR1gSw+XCgFDAI5nge4wXORedHVcauJfECUfR0luHPkAAAAASUVORK5CYII=) center center;
  background-size: 100%;
}
.industry-single-subject-box .industry-single-subject-content-box .industry-single-subject-type-li .industry-single-subject-type-list-link[data-v-381f6c8e] {
  color: #D01C1F;
}
.industry-box[data-v-381f6c8e]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-381f6c8e] {
  display: block;
}
.btn_red[data-v-381f6c8e] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-381f6c8e]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-381f6c8e] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-381f6c8e]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-381f6c8e] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-381f6c8e]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-381f6c8e] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-381f6c8e]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-381f6c8e] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-381f6c8e]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
@charset "UTF-8";
ul[data-v-2aac7b2b] {
  padding: 0;
  margin: 0;
}
li[data-v-2aac7b2b] {
  list-style: none !important;
}
p[data-v-2aac7b2b], h1[data-v-2aac7b2b], h2[data-v-2aac7b2b], h3[data-v-2aac7b2b], h4[data-v-2aac7b2b], h5[data-v-2aac7b2b] {
  margin: 0;
}
.grid-content[data-v-2aac7b2b] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  overflow: hidden;
}
.industry-hot-content-box[data-v-2aac7b2b] {
  position: relative;
}
.industry-hot-content-box .data-setting-btn-wrap[data-v-2aac7b2b] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-hot-content-box .data-setting-btn-wrap .data-setting-btn-box[data-v-2aac7b2b] {
  text-align: center;
}
.industry-hot-content-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-2aac7b2b] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-hot-content-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-2aac7b2b] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-hot-content-box .tools-box[data-v-2aac7b2b] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-hot-content-box .tools-box .tools-btn[data-v-2aac7b2b] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-hot-content-box .tools-box .tools-btn[data-v-2aac7b2b]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-hot-content-box .industry-hot-content-title-box[data-v-2aac7b2b] {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-hot-content-box .industry-hot-content-title-box .industry-hot-content-title-icon[data-v-2aac7b2b] {
  width: 15.5px;
  height: 19px;
  margin-right: 5px;
}
.industry-hot-content-box .industry-hot-content-title-box .industry-hot-content-title[data-v-2aac7b2b] {
  font-size: 18px;
  font-weight: bold;
  color: #D01C1F;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-class-top[data-v-2aac7b2b] {
  height: 83px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDC36E), to(#BC7606));
  background: linear-gradient(180deg, #FDC36E 0%, #BC7606 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px 23px 0;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-class-top .industry-hot-content-class-title-box[data-v-2aac7b2b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 30px;
  overflow: hidden;
  margin-bottom: 10px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-class-top .industry-hot-content-class-title-box .industry-hot-content-class-name[data-v-2aac7b2b] {
  height: 30px;
  font-weight: bold;
  width: 38%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 22px;
  color: #FFFFFF;
  line-height: 30px;
  text-shadow: 0px 3px 6px #BD7708;
  margin-right: 40px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-class-top .industry-hot-content-class-title-box .industry-hot-content-class-tag[data-v-2aac7b2b] {
  padding: 0 5px;
  height: 21px;
  background: #F8FAFC;
  border-radius: 3px;
  font-size: 14px;
  color: #555555;
  line-height: 21px;
  margin-right: 8px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-class-top .industry-hot-content-class-info[data-v-2aac7b2b] {
  font-weight: 500;
  font-size: 12px;
  color: #FFFFFF;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box[data-v-2aac7b2b] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  height: 227px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(224, 163, 74, 0.3)), color-stop(30%, rgba(239, 221, 202, 0)));
  background: linear-gradient(to bottom, rgba(224, 163, 74, 0.3) 0%, rgba(239, 221, 202, 0) 30%);
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-intro[data-v-2aac7b2b] {
  font-size: 14px;
  color: #555;
  line-height: 20px;
  display: -webkit-box;
  overflow: hidden;
  height: 60px;
  white-space: normal !important;
  text-overflow: ellipsis;
  word-wrap: break-word;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-teacher-list[data-v-2aac7b2b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  height: 65px;
  margin-bottom: 15px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-teacher-list .industry-hot-content-main-teacher-li[data-v-2aac7b2b] {
  width: 40px;
  margin-right: 15px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-teacher-list .industry-hot-content-main-teacher-li .industry-hot-content-teacher-img[data-v-2aac7b2b] {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-teacher-list .industry-hot-content-main-teacher-li .industry-hot-cotent-teacher-name[data-v-2aac7b2b] {
  font-size: 12px;
  color: #707070;
  text-align: center;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-bottom[data-v-2aac7b2b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-bottom .industry-hot-content-main-bottom-left[data-v-2aac7b2b] {
  font-size: 14px;
  color: #707070;
  height: 28px;
  line-height: 28px;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-bottom .industry-hot-content-main-bottom-right[data-v-2aac7b2b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-bottom .industry-hot-content-main-bottom-right .industry-hot-content-main-price[data-v-2aac7b2b] {
  color: #D01C1F;
  font-size: 18px;
  font-weight: bold;
}
.industry-hot-content-box .industry-hot-content-class-box .industry-hot-content-main-box .industry-hot-content-main-bottom .industry-hot-content-main-bottom-right .industry-hot-content-main-btn[data-v-2aac7b2b] {
  margin-left: 16px;
  display: inline-block;
  line-height: 26px;
  text-align: center;
  width: 88px;
  height: 28px;
  background: #B91C1C;
  font-size: 14px;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  color: #fff;
}
.industry-box[data-v-2aac7b2b]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-2aac7b2b] {
  display: block;
}
.btn_red[data-v-2aac7b2b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-2aac7b2b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-2aac7b2b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-2aac7b2b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-2aac7b2b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-2aac7b2b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-2aac7b2b] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-2aac7b2b]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-2aac7b2b] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-2aac7b2b]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
@charset "UTF-8";
ul[data-v-f519eed4] {
  padding: 0;
  margin: 0;
}
li[data-v-f519eed4] {
  list-style: none !important;
}
p[data-v-f519eed4], h1[data-v-f519eed4], h2[data-v-f519eed4], h3[data-v-f519eed4], h4[data-v-f519eed4], h5[data-v-f519eed4] {
  margin: 0;
}
.grid-content[data-v-f519eed4] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  overflow: hidden;
}
.industry-free-listen-box[data-v-f519eed4] {
  overflow: hidden;
  position: relative;
}
.industry-free-listen-box .data-setting-btn-wrap[data-v-f519eed4] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box[data-v-f519eed4] {
  text-align: center;
}
.industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-f519eed4] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-f519eed4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-free-listen-box .tools-box[data-v-f519eed4] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-free-listen-box .tools-box .tools-btn[data-v-f519eed4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-free-listen-box .tools-box .tools-btn[data-v-f519eed4]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-free-listen-box .industry-free-listen-title[data-v-f519eed4] {
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.industry-free-listen-box .industry-free-listen-content-box[data-v-f519eed4] {
  height: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 5%;
  margin: 5px;
  overflow-y: auto;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li[data-v-f519eed4] {
  padding-bottom: 16px;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-li-title[data-v-f519eed4] {
  font-size: 16px;
  width: 80%;
  color: #191919;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  margin-bottom: 8px;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li[data-v-f519eed4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 26px;
  margin-bottom: 4px;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-title[data-v-f519eed4] {
  width: 50%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 14px;
  color: #555;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info[data-v-f519eed4] {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-time-length[data-v-f519eed4] {
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  display: inline-block;
  font-size: 14px;
  color: #555;
  margin-right: 5%;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box[data-v-f519eed4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box .industry-free-listen-play-icon[data-v-f519eed4] {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box .industry-free-listen-play-text[data-v-f519eed4] {
  display: inline-block;
  font-size: 14px;
  color: #F01414;
}
.industry-free-listen-box .industry-free-listen-content-box[data-v-f519eed4]::-webkit-scrollbar-track-piece {
  background-color: #f0f0f0;
  border-left: 1px solid rgba(0, 0, 0, 0);
}
.industry-free-listen-box .industry-free-listen-content-box[data-v-f519eed4]::-webkit-scrollbar {
  display: block;
  width: 5px;
  height: 10px;
  -webkit-margin-bottom-collapse: 12px;
  border-radius: 5px;
}
.industry-free-listen-box .industry-free-listen-content-box[data-v-f519eed4]::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;
  background-clip: padding-box;
  border-radius: 5px;
  min-height: 28px;
}
.industry-free-listen-box .industry-free-listen-content-box[data-v-f519eed4]::-webkit-scrollbar-thumb:hover {
  background-color: #dfdfdf;
  border-radius: 5px;
}
.industry-free-listen-box .industry-free-listen-button-box[data-v-f519eed4] {
  height: 50px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button[data-v-f519eed4] {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #B91C1C;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .default_icon[data-v-f519eed4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .hover_icon[data-v-f519eed4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .industry-free-listen-button-text[data-v-f519eed4] {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button[data-v-f519eed4]:hover {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .default_icon[data-v-f519eed4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .hover_icon[data-v-f519eed4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .industry-free-listen-button-text[data-v-f519eed4] {
  display: inline-block;
  color: #B91C1C;
  font-size: 14px;
}
.industry-box[data-v-f519eed4]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-f519eed4] {
  display: block;
}
.btn_red[data-v-f519eed4] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-f519eed4]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-f519eed4] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-f519eed4]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-f519eed4] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-f519eed4]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-f519eed4] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-f519eed4]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-f519eed4] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-f519eed4]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-15a16fd0] {
  padding: 0;
  margin: 0;
}
li[data-v-15a16fd0] {
  list-style: none !important;
}
p[data-v-15a16fd0], h1[data-v-15a16fd0], h2[data-v-15a16fd0], h3[data-v-15a16fd0], h4[data-v-15a16fd0], h5[data-v-15a16fd0] {
  margin: 0;
}
.grid-content[data-v-15a16fd0] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  overflow: hidden;
}
.industry-hot-content-box[data-v-15a16fd0] {
  position: relative;
}
.industry-hot-content-box .tools-box[data-v-15a16fd0] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-hot-content-box .tools-box .tools-btn[data-v-15a16fd0] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-hot-content-box .tools-box .tools-btn[data-v-15a16fd0]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-hot-content-box .industry-common-question-img[data-v-15a16fd0] {
  width: 100%;
  height: 100%;
}
.industry-box[data-v-15a16fd0]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-15a16fd0] {
  display: block;
}
.btn_red[data-v-15a16fd0] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-15a16fd0]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-15a16fd0] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-15a16fd0]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-15a16fd0] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-15a16fd0]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-15a16fd0] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-15a16fd0]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-15a16fd0] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-15a16fd0]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
@charset "UTF-8";
ul[data-v-23ce986d] {
  padding: 0;
  margin: 0;
}
li[data-v-23ce986d] {
  list-style: none !important;
}
p[data-v-23ce986d], h1[data-v-23ce986d], h2[data-v-23ce986d], h3[data-v-23ce986d], h4[data-v-23ce986d], h5[data-v-23ce986d] {
  margin: 0;
}
.grid-content[data-v-23ce986d] {
  position: relative;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 360px;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.grid-content .data-setting-btn-wrap[data-v-23ce986d] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box[data-v-23ce986d] {
  text-align: center;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-23ce986d] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.grid-content .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-23ce986d] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.grid-content .tools-box[data-v-23ce986d] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.grid-content .tools-box .tools-btn[data-v-23ce986d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.grid-content .tools-box .tools-btn[data-v-23ce986d]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.grid-content .industy-intro-link-tag[data-v-23ce986d] {
@apply rounded-md mb-4;
  height: 32px;
  width: 100%;
  text-align: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  font-size: 14px;
  line-height: 30px;
  display: inline-block;
  background-color: #F9FAFB;
  color: #707070;
  border: 1px solid #EEEEEE;
}
.grid-content .industy-intro-link-tag[data-v-23ce986d]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #D01C1F;
  scale: 1.1;
  color: #fff;
  border: 1px solid #B91C1C;
}
.grid-content .industry-intro-intro[data-v-23ce986d] {
  display: -webkit-box;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #555555;
  font-size: 14px;
  line-height: 22px;
  height: 110px;
  margin: 16px 0;
}
.grid-content .industry-intro-detail-btn[data-v-23ce986d] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border: 1px solid #B91C1C;
  color: #B91C1C;
  border-radius: 17px;
  height: 34px;
  width: 73%;
  line-height: 34px;
  text-align: center;
  display: block;
  margin: 16px auto 0;
}
.grid-content .industry-intro-detail-btn[data-v-23ce986d]:hover {
  -webkit-transition: background-color 0.5s ease-out;
  transition: background-color 0.5s ease-out;
  color: #fff;
  background-color: #B91C1C;
}
.industry-small-total-info-box[data-v-23ce986d] {
  padding: 24px 10px;
  height: 360px;
}
.industry-small-total-info-box .industry-small-total-info-tag-box[data-v-23ce986d] {
  position: relative;
  background-color: #F9FAFB;
  border-radius: 36px;
  height: 32px;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list[data-v-23ce986d] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag[data-v-23ce986d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  cursor: pointer;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .industry-small-total-info-hot-icon[data-v-23ce986d] {
  width: 10px;
  height: 12.5px;
  margin-right: 5px;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .industry-small-total-info-tag-text[data-v-23ce986d] {
  font-size: 12px;
  color: #555;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .tag_active[data-v-23ce986d] {
  color: #D01C1F;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag:hover .industry-small-total-info-tag-text[data-v-23ce986d] {
  color: #D01C1F;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg[data-v-23ce986d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: absolute;
  top: 4px;
  left: 5px;
  width: 48%;
  height: 24px;
  background-color: #fff;
  border-radius: 36px;
  z-index: 1;
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-left[data-v-23ce986d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 5px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-center[data-v-23ce986d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-right[data-v-23ce986d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list[data-v-23ce986d] {
  overflow: hidden;
  height: 280px;
  padding: 10px 10px 0;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list .industry-qs-li[data-v-23ce986d] {
  font-size: 14px;
  color: #555;
  height: 20px;
  margin-bottom: 13px;
  line-height: 20px;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list .industry-qs-li[data-v-23ce986d]::before {
  content: ""; /* 使用空的before伪元素 */
  display: inline-block; /* 需要将伪元素设置为inline-block，才能设置宽高 */
  width: 6px; /* 设置项目符号的宽度 */
  height: 6px; /* 设置项目符号的高度 */
  background-color: #EEE; /* 设置项目符号的颜色 */
  border-radius: 50%; /* 项目符号是圆形的，所以我们设置边框半径为50% */
  margin: 3px 8px 3px 0; /* 在项目符号和文本之间添加一些间距 */
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box[data-v-23ce986d] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 35px;
  height: 254px;
  background: #FFFFFF;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box .industry-total-info-fast-btn[data-v-23ce986d] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 32px;
  display: block;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 32px;
  border: 1px solid #EEE;
  background-color: #F9FAFB;
  color: #707070;
  font-size: 12px;
  margin-bottom: 22px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box .industry-total-info-fast-btn[data-v-23ce986d]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #B91C1C;
  border: 1px solid #B91C1C;
  color: #fff;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box[data-v-23ce986d] {
  height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 11px 0;
  background: url(../img/home-index-industry-exam-time-bg.c1c36489.png) center right no-repeat;
  background-size: auto 100%;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-text[data-v-23ce986d] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #555;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box[data-v-23ce986d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box .industry-total-info-exam-time-count-text[data-v-23ce986d] {
  color: #191919;
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  margin-right: 4px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box .industry-total-info-exam-time-count-num[data-v-23ce986d] {
  margin-right: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #D01C1F;
  width: 24px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABACAYAAACKhS4jAAAAAXNSR0IArs4c6QAAAq1JREFUaEPtmr9rU1Ecxc95+dEa2gRTWxInncQi4iLVP6Fb/QcEp7pJcXAStZODg7rYQRfBxa2jo6DQOglC8UeFFqxNVGqTJmKbvnvkRVvbotDeF3r74Abe8B73nO+5n/fNg5d8iR0fVSrnjMElQicBDILs27lm386ltyBmCEyjVLpP8ufW2tw4kdRtKl9uEboKILVvAXdbSHpH4iLL5VcbknZ4VaunFZqnIE/s1svRulDgnaA0cJ1kqx0+XKzeJnTNUaC9lZWWmEmfYn//IlWtnpfRCwDB3lwcrhYmg6OlEYaVygSFUYdRrEoTOk6zWJkCMGTl4FBEBcNR+GUABYc5rEpTGIvCy0rtWCRoPLnhU8G95IZPp54kNjxSwbPkhk+nnvvwTh48nrwT7AA8eU/egoBvGwtoHZF48h3BaGHiyVtA64jEk+8IRguT5JP/tJDIF3Bk0tM07z8kMryy2Xkf3uLrFlviycdGaGngyVuCiy3z5GMjtDTw5C3BxZZ58rERWhp48pbgYss8+dgILQ08eUtwsWWefGyElgaJJo+urjma2Y+CMZb7dydjLveS4fy8uLrmLoVlZfYVH1ILn6Vm09LCkYwEB/rHqVpN+voNSWod9uaBXPc4Va9PYXV1SMs1QAf/xzNlMwiKxeiWX4jCTwAYRfMH1Ggc6A0onUZQPAwEQXSUqZWVy5AetLvXGJil7+D6uqNm/k/ZqMd7e4HcoY0FVebzJUoqoF5/DfLYpjR6dK6tAa0WjHHTShTAbCb6mx7IZrfvShpjoXD390Rrs3kWYRhN+SVhtnKS+fxIlPvvLHGtdhPkjYPVLzvSSHPI58+QrG0L/+cOlBGGjwAMH6hNSNH45BUWCo+35tokv/WiGo0SpMH2CLoxR5xsJAhaAGZBzrCn582/MvwCcDOkN2JsVSYAAAAASUVORK5CYII=) center center no-repeat;
  background-size: 24px 30px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 11px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-title[data-v-23ce986d] {
  font-weight: bold;
  font-size: 14px;
  color: #191919;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-input[data-v-23ce986d] {
  width: 100%;
  height: 30px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-input-sort[data-v-23ce986d] {
  width: calc(100% - 90px);
  height: 30px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] .is-focus .el-input__inner {
  border: 1px solid #B91C1C !important;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] .el-input__inner {
  height: 30px !important;
  line-height: 30px !important;
  background-color: #F9FAFB;
  border: 1px solid #F9FAFB;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] .el-form-item {
  margin-bottom: 15px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] .el-form-item__content {
  line-height: 30px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-23ce986d] .el-input__inner:focus {
  border: 1px solid #B91C1C;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-box[data-v-23ce986d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-btn[data-v-23ce986d] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  width: 80px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #B91C1C;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  color: #D01C1F;
  border-radius: 3px;
  background-color: #FCF0F2;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-btn[data-v-23ce986d]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C;
  color: #fff;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-btn[data-v-23ce986d] {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  display: inline-block;
  width: 100%;
  height: 28px;
  border: 1px solid #D01C1F;
  line-height: 28px;
  text-align: center;
  background-color: #D01C1F;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
}
.industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-btn[data-v-23ce986d]:hover {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  opacity: 0.8;
}
.industry-box[data-v-23ce986d]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-box:hover .tools-box[data-v-23ce986d] {
  display: block;
}
@charset "UTF-8";
ul[data-v-79742a3e] {
  padding: 0;
  margin: 0;
}
li[data-v-79742a3e] {
  list-style: none !important;
}
p[data-v-79742a3e], h1[data-v-79742a3e], h2[data-v-79742a3e], h3[data-v-79742a3e], h4[data-v-79742a3e], h5[data-v-79742a3e] {
  margin: 0;
}
.industry-qs-box[data-v-79742a3e] {
  height: 254px;
  background: #FFFFFF;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 21px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.industry-qs-box .tools-box[data-v-79742a3e] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-qs-box .tools-box .tools-btn[data-v-79742a3e] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-qs-box .tools-box .tools-btn[data-v-79742a3e]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-qs-box .data-setting-btn-wrap[data-v-79742a3e] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-qs-box .data-setting-btn-wrap .data-setting-btn-box[data-v-79742a3e] {
  text-align: center;
}
.industry-qs-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-79742a3e] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-qs-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-79742a3e] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-qs-box .industry-qs-list[data-v-79742a3e] {
  overflow: hidden;
  height: 100%;
}
.industry-qs-box .industry-qs-list .industry-qs-li[data-v-79742a3e] {
  font-size: 14px;
  color: #555;
  height: 20px;
  margin-bottom: 13px;
  line-height: 20px;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-qs-box .industry-qs-list .industry-qs-li[data-v-79742a3e]::before {
  content: ""; /* 使用空的before伪元素 */
  display: inline-block; /* 需要将伪元素设置为inline-block，才能设置宽高 */
  width: 6px; /* 设置项目符号的宽度 */
  height: 6px; /* 设置项目符号的高度 */
  background-color: #EEE; /* 设置项目符号的颜色 */
  border-radius: 50%; /* 项目符号是圆形的，所以我们设置边框半径为50% */
  margin: 3px 8px 3px 0; /* 在项目符号和文本之间添加一些间距 */
}
.industry-qs-box[data-v-79742a3e]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-qs-box:hover .tools-box[data-v-79742a3e] {
  display: block;
}
ul[data-v-48a4c872] {
  padding: 0;
  margin: 0;
}
li[data-v-48a4c872] {
  list-style: none !important;
}
p[data-v-48a4c872], h1[data-v-48a4c872], h2[data-v-48a4c872], h3[data-v-48a4c872], h4[data-v-48a4c872], h5[data-v-48a4c872] {
  margin: 0;
}
.industry-fast-btn-box[data-v-48a4c872] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 24px 15px 0;
  height: 254px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}
.industry-fast-btn-box .tools-box[data-v-48a4c872] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-fast-btn-box .tools-box .tools-btn[data-v-48a4c872] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-fast-btn-box .tools-box .tools-btn[data-v-48a4c872]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-fast-btn-box .data-setting-btn-wrap[data-v-48a4c872] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-fast-btn-box .data-setting-btn-wrap .data-setting-btn-box[data-v-48a4c872] {
  text-align: center;
}
.industry-fast-btn-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-48a4c872] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-fast-btn-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-48a4c872] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-fast-btn-box .industry-fast-btn[data-v-48a4c872] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 32px;
  display: block;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 32px;
  border: 1px solid #EEE;
  background-color: #F9FAFB;
  color: #707070;
  font-size: 12px;
  margin-bottom: 22px;
}
.industry-fast-btn-box .industry-fast-btn[data-v-48a4c872]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #B91C1C;
  border: 1px solid #B91C1C;
  color: #fff;
}
.industry-fast-btn-box[data-v-48a4c872]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-fast-btn-box:hover .tools-box[data-v-48a4c872] {
  display: block;
}
ul[data-v-e7fc4d4e] {
  padding: 0;
  margin: 0;
}
li[data-v-e7fc4d4e] {
  list-style: none !important;
}
p[data-v-e7fc4d4e], h1[data-v-e7fc4d4e], h2[data-v-e7fc4d4e], h3[data-v-e7fc4d4e], h4[data-v-e7fc4d4e], h5[data-v-e7fc4d4e] {
  margin: 0;
}
.industry-exam-notice-box[data-v-e7fc4d4e] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 254px;
  padding: 20px;
  margin-bottom: 16px;
}
.industry-exam-notice-box .industry-exam-notice-title[data-v-e7fc4d4e] {
  font-weight: bold;
  font-size: 14px;
  color: #191919;
  margin-bottom: 20px;
}
.industry-exam-notice-box .industry-exam-input[data-v-e7fc4d4e] {
  width: 100%;
  height: 30px;
}
.industry-exam-notice-box .industry-exam-input-sort[data-v-e7fc4d4e] {
  width: calc(100% - 90px);
  height: 30px;
}
.industry-exam-notice-box[data-v-e7fc4d4e] .is-focus .el-input__inner {
  border: 1px solid #B91C1C !important;
}
.industry-exam-notice-box[data-v-e7fc4d4e] .el-input__inner {
  height: 30px !important;
  line-height: 30px !important;
  background-color: #F9FAFB;
  border: 1px solid #F9FAFB;
}
.industry-exam-notice-box[data-v-e7fc4d4e] .el-form-item {
  margin-bottom: 15px;
}
.industry-exam-notice-box[data-v-e7fc4d4e] .el-form-item__content {
  line-height: 30px;
}
.industry-exam-notice-box[data-v-e7fc4d4e] .el-input__inner:focus {
  border: 1px solid #B91C1C;
}
.industry-exam-notice-box .industry-exam-notice-code-box[data-v-e7fc4d4e] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-exam-notice-box .industry-exam-notice-code-btn[data-v-e7fc4d4e] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  width: 80px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #B91C1C;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  color: #D01C1F;
  border-radius: 3px;
  background-color: #FCF0F2;
}
.industry-exam-notice-box .industry-exam-notice-code-btn[data-v-e7fc4d4e]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C;
  color: #fff;
}
.industry-exam-notice-box .industry-exam-notice-btn[data-v-e7fc4d4e] {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  display: inline-block;
  width: 100%;
  height: 28px;
  border: 1px solid #D01C1F;
  line-height: 28px;
  text-align: center;
  background-color: #D01C1F;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
}
.industry-exam-notice-box .industry-exam-notice-btn[data-v-e7fc4d4e]:hover {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  opacity: 0.8;
}
.box_shadow[data-v-e7fc4d4e] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-e7fc4d4e]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
ul[data-v-4e13ed15] {
  padding: 0;
  margin: 0;
}
li[data-v-4e13ed15] {
  list-style: none !important;
}
p[data-v-4e13ed15], h1[data-v-4e13ed15], h2[data-v-4e13ed15], h3[data-v-4e13ed15], h4[data-v-4e13ed15], h5[data-v-4e13ed15] {
  margin: 0;
}
.industry-exam-time-box[data-v-4e13ed15] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 11px;
  background: url(../img/home-index-industry-exam-time-bg.c1c36489.png) right center no-repeat;
  background-size: auto 100%;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17);
  margin-bottom: 16px;
}
.industry-exam-time-box .industry-exam-time-text[data-v-4e13ed15] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #555;
}
.industry-exam-time-box .industry-exam-time-count-box[data-v-4e13ed15] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
.industry-exam-time-box .industry-exam-time-count-box .industry-exam-time-count-text[data-v-4e13ed15] {
  color: #191919;
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  margin-right: 4px;
}
.industry-exam-time-box .industry-exam-time-count-box .industry-exam-time-count-num[data-v-4e13ed15] {
  margin-right: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #D01C1F;
  width: 24px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABACAYAAACKhS4jAAAAAXNSR0IArs4c6QAAAq1JREFUaEPtmr9rU1Ecxc95+dEa2gRTWxInncQi4iLVP6Fb/QcEp7pJcXAStZODg7rYQRfBxa2jo6DQOglC8UeFFqxNVGqTJmKbvnvkRVvbotDeF3r74Abe8B73nO+5n/fNg5d8iR0fVSrnjMElQicBDILs27lm386ltyBmCEyjVLpP8ufW2tw4kdRtKl9uEboKILVvAXdbSHpH4iLL5VcbknZ4VaunFZqnIE/s1svRulDgnaA0cJ1kqx0+XKzeJnTNUaC9lZWWmEmfYn//IlWtnpfRCwDB3lwcrhYmg6OlEYaVygSFUYdRrEoTOk6zWJkCMGTl4FBEBcNR+GUABYc5rEpTGIvCy0rtWCRoPLnhU8G95IZPp54kNjxSwbPkhk+nnvvwTh48nrwT7AA8eU/egoBvGwtoHZF48h3BaGHiyVtA64jEk+8IRguT5JP/tJDIF3Bk0tM07z8kMryy2Xkf3uLrFlviycdGaGngyVuCiy3z5GMjtDTw5C3BxZZ58rERWhp48pbgYss8+dgILQ08eUtwsWWefGyElgaJJo+urjma2Y+CMZb7dydjLveS4fy8uLrmLoVlZfYVH1ILn6Vm09LCkYwEB/rHqVpN+voNSWod9uaBXPc4Va9PYXV1SMs1QAf/xzNlMwiKxeiWX4jCTwAYRfMH1Ggc6A0onUZQPAwEQXSUqZWVy5AetLvXGJil7+D6uqNm/k/ZqMd7e4HcoY0FVebzJUoqoF5/DfLYpjR6dK6tAa0WjHHTShTAbCb6mx7IZrfvShpjoXD390Rrs3kWYRhN+SVhtnKS+fxIlPvvLHGtdhPkjYPVLzvSSHPI58+QrG0L/+cOlBGGjwAMH6hNSNH45BUWCo+35tokv/WiGo0SpMH2CLoxR5xsJAhaAGZBzrCn582/MvwCcDOkN2JsVSYAAAAASUVORK5CYII=) center center no-repeat;
  background-size: 24px 30px;
}
.industry-exam-time-box[data-v-4e13ed15]:hover {
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
ul[data-v-667b9dfb] {
  padding: 0;
  margin: 0;
}
li[data-v-667b9dfb] {
  list-style: none !important;
}
p[data-v-667b9dfb], h1[data-v-667b9dfb], h2[data-v-667b9dfb], h3[data-v-667b9dfb], h4[data-v-667b9dfb], h5[data-v-667b9dfb] {
  margin: 0;
}
.industry-have-upload-box[data-v-667b9dfb] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 90px;
  background-color: #F9FAFB;
  padding-top: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 16px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16);
}
.industry-have-upload-box .industry-have-upload-box-title[data-v-667b9dfb] {
  font-size: 14px;
  font-weight: bold;
  color: #191919;
  text-align: center;
  height: 20px;
  line-height: 20px;
  margin-bottom: 8px;
}
.industry-have-upload-box .industry-have-upload-info-box[data-v-667b9dfb] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-have-upload-box .industry-have-upload-info-box .industry-have-upload-info .industry-have-upload-info-top[data-v-667b9dfb] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.industry-have-upload-box .industry-have-upload-info-box .industry-have-upload-info .industry-have-upload-info-top .industry-have-upload-info-num[data-v-667b9dfb] {
  font-size: 20px;
  font-weight: bold;
  color: #191919;
  margin-right: 3px;
}
.industry-have-upload-box .industry-have-upload-info-box .industry-have-upload-info .industry-have-upload-info-top .industry-have-upload-info-icon[data-v-667b9dfb] {
  width: 25px;
  height: 19px;
}
.industry-have-upload-box .industry-have-upload-info-box .industry-have-upload-info .industry-have-upload-info-title[data-v-667b9dfb] {
  font-size: 12px;
  color: #555;
  text-align: left;
}
.industry-have-upload-box .industry-have-upload-info-box .industry-have-upload-divider[data-v-667b9dfb] {
  height: 27px;
  width: 1px;
  background-color: #EEE;
  margin: 0 20px;
}
.industry-have-upload-box[data-v-667b9dfb]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
ul[data-v-c94fc2e6] {
  padding: 0;
  margin: 0;
}
li[data-v-c94fc2e6] {
  list-style: none !important;
}
p[data-v-c94fc2e6], h1[data-v-c94fc2e6], h2[data-v-c94fc2e6], h3[data-v-c94fc2e6], h4[data-v-c94fc2e6], h5[data-v-c94fc2e6] {
  margin: 0;
}
.xs-img-wrap[data-v-c94fc2e6] {
  margin-bottom: 17px;
  height: 90px;
  overflow: hidden;
  position: relative;
}
.xs-img-wrap .tools-box[data-v-c94fc2e6] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.xs-img-wrap .tools-box .tools-btn[data-v-c94fc2e6] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.xs-img-wrap .tools-box .tools-btn[data-v-c94fc2e6]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.xs-img-wrap:hover .tools-box[data-v-c94fc2e6] {
  display: block;
}
.industry-exam-time-box[data-v-c94fc2e6] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  height: 90px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 11px;
  background: url(../img/home-index-industry-exam-time-bg.c1c36489.png) right center no-repeat;
  background-size: auto 100%;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17);
  margin-bottom: 12px;
  overflow: hidden;
}
.industry-exam-time-box .industry-exam-time-text[data-v-c94fc2e6] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #555;
}
.industry-exam-time-box .industry-exam-time-count-box[data-v-c94fc2e6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
.industry-exam-time-box .industry-exam-time-count-box .industry-exam-time-count-text[data-v-c94fc2e6] {
  color: #191919;
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  margin-right: 4px;
}
.industry-exam-time-box .industry-exam-time-count-box .industry-exam-time-count-num[data-v-c94fc2e6] {
  margin-right: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #D01C1F;
  width: 24px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABACAYAAACKhS4jAAAAAXNSR0IArs4c6QAAAq1JREFUaEPtmr9rU1Ecxc95+dEa2gRTWxInncQi4iLVP6Fb/QcEp7pJcXAStZODg7rYQRfBxa2jo6DQOglC8UeFFqxNVGqTJmKbvnvkRVvbotDeF3r74Abe8B73nO+5n/fNg5d8iR0fVSrnjMElQicBDILs27lm386ltyBmCEyjVLpP8ufW2tw4kdRtKl9uEboKILVvAXdbSHpH4iLL5VcbknZ4VaunFZqnIE/s1svRulDgnaA0cJ1kqx0+XKzeJnTNUaC9lZWWmEmfYn//IlWtnpfRCwDB3lwcrhYmg6OlEYaVygSFUYdRrEoTOk6zWJkCMGTl4FBEBcNR+GUABYc5rEpTGIvCy0rtWCRoPLnhU8G95IZPp54kNjxSwbPkhk+nnvvwTh48nrwT7AA8eU/egoBvGwtoHZF48h3BaGHiyVtA64jEk+8IRguT5JP/tJDIF3Bk0tM07z8kMryy2Xkf3uLrFlviycdGaGngyVuCiy3z5GMjtDTw5C3BxZZ58rERWhp48pbgYss8+dgILQ08eUtwsWWefGyElgaJJo+urjma2Y+CMZb7dydjLveS4fy8uLrmLoVlZfYVH1ILn6Vm09LCkYwEB/rHqVpN+voNSWod9uaBXPc4Va9PYXV1SMs1QAf/xzNlMwiKxeiWX4jCTwAYRfMH1Ggc6A0onUZQPAwEQXSUqZWVy5AetLvXGJil7+D6uqNm/k/ZqMd7e4HcoY0FVebzJUoqoF5/DfLYpjR6dK6tAa0WjHHTShTAbCb6mx7IZrfvShpjoXD390Rrs3kWYRhN+SVhtnKS+fxIlPvvLHGtdhPkjYPVLzvSSHPI58+QrG0L/+cOlBGGjwAMH6hNSNH45BUWCo+35tokv/WiGo0SpMH2CLoxR5xsJAhaAGZBzrCn582/MvwCcDOkN2JsVSYAAAAASUVORK5CYII=) center center no-repeat;
  background-size: 24px 30px;
}
.industry-exam-time-box[data-v-c94fc2e6]:hover {
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4);
}
.industry-coupon-img[data-v-c94fc2e6] {
  width: 100%;
  height: 90px;
  border-radius: 5px;
  overflow: hidden;
}
.box_shadow[data-v-c94fc2e6] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.17) !important;
}
.box_shadow[data-v-c94fc2e6]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
@charset "UTF-8";
ul[data-v-5bb94475] {
  padding: 0;
  margin: 0;
}
li[data-v-5bb94475] {
  list-style: none !important;
}
p[data-v-5bb94475], h1[data-v-5bb94475], h2[data-v-5bb94475], h3[data-v-5bb94475], h4[data-v-5bb94475], h5[data-v-5bb94475] {
  margin: 0;
}
.industry-pack-box[data-v-5bb94475] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 28px;
  height: 260px;
  margin-bottom: 20px;
  position: relative;
}
.industry-pack-box .tools-box[data-v-5bb94475] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-pack-box .tools-box .tools-btn[data-v-5bb94475] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-pack-box .tools-box .tools-btn[data-v-5bb94475]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-pack-box .data-setting-btn-wrap[data-v-5bb94475] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box[data-v-5bb94475] {
  text-align: center;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-5bb94475] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-5bb94475] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-pack-box .industry-pack-title-box[data-v-5bb94475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
.industry-pack-box .industry-pack-title-box .industry-pack-title[data-v-5bb94475] {
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #0A0A0A;
  font-weight: bold;
  margin-right: 16px;
  max-width: 70%;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏超出容器的部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-pack-box .industry-pack-title-box .industry-pack-cate-tag[data-v-5bb94475] {
  height: 30px;
  padding: 0 8px;
  border-radius: 3px;
  margin-right: 10px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #D87706;
}
.industry-pack-box .industry-pack-info-tag-box[data-v-5bb94475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 30px;
  margin: 10px 0 20px;
  overflow: hidden;
}
.industry-pack-box .industry-pack-info-tag-box .industry-pack-info-tag[data-v-5bb94475] {
  height: 28px;
  padding: 0 8px;
  font-size: 14px;
  color: #555;
  line-height: 28px;
  background: #F8FAFC;
  border-radius: 3px;
  margin-right: 16px;
}
.industry-pack-box .industry-pack-info-box[data-v-5bb94475] {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEE;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list[data-v-5bb94475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 60px;
  overflow: hidden;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li[data-v-5bb94475] {
  margin-right: 30px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box[data-v-5bb94475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box .industry-pack-info-num[data-v-5bb94475] {
  margin-right: 3px;
  font-size: 24px;
  color: #191919;
  font-weight: bold;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box .industry-pack-info-unit[data-v-5bb94475] {
  color: #737373;
  font-size: 14px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-text[data-v-5bb94475] {
  color: #737373;
  font-size: 14px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-text[data-v-5bb94475] {
  font-weight: 500;
  font-size: 14px;
  color: #555555;
  margin: 13px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap[data-v-5bb94475] {
  padding-top: 18px;
  padding-bottom: 13px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text[data-v-5bb94475] {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: #555555;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text .industry-classtype-intro-span[data-v-5bb94475] {
  color: #191919;
  font-weight: bold;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text-more-link[data-v-5bb94475] {
  font-size: 14px;
  color: #D01C1F;
  float: right;
  clear: both;
}
.industry-pack-box .industry-pack-info-bottom[data-v-5bb94475] {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-learn[data-v-5bb94475] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box[data-v-5bb94475] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-old-price[data-v-5bb94475] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-new-price[data-v-5bb94475] {
  font-weight: 600;
  font-size: 20px;
  color: #B91C1C;
  margin-left: 8px;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-btn[data-v-5bb94475] {
  display: inline-block;
  margin-left: 8px;
  width: 88px;
  text-align: center;
  height: 32px;
  line-height: 30px;
  font-size: 14px;
  background: #B91C1C;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  color: #fff;
}
.industry-pack-box:hover .tools-box[data-v-5bb94475] {
  display: block;
}
.btn_red[data-v-5bb94475] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-5bb94475]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-5bb94475] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-5bb94475]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-5bb94475] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-5bb94475]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-5bb94475] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-5bb94475]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-5bb94475] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-5bb94475]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
@charset "UTF-8";
ul[data-v-7420f55b] {
  padding: 0;
  margin: 0;
}
li[data-v-7420f55b] {
  list-style: none !important;
}
p[data-v-7420f55b], h1[data-v-7420f55b], h2[data-v-7420f55b], h3[data-v-7420f55b], h4[data-v-7420f55b], h5[data-v-7420f55b] {
  margin: 0;
}
.industry-pack-box[data-v-7420f55b] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 28px;
  height: 260px;
  margin-bottom: 20px;
  position: relative;
}
.industry-pack-box .tools-box[data-v-7420f55b] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-pack-box .tools-box .tools-btn[data-v-7420f55b] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-pack-box .tools-box .tools-btn[data-v-7420f55b]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-pack-box .data-setting-btn-wrap[data-v-7420f55b] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box[data-v-7420f55b] {
  text-align: center;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-7420f55b] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-pack-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-7420f55b] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-pack-box .industry-pack-title-box[data-v-7420f55b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
}
.industry-pack-box .industry-pack-title-box .industry-pack-title[data-v-7420f55b] {
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #0A0A0A;
  font-weight: bold;
  margin-right: 16px;
  max-width: 70%;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏超出容器的部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.industry-pack-box .industry-pack-title-box .industry-pack-cate-tag[data-v-7420f55b] {
  height: 30px;
  padding: 0 8px;
  border-radius: 3px;
  margin-right: 10px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #D87706;
}
.industry-pack-box .industry-pack-info-tag-box[data-v-7420f55b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 30px;
  margin: 10px 0 20px;
  overflow: hidden;
}
.industry-pack-box .industry-pack-info-tag-box .industry-pack-info-tag[data-v-7420f55b] {
  height: 28px;
  padding: 0 8px;
  font-size: 14px;
  color: #555;
  line-height: 28px;
  background: #F8FAFC;
  border-radius: 3px;
  margin-right: 16px;
}
.industry-pack-box .industry-pack-info-box[data-v-7420f55b] {
  padding-bottom: 20px;
  border-bottom: 1px solid #EEE;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list[data-v-7420f55b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 60px;
  overflow: hidden;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li[data-v-7420f55b] {
  margin-right: 30px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box[data-v-7420f55b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box .industry-pack-info-num[data-v-7420f55b] {
  margin-right: 3px;
  font-size: 24px;
  color: #191919;
  font-weight: bold;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-num-box .industry-pack-info-unit[data-v-7420f55b] {
  color: #737373;
  font-size: 14px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-list .industry-pack-info-li .industry-pack-info-text[data-v-7420f55b] {
  color: #737373;
  font-size: 14px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-text[data-v-7420f55b] {
  font-weight: 500;
  font-size: 14px;
  color: #555555;
  margin: 13px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap[data-v-7420f55b] {
  padding-top: 16px;
  height: 60px;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text[data-v-7420f55b] {
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #555555;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text .industry-classtype-intro-span[data-v-7420f55b] {
  color: #191919;
  font-weight: bold;
}
.industry-pack-box .industry-pack-info-box .industry-pack-info-intro-detail-text-wrap .industry-pack-info-intro-detail-text-more-link[data-v-7420f55b] {
  font-size: 14px;
  color: #D01C1F;
  float: right;
  clear: both;
}
.industry-pack-box .industry-pack-info-bottom[data-v-7420f55b] {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-learn[data-v-7420f55b] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box[data-v-7420f55b] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-old-price[data-v-7420f55b] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
  -webkit-text-decoration-line: line-through;
          text-decoration-line: line-through;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-new-price[data-v-7420f55b] {
  font-weight: 600;
  font-size: 20px;
  color: #B91C1C;
  margin-left: 8px;
}
.industry-pack-box .industry-pack-info-bottom .industry-pack-info-bottom-btn-box .industry-pack-info-bottom-btn[data-v-7420f55b] {
  display: inline-block;
  margin-left: 8px;
  width: 88px;
  text-align: center;
  height: 32px;
  line-height: 30px;
  font-size: 14px;
  background: #B91C1C;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  color: #fff;
}
.industry-pack-box:hover .tools-box[data-v-7420f55b] {
  display: block;
}
.btn_red[data-v-7420f55b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-7420f55b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-7420f55b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-7420f55b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-7420f55b] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-7420f55b]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-7420f55b] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-7420f55b]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-7420f55b] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-7420f55b]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
@charset "UTF-8";
.industry-pack-box[data-v-55f5c426] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 28px;
  height: 260px;
  margin-bottom: 20px;
  position: relative;
}
.industry-pack-box[data-v-55f5c426] .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #EEE;
  background-color: #191919;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-pack-box[data-v-55f5c426] .is-active {
  color: #D01C1F;
}
.industry-pack-box[data-v-55f5c426] .is-active .el-carousel__button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D01C1F;
  background-color: #D01C1F;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.industry-pack-box[data-v-55f5c426] .el-carousel__indicators {
  bottom: 10px;
}
.industry-pack-box .tools-box[data-v-55f5c426] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-pack-box .tools-box .tools-btn[data-v-55f5c426] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-pack-box .tools-box .tools-btn[data-v-55f5c426]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-pack-box .industry-famous-teacher-content-box[data-v-55f5c426] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.industry-pack-box .industry-famous-teacher-content-box .goodsImage[data-v-55f5c426] {
  height: 90%;
  width: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.industry-pack-box .industry-famous-teacher-content-box .title[data-v-55f5c426] {
  width: calc(50% - 20px);
  font-size: 18px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.industry-pack-box .industry-famous-teacher-content-box .title .text[data-v-55f5c426] {
  display: -webkit-box;
  font-weight: normal;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis; /* 显示省略号 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 3.1rem;
}
.industry-pack-box .industry-famous-teacher-content-box .title .btn[data-v-55f5c426]:hover {
  color: #B91C1C;
  background: #fff;
}
.industry-pack-box .industry-famous-teacher-content-box .title .btn[data-v-55f5c426] {
  display: inline-block;
  margin-left: 8px;
  width: 88px;
  text-align: center;
  height: 32px;
  line-height: 30px;
  font-size: 14px;
  background: #B91C1C;
  border-radius: 28px;
  border: 1px solid #B91C1C;
  color: #fff;
  cursor: pointer;
}
.industry-pack-box .industry-famous-teacher-content-box .title .price_box[data-v-55f5c426] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.industry-pack-box .industry-famous-teacher-content-box .title .currentPrice[data-v-55f5c426] {
  color: #D01C1F;
}
.industry-pack-box .industry-famous-teacher-content-box .title .originPrice[data-v-55f5c426] {
  font-size: 16px;
  text-decoration: line-through;
}
.industry-pack-box:hover .tools-box[data-v-55f5c426] {
  display: block;
}
.box_shadow[data-v-55f5c426] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.border_top[data-v-55f5c426] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-55f5c426]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-58c09e6f] {
  padding: 0;
  margin: 0;
}
li[data-v-58c09e6f] {
  list-style: none !important;
}
p[data-v-58c09e6f], h1[data-v-58c09e6f], h2[data-v-58c09e6f], h3[data-v-58c09e6f], h4[data-v-58c09e6f], h5[data-v-58c09e6f] {
  margin: 0;
}
.industry-xl-pack-text-video-box[data-v-58c09e6f] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  margin-bottom: 20px;
  position: relative;
  min-height: 260px;
}
.industry-xl-pack-text-video-box .tools-box[data-v-58c09e6f] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-xl-pack-text-video-box .tools-box .tools-btn[data-v-58c09e6f] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-xl-pack-text-video-box .tools-box .tools-btn[data-v-58c09e6f]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-xl-pack-text-video-box .data-setting-btn-wrap[data-v-58c09e6f] {
  height: 260px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-video-box .data-setting-btn-wrap .data-setting-btn-box[data-v-58c09e6f] {
  text-align: center;
}
.industry-xl-pack-text-video-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-58c09e6f] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-xl-pack-text-video-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-58c09e6f] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-img[data-v-58c09e6f] {
  width: 40%;
  height: auto;
  background-color: black;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail[data-v-58c09e6f] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 55%;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-top[data-v-58c09e6f] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-top .industry-xl-pack-text-video-detail-title[data-v-58c09e6f] {
  font-size: 24px;
  color: #191919;
  font-weight: bold;
  margin-right: 24px;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-top .industry-xl-pack-text-video-detail-icon[data-v-58c09e6f] {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-top .industry-xl-pack-text-video-detail-title-text[data-v-58c09e6f] {
  font-size: 14px;
  color: #555;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-tag-box[data-v-58c09e6f] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 20px;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-tag-box .industry-xl-pack-text-video-detail-tag[data-v-58c09e6f] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 84px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background: #F9FAFB;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #EEEEEE;
  font-size: 14px;
  margin-right: 15px;
  color: #707070;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-text[data-v-58c09e6f] {
  height: 114px;
  font-size: 14px;
  color: #555;
  line-height: 24px;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box[data-v-58c09e6f] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button[data-v-58c09e6f] {
  margin-right: 24px;
  width: 115px;
  height: 32px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #B91C1C;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button .default_icon[data-v-58c09e6f] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button .hover_icon[data-v-58c09e6f] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button .industry-xl-pack-text-video-detail-button-text[data-v-58c09e6f] {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button[data-v-58c09e6f]:hover {
  margin-right: 24px;
  width: 115px;
  height: 32px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button:hover .default_icon[data-v-58c09e6f] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button:hover .hover_icon[data-v-58c09e6f] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-xl-pack-text-video-box .industry-xl-pack-text-video-detail .industry-xl-pack-text-video-detail-btn-box .industry-xl-pack-text-video-detail-button:hover .industry-xl-pack-text-video-detail-button-text[data-v-58c09e6f] {
  display: inline-block;
  color: #B91C1C;
  font-size: 14px;
}
.industry-xl-pack-text-video-box:hover .tools-box[data-v-58c09e6f] {
  display: block;
}
.btn_red[data-v-58c09e6f] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-58c09e6f]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-58c09e6f] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-58c09e6f]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-58c09e6f] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-58c09e6f]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-58c09e6f] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-58c09e6f]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-58c09e6f] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-58c09e6f]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-71284f55] {
  padding: 0;
  margin: 0;
}
li[data-v-71284f55] {
  list-style: none !important;
}
p[data-v-71284f55], h1[data-v-71284f55], h2[data-v-71284f55], h3[data-v-71284f55], h4[data-v-71284f55], h5[data-v-71284f55] {
  margin: 0;
}
.industry-xl-pack-text-intro-box[data-v-71284f55] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  min-height: 260px;
}
.industry-xl-pack-text-intro-box .tools-box[data-v-71284f55] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-xl-pack-text-intro-box .tools-box .tools-btn[data-v-71284f55] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-xl-pack-text-intro-box .tools-box .tools-btn[data-v-71284f55]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-xl-pack-text-intro-box .data-setting-btn-wrap[data-v-71284f55] {
  height: 260px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-intro-box .data-setting-btn-wrap .data-setting-btn-box[data-v-71284f55] {
  text-align: center;
}
.industry-xl-pack-text-intro-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-71284f55] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-xl-pack-text-intro-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-71284f55] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-img-box[data-v-71284f55] {
  width: 30%;
  height: 320px;
  overflow: hidden;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-img-box .industry-xl-pack-text-intro-img[data-v-71284f55] {
  width: 100%;
  height: 100%;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail[data-v-71284f55] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 70%;
  height: 320px;
  padding: 25px 45px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-top[data-v-71284f55] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-top .industry-xl-pack-text-intro-detail-title[data-v-71284f55] {
  font-size: 24px;
  color: #191919;
  font-weight: bold;
  margin-right: 24px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-top .industry-xl-pack-text-intro-detail-icon[data-v-71284f55] {
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-top .industry-xl-pack-text-intro-detail-title-text[data-v-71284f55] {
  font-size: 14px;
  color: #555;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-tag-box[data-v-71284f55] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 34px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 20px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-tag-box .industry-xl-pack-text-intro-detail-tag[data-v-71284f55] {
  width: 84px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background: #F9FAFB;
  border-radius: 6px 6px 6px 6px;
  border: 1px solid #EEEEEE;
  font-size: 14px;
  margin-right: 15px;
  color: #707070;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-text[data-v-71284f55] {
  font-size: 14px;
  color: #555;
  height: 118px;
  line-height: 26px;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box[data-v-71284f55] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button[data-v-71284f55] {
  margin-right: 24px;
  width: 115px;
  height: 32px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #B91C1C;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button .default_icon[data-v-71284f55] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button .hover_icon[data-v-71284f55] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button .industry-xl-pack-text-intro-detail-button-text[data-v-71284f55] {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button[data-v-71284f55]:hover {
  margin-right: 24px;
  width: 115px;
  height: 32px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button:hover .default_icon[data-v-71284f55] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button:hover .hover_icon[data-v-71284f55] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.industry-xl-pack-text-intro-box .industry-xl-pack-text-intro-detail .industry-xl-pack-text-intro-detail-btn-box .industry-xl-pack-text-intro-detail-button:hover .industry-xl-pack-text-intro-detail-button-text[data-v-71284f55] {
  display: inline-block;
  color: #B91C1C;
  font-size: 14px;
}
.industry-xl-pack-text-intro-box:hover .tools-box[data-v-71284f55] {
  display: block;
}
.btn_red[data-v-71284f55] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-71284f55]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-71284f55] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-71284f55]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-71284f55] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-71284f55]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-71284f55] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-71284f55]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-71284f55] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-71284f55]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-a4c43d32] {
  padding: 0;
  margin: 0;
}
li[data-v-a4c43d32] {
  list-style: none !important;
}
p[data-v-a4c43d32], h1[data-v-a4c43d32], h2[data-v-a4c43d32], h3[data-v-a4c43d32], h4[data-v-a4c43d32], h5[data-v-a4c43d32] {
  margin: 0;
}
.bg[data-v-a4c43d32] {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(15%, #fff), color-stop(15%, #F8FAFC), to(#F8FAFC));
  background: linear-gradient(to bottom, #fff 0%, #fff 15%, #F8FAFC 15%, #F8FAFC 100%);
}
.industry-teacher-intro-detail-box[data-v-a4c43d32] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}
.industry-teacher-intro-detail-box .tools-box[data-v-a4c43d32] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-teacher-intro-detail-box .tools-box .tools-btn[data-v-a4c43d32] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-teacher-intro-detail-box .tools-box .tools-btn[data-v-a4c43d32]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-teacher-intro-detail-box .data-setting-btn-wrap[data-v-a4c43d32] {
  height: 260px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-teacher-intro-detail-box .data-setting-btn-wrap .data-setting-btn-box[data-v-a4c43d32] {
  text-align: center;
}
.industry-teacher-intro-detail-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-a4c43d32] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.industry-teacher-intro-detail-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-a4c43d32] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-photo[data-v-a4c43d32] {
  height: 320px;
  width: 320px;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box[data-v-a4c43d32] {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFQAAADACAYAAACanESUAAAAAXNSR0IArs4c6QAAB7tJREFUeF7tm3+oZHUZxt931jlnWhXd1j1nsPrjrrvuzhlJ/FVkogVFFGKIEKYIEYQ/QwLTFsF/BDVSCMkCESSpIIIwJIooUUMNf4XIzKxJrr+iO3P9sa3r7py5Nq/MuhvusnvP+555Lig98+95nuf7ns88zL535qwKX1ACCk1jmBAouAQESqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWzohwGoDV/MlxvlJ8Gz7Iubiu5ubdj6fDTbzHT59e2nR31effOE4waqJ+6p0tdqaDnsXy8iP6wKr3PdxB5t5d1zol6zXjIZaRn1efW6Zs1nkhO2PFmlJ9AqQvuvE6gTlFdGoF5STh2BOkF5ZQTqJeXUEagTlFdGoF5STh2BOkF5ZQTqJeXUEagTlFdGoF5STh2BOkF5ZQTqJeXUEagTlFdGoF5STh2BOkF5ZQTqJeXUEagTlFdGoF5STh2BOkF5ZQTqJeXUfWSBiujtad75vvM+/ydb1V89zd5MmsmCrt+8q2quD9mvnrY7WZts1GM3L1UNfuh1M2tORoNJ1OfSm92Ytru3eLT1gC4OLjG1K450gIocJSKf8wxwkMbstrTd3Rb2iYiZHVWOBg+u6DXboqpZJN9MltKGbdSsu9vjqwW0KrhcHHxT1H5VpTvk+q6kZQt6XPfNoM8lnzW4HPVfVNHQEy8mcn0rL37kOkREVglo7wlRPcs7xH7dzWle3BT0uOXl4uASUful2zBrvdgwzdZt9DyCcyAXDnR51DtnavrXyOAitjNJ1i7ouoWdMZ9fXS72nxKVM/yO2ceIfK/VLn4c8cCBlsP+b0XkwsgQInJTmhc3Bz1u+fKof+7U5GG3YV875V9p9rFNqgvjiA8K1IYvnDSR5X+ISMM9hMkbyZrGgm7Y+rbbExSWw979Ivr1iE1Vrkmy4q6IZ6aFAh0v9u5U1e+GhlDdlmad20KegHg86m1S09njke432cxeSXPZrNoNr2EwoPbWjuMn5Z7XRPVo7/2a2SiV9Ru13X7H64nqxsP+T1Tk6ohPTS9P2p27Ix74P0p1nhk1setaefeOOoN7PLbz5XWT8e5XY2+y7EjzzmxfXfaccagG0tA6O56J/DvNjj1J9VN76wzu8ZSj/g1iEvo4UbVvJ1n3Xk/+4TQQoLV2PLVrW1n3zrqDV/nef5MHO1TkE1XaD1x/Ick6HVX9b8BzkBQENLbjmdhraZZsUt28ao9wl8PepSL6ixgYuyzNu0HPwSfMDbTOjqciVyV58bPYzcbU5bD/tIj4/xOD2SDJi1NUdRo7CQw0uuOZyctpbifXWUm8N7q8NDhvOrWHvPp9OpWL06z4dchzGPFcDa2z46nJd5J2cc+8g6/kL4e934noBYEznkuyzqmqagHPYaXzAQ3ueCb2zzQrtqrqu/MOfiT/eGlwsk5te+yPFr0ozTuzP5nnftUGWmfHU9VvJVnn53NPvULAeNi/a/YZHTjj70nWOQPRzvc/OWq+ytHgB2J2a8D+fJJ1uvOsJFVn2X96H5/sldkiv7ZKe+C6mV7Qance8OqrdLWA1trxTC9N253ol85V8x90vRz1tomp66eKfUazJ9J297OhQyrEtYCGdzyTXpJ3Pj3vSrLSvex/k19SkRO9gBra+Goz2/pHr96jqwk0uOOpfSPNur/xDFRXMxn2LzOR+wL+x9K8+HxA75KGgcZ3PHs2yYrTUB/6R7qrcth/RkROc9317Ls8sy81292/ePVeXRhojR3vwjQv7vcOVEe3vLT9i9PpdOVfPD8QbCYPt9rFF+qcVeUJAQ3veCZPp+3izKoh5r1eLvYfEJXzvTkNlfOaWfGIVx/RxYAGdzxryPmtDcXvIwNFteOl7Vt0Oh14V0AT+XMrL74cPcerdwOtseP9Lc2L+MMO3sn368bD/k9V5EqvrSF6djPvPO7VR3VuoNEdryH6lWbe+VN0oIjedg3WT/ZMX/Eu8ib2h1be/VrkjKjWDdQWF4+WdG/Te8Bq/sZ+YIbZ4zey86VjvDPJ8e/uXc3vYGdzuIG6h/4/FxIouAAESqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbSqBgAuA4NpRAwQTAcWwogYIJgOPYUAIFEwDHsaEECiYAjmNDCRRMABzHhhIomAA4jg0lUDABcBwbCgb6HmSUFO60MKoKAAAAAElFTkSuQmCC) bottom right no-repeat;
  background-size: 41px 96px;
  padding: 120px 0 60px;
  width: calc(95% - 320px);
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-top[data-v-a4c43d32] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-top .industry-teacher-intro-detail-info-title-box[data-v-a4c43d32] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 50px;
  width: calc(100% - 120px);
  overflow: hidden;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-top .industry-teacher-intro-detail-info-title-box .industry-teacher-intro-detail-info-title[data-v-a4c43d32] {
  font-size: 32px;
  font-weight: bold;
  color: #191919;
  margin-right: 26px;
  margin-bottom: 10px;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-top .industry-teacher-intro-detail-info-title-box .industry-teacher-intro-detail-info-tag[data-v-a4c43d32] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  padding: 0 6px;
  background-color: #D87706;
  border-radius: 3px;
  margin-right: 16px;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-top .industry-teacher-intro-detail-info-page-btn[data-v-a4c43d32] {
  width: 103px;
  height: 34px;
  background: #B91C1C;
  border-radius: 17px;
  border: 1px solid #B91C1C;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 34px;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-center[data-v-a4c43d32] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
  margin: 20px 0;
}
.industry-teacher-intro-detail-box .industry-teacher-intro-detail-info-box .industry-teacher-intro-detail-info-bottom[data-v-a4c43d32] {
  font-weight: 500;
  font-size: 14px;
  color: #555555;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.industry-teacher-intro-detail-box:hover .tools-box[data-v-a4c43d32] {
  display: block;
}
.btn_red[data-v-a4c43d32] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-a4c43d32]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-a4c43d32] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-a4c43d32]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-a4c43d32] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-a4c43d32]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-a4c43d32] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-a4c43d32]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-a4c43d32] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-a4c43d32]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-6c39ea6d] {
  padding: 0;
  margin: 0;
}
li[data-v-6c39ea6d] {
  list-style: none !important;
}
p[data-v-6c39ea6d], h1[data-v-6c39ea6d], h2[data-v-6c39ea6d], h3[data-v-6c39ea6d], h4[data-v-6c39ea6d], h5[data-v-6c39ea6d] {
  margin: 0;
}
.industry-xl-teacher-swiper-box[data-v-6c39ea6d] {
  position: relative;
  height: 586px;
  margin-bottom: 20px;
}
.industry-xl-teacher-swiper-box .tools-box[data-v-6c39ea6d] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.industry-xl-teacher-swiper-box .tools-box .tools-btn[data-v-6c39ea6d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.industry-xl-teacher-swiper-box .tools-box .tools-btn[data-v-6c39ea6d]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-bg[data-v-6c39ea6d] {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw !important;
  max-width: 100vw !important;
  height: 250px;
  z-index: 1;
  background: url(../img/home-index-xl-teacher-swiper-bg.22077d27.png) center center no-repeat;
  background-size: auto 100%;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap[data-v-6c39ea6d] {
  width: 100%;
  position: absolute;
  top: 56px;
  z-index: 2;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box[data-v-6c39ea6d] {
  height: 420px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 50px 20px;
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(20%, rgba(255, 255, 255, 0)), color-stop(20%, #F8FAFC), to(#F8FAFC));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, #F8FAFC 20%, #F8FAFC 100%);
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-photo[data-v-6c39ea6d] {
  height: 320px;
  width: 320px;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box[data-v-6c39ea6d] {
  padding: 120px 0 60px;
  width: calc(95% - 320px);
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-top[data-v-6c39ea6d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-top .industry-xl-teacher-swiper-detail-info-title-box[data-v-6c39ea6d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 50px;
  width: calc(100% - 120px);
  overflow: hidden;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-top .industry-xl-teacher-swiper-detail-info-title-box .industry-xl-teacher-swiper-detail-info-title[data-v-6c39ea6d] {
  font-size: 32px;
  font-weight: bold;
  color: #191919;
  margin-right: 26px;
  margin-bottom: 10px;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-top .industry-xl-teacher-swiper-detail-info-title-box .industry-xl-teacher-swiper-detail-info-tag[data-v-6c39ea6d] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #fff;
  padding: 0 6px;
  background-color: #D87706;
  border-radius: 3px;
  margin-right: 16px;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-top .industry-xl-teacher-swiper-detail-info-page-btn[data-v-6c39ea6d] {
  width: 103px;
  height: 34px;
  background: #B91C1C;
  border-radius: 17px;
  border: 1px solid #B91C1C;
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 34px;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-center[data-v-6c39ea6d] {
  font-weight: 500;
  font-size: 14px;
  color: #707070;
  margin: 20px 0;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box .industry-xl-teacher-swiper-detail-info-box .industry-xl-teacher-swiper-detail-info-bottom[data-v-6c39ea6d] {
  font-weight: 500;
  font-size: 14px;
  color: #555555;
  line-height: 26px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  text-overflow: ellipsis;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-detail-wrap .industry-xl-teacher-swiper-detail-box-active[data-v-6c39ea6d] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-btn-box[data-v-6c39ea6d] {
  position: absolute;
  top: 410px;
  right: 50px;
  z-index: 3;
  width: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-btn-box .industry-xl-teacher-swiper-btn[data-v-6c39ea6d] {
  width: 17px;
  height: 27px;
  cursor: pointer;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-btn-box .industry-xl-teacher-swiper-btn[data-v-6c39ea6d]:hover {
  opacity: 0.7;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box[data-v-6c39ea6d] {
  position: absolute;
  top: 495px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: auto;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box .industry-xl-teacher-swiper-control-li[data-v-6c39ea6d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.5;
  cursor: pointer;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box .industry-xl-teacher-swiper-control-li .industry-xl-teacher-swiper-control-li-img[data-v-6c39ea6d] {
  width: 90px;
  height: 90px;
  margin-right: 24px;
  border-radius: 10px;
  overflow: hidden;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box .industry-xl-teacher-swiper-control-li[data-v-6c39ea6d]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box .industry-xl-teacher-swiper-control-li-active[data-v-6c39ea6d] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 1;
}
.industry-xl-teacher-swiper-box .industry-xl-teacher-swiper-control-box[data-v-6c39ea6d]::-webkit-scrollbar {
  display: none;
}
.industry-xl-teacher-swiper-box:hover .tools-box[data-v-6c39ea6d] {
  display: block;
}
.btn_red[data-v-6c39ea6d] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_red[data-v-6c39ea6d]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-6c39ea6d] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #fff !important;
  border: 1px solid #B91C1C !important;
  color: #B91C1C !important;
}
.btn_white[data-v-6c39ea6d]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.btn_gray[data-v-6c39ea6d] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #F9FAFB !important;
  border: 1px solid #EEE !important;
  color: #707070 !important;
}
.btn_gray[data-v-6c39ea6d]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C !important;
  border: 1px solid #B91C1C !important;
  color: #fff !important;
}
.box_shadow[data-v-6c39ea6d] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
}
.box_shadow[data-v-6c39ea6d]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  background: #FFFFFF !important;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.4) !important;
}
.border_top[data-v-6c39ea6d] {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #fff !important;
}
.border_top[data-v-6c39ea6d]:hover {
  -webkit-transition: all 0.5s ease-out !important;
  transition: all 0.5s ease-out !important;
  border-top: 4px solid #E0A34A !important;
}
ul[data-v-4d8127d6] {
  padding: 0;
  margin: 0;
}
li[data-v-4d8127d6] {
  list-style: none !important;
}
p[data-v-4d8127d6], h1[data-v-4d8127d6], h2[data-v-4d8127d6], h3[data-v-4d8127d6], h4[data-v-4d8127d6], h5[data-v-4d8127d6] {
  margin: 0;
}
.advImgWrap[data-v-4d8127d6] {
  position: relative;
  margin-bottom: 20px;
}
.advImgWrap .tools-box[data-v-4d8127d6] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.advImgWrap .tools-box .tools-btn[data-v-4d8127d6] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.advImgWrap .tools-box .tools-btn[data-v-4d8127d6]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.advImgWrap .data-setting-btn-wrap[data-v-4d8127d6] {
  height: 260px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advImgWrap .data-setting-btn-wrap .data-setting-btn-box[data-v-4d8127d6] {
  text-align: center;
}
.advImgWrap .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-4d8127d6] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.advImgWrap .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-4d8127d6] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.advImgWrap:hover .tools-box[data-v-4d8127d6] {
  display: block;
}
.industry-xl-cross-ad-img[data-v-4d8127d6] {
  width: 100%;
  height: auto;
  max-height: 80px;
}
@-webkit-keyframes barAnimation-1e4bc87f {
0% {
    height: 15px;
}
100% {
    height: 3px;
}
}
@keyframes barAnimation-1e4bc87f {
0% {
    height: 15px;
}
100% {
    height: 3px;
}
}
.living-tag-box[data-v-1e4bc87f] {
  width: 24px;
  height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 5px;
}
.living-tag-box .bar[data-v-1e4bc87f] {
  width: 4px;
  height: 20px;
  background-color: #fff;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.living-tag-box .bar1[data-v-1e4bc87f] {
  -webkit-animation-name: barAnimation-1e4bc87f;
          animation-name: barAnimation-1e4bc87f;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.living-tag-box .bar2[data-v-1e4bc87f] {
  -webkit-animation-name: barAnimation-1e4bc87f;
          animation-name: barAnimation-1e4bc87f;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
.living-tag-box .bar3[data-v-1e4bc87f] {
  -webkit-animation-name: barAnimation-1e4bc87f;
          animation-name: barAnimation-1e4bc87f;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@charset "UTF-8";
.living-main-wrap[data-v-01e04e21] {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}
.living-main-wrap .living-main-title-box[data-v-01e04e21] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-bottom: 20px;
}
.living-main-wrap .living-main-title-box .living-main-title[data-v-01e04e21] {
  font-size: 24px;
  color: #191919;
}
.living-main-wrap .living-main-title-box .living-main-more-btn[data-v-01e04e21] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.living-main-wrap .living-main-title-box .living-main-more-btn .living-main-more-btn-text[data-v-01e04e21] {
  display: inline-block;
  font-size: 16px;
  color: #707070;
  margin-right: 5px;
}
.living-main-wrap .living-main-title-box .living-main-more-btn .living-main-more-btn-icon[data-v-01e04e21] {
  width: 18px;
  height: 18px;
}
.living-main-wrap .living-main-left-banner[data-v-01e04e21] {
  height: 336px;
  position: relative;
  background: url(../img/living-main-left-banner-bg.b6837099.png) center center no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-tag-box[data-v-01e04e21] {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 5px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-tag-box .living-main-left-banner-tag-icon[data-v-01e04e21] {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-tag-box .living-main-left-banner-tag-text[data-v-01e04e21] {
  color: #fff;
  font-size: 12px;
}
.living-main-wrap .living-main-left-banner .living-tag-red[data-v-01e04e21] {
  background-color: #D01C1F;
}
.living-main-wrap .living-main-left-banner .living-tag-gray[data-v-01e04e21] {
  background-color: #92A2AF;
}
.living-main-wrap .living-main-left-banner .living-tag-orange[data-v-01e04e21] {
  background-color: #D87706;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box[data-v-01e04e21] {
  padding-top: 40px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-title[data-v-01e04e21] {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
  margin-top: 0;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-course-title[data-v-01e04e21] {
  font-size: 14px;
  color: #fff;
  text-align: center;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-section-title[data-v-01e04e21] {
  font-size: 18px;
  color: #fff;
  text-align: center;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-teacher-title[data-v-01e04e21] {
  font-size: 14px;
  color: #fff;
  text-align: center;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn[data-v-01e04e21] {
  margin: 0 auto;
  cursor: pointer;
  width: 195px;
  height: 42px;
  border-radius: 21px;
  background-color: #fff;
  color: #D01C1F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn .into-living-room-icon-default[data-v-01e04e21] {
  display: block;
  width: 19px;
  height: 14px;
  margin-right: 8px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn .into-living-room-icon-hover[data-v-01e04e21] {
  display: none;
  width: 19px;
  height: 14px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn[data-v-01e04e21]:hover {
  background-color: #D01C1F;
  color: #fff;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn:hover .into-living-room-icon-default[data-v-01e04e21] {
  display: none;
  width: 19px;
  height: 14px;
}
.living-main-wrap .living-main-left-banner .living-main-left-banner-info-box .living-main-left-banner-info-into-btn:hover .into-living-room-icon-hover[data-v-01e04e21] {
  display: block;
  width: 19px;
  height: 14px;
}
.living-main-wrap .living-main-right-list[data-v-01e04e21] {
  height: 343px;
}
.living-main-wrap .living-main-right-list .living-main-right-li[data-v-01e04e21] {
  position: relative;
  height: 112px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding: 24px 16px;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-time-line-box[data-v-01e04e21] {
  position: absolute;
  left: 28px;
  top: 28px;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-time-line-box .time-line-point[data-v-01e04e21] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #B91C1C;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-time-line-box .time-line-line[data-v-01e04e21] {
  height: 68px;
  width: 2px;
  background-color: #EEEEEE;
  margin: 0 auto;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail[data-v-01e04e21] {
  padding-left: 40px;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top[data-v-01e04e21] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-main-right-li-tag-box[data-v-01e04e21] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 12px;
  margin-right: 10px;
  color: #fff;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-main-right-li-tag-box .living-main-right-li-tag[data-v-01e04e21] {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-tag-red[data-v-01e04e21] {
  background-color: #D01C1F;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-tag-gray[data-v-01e04e21] {
  background-color: #92A2AF;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-tag-orange[data-v-01e04e21] {
  background-color: #D87706;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-main-right-li-time-box .margin-r[data-v-01e04e21] {
  margin-right: 10px;
  font-size: 14px;
  color: #191919;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-detail-top .living-main-right-li-time-box .bold-font[data-v-01e04e21] {
  font-size: 20px;
  color: #D01C1F;
  font-weight: bold;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-bottom[data-v-01e04e21] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-bottom .font-bold[data-v-01e04e21] {
  font-size: 18px;
  font-weight: bold;
  color: #191919;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-bottom .font-small[data-v-01e04e21] {
  font-size: 14px;
  color: #707070;
}
.living-main-wrap .living-main-right-list .living-main-right-li .living-main-right-li-detail .living-main-right-li-bottom .margin-r[data-v-01e04e21] {
  margin-right: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.living-main-wrap .living-main-right-list .living-main-right-li[data-v-01e04e21]:hover {
  background-color: #F8FAFC;
}
.living-main-wrap .living-main-right-list .living-main-right-li-active[data-v-01e04e21] {
  background-color: #F8FAFC;
}
@media screen and (max-width: 500px) {
.living-main-wrap .section-title[data-v-01e04e21], .living-main-wrap .hide[data-v-01e04e21] {
    display: none !important;
}
}
@charset "UTF-8";
ul[data-v-7fd4f5f4] {
  padding: 0;
  margin: 0;
}
li[data-v-7fd4f5f4] {
  list-style: none !important;
}
p[data-v-7fd4f5f4], h1[data-v-7fd4f5f4], h2[data-v-7fd4f5f4], h3[data-v-7fd4f5f4], h4[data-v-7fd4f5f4], h5[data-v-7fd4f5f4] {
  margin: 0;
}
.no-border[data-v-7fd4f5f4] {
  border: none;
}
.template-edit-wrap[data-v-7fd4f5f4] {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 99;
}
.template-edit-wrap .el-col[data-v-7fd4f5f4] {
  margin-bottom: 0 !important;
}
.template-edit-wrap .template-edit-top-bar[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 20px;
  height: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #eee;
}
.template-edit-wrap .template-edit-top-bar .template-edit-page-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 28px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap[data-v-7fd4f5f4] {
  position: relative;
  height: calc(100vh - 160px);
  overflow-y: scroll;
  overflow-x: hidden;
  padding-top: 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap[data-v-7fd4f5f4] {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  height: 90px;
  width: 100%;
  z-index: 90;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar[data-v-7fd4f5f4] {
  max-width: 1536px;
  margin: 0 auto;
  height: 90px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box .top-bar-logo-img[data-v-7fd4f5f4] {
  height: 45px;
  width: auto;
  margin-right: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box .top-bar-web-title[data-v-7fd4f5f4] {
  font-size: 24px;
  font-weight: bold;
  color: #191919;
  margin: 0 24px 0 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box .top-bar-nav-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box .top-bar-nav-box .top-bar-nav-btn[data-v-7fd4f5f4] {
  font-size: 16px;
  color: #191919;
  display: inline-block;
  margin: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-logo-box .top-bar-nav-box .top-bar-nav-btn[data-v-7fd4f5f4]:hover {
  font-weight: bold;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-search-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-search-box .top-bar-active-img[data-v-7fd4f5f4] {
  width: 98px;
  height: 34px;
  margin-right: 30px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-search-box .top-bar-search-input[data-v-7fd4f5f4] {
  height: 40px;
  background-color: #EEEEEE;
  color: #A9ADB0;
  font-size: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 19px;
  width: 178px;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  border: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-search-box .top-bar-search-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: none;
  width: 82px;
  height: 40px;
  border-radius: 0 20px 20px 0;
  background-color: #D01C1F;
  color: #fff;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-search-box .top-bar-search-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-avatar-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-avatar-box .top-bar-my-learn[data-v-7fd4f5f4] {
  height: 19px;
  width: 112px;
  margin-right: 22px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-avatar-box .top-bar-avatar[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
  padding: 2px;
  overflow: hidden;
  margin-right: 3px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .header-top-bar-wrap .header-top-bar .top-bar-avatar-box .top-bar-user-name[data-v-7fd4f5f4] {
  font-size: 16px;
  color: #191919;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAFCAYAAAB8ZH1oAAAAAXNSR0IArs4c6QAAADpJREFUGFdj3Lx9fz0Dw/8GBryAsYERJI9fMWODr6djI1ghbsUQRSB5uEJMxQhFGAoRihkYYCbBbAQAOjcariGqBgEAAAAASUVORK5CYII=) center right no-repeat;
  background-size: 10px 5px;
  padding-right: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap[data-v-7fd4f5f4] {
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap[data-v-7fd4f5f4] .el-carousel__indicators {
  z-index: 50 !important;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap[data-v-7fd4f5f4] {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1536px;
  height: 420px;
  z-index: 10;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box[data-v-7fd4f5f4] {
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-nav-total-title[data-v-7fd4f5f4] {
  height: 56px;
  width: 180px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDC36E), to(#BC7606));
  background: linear-gradient(180deg, #FDC36E 0%, #BC7606 100%);
  text-align: center;
  line-height: 56px;
  color: #fff;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-first-nav-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 364px;
  width: 180px;
  background-color: rgba(255, 255, 255, 0.9);
  overflow-y: scroll;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-first-nav-box .banner-first-nav-list[data-v-7fd4f5f4] {
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-first-nav-box .banner-first-nav-list .banner-first-nav-li[data-v-7fd4f5f4] {
  padding: 0 9px 0 16px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #191919;
  cursor: pointer;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAYAAAAx8TU7AAAAAXNSR0IArs4c6QAAAHNJREFUGFdj3LR93+kf/777hnl7v2CAAsbN2/f9Z/jP8IKBicHD18PpIkgcIsjAwPCfgeELMyNDjLeH00a4IEzrfwbGDHTBGwx/fgciCx5g+MMY6uvr+AYqyDjnLAdDZoOj4x+wRVu370/39nScCTMTRAMATIgy38aN7qEAAAAASUVORK5CYII=) 159px center no-repeat;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-first-nav-box .banner-first-nav-list .banner-first-nav-li[data-v-7fd4f5f4]::before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAj5JREFUOE+VU09IFFEY/31vBlpIagxm3ozuatDFo5kHoUtSkLcuUh08eNMIwYNSgaGSUKBQIJHe9tChokPdDAy9BB1Mt5uXDunq7MxATmG0wdv3xZM1bFsL3+37+z5+fwiHPCnlNSKaMmVmHoui6Hm9VqpNSikvCiFmALTX1Apa65Eoit4ezP9eEATBOWaeIaILh11VvWZZaz0cx/FHE5Prur5lWbNE1PuvwdoaM7+sVCpD5Pv+LSJ6cJTh/V5mvk0TUnbNEQ0QUf9RljBzfpB5ngrZ1p2d4ufgquu2WZb18H8YAFhUSo2+SJL1xmxrSIXm1jUwL+xsb0x2A2XXdXts275fjwWl1J0kSRaWgExjU8s4iHpozfdPk33sCRht0HqwPdx8A8D2fb+PiO5Vkb9bKpWeAlCFIHcZQsyBsM7q5w3yPO98HMfvVpty1wXRNAPvifRwe7G4dRCTQjbbzCweEdClmUc7tjefmVkKguCHUspNkmR3zXEccfzEOBP1E3jiS3HjsVlyKttyk0ETxJzX379Nnk3T1HXdBsuyQkPjLIBLhpIoil6bgdUg1ymEMPlM9Yqy1nqoI9xcMbGU8kqV+sU9Jfq+b9Q3DWCXiEbCMPywBNgnm3K9IFJftzZedQNqX60AGgCMlkql5T+84HlenxBiHMCK1nosjuNP5gPP884IIYyxOrXWk3EcG0D33l9mMmdLKY2wxgDkmdkmoj5mnoqiaB5Aua6ZalXoOI6TyWQGTL5cLs+naZrWU+ov0nbwkn/Mu3MAAAAASUVORK5CYII=);
  width: 16px;
  height: 15.6px;
  margin-right: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-first-nav-box .banner-first-nav-list .banner-first-nav-li-active[data-v-7fd4f5f4] {
  background-color: #fff;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box[data-v-7fd4f5f4] {
  position: absolute;
  top: 56px;
  left: 170px;
  height: 364px;
  width: 380px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 0 6px 6px 6px;
  -webkit-box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.16);
  padding: 25px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box .banner-second-nav-box-title[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box .banner-second-nav-list[data-v-7fd4f5f4] {
  padding-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box .banner-second-nav-list .banner-second-nav-li[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #555;
  margin: 0 24px 16px 0;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box .banner-second-nav-list .banner-second-nav-li[data-v-7fd4f5f4]:hover {
  font-size: 14px;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-nav-wrap .banner-nav-box .banner-second-nav-box .banner-second-nav-box-title[data-v-7fd4f5f4]::before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAj5JREFUOE+VU09IFFEY/31vBlpIagxm3ozuatDFo5kHoUtSkLcuUh08eNMIwYNSgaGSUKBQIJHe9tChokPdDAy9BB1Mt5uXDunq7MxATmG0wdv3xZM1bFsL3+37+z5+fwiHPCnlNSKaMmVmHoui6Hm9VqpNSikvCiFmALTX1Apa65Eoit4ezP9eEATBOWaeIaILh11VvWZZaz0cx/FHE5Prur5lWbNE1PuvwdoaM7+sVCpD5Pv+LSJ6cJTh/V5mvk0TUnbNEQ0QUf9RljBzfpB5ngrZ1p2d4ufgquu2WZb18H8YAFhUSo2+SJL1xmxrSIXm1jUwL+xsb0x2A2XXdXts275fjwWl1J0kSRaWgExjU8s4iHpozfdPk33sCRht0HqwPdx8A8D2fb+PiO5Vkb9bKpWeAlCFIHcZQsyBsM7q5w3yPO98HMfvVpty1wXRNAPvifRwe7G4dRCTQjbbzCweEdClmUc7tjefmVkKguCHUspNkmR3zXEccfzEOBP1E3jiS3HjsVlyKttyk0ETxJzX379Nnk3T1HXdBsuyQkPjLIBLhpIoil6bgdUg1ymEMPlM9Yqy1nqoI9xcMbGU8kqV+sU9Jfq+b9Q3DWCXiEbCMPywBNgnm3K9IFJftzZedQNqX60AGgCMlkql5T+84HlenxBiHMCK1nosjuNP5gPP884IIYyxOrXWk3EcG0D33l9mMmdLKY2wxgDkmdkmoj5mnoqiaB5Aua6ZalXoOI6TyWQGTL5cLs+naZrWU+ov0nbwkn/Mu3MAAAAASUVORK5CYII=);
  width: 16px;
  height: 15.6px;
  margin-right: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .banner-wrap .banner-item[data-v-7fd4f5f4] {
  background: url(../img/banner-img.854c6985.png) center center no-repeat;
  height: 420px;
  width: 100vw;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap[data-v-7fd4f5f4] {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
  padding: 48px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap[data-v-7fd4f5f4] .el-col {
  margin-bottom: 20px !important;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn[data-v-7fd4f5f4] {
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 90px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 19px 8px 0px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-btn-long-img-title[data-v-7fd4f5f4] {
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
  text-shadow: 0px 3px 6px #085DD0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-into-btn[data-v-7fd4f5f4] {
  width: 70px;
  height: 20px;
  color: #933A02;
  font-size: 10px;
  border-radius: 10px;
  line-height: 20px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#FED691), to(#FCBC50));
  background: linear-gradient(to right, #FED691 0%, #FCBC50 100%);
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-btn-title-box .fast-btn-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-btn-title-box .fast-btn-arrow-icon[data-v-7fd4f5f4] {
  margin: 5px 0;
  width: 19px;
  height: 19px;
  display: block;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-btn-title-box .fast-btn-arrow-hover[data-v-7fd4f5f4] {
  margin: 5px 0;
  width: 19px;
  height: 19px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn .fast-btn-icon[data-v-7fd4f5f4] {
  width: 52px;
  height: 52px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn:hover .fast-btn-title-box .fast-btn-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn:hover .fast-btn-title-box .fast-btn-arrow-icon[data-v-7fd4f5f4] {
  margin: 5px 0;
  width: 19px;
  height: 19px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn:hover .fast-btn-title-box .fast-btn-arrow-hover[data-v-7fd4f5f4] {
  margin: 5px 0;
  width: 19px;
  height: 19px;
  display: block;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-red[data-v-7fd4f5f4] {
  background: url(../img/home-index-fast-btn-bg-red.4a8dcd12.png) center center no-repeat;
  background-size: 100% 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-blue[data-v-7fd4f5f4] {
  background: url(../img/home-index-fast-btn-bg-blue.22cc98f3.png) center center no-repeat;
  background-size: 100% 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-orange[data-v-7fd4f5f4] {
  background: url(../img/home-index-fast-btn-bg-orange.da50f802.png) center center no-repeat;
  background-size: 100% 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-purple[data-v-7fd4f5f4] {
  background: url(../img/home-index-fast-btn-bg-purple.e06beea8.png) center center no-repeat;
  background-size: 100% 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-long-img[data-v-7fd4f5f4] {
  display: block;
  height: 90px;
  border-radius: 6px 6px 6px 6px;
  background: url(../img/fast-btn-long-img.437d91ba.png) center center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#5ACBFC), to(#1696FA));
  background: url(../img/fast-btn-long-img.437d91ba.png) center center no-repeat, linear-gradient(to bottom, #5ACBFC 0%, #1696FA 100%);
  background-size: 100% 90px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray[data-v-7fd4f5f4] {
  cursor: pointer;
  height: 90px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0 16px;
  background-color: #F8FAFC;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray .fast-btn-title[data-v-7fd4f5f4] {
  font-size: 16px;
  color: #191919;
  margin: 0;
  font-weight: 500;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray .fast-btn-icon-default[data-v-7fd4f5f4] {
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray .fast-btn-icon-hover[data-v-7fd4f5f4] {
  display: none;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray[data-v-7fd4f5f4]:hover {
  background-color: #EF4444;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray:hover .fast-btn-title[data-v-7fd4f5f4] {
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray:hover .fast-btn-icon-default[data-v-7fd4f5f4] {
  display: none;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .fast-btn-wrap .fast-btn-gray:hover .fast-btn-icon-hover[data-v-7fd4f5f4] {
  display: block;
  margin: 0 auto;
  width: 32px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .living-wrap[data-v-7fd4f5f4] {
  width: 100%;
  max-width: 1536px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  max-width: 1536px;
  margin: 0 auto;
  min-height: 100px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] .el-tabs__nav-wrap::after {
  background-color: #fff;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] .el-tabs__item {
  font-size: 20px;
  color: #555555;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] .is-active {
  font-size: 24px;
  font-weight: bold;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] .el-tabs__item:hover {
  font-weight: bold;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center[data-v-7fd4f5f4] .el-tabs__active-bar {
  width: 80px;
  height: 6px;
  border-radius: 3px;
  background-color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-init-area[data-v-7fd4f5f4] {
  border: 1px dotted #409EFF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn .template-edit-main-init-area-btn-icon[data-v-7fd4f5f4] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn .template-edit-main-init-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area[data-v-7fd4f5f4] {
  padding-bottom: 5px;
  /* 分类 */
  /* 初始布局占位 */
  /* 内部大模块 */
  /* 内部中模块 */
  /* 内部2*2模块 */
  /* 超大模块 */
  /* 通栏广告 */
  /* 文本编辑框 */
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box:hover .tools-box[data-v-7fd4f5f4] {
  display: block;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box[data-v-7fd4f5f4] {
  height: 50px;
  margin-bottom: 5px;
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box[data-v-7fd4f5f4] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box .tools-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box .tools-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 28px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title-icon[data-v-7fd4f5f4] {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title[data-v-7fd4f5f4] {
  color: #191919;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title-link-tag[data-v-7fd4f5f4] {
  color: #555;
  font-size: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-divider[data-v-7fd4f5f4] {
  background-color: #EEE;
  margin: 0 20px !important;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap[data-v-7fd4f5f4] {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 !important;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box[data-v-7fd4f5f4] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box .tools-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box .tools-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap:hover .tools-box[data-v-7fd4f5f4] {
  display: block;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area:hover .tools-box[data-v-7fd4f5f4] {
  display: block;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area[data-v-7fd4f5f4] {
  border: 1px dotted #409EFF;
  padding: 20px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box[data-v-7fd4f5f4] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box .tools-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box .tools-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-icon[data-v-7fd4f5f4] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 10px;
  background: #409EFF;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 5px 0 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn .init-img-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn .init-img-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn .init-text-components-area-btn-icon[data-v-7fd4f5f4] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn .init-text-components-area-btn-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap[data-v-7fd4f5f4] {
  background-color: #F8FAFC;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box[data-v-7fd4f5f4] {
  padding: 56px 0;
  max-width: 1536px;
  margin: 0 auto;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-logo-box .footer-logo-top[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-logo-box .footer-logo-top .footer-logo[data-v-7fd4f5f4] {
  width: 82px;
  height: 82px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-logo-box .footer-logo-top .footer-web-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  color: #191919;
  text-align: left;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-logo-box .footer-logo-bottom[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 22px;
  color: #191919;
  text-align: left;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-map-box[data-v-7fd4f5f4] {
  border-left: 1px solid #EEEEEE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-map-box .footer-map-list .footer-map-list-title[data-v-7fd4f5f4] {
  font-size: 18px;
  font-weight: bold;
  color: #191919;
  margin-bottom: 32px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-map-box .footer-map-list .footer-map-li[data-v-7fd4f5f4] {
  font-size: 14px;
  margin-bottom: 25px;
  color: #555;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-map-box .margin-lr[data-v-7fd4f5f4] {
  margin: 0 48px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-qr-code-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-qr-code-box .footer-qr-code-li[data-v-7fd4f5f4] {
  margin: 0 15px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-qr-code-box .footer-qr-code-li .footer-qr-code[data-v-7fd4f5f4] {
  width: 120px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-main-box .footer-qr-code-box .footer-qr-code-li .footer-qr-code-title[data-v-7fd4f5f4] {
  text-align: center;
  font-size: 15px;
  color: #555;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-copyright-wrap[data-v-7fd4f5f4] {
  border-top: 1px solid #EEEEEE;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-copyright-wrap .footer-copyright-box[data-v-7fd4f5f4] {
  padding: 10px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1536px;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-copyright-wrap .footer-copyright-box .footer-copyright[data-v-7fd4f5f4] {
  margin: 0 0 10px;
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .pc-view-page-wrap .footer-wrap .footer-copyright-wrap .footer-copyright-box .footer-info[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 14px;
  color: #707070;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap[data-v-7fd4f5f4] {
  padding-top: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box[data-v-7fd4f5f4] {
  margin: 0 auto;
  border-radius: 20px;
  background-color: #333;
  width: 425px;
  height: 765px;
  padding: 25px 25px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main[data-v-7fd4f5f4] {
  width: 375px;
  height: 695px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-tabbar[data-v-7fd4f5f4] {
  position: absolute;
  bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 375px;
  height: 55px;
  border-top: 1px solid #D9DBDE;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 23px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-tabbar .h5-tabbar-item[data-v-7fd4f5f4] {
  width: 30px;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-tabbar .h5-tabbar-item .h5-tabbar-item-icon[data-v-7fd4f5f4] {
  width: 30px;
  height: 26px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-tabbar .h5-tabbar-item .h5-tabbar-item-title[data-v-7fd4f5f4] {
  text-align: center;
  font-size: 12px;
  color: #B3B7BE;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-tabbar .h5-tabbar-item .red_color[data-v-7fd4f5f4] {
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap[data-v-7fd4f5f4] {
  width: 382px;
  height: 695px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box[data-v-7fd4f5f4] {
  width: 375px;
  padding-bottom: 75px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 124px;
  background-color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box .h5-header[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  padding: 13px 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box .h5-header .h5-header-left[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box .h5-header .h5-header-left .h5-header-logo[data-v-7fd4f5f4] {
  width: 34px;
  height: 34px;
  margin: 0 8px 0 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box .h5-header .h5-header-left .h5-header-title[data-v-7fd4f5f4] {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-header-box .h5-header .h5-header-right[data-v-7fd4f5f4] {
  width: 22px;
  height: 22px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-banner-box[data-v-7fd4f5f4] {
  width: 351px;
  height: 130px;
  margin: -65px auto 0;
  border-radius: 5px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-banner-box[data-v-7fd4f5f4] .el-carousel__arrow {
  display: none !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-banner-box .h5-banner-li[data-v-7fd4f5f4] {
  width: 351px;
  height: 130px;
  background: url(../img/h5-banner-img.75d7e702.png) center center no-repeat;
  background-size: auto 100%;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-banner-box[data-v-7fd4f5f4] .el-carousel__indicators .el-carousel__button {
  height: 6px !important;
  width: 6px !important;
  border-radius: 3px !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-banner-box[data-v-7fd4f5f4] .el-carousel__indicators .is-active .el-carousel__button {
  width: 13px !important;
  height: 6px !important;
  border-radius: 3px !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-fast-btn-box[data-v-7fd4f5f4] {
  padding: 30px 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-fast-btn-box .h5-fast-btn-li[data-v-7fd4f5f4] {
  width: 88px;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-fast-btn-box .h5-fast-btn-li .h5-fast-btn-icon[data-v-7fd4f5f4] {
  width: 33px;
  height: 33px;
  margin-bottom: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-fast-btn-box .h5-fast-btn-li .h5-fast-btn-title[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #191919;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box[data-v-7fd4f5f4] {
  padding: 25px 12px 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-box-title[data-v-7fd4f5f4] {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 13px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-line-box[data-v-7fd4f5f4] {
  width: 7px;
  padding-top: 7px;
  margin-right: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-line-box .h5-living-line-piont[data-v-7fd4f5f4] {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #CE0020;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-line-box .h5-living-line-line[data-v-7fd4f5f4] {
  margin: 0 auto;
  width: 2px;
  height: 97px;
  background-color: #DDDDDD;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box[data-v-7fd4f5f4] {
  width: 330px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-bottom: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .h5-living-tag[data-v-7fd4f5f4] {
  font-size: 12px;
  padding: 3px 5px;
  background-color: #D01C1F;
  color: #fff;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .h5-living-tag .h5-living-tag-component[data-v-7fd4f5f4] {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .h5-living-tag .h5-living-tag-title[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .orange_tag[data-v-7fd4f5f4] {
  background-color: #D87706;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .gray_tag[data-v-7fd4f5f4] {
  background-color: #92A2AF;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-title-box .h5-living-title[data-v-7fd4f5f4] {
  font-size: 16px;
  font-weight: bold;
  color: #191919;
  margin: 0;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-time-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-time-box .h5-living-date[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #191919;
  margin-right: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-time-box .h5-living-time[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-time-box .h5-living-time span[data-v-7fd4f5f4] {
  font-size: 17px;
  font-weight: bold;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-info-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-info-box .h5-living-course[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #191919;
  width: 220px;
  height: 19px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-info-box .h5-living-course .h5-living-spec[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #707070;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-info-box .h5-living-teacher-name[data-v-7fd4f5f4] {
  width: 77px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #191919;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-intro-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-intro-box .h5-living-intro[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #707070;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 220px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-intro-box .h5-living-btn[data-v-7fd4f5f4] {
  font-size: 13px;
  color: #fff;
  background-color: #D01C1F;
  width: 77px;
  height: 28px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-intro-box .h5-living-btn .h5-living-btn-icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 14px;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-living-box .h5-living-list .h5-living-li .h5-living-li-box .h5-living-intro-box .h5-living-btn span[data-v-7fd4f5f4] {
  font-size: 13px;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box[data-v-7fd4f5f4] {
  position: relative;
  height: 32px;
  margin-bottom: 15px;
  border-bottom: 1px solid #F6F7F8;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box .h5-main-tab-bottom[data-v-7fd4f5f4] {
  position: absolute;
  height: 4px;
  width: 22px;
  border-radius: 2px;
  background-color: #D01C1F;
  bottom: 0;
  left: 26px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box .h5-main-tab-list[data-v-7fd4f5f4] {
  overflow-x: auto;
  white-space: nowrap;
  margin: 0 12px;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box .h5-main-tab-list .h5-main-tab-item[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #555555;
  margin: 0 10px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box .h5-main-tab-list .h5-main-tab-item-active[data-v-7fd4f5f4] {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-main-tab-box .h5-main-tab-list[data-v-7fd4f5f4]::-webkit-scrollbar {
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 12px;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box .h5-industry-category-title-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box .h5-industry-category-title-box .h5-industry-category-icon[data-v-7fd4f5f4] {
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box .h5-industry-category-title-box .h5-industry-category-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box .h5-industry-category-link-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-category-box .h5-industry-category-link-box .h5-industry-category-link[data-v-7fd4f5f4] {
  margin-left: 10px;
  font-size: 12px;
  color: #555555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box[data-v-7fd4f5f4] {
  padding: 0 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-fast-btn-box .h5-industry-intro-fast-btn[data-v-7fd4f5f4] {
  display: inline-block;
  width: 73px;
  height: 26px;
  font-size: 13px;
  color: #707070;
  background-color: #F9FAFB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-fast-btn-box .fast-btn-left[data-v-7fd4f5f4] {
  margin-right: 9px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-fast-btn-box .fast-btn-center[data-v-7fd4f5f4] {
  margin: 0 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-fast-btn-box .fast-btn-right[data-v-7fd4f5f4] {
  margin-left: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-detail[data-v-7fd4f5f4] {
  padding: 0;
  font-size: 13px;
  line-height: 1.5rem;
  color: #555555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-detail[data-v-7fd4f5f4] p {
  padding: 0;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-intro-box .h5-industry-intro-detail-btn[data-v-7fd4f5f4] {
  display: block;
  width: 295px;
  height: 33px;
  border-radius: 3px;
  background-color: #F9FAFB;
  color: #191919;
  font-size: 13px;
  text-align: center;
  line-height: 33px;
  margin: 20px auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box[data-v-7fd4f5f4] {
  margin: 0 12px 20px;
  width: 341px;
  height: 315px;
  padding: 5px;
  white-space: nowrap;
  overflow-x: auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li[data-v-7fd4f5f4] {
  width: 265px;
  height: 315px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-title[data-v-7fd4f5f4] {
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: bold;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  background: -webkit-gradient(linear, left top, left bottom, from(#FDC36E), to(#BC7606));
  background: linear-gradient(180deg, #FDC36E 0%, #BC7606 100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main[data-v-7fd4f5f4] {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe8c7), color-stop(15%, rgba(239, 221, 202, 0)));
  background: linear-gradient(to bottom, #ffe8c7 0%, rgba(239, 221, 202, 0) 15%);
  padding: 0 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-tag-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 11px 0;
  height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-tag-box .h5-industry-pack-tag[data-v-7fd4f5f4] {
  height: 30px;
  padding: 0 10px;
  border-radius: 5px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  color: #D87706;
  background-color: #F4E2CE;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-course-list[data-v-7fd4f5f4] {
  height: 69px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-course-list .h5-industry-pack-course-li[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-course-list .h5-industry-pack-course-li .h5-industry-pack-course-li-icon[data-v-7fd4f5f4] {
  width: 10px;
  height: 9px;
  margin-right: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-course-list .h5-industry-pack-course-li .h5-industry-pack-course-li-title[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #191919;
  margin: 0;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-course-list .h5-industry-pack-course-li .h5-industry-pack-course-li-title .h5-industry-pack-course-li-spec-box[data-v-7fd4f5f4] {
  font-size: 10px;
  color: #707070;
  margin: 0;
  margin-left: 5px;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-more-link-btn[data-v-7fd4f5f4] {
  display: block;
  font-size: 11px;
  color: #D01C1F;
  margin-bottom: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-teacher-list[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  height: 56px;
  margin-bottom: 22px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-teacher-list .h5-industry-pack-teacher-li .h5-industry-pack-teacher-photo[data-v-7fd4f5f4] {
  width: 36px;
  height: 36px;
  border-radius: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-teacher-list .h5-industry-pack-teacher-li .h5-industry-pack-teacher-name[data-v-7fd4f5f4] {
  font-size: 12px;
  text-align: center;
  color: #707070;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-teacher-list .margin-left[data-v-7fd4f5f4] {
  margin-left: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-btn-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-btn-box .h5-industry-pack-bottom-btn[data-v-7fd4f5f4] {
  width: 100px;
  height: 28px;
  font-size: 13px;
  color: #D01C1F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #D01C1F;
  border-radius: 20px;
  text-align: center;
  line-height: 28px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .h5-industry-pack-li .h5-industry-pack-li-main .h5-industry-pack-btn-box .red_btn[data-v-7fd4f5f4] {
  background-color: #D01C1F;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-pack-box[data-v-7fd4f5f4]::-webkit-scrollbar {
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap[data-v-7fd4f5f4] {
  width: 351px;
  margin: 0 12px 20px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap[data-v-7fd4f5f4] .el-carousel__arrow {
  display: none !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap[data-v-7fd4f5f4] .el-carousel__indicator .el-carousel__button {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #DDDDDD;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap[data-v-7fd4f5f4] .is-active .el-carousel__button {
  width: 19px;
  height: 6px;
  border-radius: 3px;
  background-color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-title[data-v-7fd4f5f4] {
  height: 53px;
  background-color: #FAD5A4;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 53px;
  color: #933A00;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main[data-v-7fd4f5f4] {
  padding: 0 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list[data-v-7fd4f5f4] {
  height: 149px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 19px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-title-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 110px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-title-box .h5-industry-course-detail-li-icon[data-v-7fd4f5f4] {
  width: 14px;
  height: 15px;
  margin-right: 6px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-title-box .h5-industry-course-detail-li-title[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #191919;
  margin: 0;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-info-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 120px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-info-box .h5-industry-course-detail-li-info-section[data-v-7fd4f5f4] {
  width: 48%;
  font-size: 13px;
  text-align: right;
  margin: 0;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-info-box .h5-industry-course-detail-li-info-line[data-v-7fd4f5f4] {
  font-size: 13px;
  text-align: center;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-info-box .h5-industry-course-detail-li-info-time[data-v-7fd4f5f4] {
  width: 48%;
  font-size: 13px;
  text-align: left;
  margin: 0;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-list .h5-industry-course-detail-li .h5-industry-course-detail-li-btn[data-v-7fd4f5f4] {
  width: 80px;
  height: 23px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #CE0020;
  color: #CE0020;
  text-align: center;
  line-height: 23px;
  font-size: 12px;
  border-radius: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-more-link-btn[data-v-7fd4f5f4] {
  font-size: 11px;
  color: #D01C1F;
  display: block;
  margin-block: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-teacher-list[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-teacher-list .h5-industry-course-detail-teacher-li .h5-industry-course-detail-teacher-photo[data-v-7fd4f5f4] {
  width: 36px;
  height: 36px;
  border-radius: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-teacher-list .h5-industry-course-detail-teacher-li .h5-industry-course-detail-teacher-name[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 12px;
  color: #707070;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-course-detail-wrap .h5-industry-course-detail-box .h5-industry-course-detail-main .h5-industry-course-detail-teacher-list .margin-left[data-v-7fd4f5f4] {
  margin-left: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 351px;
  margin: 0 12px 20px;
  padding: 16px 12px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-list .h5-industry-single-course-li[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-list .h5-industry-single-course-li .h5-industry-single-course-li-title[data-v-7fd4f5f4] {
  margin: 0;
  font-size: 14px;
  color: #191919;
  width: 150px;
  overflow: hidden; /*溢出部分隐藏*/
  white-space: nowrap; /*文本不换行*/
  text-overflow: ellipsis; /*当对象内文本溢出时显示省略标记（...）*/
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-list .h5-industry-single-course-li .h5-industry-single-course-li-btn-box[data-v-7fd4f5f4] {
  width: 173px;
  height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-list .h5-industry-single-course-li .h5-industry-single-course-li-btn-box .h5-industry-single-course-li-btn[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 80px;
  height: 23px;
  border-radius: 14px;
  border: 1px solid #CE0020;
  color: #CE0020;
  font-size: 12px;
  text-align: center;
  line-height: 23px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-list .h5-industry-single-course-li .h5-industry-single-course-li-btn-box .red_btn[data-v-7fd4f5f4] {
  background-color: #CE0020;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-more-link-btn[data-v-7fd4f5f4] {
  font-size: 11px;
  color: #D01C1F;
  display: block;
  margin-block: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-fast-btn-list[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-course-box .h5-industry-single-course-fast-btn-list .h5-industry-single-course-fast-btn[data-v-7fd4f5f4] {
  width: 43px;
  height: 43px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG4AAABuCAYAAADGWyb7AAAAAXNSR0IArs4c6QAABYxJREFUeF7tmG9o1HUcx9/fO91WbepWuQpJVmSSZC17IpS1B2kUNOhBkCIJRQX1QAgSSpeh/aGCCMGyP2ugLKkosQQxyGBQ+GDlZnPeZnMNvd3mdq45b3fn3X3jtpz/puLu9/705L1n2+/3fb2P14vf3TaHy3z5eHwmcqlawD8JYD7gboFD2eXO6NpVGvA4CfhjAA4hjO/gS3a6iop/rkRxk93gR/oqkcq+Bo/n4VzJlSC6HqAB75Nw2ILi8DuutLLvUuSLwvl47+PwaAQwI8CXI9TVGxhGyK105TftnOzoRDjvvUM89gaAOgCTPolXv60TBRrwuZOn3grNvb3OOefPZZ0NF+9bAZ/bVuCQjhMMjOxrqSt77NENF4XzJ3prkMMeANMIu0IWaMBns7n+Ld/UVa5b/bbD+JM39sT5gegOOFdbIF/HiQYSzW3dHUtfWFGNv34dC+dPxmYj7WP6XCNaDwDtvUdk8dMNic7oe4vQ2e58PPoivPs4ALYQZAP9m7Y2Rdd/sr0aXZudH+j9BQ4PkTeFD8BA4kDkaOfDq3ZlEFrj/GDvEICZAXCFIBvIjSbTrXNqGjzQ6PxANAnnismbwgdgwGcy2ZbKB78IAW35J+68P+wC4AtBNLD/+sWfAhhVOKJkBno8nMsoHMMukfnfEweFI0pmoBWOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJhSOYdWAqXAGkhkTCsewasBUOAPJjAmFY1g1YCqcgWTGhMIxrBowFc5AMmNC4RhWDZgKZyCZMaFwDKsGTIUzkMyYUDiGVQOmwhlIZkwoHMOqAVPhDCQzJs6GG4gm4VwxY0TMYA3kRpPp1jk1DXmq84O93QDmBjshGsNAJnZ86M8FT3w9Hm4gugPO1TKGxAzWQKK5rbtj6XN7AIw6PxhdDbgPg50QjWGgf9PWpuj6ze0eri//xM2Hc+2MITGDNRCpeaZxtLVjBAi1uDzaD0Z3A25ZsDOiBWngnLdJeKBxPNzw8TuRPt2i3y6DVB0cy2cy2UNLVn6VinQn8tQsil4fCzcWb6B3FRy+DG5OpKAMxN79bG/s/frOcV6opRpdmyfC5X+UjrR9MP2GileCGhSncAPx7buae17a2DxOcpkwStcuxIET54XLX4rXb3t11rIHNriS4qLCZ0WYqgGfTKWPrvvo58H673sm3hXhG+7D37+NJZwMfPiR5atuXvPsm9dW33XrVId1buoGEn8c7Ol5eWNT8tCRU2coObgfF+HID2e+nzRc/uLvqLqn4qmla0uX3F91zYI7ZhfNrigLl8+4zhUXT5/6S9LJCw34VOp0Zmg4cbovPpw8eLh/eO++Y0Pf/hQ7+5QhOQ2hzxei68C5Zy8ZLn9TK+4uz2JkOeAXSvn/YcC1hlHamP9Mu3D9suHO3Lwft80DMA/wVTngRgCzHLz+MR1gSw+XCgFDAI5nge4wXORedHVcauJfECUfR0luHPkAAAAASUVORK5CYII=) center center no-repeat;
  background-size: cover;
  font-size: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6px 7px;
  text-align: center;
  letter-spacing: 2px;
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-time-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 12px 20px;
  padding: 15px 18px;
  width: 351px;
  height: 91px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  background: url(../img/h5-industry-exam-bg.88163e51.png) center center no-repeat;
  background-size: cover;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-time-box .h5-industry-exam-time-date[data-v-7fd4f5f4] {
  color: #555555;
  font-size: 14px;
  margin: 0 0 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-time-box .h5-industry-exam-time-day[data-v-7fd4f5f4] {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
  height: 32px;
  line-height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-time-box .h5-industry-exam-time-day .h5-industry-exam-day-text[data-v-7fd4f5f4] {
  display: inline-block;
  height: 32px;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-time-box .h5-industry-exam-time-day .h5-industry-exam-day-num[data-v-7fd4f5f4] {
  margin: 0 2px;
  display: inline-block;
  width: 25px;
  height: 32px;
  font-size: 27px;
  line-height: 32px;
  text-align: center;
  font-weight: bold;
  color: #D01C1F;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABACAYAAACKhS4jAAAAAXNSR0IArs4c6QAAAq1JREFUaEPtmr9rU1Ecxc95+dEa2gRTWxInncQi4iLVP6Fb/QcEp7pJcXAStZODg7rYQRfBxa2jo6DQOglC8UeFFqxNVGqTJmKbvnvkRVvbotDeF3r74Abe8B73nO+5n/fNg5d8iR0fVSrnjMElQicBDILs27lm386ltyBmCEyjVLpP8ufW2tw4kdRtKl9uEboKILVvAXdbSHpH4iLL5VcbknZ4VaunFZqnIE/s1svRulDgnaA0cJ1kqx0+XKzeJnTNUaC9lZWWmEmfYn//IlWtnpfRCwDB3lwcrhYmg6OlEYaVygSFUYdRrEoTOk6zWJkCMGTl4FBEBcNR+GUABYc5rEpTGIvCy0rtWCRoPLnhU8G95IZPp54kNjxSwbPkhk+nnvvwTh48nrwT7AA8eU/egoBvGwtoHZF48h3BaGHiyVtA64jEk+8IRguT5JP/tJDIF3Bk0tM07z8kMryy2Xkf3uLrFlviycdGaGngyVuCiy3z5GMjtDTw5C3BxZZ58rERWhp48pbgYss8+dgILQ08eUtwsWWefGyElgaJJo+urjma2Y+CMZb7dydjLveS4fy8uLrmLoVlZfYVH1ILn6Vm09LCkYwEB/rHqVpN+voNSWod9uaBXPc4Va9PYXV1SMs1QAf/xzNlMwiKxeiWX4jCTwAYRfMH1Ggc6A0onUZQPAwEQXSUqZWVy5AetLvXGJil7+D6uqNm/k/ZqMd7e4HcoY0FVebzJUoqoF5/DfLYpjR6dK6tAa0WjHHTShTAbCb6mx7IZrfvShpjoXD390Rrs3kWYRhN+SVhtnKS+fxIlPvvLHGtdhPkjYPVLzvSSHPI58+QrG0L/+cOlBGGjwAMH6hNSNH45BUWCo+35tokv/WiGo0SpMH2CLoxR5xsJAhaAGZBzrCn582/MvwCcDOkN2JsVSYAAAAASUVORK5CYII=) center center no-repeat;
  background-size: cover;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-news-list[data-v-7fd4f5f4] {
  width: 351px;
  margin: 0 12px 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-news-list .h5-industry-news-li[data-v-7fd4f5f4] {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-news-list .h5-industry-news-li .h5-industry-news-li-point[data-v-7fd4f5f4] {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #DDDDDD;
  border-radius: 3px;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-news-list .h5-industry-news-li .h5-industry-news-li-text[data-v-7fd4f5f4] {
  width: 335px;
  display: block;
  font-size: 14px;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box[data-v-7fd4f5f4] {
  width: 351px;
  margin: 0 12px 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-title[data-v-7fd4f5f4] {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .images img[data-v-7fd4f5f4] {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box[data-v-7fd4f5f4] {
  width: 64%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box .btn[data-v-7fd4f5f4] {
  color: #D01C1F;
  border-radius: 14px;
  border: 1px solid #D01C1F;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  width: 80px;
  height: 23px;
  line-height: 23px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box .price[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box .text[data-v-7fd4f5f4] {
  display: -webkit-box;
  font-weight: normal;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box .currentPrice[data-v-7fd4f5f4] {
  color: #ff4142;
  font-size: 18px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-goods-list .price_box .originPrice[data-v-7fd4f5f4] {
  font-size: 15px;
  text-decoration: line-through;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box[data-v-7fd4f5f4] .el-carousel__arrow {
  display: none !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box[data-v-7fd4f5f4] .el-carousel__indicators {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box[data-v-7fd4f5f4] .el-carousel__indicator {
  padding: 12px 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box[data-v-7fd4f5f4] .el-carousel__indicator .el-carousel__button {
  width: 87px;
  height: 3px;
  background-color: #F9FAFB;
  opacity: 1 !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box[data-v-7fd4f5f4] .is-active .el-carousel__button {
  width: 87px;
  height: 3px;
  background-color: #555555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box .h5-industry-teacher-list[data-v-7fd4f5f4] {
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box .h5-industry-teacher-list .h5-industry-teacher-li[data-v-7fd4f5f4] {
  width: 60px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box .h5-industry-teacher-list .h5-industry-teacher-li .h5-industry-teacher-photo[data-v-7fd4f5f4] {
  width: 60px;
  height: 60px;
  border-radius: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box .h5-industry-teacher-list .h5-industry-teacher-li .h5-industry-teacher-name[data-v-7fd4f5f4] {
  font-size: 13px;
  color: #555555;
  margin: 0 0 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-famous-teacher-box .h5-industry-famous-teacher-list-box .h5-industry-teacher-list .margin-left[data-v-7fd4f5f4] {
  margin-left: 29px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box[data-v-7fd4f5f4] {
  width: 375px;
  height: 117px;
  border-radius: 3px;
  background-color: #F9FAFB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-title[data-v-7fd4f5f4] {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-item[data-v-7fd4f5f4] {
  width: 45%;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-item .h5-industry-upload-total-info-top[data-v-7fd4f5f4] {
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-item .h5-industry-upload-total-info-top .h5-industry-upload-total-info-num[data-v-7fd4f5f4] {
  font-size: 24px;
  font-weight: bold;
  color: #191919;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-item .h5-industry-upload-total-info-top .h5-industry-upload-total-info-icon[data-v-7fd4f5f4] {
  width: 30px;
  height: 23px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-item .h5-industry-upload-total-info-bottom[data-v-7fd4f5f4] {
  text-align: center;
  font-size: 16px;
  color: #555555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-upload-total-box .h5-industry-upload-total-info-box .h5-industry-upload-total-info-line[data-v-7fd4f5f4] {
  width: 1px;
  height: 32px;
  background-color: #DDDDDD;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-intro-fast-btn-box[data-v-7fd4f5f4] {
  width: 351px;
  margin: 0 12px 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-intro-fast-btn-box .h5-industry-intro-fast-btn-box-title[data-v-7fd4f5f4] {
  font-size: 18px;
  color: #191919;
  font-weight: bold;
  text-align: center;
  margin-bottom: 13px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-intro-fast-btn-box .h5-industry-intro-fast-btn[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 108px;
  height: 38px;
  border-radius: 5px;
  border: 1px solid #DDDDDD;
  color: #191919;
  background-color: #F9FAFB;
  text-align: center;
  line-height: 38px;
  margin-bottom: 16px;
  font-size: 13px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-intro-fast-btn-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box[data-v-7fd4f5f4] {
  width: 351px;
  height: 316px;
  margin: 0 12px 20px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top[data-v-7fd4f5f4] {
  height: 75px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDC36E), to(#BC7606));
  background: linear-gradient(180deg, #FDC36E 0%, #BC7606 100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top .h5-industry-hot-pack-title-box[data-v-7fd4f5f4] {
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top .h5-industry-hot-pack-title-box .h5-industry-hot-pack-title[data-v-7fd4f5f4] {
  font-size: 21px;
  color: #fff;
  font-weight: bold;
  margin-right: 15px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top .h5-industry-hot-pack-title-box .h5-industry-hot-pack-tag-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top .h5-industry-hot-pack-title-box .h5-industry-hot-pack-tag-box .h5-industry-hot-pack-tag[data-v-7fd4f5f4] {
  display: inline-block;
  width: 38px;
  height: 18px;
  margin-right: 5px;
  border-radius: 3px;
  background-color: #F7F8FC;
  font-size: 11px;
  color: #555;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-top .h5-industry-hot-pack-top-info[data-v-7fd4f5f4] {
  font-size: 11px;
  color: #fff;
  padding: 0 18px;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main[data-v-7fd4f5f4] {
  padding: 20px 15px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe8c7), color-stop(15%, rgba(239, 221, 202, 0)));
  background: linear-gradient(to bottom, #ffe8c7 0%, rgba(239, 221, 202, 0) 15%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-intro[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #555;
  line-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-teacher-list .h5-industry-hot-pack-teacher-li[data-v-7fd4f5f4] {
  display: inline-block;
  width: 36px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-teacher-list .h5-industry-hot-pack-teacher-li .h5-industry-hot-pack-teacher-photo[data-v-7fd4f5f4] {
  width: 36px;
  height: 36px;
  border: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-teacher-list .h5-industry-hot-pack-teacher-li .h5-industry-hot-pack-teacher-name[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin: 0 0 16px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-teacher-list .margin-left[data-v-7fd4f5f4] {
  margin-left: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom .h5-industry-hot-pack-buy[data-v-7fd4f5f4] {
  color: #707070;
  font-size: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom .h5-industry-hot-pack-bottom-right[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom .h5-industry-hot-pack-bottom-right .h5-industry-hot-pack-price[data-v-7fd4f5f4] {
  color: #D01C1F;
  font-size: 14px;
  font-weight: bold;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom .h5-industry-hot-pack-bottom-right .h5-industry-hot-pack-price span[data-v-7fd4f5f4] {
  font-size: 18px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-hot-pack-box .h5-industry-hot-pack-main .h5-industry-hot-pack-bottom .h5-industry-hot-pack-bottom-right .h5-industry-hot-pack-btn[data-v-7fd4f5f4] {
  margin-left: 15px;
  width: 85px;
  height: 28px;
  border-radius: 14px;
  background-color: #D01C1F;
  font-size: 13px;
  text-align: center;
  line-height: 28px;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-adv-img-box[data-v-7fd4f5f4] {
  margin: 0 12px 20px;
  width: 351px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-adv-img-box .h5-industry-adv-img[data-v-7fd4f5f4] {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 254px;
  padding: 20px;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-title[data-v-7fd4f5f4] {
  font-weight: bold;
  font-size: 16px;
  color: #191919;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-input[data-v-7fd4f5f4] {
  width: 100%;
  height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-input-sort[data-v-7fd4f5f4] {
  width: calc(100% - 90px);
  height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] .is-focus .el-input__inner {
  border: 1px solid #B91C1C !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] .el-input__inner {
  height: 30px !important;
  line-height: 30px !important;
  background-color: #F9FAFB;
  border: 1px solid #F9FAFB;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] .el-form-item {
  margin-bottom: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] .el-form-item__content {
  line-height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box[data-v-7fd4f5f4] .el-input__inner:focus {
  border: 1px solid #B91C1C;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-code-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-code-btn[data-v-7fd4f5f4] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  width: 80px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #B91C1C;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  color: #D01C1F;
  border-radius: 3px;
  background-color: #FCF0F2;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-code-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-btn[data-v-7fd4f5f4] {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  display: inline-block;
  width: 100%;
  height: 28px;
  border: 1px solid #D01C1F;
  line-height: 28px;
  text-align: center;
  background-color: #D01C1F;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-exam-notice-box .industry-exam-notice-box .industry-exam-notice-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box[data-v-7fd4f5f4] {
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box[data-v-7fd4f5f4] {
  overflow: hidden;
  position: relative;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .data-setting-btn-wrap[data-v-7fd4f5f4] {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box[data-v-7fd4f5f4] {
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-btn[data-v-7fd4f5f4] {
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .data-setting-btn-wrap .data-setting-btn-box .data-setting-text[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-title[data-v-7fd4f5f4] {
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box[data-v-7fd4f5f4] {
  height: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 5%;
  margin: 5px;
  overflow-y: auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li[data-v-7fd4f5f4] {
  padding-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-li-title[data-v-7fd4f5f4] {
  font-size: 16px;
  width: 80%;
  color: #191919;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  margin-bottom: 8px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 26px;
  margin-bottom: 4px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-title[data-v-7fd4f5f4] {
  width: 50%;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  font-size: 14px;
  color: #555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info[data-v-7fd4f5f4] {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-time-length[data-v-7fd4f5f4] {
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  display: inline-block;
  font-size: 14px;
  color: #555;
  margin-right: 5%;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box .industry-free-listen-play-icon[data-v-7fd4f5f4] {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box .industry-free-listen-list .industry-free-listen-li .industry-free-listen-course .industry-free-listen-course-li .industry-free-listen-course-info .industry-free-listen-play-box .industry-free-listen-play-text[data-v-7fd4f5f4] {
  display: inline-block;
  font-size: 14px;
  color: #F01414;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box[data-v-7fd4f5f4]::-webkit-scrollbar-track-piece {
  background-color: #f0f0f0;
  border-left: 1px solid rgba(0, 0, 0, 0);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box[data-v-7fd4f5f4]::-webkit-scrollbar {
  display: block;
  width: 5px;
  height: 10px;
  -webkit-margin-bottom-collapse: 12px;
  border-radius: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box[data-v-7fd4f5f4]::-webkit-scrollbar-thumb {
  background-color: #d4d4d4;
  background-clip: padding-box;
  border-radius: 5px;
  min-height: 28px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-content-box[data-v-7fd4f5f4]::-webkit-scrollbar-thumb:hover {
  background-color: #dfdfdf;
  border-radius: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box[data-v-7fd4f5f4] {
  height: 50px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button[data-v-7fd4f5f4] {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #B91C1C;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .default_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .hover_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button .industry-free-listen-button-text[data-v-7fd4f5f4] {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button[data-v-7fd4f5f4]:hover {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .default_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .hover_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-free-listen-box .industry-free-listen-box .industry-free-listen-button-box .industry-free-listen-button:hover .industry-free-listen-button-text[data-v-7fd4f5f4] {
  display: inline-block;
  color: #B91C1C;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-usually-question-box .h5-industry-usually-question-img[data-v-7fd4f5f4] {
  width: 351px;
  height: auto;
  margin: 0 12px 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-cross-adv-box[data-v-7fd4f5f4] {
  width: 100%;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-cross-adv-box .h5-industry-cross-adv-img[data-v-7fd4f5f4] {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box[data-v-7fd4f5f4] {
  padding: 24px 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box[data-v-7fd4f5f4] {
  position: relative;
  background-color: #F9FAFB;
  border-radius: 36px;
  height: 32px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
  cursor: pointer;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .industry-small-total-info-hot-icon[data-v-7fd4f5f4] {
  width: 10px;
  height: 12.5px;
  margin-right: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .industry-small-total-info-tag-text[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag .tag_active[data-v-7fd4f5f4] {
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-list .industry-small-total-info-tag:hover .industry-small-total-info-tag-text[data-v-7fd4f5f4] {
  color: #D01C1F;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: absolute;
  top: 4px;
  left: 5px;
  width: 48%;
  height: 24px;
  background-color: #fff;
  border-radius: 36px;
  z-index: 1;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-left[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 5px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-center[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-tag-box .industry-small-total-info-tag-bg-right[data-v-7fd4f5f4] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  left: calc(100% - 5px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list[data-v-7fd4f5f4] {
  overflow: hidden;
  padding: 10px 10px 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list .industry-qs-li[data-v-7fd4f5f4] {
  font-size: 14px;
  color: #555;
  height: 20px;
  margin-bottom: 13px;
  line-height: 20px;
  white-space: nowrap; /* 不换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-qs-list .industry-qs-li[data-v-7fd4f5f4]::before {
  content: ""; /* 使用空的before伪元素 */
  display: inline-block; /* 需要将伪元素设置为inline-block，才能设置宽高 */
  width: 6px; /* 设置项目符号的宽度 */
  height: 6px; /* 设置项目符号的高度 */
  background-color: #EEE; /* 设置项目符号的颜色 */
  border-radius: 50%; /* 项目符号是圆形的，所以我们设置边框半径为50% */
  margin: 3px 8px 3px 0; /* 在项目符号和文本之间添加一些间距 */
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 20px;
  background: #FFFFFF;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box .industry-total-info-fast-btn[data-v-7fd4f5f4] {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 32px;
  display: block;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 32px;
  border: 1px solid #EEE;
  background-color: #F9FAFB;
  color: #707070;
  font-size: 12px;
  margin-bottom: 22px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-fast-btn-box .industry-total-info-fast-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  background-color: #B91C1C;
  border: 1px solid #B91C1C;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box[data-v-7fd4f5f4] {
  height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 10px 11px 0;
  background: url(../img/home-index-industry-exam-time-bg.c1c36489.png) center right no-repeat;
  background-size: auto 100%;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-text[data-v-7fd4f5f4] {
  font-size: 14px;
  height: 28px;
  line-height: 28px;
  color: #555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box .industry-total-info-exam-time-count-text[data-v-7fd4f5f4] {
  color: #191919;
  font-size: 14px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  margin-right: 4px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-time-box .industry-total-info-exam-time-count-box .industry-total-info-exam-time-count-num[data-v-7fd4f5f4] {
  margin-right: 5px;
  font-size: 24px;
  font-weight: bold;
  color: #D01C1F;
  width: 24px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAABACAYAAACKhS4jAAAAAXNSR0IArs4c6QAAAq1JREFUaEPtmr9rU1Ecxc95+dEa2gRTWxInncQi4iLVP6Fb/QcEp7pJcXAStZODg7rYQRfBxa2jo6DQOglC8UeFFqxNVGqTJmKbvnvkRVvbotDeF3r74Abe8B73nO+5n/fNg5d8iR0fVSrnjMElQicBDILs27lm386ltyBmCEyjVLpP8ufW2tw4kdRtKl9uEboKILVvAXdbSHpH4iLL5VcbknZ4VaunFZqnIE/s1svRulDgnaA0cJ1kqx0+XKzeJnTNUaC9lZWWmEmfYn//IlWtnpfRCwDB3lwcrhYmg6OlEYaVygSFUYdRrEoTOk6zWJkCMGTl4FBEBcNR+GUABYc5rEpTGIvCy0rtWCRoPLnhU8G95IZPp54kNjxSwbPkhk+nnvvwTh48nrwT7AA8eU/egoBvGwtoHZF48h3BaGHiyVtA64jEk+8IRguT5JP/tJDIF3Bk0tM07z8kMryy2Xkf3uLrFlviycdGaGngyVuCiy3z5GMjtDTw5C3BxZZ58rERWhp48pbgYss8+dgILQ08eUtwsWWefGyElgaJJo+urjma2Y+CMZb7dydjLveS4fy8uLrmLoVlZfYVH1ILn6Vm09LCkYwEB/rHqVpN+voNSWod9uaBXPc4Va9PYXV1SMs1QAf/xzNlMwiKxeiWX4jCTwAYRfMH1Ggc6A0onUZQPAwEQXSUqZWVy5AetLvXGJil7+D6uqNm/k/ZqMd7e4HcoY0FVebzJUoqoF5/DfLYpjR6dK6tAa0WjHHTShTAbCb6mx7IZrfvShpjoXD390Rrs3kWYRhN+SVhtnKS+fxIlPvvLHGtdhPkjYPVLzvSSHPI58+QrG0L/+cOlBGGjwAMH6hNSNH45BUWCo+35tokv/WiGo0SpMH2CLoxR5xsJAhaAGZBzrCn582/MvwCcDOkN2JsVSYAAAAASUVORK5CYII=) center center no-repeat;
  background-size: 24px 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 11px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-title[data-v-7fd4f5f4] {
  font-weight: bold;
  font-size: 14px;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-input[data-v-7fd4f5f4] {
  width: 100%;
  height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-input-sort[data-v-7fd4f5f4] {
  width: calc(100% - 90px);
  height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] .is-focus .el-input__inner {
  border: 1px solid #B91C1C !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] .el-input__inner {
  height: 30px !important;
  line-height: 30px !important;
  background-color: #F9FAFB;
  border: 1px solid #F9FAFB;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] .el-form-item {
  margin-bottom: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] .el-form-item__content {
  line-height: 30px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box[data-v-7fd4f5f4] .el-input__inner:focus {
  border: 1px solid #B91C1C;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-btn[data-v-7fd4f5f4] {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  width: 80px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #B91C1C;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  color: #D01C1F;
  border-radius: 3px;
  background-color: #FCF0F2;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-code-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: background-color 0.5s ease-out !important;
  transition: background-color 0.5s ease-out !important;
  background-color: #B91C1C;
  color: #fff;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-btn[data-v-7fd4f5f4] {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  display: inline-block;
  width: 100%;
  height: 28px;
  border: 1px solid #D01C1F;
  line-height: 28px;
  text-align: center;
  background-color: #D01C1F;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-integrated-box .industry-small-total-info-box .industry-small-total-info-content-box .industry-small-total-info-content .industry-total-info-exam-notice-box .industry-total-info-exam-notice-btn[data-v-7fd4f5f4]:hover {
  -webkit-transition: all ease-in 0.3s;
  transition: all ease-in 0.3s;
  opacity: 0.8;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box[data-v-7fd4f5f4] {
  margin: 0 12px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px;
  background-color: #F7F8FC;
  width: 351px;
  height: 192px;
  border-radius: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-photo[data-v-7fd4f5f4] {
  width: 85px;
  height: 85px;
  border-radius: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box[data-v-7fd4f5f4] {
  width: 225px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top .h5-industry-single-teacher-name[data-v-7fd4f5f4] {
  font-size: 18px;
  font-weight: bold;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top .h5-industry-single-teacher-btn[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #fff;
  width: 74px;
  height: 23px;
  background-color: #D01C1F;
  text-align: center;
  line-height: 23px;
  border-radius: 11px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box[data-v-7fd4f5f4] {
  height: 22px;
  margin-bottom: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box .h5-industry-single-teacher-tag[data-v-7fd4f5f4] {
  padding: 3px;
  width: 62px;
  height: 16px;
  display: inline-block;
  background-color: #D87706;
  border-radius: 3px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  font-size: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 7px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-top-info[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #707070;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-bottom[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left[data-v-7fd4f5f4] {
  width: 46px;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left .h5-industry-single-teacher-bottom-left-title[data-v-7fd4f5f4] {
  width: 46px;
  height: 22px;
  border-radius: 11px;
  background-color: #F9E9D7;
  line-height: 22px;
  text-align: center;
  color: #D87706;
  font-size: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left .h5-industry-single-teacher-bottom-left-icon[data-v-7fd4f5f4] {
  width: 20px;
  height: 48px;
  margin: 0 auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-single-teacher-box .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-intro[data-v-7fd4f5f4] {
  width: 267px;
  font-size: 13px;
  color: #191919;
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] {
  width: 351px;
  height: 208px;
  border-radius: 4px;
  overflow: hidden;
  margin: 0 12px 20px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-box-title[data-v-7fd4f5f4] {
  text-align: center;
  height: 36px;
  font-size: 14px;
  color: #555555;
  line-height: 36px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(85deg, rgba(202, 135, 23, 0.16) 0%, rgba(202, 135, 23, 0) 100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .el-carousel__arrow {
  display: none !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .el-carousel__indicators {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .el-carousel__indicator {
  padding: 12px 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .el-carousel__indicator .el-carousel__button {
  width: 87px;
  height: 3px;
  background-color: #F9FAFB;
  opacity: 1 !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .is-active .el-carousel__button {
  width: 87px;
  height: 3px;
  background-color: #555555;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box[data-v-7fd4f5f4] .el-carousel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 0px 10px;
  padding-top: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .goodsImage[data-v-7fd4f5f4] {
  height: 110px;
  width: 110px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title[data-v-7fd4f5f4] {
  height: 118px;
  font-size: 18px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title .text[data-v-7fd4f5f4] {
  width: 206px;
  display: -webkit-box;
  font-weight: normal;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis; /* 显示省略号 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title .btn[data-v-7fd4f5f4] {
  width: 80px;
  height: 28px;
  background-color: #D01C1F;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 28px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title .price_box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title .currentPrice[data-v-7fd4f5f4] {
  color: #D01C1F;
  font-size: 16px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .industry-famous-teacher-content-box .title .originPrice[data-v-7fd4f5f4] {
  font-size: 14px;
  text-decoration: line-through;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-title[data-v-7fd4f5f4] {
  height: 36px;
  font-size: 14px;
  color: #555555;
  line-height: 36px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: linear-gradient(85deg, #FDE3D6 0%, rgba(244, 78, 0, 0) 100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-title-pack[data-v-7fd4f5f4] {
  background: linear-gradient(85deg, #F6ECDA 0%, rgba(244, 78, 0, 0) 100%);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main[data-v-7fd4f5f4] {
  padding: 10px;
  margin-bottom: 5px;
  height: 110px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-title[data-v-7fd4f5f4] {
  font-size: 17px;
  font-weight: bold;
  color: #191919;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 8px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-tag-box[data-v-7fd4f5f4] {
  height: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-tag-box .h5-industry-xl-main-tag[data-v-7fd4f5f4] {
  height: 16px;
  display: inline-block;
  font-size: 12px;
  color: #555555;
  background-color: #F7F8FC;
  border-radius: 3px;
  line-height: 16px;
  text-align: center;
  padding: 2px 5px;
  margin-bottom: 3px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-tag-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 6px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-info-box[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-info-box .h5-industry-xl-main-info-item .h5-industry-xl-main-info-item-top[data-v-7fd4f5f4] {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #191919;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-info-box .h5-industry-xl-main-info-item .h5-industry-xl-main-info-item-top span[data-v-7fd4f5f4] {
  font-size: 10px;
  font-weight: lighter;
  color: #707070;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-info-box .h5-industry-xl-main-info-item .h5-industry-xl-main-info-item-bottom[data-v-7fd4f5f4] {
  font-size: 11px;
  font-weight: lighter;
  color: #707070;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-info-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-small-info-box[data-v-7fd4f5f4] {
  font-size: 11px;
  color: #707070;
  margin-bottom: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-intro-box .h5-industry-xl-main-intro[data-v-7fd4f5f4] {
  line-height: 1.5rem;
  font-size: 12px;
  max-height: 46px;
  color: #555555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-main .h5-industry-xl-main-intro-box .h5-industry-xl-more-btn[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #D01C1F;
  float: right;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  padding: 0 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom .h5-industry-xl-bttom-left[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #707070;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom .h5-industry-xl-bttom-right[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom .h5-industry-xl-bttom-right .h5-industry-xl-price[data-v-7fd4f5f4] {
  font-size: 14px;
  font-weight: bold;
  color: #D01C1F;
  margin-right: 15px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom .h5-industry-xl-bttom-right .h5-industry-xl-price span[data-v-7fd4f5f4] {
  font-size: 18px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xl-box .h5-industry-xl-bottom .h5-industry-xl-bttom-right .h5-industry-xl-btn[data-v-7fd4f5f4] {
  width: 80px;
  height: 28px;
  background-color: #D01C1F;
  border-radius: 14px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 28px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box[data-v-7fd4f5f4] {
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-img[data-v-7fd4f5f4] {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-fast-btn-box[data-v-7fd4f5f4] {
  padding: 0 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-fast-btn-box .h5-industry-xxl-industry-fast-btn[data-v-7fd4f5f4] {
  width: 73px;
  height: 26px;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #DDDDDD;
  background-color: #F9FAFB;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  line-height: 26px;
  color: #707070;
  margin-bottom: 16px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-fast-btn-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 18px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-intro[data-v-7fd4f5f4] {
  padding: 0 12px;
  font-size: 13px;
  color: #555555;
  line-height: 1.5rem;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-intro *[data-v-7fd4f5f4] {
  margin: 0;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box[data-v-7fd4f5f4] {
  height: 50px;
  -webkit-box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
          box-shadow: 0px 2px 10px 1px rgba(112, 112, 112, 0.16) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button[data-v-7fd4f5f4] {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #B91C1C;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button .default_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button .hover_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button .industry-free-listen-button-text[data-v-7fd4f5f4] {
  display: inline-block;
  color: #fff;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button[data-v-7fd4f5f4]:hover {
  width: 30%;
  height: 28px;
  border: 1px solid #B91C1C;
  text-align: center;
  background-color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button:hover .default_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: none;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button:hover .hover_icon[data-v-7fd4f5f4] {
  width: 15px;
  height: 15px;
  margin-right: 3px;
  display: inline-block;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .industry-free-listen-button-box .industry-free-listen-button:hover .industry-free-listen-button-text[data-v-7fd4f5f4] {
  display: inline-block;
  color: #B91C1C;
  font-size: 14px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-industry-box .h5-industry-xxl-industry-detail-btn[data-v-7fd4f5f4] {
  width: 271px;
  height: 33px;
  background-color: #F9FAFB;
  line-height: 33px;
  text-align: center;
  color: #191919;
  margin: 0 auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box[data-v-7fd4f5f4] {
  padding: 26px 32px 0;
  background: url(../img/h5-all-teacher-bg.a7f66c0f.png) center top no-repeat;
  background-size: 100% auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .el-carousel--horizontal[data-v-7fd4f5f4] {
  overflow-x: initial !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .el-carousel--horizontal .el-carousel__item[data-v-7fd4f5f4] {
  padding-top: 21px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .el-carousel--horizontal .el-carousel__item .h5-industry-xxl-all-teacher-main[data-v-7fd4f5f4] {
  -webkit-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
  height: 229px !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .el-carousel--horizontal .is-active[data-v-7fd4f5f4] {
  padding-top: 0 !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .el-carousel--horizontal .is-active .h5-industry-xxl-all-teacher-main[data-v-7fd4f5f4] {
  -webkit-transition: all 0.2 ease-in-out;
  transition: all 0.2 ease-in-out;
  height: 250px !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box[data-v-7fd4f5f4] .el-carousel__indicator .el-carousel__button {
  width: 6px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background-color: #DDDDDD !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box[data-v-7fd4f5f4] .el-carousel__indicators {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box[data-v-7fd4f5f4] .is-active .el-carousel__button {
  width: 19px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background-color: #D01C1F !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box[data-v-7fd4f5f4] .el-carousel__arrow {
  display: none !important;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main[data-v-7fd4f5f4] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px;
  background-color: #F7F8FC;
  width: 301px;
  height: 250px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-photo[data-v-7fd4f5f4] {
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box[data-v-7fd4f5f4] {
  width: 185px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top .h5-industry-single-teacher-name[data-v-7fd4f5f4] {
  font-size: 18px;
  font-weight: bold;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-title-top .h5-industry-single-teacher-btn[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #fff;
  width: 74px;
  height: 23px;
  background-color: #D01C1F;
  text-align: center;
  line-height: 23px;
  border-radius: 11px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box[data-v-7fd4f5f4] {
  height: 22px;
  margin-bottom: 12px;
  overflow: hidden;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box .h5-industry-single-teacher-tag[data-v-7fd4f5f4] {
  padding: 3px;
  width: 62px;
  height: 16px;
  display: inline-block;
  background-color: #D87706;
  border-radius: 3px;
  line-height: 16px;
  text-align: center;
  color: #fff;
  font-size: 10px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teahcer-tag-box .margin-left[data-v-7fd4f5f4] {
  margin-left: 7px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-top .h5-industry-single-teacher-title-box .h5-industry-single-teacher-top-info[data-v-7fd4f5f4] {
  font-size: 12px;
  color: #707070;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-bottom[data-v-7fd4f5f4] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left[data-v-7fd4f5f4] {
  width: 46px;
  text-align: center;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left .h5-industry-single-teacher-bottom-left-title[data-v-7fd4f5f4] {
  width: 46px;
  height: 22px;
  border-radius: 11px;
  background-color: #F9E9D7;
  line-height: 22px;
  text-align: center;
  color: #D87706;
  font-size: 12px;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-left .h5-industry-single-teacher-bottom-left-icon[data-v-7fd4f5f4] {
  width: 20px;
  height: 48px;
  margin: 0 auto;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-main .h5-page-wrap .h5-box .h5-industry-xxl-all-teacher-box .h5-industry-xxl-all-teacher-main .h5-industry-single-teacher-box-bottom .h5-industry-single-teacher-bottom-intro[data-v-7fd4f5f4] {
  width: 217px;
  font-size: 13px;
  color: #191919;
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
.template-edit-wrap .total-view-page-wrap .mobile-view-page-wrap .mobile-view-page-border-box .mobile-view-page-home-btn[data-v-7fd4f5f4] {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #fff;
  margin: 7px auto 8px;
}
@media screen and (min-width: 1200px) {
.template-edit-wrap .l-area-box[data-v-7fd4f5f4] {
    width: 37.5%;
}
.template-edit-wrap .m-area-box[data-v-7fd4f5f4] {
    width: 25%;
}
.template-edit-wrap .m-have-inner-area-box[data-v-7fd4f5f4] {
    width: 25%;
}
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.template-edit-wrap .l-area-box[data-v-7fd4f5f4] {
    width: 50%;
}
.template-edit-wrap .m-area-box[data-v-7fd4f5f4] {
    width: 50%;
}
.template-edit-wrap .m-have-inner-area-box[data-v-7fd4f5f4] {
    width: 100%;
}
.template-edit-wrap .top-bar-active-img[data-v-7fd4f5f4], .template-edit-wrap .top-bar-user-name[data-v-7fd4f5f4] {
    display: none;
}
.template-edit-wrap .footer-logo-box[data-v-7fd4f5f4] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
}
.template-edit-wrap .footer-logo-box .footer-logo-top[data-v-7fd4f5f4] {
    margin: 0 !important;
}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
.template-edit-wrap .l-area-box[data-v-7fd4f5f4] {
    width: 100%;
}
.template-edit-wrap .m-area-box[data-v-7fd4f5f4] {
    width: 100%;
}
.template-edit-wrap .top-bar-active-img[data-v-7fd4f5f4], .template-edit-wrap .top-bar-user-name[data-v-7fd4f5f4], .template-edit-wrap .top-bar-search-box[data-v-7fd4f5f4] {
    display: none !important;
}
.template-edit-wrap .footer-logo-box[data-v-7fd4f5f4] {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
}
.template-edit-wrap .footer-logo-box .footer-logo-top[data-v-7fd4f5f4] {
    margin: 0 !important;
}
}
@media screen and (max-width: 768px) {
.template-edit-wrap .footer-logo-box[data-v-7fd4f5f4] {
    display: block !important;
}
.template-edit-wrap .footer-logo-box .footer-logo-top[data-v-7fd4f5f4] {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin-bottom: 16px !important;
}
.template-edit-wrap .footer-logo-box .footer-logo-bottom[data-v-7fd4f5f4] {
    text-align: center !important;
    margin-bottom: 16px !important;
}
.template-edit-wrap .l-area-box[data-v-7fd4f5f4] {
    width: 100%;
}
.template-edit-wrap .top-bar-active-img[data-v-7fd4f5f4],
  .template-edit-wrap .top-bar-user-name[data-v-7fd4f5f4],
  .template-edit-wrap .top-bar-search-box[data-v-7fd4f5f4],
  .template-edit-wrap .top-bar-my-learn[data-v-7fd4f5f4],
  .template-edit-wrap .top-bar-web-title[data-v-7fd4f5f4],
  .template-edit-wrap .fast-btn-icon[data-v-7fd4f5f4],
  .template-edit-wrap .banner-nav-wrap[data-v-7fd4f5f4] {
    display: none !important;
}
}
@media screen and (max-width: 500px) {
.template-edit-wrap .top-bar-nav-btn[data-v-7fd4f5f4] {
    margin: 16px 10px !important;
}
.template-edit-wrap .fast-btn-title[data-v-7fd4f5f4], .template-edit-wrap .top-bar-nav-btn[data-v-7fd4f5f4] {
    font-size: 14px !important;
}
.template-edit-wrap .top-bar-active-img[data-v-7fd4f5f4], .template-edit-wrap .top-bar-user-name[data-v-7fd4f5f4] {
    display: none !important;
}
}
@charset "UTF-8";
.template-edit-wrap[data-v-4fb2f445] {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
  background-color: #fff;
  /* 选择分类弹窗 */
  /* 选择老师弹窗 */
}
.template-edit-wrap .test-area[data-v-4fb2f445] {
  width: 200px;
  height: 200px;
  margin: 10px;
  background: red;
  float: left;
}
.template-edit-wrap .el-col[data-v-4fb2f445] {
  margin-bottom: 0 !important;
}
.template-edit-wrap .template-edit-top-bar[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px 20px;
  height: 70px;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.template-edit-wrap .template-edit-top-bar .template-edit-page-title[data-v-4fb2f445] {
  margin: 0;
  font-size: 28px;
}
.template-edit-wrap .template-edit-main-box[data-v-4fb2f445] {
  height: calc(100vh - 70px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left[data-v-4fb2f445] {
  border-right: 1px solid #eee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(100vh - 70px);
  width: 200px;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-title[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  padding: 20px 20px 10px;
  margin: 0;
  color: #fff;
  background-color: #409EFF;
  height: 65px;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box[data-v-4fb2f445] {
  padding-top: 20px;
  height: calc(100% - 85px);
  overflow-y: scroll;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  overflow: hidden;
  max-height: 40px;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-title[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  padding: 10px 20px 10px;
  margin: 0 0 10px;
  border-bottom: 1px #eee solid;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-title .arrow-icon[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-title[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  background-color: #9bcbff;
  color: #fff;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content[data-v-4fb2f445] {
  position: relative;
  cursor: pointer;
  padding: 10px 10px;
  margin: 0 20px 10px;
  border-radius: 5px;
  background-color: #fafafa;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content .template-edit-side-left-template-menu-content-title[data-v-4fb2f445] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 14px;
  color: #818181;
  margin: 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content .template-edit-side-left-template-menu-content-img[data-v-4fb2f445] {
  width: 100%;
  height: auto;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content .template-edit-side-left-template-menu-content-view[data-v-4fb2f445] {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 25px;
  color: #fff;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content[data-v-4fb2f445]:hover {
  padding: 10px 10px;
  margin: 0 20px 10px;
  border-radius: 5px;
  background-color: #fafafa;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu .template-edit-side-left-template-menu-content:hover .template-edit-side-left-template-menu-content-view[data-v-4fb2f445] {
  display: block;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu-active[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  max-height: 9999px;
  overflow: hidden;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box .template-edit-side-left-template-menu-active .template-edit-side-left-template-menu-title .arrow-icon[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box[data-v-4fb2f445]::-webkit-scrollbar {
  width: 2px;
  margin-right: 2px;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-left .template-edit-side-left-template-box[data-v-4fb2f445]::-webkit-scrollbar-thumb {
  background: #eee;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px;
  width: calc(100% - 200px);
  height: 100%;
  overflow-y: scroll;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-init-area[data-v-4fb2f445] {
  border: 1px dotted #409EFF;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn .template-edit-main-init-area-btn-icon[data-v-4fb2f445] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn .template-edit-main-init-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-init-area .template-edit-main-init-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area[data-v-4fb2f445] {
  padding-bottom: 5px;
  /* 分类 */
  /* 初始布局占位 */
  /* 内部大模块 */
  /* 内部中模块 */
  /* 内部2*2模块 */
  /* 超大模块 */
  /* 通栏广告 */
  /* 文本编辑框 */
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box:hover .tools-box[data-v-4fb2f445] {
  display: block;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box[data-v-4fb2f445] {
  border: 1px dotted #409EFF;
  height: 50px;
  padding: 0 5px 20px;
  margin-bottom: 5px;
  position: relative;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box[data-v-4fb2f445] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box .tools-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .tools-box .tools-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 28px;
  overflow: hidden;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title-icon[data-v-4fb2f445] {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title[data-v-4fb2f445] {
  color: #191919;
  font-size: 1.25rem;
  line-height: 28px;
  font-weight: bold;
  margin: 0 20px 0 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-title-link-tag[data-v-4fb2f445] {
  color: #555;
  font-size: 16px;
  line-height: 28px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .industry-page-box .industry-title-box .industry-divider[data-v-4fb2f445] {
  background-color: #EEE;
  margin: 0 20px !important;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap[data-v-4fb2f445] {
  position: relative;
  border: 1px dotted #409EFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  margin: 0 !important;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box[data-v-4fb2f445] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box .tools-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap .tools-box .tools-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-layout-wrap:hover .tools-box[data-v-4fb2f445] {
  display: block;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area:hover .tools-box[data-v-4fb2f445] {
  display: block;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area[data-v-4fb2f445] {
  border: 1px dotted #409EFF;
  padding: 20px;
  margin: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box[data-v-4fb2f445] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box .tools-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .tools-box .tools-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-icon[data-v-4fb2f445] {
  cursor: pointer;
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn .modules-initcategory-main-init-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .modules-initcategory-main-init-area .modules-initcategory-main-init-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn .init-l-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-l-components-area .init-l-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn .init-s-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-s-components-area .init-s-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-icon[data-v-4fb2f445] {
  padding: 10px;
  background: #409EFF;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn .init-xs-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 5px 0 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xs-components-area .init-xs-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn .init-xl-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xl-components-area .init-xl-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn .init-xxl-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-xxl-components-area .init-xxl-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn .init-img-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn .init-img-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-img-components-area .init-img-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area[data-v-4fb2f445] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dotted #409EFF;
  border-radius: 10px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  text-align: center;
  cursor: pointer;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn .init-text-components-area-btn-icon[data-v-4fb2f445] {
  padding: 20px;
  background: #409EFF;
  font-size: 30px;
  color: #fff;
  border-radius: 10px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn .init-text-components-area-btn-text[data-v-4fb2f445] {
  font-size: 14px;
  color: #409EFF;
  margin: 10px 0;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center .template-edit-main-center-control-area .init-text-components-area .init-text-components-area-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center[data-v-4fb2f445]::-webkit-scrollbar {
  width: 2px;
  margin-right: 2px;
}
.template-edit-wrap .template-edit-main-box .template-edit-main-center[data-v-4fb2f445]::-webkit-scrollbar-thumb {
  background: #eee;
  opacity: 0.7;
}
.template-edit-wrap .template-edit-main-box .template-edit-side-right[data-v-4fb2f445] {
  border-left: 1px solid #eee;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: calc(100vh - 70px);
  width: 200px;
  background: skyblue;
}
.template-edit-wrap .dialog-category-list[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.template-edit-wrap .dialog-category-list .dialog-category-li[data-v-4fb2f445] {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 200px;
  height: 140px;
  margin: 10px;
  background: #FAFAFA;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}
.template-edit-wrap .dialog-category-list .dialog-category-li .dialog-category-li-select[data-v-4fb2f445] {
  width: 25px;
  height: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.template-edit-wrap .dialog-category-list .dialog-category-li .dialog-category-li-title[data-v-4fb2f445] {
  font-size: 14px;
  color: #191919;
  margin: 0 0 10px 0;
}
.template-edit-wrap .dialog-category-list .dialog-category-li .dialog-category-li-img-box[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .dialog-category-list .dialog-category-li .dialog-category-li-img-box .dialog-category-li-img[data-v-4fb2f445] {
  width: 100%;
  height: auto;
}
.template-edit-wrap .dialog-category-list .dialog-category-li[data-v-4fb2f445]:hover {
  border: 3px solid #409EFF;
  background-color: #ddeeff;
}
.template-edit-wrap .dialog-category-list .dialog-category-li-active[data-v-4fb2f445] {
  border: 3px solid #409EFF;
  background-color: #ddeeff;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-title[data-v-4fb2f445] {
  font-size: 14px;
  color: #222;
  font-weight: bold;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list .isselect-teacher-li:hover .isselect-teacher-li-delete-icon[data-v-4fb2f445] {
  opacity: 1;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list .isselect-teacher-li[data-v-4fb2f445] {
  width: 100px;
  margin-right: 5px;
  margin-bottom: 8px;
  list-style: none;
  position: relative;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list .isselect-teacher-li .isselect-teacher-li-delete-icon[data-v-4fb2f445] {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: #409EFF;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list .isselect-teacher-li .isselect-teacher-img[data-v-4fb2f445] {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100px;
  border-radius: 10px;
}
.template-edit-wrap .isselect-teacher-box .isselect-teacher-list .isselect-teacher-li .isselect-teacher-name[data-v-4fb2f445] {
  font-size: 14px;
  text-align: left;
  display: -webkit-box;
  font-family: -apple-system, Helvetica, sans-serif;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #555;
  margin: 0;
}
.template-edit-wrap .dialog-teacher-list[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 400px;
  overflow-y: scroll;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li[data-v-4fb2f445] {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  width: 100px;
  margin: 10px;
  background: #FAFAFA;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li .dialog-teacher-li-select[data-v-4fb2f445] {
  width: 25px;
  height: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li .dialog-teacher-li-title[data-v-4fb2f445] {
  font-size: 14px;
  color: #191919;
  text-align: left;
  display: -webkit-box;
  font-family: -apple-system, Helvetica, sans-serif;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 10px 0;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li .dialog-teacher-li-img-box[data-v-4fb2f445] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li .dialog-teacher-li-img-box .dialog-teacher-li-img[data-v-4fb2f445] {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li[data-v-4fb2f445]:hover {
  border: 3px solid #409EFF;
  background-color: #ddeeff;
}
.template-edit-wrap .dialog-teacher-list .dialog-teacher-li-active[data-v-4fb2f445] {
  border: 3px solid #409EFF;
  background-color: #ddeeff;
}
.template-edit-wrap .dialog-edit-box[data-v-4fb2f445] {
  height: 400px;
}
.template-edit-wrap[data-v-4fb2f445] .quill-editor {
  padding: 0 !important;
}
.template-edit-wrap .edit_form_item[data-v-4fb2f445] .el-form-item__content {
  height: 265px;
}
.template-edit-wrap .no-border[data-v-4fb2f445] {
  border: none !important;
  position: relative;
  min-height: 100px;
}
.template-edit-wrap .no-border .editor-tools-box[data-v-4fb2f445] {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  display: none;
}
.template-edit-wrap .no-border .editor-tools-box .tools-btn[data-v-4fb2f445] {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  font-size: 20px;
  background-color: #222;
  color: #fff;
  padding: 5px;
  margin-left: 10px;
  cursor: pointer;
}
.template-edit-wrap .no-border .editor-tools-box .tools-btn[data-v-4fb2f445]:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  opacity: 0.8;
}
.template-edit-wrap .no-border:hover .editor-tools-box[data-v-4fb2f445] {
  display: block;
}
.template-edit-wrap .demo-form-inline[data-v-4fb2f445] {
  padding: 20px;
}
.template-edit-wrap[data-v-4fb2f445] .el-drawer .el-drawer__body {
  margin-bottom: 100px !important;
}
.template-edit-wrap[data-v-4fb2f445] .el-drawer .drawer-btn-box {
  position: absolute;
  bottom: 50px;
  right: 20px;
}
@media screen and (min-width: 1200px) {
.template-edit-wrap .l-area-box[data-v-4fb2f445] {
    width: 37.5%;
}
.template-edit-wrap .m-area-box[data-v-4fb2f445] {
    width: 25%;
}
.template-edit-wrap .m-have-inner-area-box[data-v-4fb2f445] {
    width: 25%;
}
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
.template-edit-wrap .l-area-box[data-v-4fb2f445] {
    width: 50%;
}
.template-edit-wrap .m-area-box[data-v-4fb2f445] {
    width: 50%;
}
.template-edit-wrap .m-have-inner-area-box[data-v-4fb2f445] {
    width: 100%;
}
}
@media screen and (min-width: 768px) and (max-width: 992px) {
.template-edit-wrap .l-area-box[data-v-4fb2f445] {
    width: 100%;
}
.template-edit-wrap .m-area-box[data-v-4fb2f445] {
    width: 100%;
}
}
@media screen and (max-width: 768px) {
.template-edit-wrap .l-area-box[data-v-4fb2f445] {
    width: 100%;
}
}
.industry-intro .el-dialog__body {
  margin-bottom: 0 !important;
}
.template-edit-component {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.template-admin {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.template-admin .tenant-list {
  width: 340px;
  height: calc(100% - 60px);
  border-right: 1px solid #ebeef5;
  padding: 20px;
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
}
.template-admin .template-list {
  width: calc(100% - 350px);
  height: 100%;
  padding: 0;
}
.industry-intro .el-dialog__body {
  margin-bottom: 0 !important;
}
.template-edit-component {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
}
.contract-admin {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contract-admin .contract-list {
  width: 100%;
  height: 100%;
  padding: 0;
}
