@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background: #FFF6E7;
}
body * {
  box-sizing: border-box;
}
body .breadCrumbs {
  height: 120rem;
  width: 100%;
  font-size: 16rem;
  color: #4A4A4A;
  padding: 0 90rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
body .breadCrumbs a {
  outline: none;
  text-decoration: none;
  color: inherit;
}
body .container {
  border-radius: 0px 0px 0px 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: relative;
}
body .container .detail {
  flex: 1;
  width: 1920rem;
  height: 1036rem;
  background-image: url("../../images/researcher/background.png");
  background-size: 100% auto;
  background-position: top;
  min-height: calc(100vh - 120rem - 316rem);
  position: relative;
}
body .container .detail .textpic {
  display: flex;
  position: absolute;
  top: 0rem;
  right: 57rem;
  width: 247rem;
  height: 971rem;
}
body .container .detail .textpic .img {
  width: 100%;
  height: 100%;
  display: flex;
}
body .container .detail .searchbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
body .container .detail .searchbox .search {
  width: 867rem;
  height: 70rem;
  border-radius: 8rem;
  border: 2rem solid #979797;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body .container .detail .searchbox .search .key {
  height: 100%;
  width: calc(100% - 120rem);
  background-color: transparent;
  outline: none;
  border: none;
  padding: 0 30rem;
  font-size: 28rem;
  color: #4A4A4A;
}
body .container .detail .searchbox .search .button {
  width: 111rem;
  height: calc(100% + 2rem);
  background: #32170A;
  border-radius: 8rem;
  border: 1rem solid #32170A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
body .container .detail .searchbox .search .button .img {
  width: 39rem;
  height: 39rem;
  display: flex;
}
body .container .detail .content {
  width: 100%;
  padding: 0rem 370rem 60rem 160rem;
  margin-top: 53rem;
  flex: 1;
  height: calc(100% - 53rem - 70rem);
  display: flex;
  position: relative;
  gap: 66rem;
}
body .container .detail .content .selectbox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}
body .container .detail .content .selectbox .item {
  width: 214rem;
  height: 84rem;
  border: 2px solid #32170A;
  font-weight: normal;
  font-size: 24rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-bottom-color: transparent;
}
body .container .detail .content .selectbox .item.active {
  background: #32170A;
  color: #FFFFFF;
}
body .container .detail .content .selectbox .item:last-child {
  border-bottom-color: #32170A;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
body .container .detail .content .selectbox .item:first-child {
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
}
body .container .detail .content .listbox {
  width: calc(100% - 66rem - 214rem);
}
body .container .detail .content .listbox .page {
  margin-top: 60rem;
}
body .container .detail .content .list {
  display: flex;
  width: 100%;
  gap: 22rem;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 9;
}
body .container .detail .content .list .item {
  width: 260rem;
  height: 346rem;
  border-radius: 10rem;
  box-shadow: 0px 0px 16rem 1px rgba(125, 101, 61, 0.7);
  cursor: pointer;
}
body .container .detail .content .list .item .cover {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
body .container .detail .content .list .item .cover .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
}
body .container .detail .content .list .item .cover .title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 260rem;
  height: 62rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 0px 0px 10rem 10rem;
  font-weight: 800;
  font-size: 24rem;
  color: #FFFFFF;
  padding-top: 9rem;
  text-align: center;
}
body .container .nodata {
  width: 100%;
  height: 250rem;
  font-size: 28rem;
  color: #666;
  text-align: center;
  padding: 100rem;
}
body .unselectable {
  -webkit-user-select: none; /* Chrome/Safari/Opera */
  -moz-user-select: none; /* Firefox */ /* IE/Edge */
  user-select: none; /* 标准语法 */
  /* 针对iOS设备的额外设置 */
  -webkit-touch-callout: none; /* 禁用长按菜单 */
  /* 可选：禁用拖动效果 */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}