@charset "UTF-8";
* {
  user-select: none;
}

.navSwiper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.navSwiper .button-next,
.navSwiper .button-prev {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 255px;
  z-index: 20;
}

.navSwiper .button-next img,
.navSwiper .button-prev img {
  width: 60%;
  height: 60%;
  transform: rotate(-90deg);
}

.navSwiper .button-next {
  left: initial;
  right: 0;
}

.navSwiper .button-next img {
  transform: rotate(90deg);
}

.navSwiper img {
  width: 100%;
}

.navSwiper .swiperPoints {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: auto;
  z-index: 10;
  display: flex;
  justify-content: center;
}

.navSwiper .swiperPoints .item {
  width: 30px;
  background-color: #fff;
  height: 4px;
  margin-right: 10px;
}

.navSwiper .swiperPoints .item .bar {
  background-color: #333;
  width: 0 !important;
  height: 100%;
}

.navSwiper .swiperPoints .item:last-child {
  margin-right: 0;
}

.navSwiper .swiperPoints .active .bar {
  transition: all 0.4s;
  width: 100% !important;
}

.contentMainer {
  background-color: #f7f3f9;
  padding-bottom: 50px;
}

.contentMainer .commonDiv {
  display: flex;
  justify-content: space-between;
}

.contentMainer .main {
  width: 916px;
}

.contentMainer .main .searchBox {
  display: flex;
  align-items: center;
  height: 84px;
}

.contentMainer .main .searchBox .item {
  display: flex;
  align-items: center;
  height: 100%;
  margin-right: 45px;
  justify-content: center;
  font-size: 15px;
  color: #3e4552;
  cursor: pointer;
  position: relative;
  /* 设置滚动条的样式 */
  /* 滚动槽 */
  /* 滚动条滑块 */
}

.contentMainer .main .searchBox .item .itemTitle {
  overflow: hidden;
  white-space: nowrap;
}

.contentMainer .main .searchBox .item .icon {
  display: flex;
  align-items: center;
  margin-left: 5px;
}

.contentMainer .main .searchBox .item .icon img {
  width: 23px;
  transform: rotate(90deg);
  transition: all 0.5s;
}

.contentMainer .main .searchBox .item .selection {
  background-color: #fff;
  left: 20px;
  top: 70px;
  position: absolute;
  padding: 15px 10px;
  display: none;
  z-index: 50;
  box-shadow: 0 5px 10px 0 rgba(217, 218, 224, 0.8);
  border-radius: 4px;
  max-height: 450px;
  overflow-y: auto;
}

.contentMainer .main .searchBox .item .selection .selectionItem {
  display: inline-block;
  width: 90px;
  font-size: 14px;
  padding: 5px 2%;
}

.contentMainer .main .searchBox .item .selection .selectionItem .selectionItemTitle {
  width: 98%;
  white-space: pre-wrap;
  padding: 5px 5px;
  white-space: wrap;
  text-align: center;
  margin: 0 1%;
}

.contentMainer .main .searchBox .item .selection .selectionItem .selectionItemTitle:hover {
  background-color: #eff2f4;
}

.contentMainer .main .searchBox .item .selection .active .selectionItemTitle {
  background: #e2edfb !important;
  color: #0076fe !important;
}

.contentMainer .main .searchBox .item .selection::-webkit-scrollbar {
  width: 5px;
}

.contentMainer .main .searchBox .item .selection::-webkit-scrollbar-track {
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.contentMainer .main .searchBox .item .selection::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset006pxrgba(0, 0, 0, 0.5);
}

.contentMainer .main .searchBox .item.hoverClass .itemTitle {
  color: #0076fe;
}

.contentMainer .main .searchBox .item.hoverClass .icon img {
  transform: rotate(270deg);
}

.contentMainer .main .searchBox .item:nth-of-type(1) {
  height: 36px;
  padding: 0 10px;
}

.contentMainer .main .searchBox .item:nth-of-type(2) .selection {
  width: 205px;
}

.contentMainer .main .searchBox .item:nth-of-type(3) .selection .selectionItem,
.contentMainer .main .searchBox .item:nth-of-type(4) .selection .selectionItem {
  width: 180px;
}

.contentMainer .main .searchBox .item:nth-of-type(3) .selection .selectionItem .selectionItemTitle,
.contentMainer .main .searchBox .item:nth-of-type(4) .selection .selectionItem .selectionItemTitle {
  white-space: nowrap;
  width: 100%;
}

.contentMainer .main .searchBox .item.active .itemTitle {
  color: #0076fe;
}

.contentMainer .main .searchBox .item:nth-of-type(1).active {
  background: #e2edfb;
}

.contentMainer .main .searchBox .item:nth-of-type(1).active .itemTitle {
  color: #0076fe;
}

.contentMainer .main .listBox {
  display: flex;
  flex-wrap: wrap;
}

.contentMainer .main .listBox .listItem {
  width: 280px;
  height: 390px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 30px;
  margin-bottom: 30px;
}

.contentMainer .main .listBox .listItem a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.contentMainer .main .listBox .listItem .item1 {
  width: 100%;
}

.contentMainer .main .listBox .listItem .item1 img {
  width: 100%;
  height: 170px;
}

.contentMainer .main .listBox .listItem .item2 {
  z-index: 10;
  position: relative;
  top: -10px;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px;
}

.contentMainer .main .listBox .listItem .item2 .item21 img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: -25px;
}

.contentMainer .main .listBox .listItem .item2 .item22 {
  width: 80%;
  color: #3e4552;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 18px;
}

.contentMainer .main .listBox .listItem .item2 .item23 {
  color: #999;
  font-size: 13px;
  line-height: 24px;
  margin: 20px 0;
  height: 100px;
  overflow: hidden;
}

.contentMainer .main .listBox .listItem .item2 .itemFooter {
  display: flex;
  align-items: center;
}

.contentMainer .main .listBox .listItem .item2 .itemFooter .footer1 {
  display: flex;
  align-items: center;
}

.contentMainer .main .listBox .listItem .item2 .itemFooter .footer1 .label {
  color: #999;
  font-size: 10px;
  vertical-align: middle;
  margin-right: 5px;
  white-space: nowrap;
}

.contentMainer .main .listBox .listItem .item2 .itemFooter .footer1 .value {
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
  color: #3e4552;
  font-size: 10px;
  border: 1px solid #dbdddf;
  border-radius: 16px;
  padding: 3px 8px;
  white-space: nowrap;
  max-width: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contentMainer .main .listBox .listItem .itemMask {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 40;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}

.contentMainer .main .listBox .listItem .itemMask .checkBtn {
  width: 100px;
  height: 34px;
  line-height: 34px;
  background-color: #2576fb;
  background: linear-gradient(90deg, #2576fb 0, #59a3ff 100%);
  border-radius: 17px;
  color: #fffefe;
  font-size: 13px;
  text-align: center;
}

.contentMainer .main .listBox .listItem .itemMask:hover {
  opacity: 1;
}

.contentMainer .main .listBox .listItem:nth-of-type(3n) {
  margin-right: 0;
}

.contentMainer .sidebar {
  width: 274px;
  padding-top: 84px;
}

.contentMainer .sidebar .sidebar1 {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
}

.contentMainer .sidebar .sidebar1 .title {
  width: 100%;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: bold;
  color: #3e4552;
  margin-bottom: 21px;
}

.contentMainer .sidebar .sidebar1 .list .item {
  margin-bottom: 20px;
}

.contentMainer .sidebar .sidebar1 .list .item a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.contentMainer .sidebar .sidebar1 .list .item a:hover .item2 {
  color: #1890ff !important;
}

.contentMainer .sidebar .sidebar1 .list .item .item1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.contentMainer .sidebar .sidebar1 .list .item .item1 img {
  width: 70px;
  height: 55px;
}

.contentMainer .sidebar .sidebar1 .list .item .item2 {
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #3e4552;
  line-height: 22px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}

.contentMainer .sidebar .sidebar1 .list .item:last-child {
  margin-bottom: 0;
}
