.focusContent {
  position: relative;
  z-index: 1;
  width: 81.6875rem;
  margin: 1rem auto;
  padding: 1rem 0;
}
.focusContent .title {
  width: 100%;
}
.focusContent .content {
  width: 100%;
  height: 31.25rem;
  display: flex;
}
.focusContent .content .focusLeft {
  position: relative;
  width: 50rem;
  margin-right: 1rem;
  height: 100%;
  border: 1px solid #4c91cf;
  background-color: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.focusContent .content .focusLeft .imgBox {
  width: 100%;
  height: 100%;
  display: flex;
}
.focusContent .content .focusLeft img {
  width: 50rem;
  height: 100%;
  display: block;
  transition: all 0.3s;
  flex-shrink: 0;
}

.focusContent .content .focusLeft .focusTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
  height: 3rem;
  background-color: rgba(16, 81, 156, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.2rem;
}

.focusContent .content .focusLeft .focusTitle .swiperIndicator {
  display: flex;
}
.focusContent .content .focusLeft .focusTitle .swiperIndicator span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 0.5rem;
  cursor: pointer;
}

.focusContent .content .focusLeft .focusTitle .swiperIndicator .selected {
  background-color: #349fe8;
}

.focusContent .content .focusRight {
  flex: 1;
  border: 1px solid #4c91cf;
  background-color: #fff;
}

.focusContent .content .focusRight .focusItem {
  width: 100%;
  height: 6.25rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  box-sizing: border-box;
  border-bottom: 1px dashed #e2e2e2;
  cursor: pointer;
  color:#0e57a8;
  font-size: 1.24rem;
}
.focusContent .content .focusRight .selected{
    position: relative;
    background-color: #0e57a8;
    color: #fff;
}

.focusContent .content .focusRight .selected::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.25rem;
  height: 100%;
  background-color: #2d9ce9;
}
.focusContent .content .focusRight .focusItem:last-child {
  border-bottom: none;
}
.focusContent .content .focusLeft .imgBox a {
 width: 50rem;
 height: 100%;
 display: block;
 transition: all 0.3s;
 flex-shrink: 0;
}
.focusContent .content .focusLeft .imgBox a img {
 width: 100%;
 height: 100%;
}
.focusContent .content .focusLeft .focusTitle a{
 color:#fff
}