/* ========================================
   Example Page Styles - 干部档案页面样式
   ======================================== */

/* 面包屑导航样式 */
.breadcrumb-simple {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-simple li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.breadcrumb-simple li:not(:last-child)::after {
    content: "//";
    margin: 0 8px;
    color: #666;
    font-weight: normal;
}

.breadcrumb-simple li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-simple li a:hover {
    color: #ff3115;
    text-decoration: none;
}

.breadcrumb-simple li:last-child a {
    color: #666;
    cursor: default;
}

.breadcrumb-simple li:last-child a:hover {
    color: #666;
}

/* 无图片新闻列表样式 */
.news-list-item .news-content-full {
    flex: 1 !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.news-list-item .news-content-full:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.news-list-item .news-content-full .news-title {
    margin-bottom: 15px;
}

.news-list-item .news-content-full .news-title a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-list-item .news-content-full .news-title a:hover {
    color: #ff3115;
}

.news-list-item .news-content-full .news-date {
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.news-list-item .news-content-full .news-date i {
    color: #ff3115;
    margin-right: 8px;
}

.news-list-item .news-content-full .news-desc {
    color: #666;
    line-height: 1.6;
}

.news-list-item .news-content-full .news-desc p {
    margin-bottom: 0;
}

/* 基础信息样式 */
.basic-info {
  margin-bottom: 20px;
}

.info-row {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
}

.info-label {
  font-weight: 600;
  color: #333;
  min-width: 100px;
  margin-right: 10px;
}

.info-value {
  color: #666;
}

/* 团队照片样式 */
.team-photo {
  position: relative;
  margin-bottom: 30px;
}

.team-photo img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-photo .team-icons {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: flex;
  gap: 8px;
}

.team-photo .team-icons a {
  width: 35px;
  height: 35px;
  background: rgba(255, 49, 21, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.team-photo .team-icons a:hover {
  background: #ff3115;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 49, 21, 0.3);
}

/* 个人档案页面导航样式 */
.profile-nav {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-nav .nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-nav .nav-item {
  margin: 0;
}

.profile-nav .nav-link {
  display: block;
  padding: 12px 20px;
  color: #007bff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
}

.profile-nav .nav-link:hover {
  background-color: #f8f9fa;
  color: #0056b3;
}

.profile-nav .nav-item.active .nav-link {
  background-color: #e9ecef;
  color: #000;
  border-color: #dee2e6;
}

/* 评价维度导航样式 */
.evaluation-nav {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-main {
  margin-bottom: 15px;
}

.nav-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.nav-sub {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.nav-sub-link {
  color: #007bff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.nav-sub-link:hover {
  background-color: #f8f9fa;
  color: #0056b3;
}

/* 标签样式 */
.tags-section, .expertise-section, .warning-section {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background-color: #e3f2fd;
  color: #1976d2;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #bbdefb;
}

/* 专业领域样式 */
.expertise-desc {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.expertise-list {
  margin-top: 15px;
}

.expertise-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.expertise-item:last-child {
  border-bottom: none;
}

.expertise-name {
  color: #333;
  font-weight: 500;
}

.expertise-years {
  color: #007bff;
  font-weight: 600;
}

/* 预警信息样式 */
.warning-content {
  text-align: center;
  padding: 20px;
}

.no-warning {
  color: #28a745;
  font-style: italic;
}

/* 评价内容样式 */
.evaluation-section {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.evaluation-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* 雷达图控制样式 */
.chart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.chart-legend {
  display: flex;
  gap: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.legend-color.personal {
  background-color: #007bff;
}

.legend-color.highest {
  background-color: #28a745;
}

.legend-text {
  font-size: 14px;
  color: #666;
}

.chart-options {
  display: flex;
  gap: 10px;
}

.btn-chart {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  color: #666;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-chart.active {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.btn-chart:hover {
  background-color: #f8f9fa;
}

/* 图表维度样式 */
.chart-dimensions {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 15px;
}

.dimension-item {
  text-align: center;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  min-width: 120px;
}

.dimension-name {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.dimension-value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* 考核结果样式 */
.assessment-results {
  margin-top: 15px;
}

.assessment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.assessment-item:last-child {
  border-bottom: none;
}

.assessment-year {
  color: #333;
  font-weight: 500;
}

.assessment-grade {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.assessment-grade.excellent {
  background-color: #d4edda;
  color: #155724;
}

.assessment-grade.qualified {
  background-color: #fff3cd;
  color: #856404;
}

/* 业绩内容样式 */
.performance-content {
  margin-top: 15px;
}

.performance-content p {
  margin-bottom: 10px;
  color: #666;
}

.performance-list {
  margin: 10px 0;
  padding-left: 20px;
}

.performance-list li {
  color: #666;
  margin-bottom: 5px;
}

.performance-note {
  color: #dc3545;
  font-style: italic;
  margin-top: 10px;
}

/* 证书样式 */
.certificate-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.certificate-item:hover {
  transform: translateY(-5px);
}

.certificate-icon {
  font-size: 48px;
  color: #ff3115;
  margin-bottom: 15px;
}

.certificate-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.certificate-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* 学习计划样式 */
.learning-plan {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.plan-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.plan-item:last-child {
  border-bottom: none;
}

.plan-date {
  background: #ff3115;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-right: 20px;
  min-width: 100px;
  text-align: center;
}

.plan-content {
  flex: 1;
}

.plan-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.plan-content p {
  color: #666;
  margin-bottom: 5px;
  font-size: 14px;
}

.plan-status {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
}

/* 页面标题样式 */
.title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  font-style: italic;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* 图表容器样式 */
.chart-container {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}

/* 驾驶舱专用样式 */
.dashboard-time {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
}

.current-time {
  font-weight: 600;
  color: #333;
  margin-right: 20px;
}

.last-update {
  color: #999;
}

/* 仪表板卡片样式 */
.dashboard-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
}

.dashboard-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3115, #e41f05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 24px;
  color: #fff;
}

.card-content {
  flex: 1;
}

.card-number {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1;
}

.card-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.card-trend {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trend-up {
  color: #28a745;
  font-weight: 600;
  font-size: 14px;
}

.trend-text {
  color: #999;
  font-size: 12px;
}

/* 图表面板样式 */
.chart-panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.panel-header h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.panel-controls {
  display: flex;
  gap: 10px;
}

.time-selector {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: #666;
  font-size: 14px;
}

/* 排行榜样式 */
.ranking-panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.ranking-list {
  margin-top: 15px;
}

.ranking-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ranking-item:last-child {
  border-bottom: none;
}

.rank-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
  flex-shrink: 0;
}

.rank-number.rank-1 {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
}

.rank-number.rank-2 {
  background: linear-gradient(135deg, #c0c0c0, #e5e5e5);
  color: #333;
}

.rank-number.rank-3 {
  background: linear-gradient(135deg, #cd7f32, #daa520);
  color: #fff;
}

.rank-info {
  flex: 1;
}

.rank-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.rank-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.rank-score {
  font-size: 16px;
  font-weight: 600;
  color: #ff3115;
}

/* 预警面板样式 */
.alert-panel {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 4px solid;
}

.alert-panel.alert-warning {
  border-left-color: #ffc107;
}

.alert-panel.alert-info {
  border-left-color: #17a2b8;
}

.alert-panel.alert-success {
  border-left-color: #28a745;
}

.alert-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.alert-warning .alert-icon {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.alert-info .alert-icon {
  background: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}

.alert-success .alert-icon {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.alert-icon i {
  font-size: 20px;
}

.alert-content {
  flex: 1;
}

.alert-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.alert-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.alert-link {
  color: #ff3115;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.alert-link:hover {
  text-decoration: underline;
}

/* 时间线样式 */
.news-timeline {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-date {
  width: 100px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  margin-right: 20px;
  flex-shrink: 0;
}

.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.5;
}

.timeline-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* 快速操作样式 */
.quick-action {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.quick-action:hover {
  transform: translateY(-5px);
}

.action-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3115, #e41f05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.action-icon i {
  font-size: 24px;
  color: #fff;
}

.quick-action h5 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.quick-action p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.action-btn {
  background: #ff3115;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.action-btn:hover {
  background: #e41f05;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 49, 21, 0.3);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .profile-nav .nav-tabs {
    flex-direction: column;
  }
  
  .nav-sub {
    flex-direction: column;
  }
  
  .chart-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .chart-dimensions {
    flex-direction: column;
  }
  
  .plan-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .plan-date {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .team-photo .team-icons {
    position: static;
    justify-content: center;
    margin-top: 15px;
  }
  
  /* 驾驶舱移动端适配 */
  .dashboard-card {
    flex-direction: column;
    text-align: center;
  }
  
  .card-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .ranking-item {
    flex-direction: column;
    text-align: center;
  }
  
  .rank-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .alert-panel {
    flex-direction: column;
    text-align: center;
  }
  
  .alert-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .timeline-item {
    flex-direction: column;
  }
  
  .timeline-date {
    width: auto;
    margin-right: 0;
    margin-bottom: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .tags-container {
    justify-content: center;
  }
  
  .chart-legend {
    flex-direction: column;
    gap: 10px;
  }
}

/* ========================================
   新闻悬停效果样式 - 参照team样式
   ======================================== */
.news-normal-block .news-item {
  position: relative;
  overflow: hidden;
}

.news-normal-block .news-item .news-img {
  position: relative;
}

.news-normal-block .news-item .news-img .normal-text {
  position: absolute;
  bottom: 0;
  padding: 10px 20px;
  min-width: 175px;
  background-color: rgba(34, 34, 34, 0.8);
  transition: 0.3s ease all;
}

.news-normal-block .news-item .news-img .normal-text .news-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  display: block;
}

.news-normal-block .news-item .news-img .normal-text .news-subtitle {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  display: block;
}

.news-normal-block .news-item .news-img img {
  width: 100%;
}

.news-normal-block .news-item .news-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 10%;
  left: 0;
  text-align: center;
  z-index: 11;
  padding: 30px;
  opacity: 0;
  -webkit-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

.news-normal-block .news-item .news-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  -webkit-transition: 0.25s opacity ease;
  transition: 0.25s opacity ease;
}

.news-normal-block .news-item .news-name {
  margin-bottom: 2px;
}

.news-normal-block .news-item .news-name a {
  margin-bottom: 6px;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  z-index: 111;
}

.news-normal-block .news-item .news-name a:hover {
  color: #fff;
}

.news-normal-block .news-item .news-title {
  position: relative;
  z-index: 111;
  font-size: 14px;
  color: #fff;
  padding-bottom: 12px;
}

.news-normal-block .news-item .news-title:after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ff3115;
  content: "";
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.news-normal-block .news-item .news-desc {
  color: #fff;
  margin-bottom: 0;
  padding-top: 12px;
  margin-top: 15px;
}

.news-normal-block .news-item .news-img .news-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 111;
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

.news-normal-block .news-item .news-btn .readon {
  display: inline-block;
  padding: 10px 20px;
  background: #ff3115;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 49, 21, 0.3);
}

.news-normal-block .news-item .news-btn .readon:hover {
  background: #e41f05;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 49, 21, 0.4);
}

.news-normal-block .news-item:hover .news-content {
  opacity: 1;
  top: 0;
}

.news-normal-block .news-item:hover .news-img .news-btn {
  opacity: 1;
}

.news-normal-block .news-item:hover .normal-text {
  opacity: 0;
  visibility: hidden;
}

/* ========================================
   轮播图按钮右下角样式
   ======================================== */
#rs-slider .slide-content .slider-btn-container {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 111;
}

#rs-slider .slide-content .sl-get-started-btn {
  background-color: #ff3115;
  border: none;
  display: inline-block;
  padding: 12px 25px;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease 0s;
  border-radius: 2px;
  text-decoration: none;
}

#rs-slider .slide-content .sl-get-started-btn:hover {
  background-color: #e41f05;
  color: #ffffff;
  text-decoration: none;
}