@charset "UTF-8";
.text-list {
  display: grid;
  grid-template-columns: 1fr;
}
.text-list li:first-of-type {
  border-top: 1px solid #EBEBEB;
}
.text-list .box {
  padding: 0.16rem 0 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  border-bottom: 1px solid #EBEBEB;
}
.text-list .box:hover .time::after {
  background-color: #fff;
}
.text-list .box .time-box {
  margin-left: 0.06rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 0.88rem;
  height: 0.74rem;
  background: url(../images/time-bg.png) no-repeat center center/contain;
}
.text-list .box .time-box .date {
  margin-top: auto;
  font-size: 0.32rem;
  height: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color);
  font-weight: 600;
}
.text-list .box .time-box .month {
  margin-bottom: auto;
  white-space: nowrap;
  margin-top: 0.05rem;
  font-size: var(--fs16);
  height: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color);
}
.text-list .box .text {
  padding-left: 0.17rem;
  padding-right: 0.3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.text-list .box .text h4 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  color: #333;
  font-size: 0.2rem;
}

.graphic-list {
  display: grid;
  grid-template-columns: repeat(1fr);
}
.graphic-list li {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #F0EDED;
}
.graphic-list li:first-of-type {
  border-top: 1px solid #F0EDED;
}
.graphic-list li::after {
  content: "";
  position: absolute;
  width: 1.95rem;
  height: 1.95rem;
  right: 0;
  bottom: 0;
  background: url(../images/news-bg.png) no-repeat right bottom/contain;
  z-index: 3;
  pointer-events: none;
}
.graphic-list li:hover::after {
  background-image: url(../images/news-bg-h.png);
}
.graphic-list .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding: 0.3rem 0.46rem 0.34rem 0.26rem;
}
.graphic-list .box .pic {
  margin-right: 0.27rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  width: 100%;
  height: auto;
  min-width: 300px;
  width: 36.5%;
}
.graphic-list .box .pic::after {
  content: "";
  display: block;
  padding-bottom: -webkit-calc(432 / 768 * 100%);
  padding-bottom: -moz-calc(432 / 768 * 100%);
  padding-bottom: calc(432 / 768 * 100%);
}
.graphic-list .box .pic .ratioBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.graphic-list .box .pic img {
  position: absolute;
}
.graphic-list .box .pic.no-pic {
  background: url(../images/news-default.jpg) no-repeat center/cover;
}
.graphic-list .box > .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
}
.graphic-list .box > .text h4 {
  margin-top: 0.26rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
  font-size: 0.22rem;
  line-height: 1;
}
.graphic-list .box > .text p {
  margin-top: 0.19rem;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #666;
  font-size: var(--fs18);
  line-height: 2;
}
.graphic-list .box > .text .time {
  margin-top: 0.07rem;
  font-size: var(--fs18);
  line-height: 2;
  color: var(--theme-color);
}

@media screen and (max-width: 750px) {
  .graphic-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }
  .graphic-list .box {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 0.26rem 0.26rem 0.36rem;
  }
  .graphic-list .box .pic {
    width: 100%;
    min-width: 0;
  }
  .graphic-list .box > .text {
    padding-left: 0;
  }
}
.academic-list {
  margin-top: 0.1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 0.22rem;
     -moz-column-gap: 0.22rem;
          column-gap: 0.22rem;
  row-gap: 0.26rem;
}
.academic-list .box {
  padding: 0.28rem 0.35rem 0.41rem 0.39rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.16);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.academic-list .box.box,
.academic-list .box .box {
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
}
.academic-list .box.box .btnText,
.academic-list .box .box .btnText {
  position: relative;
  z-index: 100;
}
.academic-list .box.box::after,
.academic-list .box .box::after {
  position: absolute;
  content: "";
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  cursor: pointer;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.academic-list .box.box .btnText:not(.normal),
.academic-list .box .box .btnText:not(.normal) {
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: fontSize 0s;
  -o-transition: fontSize 0s;
  -moz-transition: fontSize 0s;
  transition: fontSize 0s;
}
.academic-list .box.box .btnText:not(.normal) span,
.academic-list .box .box .btnText:not(.normal) span {
  color: inherit;
}
.academic-list .box:hover .box, .academic-list .box:hover.box {
  color: #fff;
}
.academic-list .box:hover .box::after, .academic-list .box:hover.box::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  background: var(--theme-color);
}
.academic-list .box:hover .box .btnText:not(.normal), .academic-list .box:hover.box .btnText:not(.normal) {
  color: #fff;
}
.academic-list .box:hover .text h4 {
  color: var(--hover-color);
}
.academic-list .box:hover .text .rows .row i {
  border: 1px solid #fff;
}
.academic-list .box:hover .text img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.academic-list .box .time-box {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  -webkit-transform: translateY(-30%);
     -moz-transform: translateY(-30%);
      -ms-transform: translateY(-30%);
       -o-transform: translateY(-30%);
          transform: translateY(-30%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  flex-shrink: 0;
  width: 0.88rem;
  height: 0.74rem;
  background: url(../images/time-bg.png) no-repeat center center/contain;
}
.academic-list .box .time-box .date {
  margin-top: 0.09rem;
  font-size: 0.4rem;
  height: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color);
  font-weight: 600;
}
.academic-list .box .time-box .month {
  white-space: nowrap;
  margin-top: 0.17rem;
  font-size: var(--fs16);
  height: 1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--theme-color);
}
.academic-list .box .text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.33rem;
}
.academic-list .box .text h4 {
  color: #333;
  font-size: 0.2rem;
  line-height: 1.7;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.academic-list .box .text .rows {
  margin-top: 0.12rem;
  width: 90%;
}
.academic-list .box .text .rows .row {
  position: relative;
  color: #333;
  font-size: var(--fs16);
  line-height: 1.55;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0.38rem;
}
.academic-list .box .text .rows .row + .row {
  margin-top: 0.12rem;
}
.academic-list .box .text .rows .row i {
  content: "";
  width: 0.255rem;
  height: 0.255rem;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: absolute;
  top: 0.01rem;
  left: 0.04rem;
  background-color: var(--theme-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.145rem;
  color: #fff;
  z-index: 1;
}
.academic-list .box .text .rows .row .l {
  display: inline-block;
  white-space: nowrap;
}
.academic-list .box .text .rows .row .r {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 1650px) {
  .academic-list .box {
    padding: 0.22rem 0.24rem 0.36rem 0.14rem;
  }
  .academic-list .box .text {
    margin-left: 0.2rem;
  }
}
@media screen and (max-width: 680px) {
  .academic-list {
    grid-template-columns: 1fr;
  }
}
.academic2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 0.3rem;
  -webkit-column-gap: 0.26rem;
     -moz-column-gap: 0.26rem;
          column-gap: 0.26rem;
}

@media screen and (max-width: 680px) {
  .academic2-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 400px) {
  .academic2-list {
    grid-template-columns: 1fr;
  }
}
.teacher-list {
  margin-top: 0.1rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -webkit-column-gap: 0.2rem;
     -moz-column-gap: 0.2rem;
          column-gap: 0.2rem;
  row-gap: 0.18rem;
}
.teacher-list li {
  width: 100%;
  overflow: hidden;
}
.teacher-list li .box {
  position: relative;
  width: 100%;
  display: inline-block;
}
.teacher-list li .box .pic-box {
  width: -webkit-calc(100% - 2px);
  width: -moz-calc(100% - 2px);
  width: calc(100% - 2px);
  -webkit-transform: translateX(1px);
     -moz-transform: translateX(1px);
      -ms-transform: translateX(1px);
       -o-transform: translateX(1px);
          transform: translateX(1px);
  padding: 0.21rem 0 0.18rem;
  -webkit-box-shadow: 0 0 0.04rem 1px #ccc;
          box-shadow: 0 0 0.04rem 1px #ccc;
  background: #fff;
  background: url(../images/t-bg.jpg) no-repeat center center/cover;
}
.teacher-list li .box .pic-box.no-pic {
  display: none;
}
.teacher-list li .box .pic {
  background: #fff;
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 113px;
}
.teacher-list li .box .pic::after {
  content: "";
  display: block;
  padding-bottom: -webkit-calc(155 / 113 * 100%);
  padding-bottom: -moz-calc(155 / 113 * 100%);
  padding-bottom: calc(155 / 113 * 100%);
}
.teacher-list li .box .pic .ratioBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.teacher-list li .box .pic img {
  position: absolute;
}
.teacher-list li .box .text {
  padding: 0.1rem 0.05rem;
  background-color: var(--theme-color);
  min-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.18rem;
  color: #fff;
}
.teacher-list li .box .text h5 {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}

@media screen and (max-width: 1500px) {
  .teacher-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .teacher-list li .box .text h5 {
    font-size: 0.2rem;
  }
}
@media screen and (max-width: 700px) {
  .teacher-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .teacher-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.subject-list {
  margin-top: 0.1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.3rem;
}
.subject-list li {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #d9d9d9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.subject-list li .column-name {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0.12rem;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  min-height: 1.13rem;
  width: 1.47rem;
  background: var(--theme-color);
  font-size: 0.2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  -webkit-border-radius: 0.1rem;
          border-radius: 0.1rem;
}
.subject-list li .tab-box {
  padding-right: 0.2rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.38rem;
}
.subject-list li .tabs {
  padding-top: 0.21rem;
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 0.18rem;
     -moz-column-gap: 0.18rem;
          column-gap: 0.18rem;
  row-gap: 0.16rem;
}
.subject-list li .tabs .tab {
  font-size: var(--fs18);
  color: #666;
  line-height: 1.6;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
}
.subject-list li .tabs .tab:hover {
  color: var(--theme-color);
}

@media screen and (max-width: 768px) {
  .subject-list li .tab-box {
    margin-left: 0.22rem;
  }
  .subject-list li .tab-box .tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 670px) {
  .subject-list li {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .subject-list li .column-box {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
  }
  .subject-list li .column-box .column-name {
    width: 100%;
    min-height: 0.5rem;
  }
  .subject-list li .tab-box {
    margin-top: 0.06rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
       -moz-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    margin-left: 0.1rem;
  }
}
@media screen and (max-width: 450px) {
  .subject-list li .tab-box .tabs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.leader-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
}
.leader-list .box {
  padding: 0.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--theme-color);
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
  background: #fff;
}
.leader-list .box:hover {
  background: #efefef;
}
.leader-list .box .pic {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 2rem;
}
.leader-list .box .text-list {
  padding-left: 0.2rem;
}
.leader-list .box .text-list .text h4 {
  font-size: 0.2rem;
  line-height: 1.75;
  color: var(--theme-color);
}
.leader-list .box .text-list .text h4 span {
  padding-left: 1em;
}
.leader-list .box .text-list .text .over {
  color: #666;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: var(--fs18);
  line-height: 1.875;
}
.leader-list .box .text-list .text .over:first-of-type {
  margin-top: 0.02rem;
}
.leader-list .box .text-list .text .tea-title {
  margin-top: 0.02rem;
  font-size: 0.2rem;
  line-height: 1.75;
  color: var(--theme-color);
  font-weight: 600;
}
.leader-list .box .text-list .text .tea-work {
  margin-top: 0.02rem;
  line-height: 1.625;
  -webkit-line-clamp: 4;
}

@media screen and (max-width: 700px) {
  .leader-list .box .pic {
    width: 1.7rem;
  }
}
.conference {
  display: grid;
  grid-template-columns: 1fr;
}
.conference li {
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
}
.conference li:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.conference .box {
  padding: 0.37rem 0.25rem 0 0.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.conference .box:hover .text .rows .row .tag {
  border-color: #fff;
}
.conference .box .pic {
  margin-bottom: 0.32rem;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  width: 100%;
  height: auto;
  width: 47.2222222222%;
}
.conference .box .pic::after {
  content: "";
  display: block;
  padding-bottom: -webkit-calc(287 / 510 * 100%);
  padding-bottom: -moz-calc(287 / 510 * 100%);
  padding-bottom: calc(287 / 510 * 100%);
}
.conference .box .pic .ratioBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.conference .box .pic img {
  position: absolute;
}
.conference .box .pic.no-pic {
  background: url(../images/meeting-default.jpg) no-repeat center/cover;
}
.conference .box .text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.21rem;
  margin-bottom: 0.22rem;
}
.conference .box .text h4 {
  font-size: 0.22rem;
  line-height: 1.6363636364;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.conference .box .text .des {
  margin-top: 0.11rem;
  color: #666;
  font-size: var(--fs16);
  line-height: 1.8125;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.conference .box .text .rows {
  margin-top: 0.23rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
}
.conference .box .text .rows .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.conference .box .text .rows .row .tag {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: var(--fs16);
  color: var(--theme-color);
  display: inline-block;
  height: 1.625em;
  border: 1px solid var(--theme-color);
  padding-left: 0.12rem;
  padding-right: 0.15rem;
}
.conference .box .text .rows .row .r {
  margin-left: 0.14rem;
  font-size: var(--fs16);
  color: #333;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width: 700px) {
  .conference .box {
    padding: 0.25rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .conference .box .pic {
    margin-bottom: 0.2rem;
    width: 100%;
  }
  .conference .box .text {
    margin-left: 0;
    margin-bottom: 0.1rem;
  }
}
.question {
  display: grid;
  grid-template-columns: 1fr;
}
.question li {
  border-bottom: 1px solid #d9d9d9;
  background-color: #fff;
}
.question li:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.question .box {
  padding: 0.41rem 0.25rem 0.35rem 0.18rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.question .box .pic {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  width: 100%;
  height: auto;
  width: 47.2222222222%;
}
.question .box .pic::after {
  content: "";
  display: block;
  padding-bottom: -webkit-calc(287 / 510 * 100%);
  padding-bottom: -moz-calc(287 / 510 * 100%);
  padding-bottom: calc(287 / 510 * 100%);
}
.question .box .pic .ratioBox {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.question .box .pic img {
  position: absolute;
}
.question .box .pic.no-pic {
  background: url(../images/question-default.jpg) no-repeat center/cover;
}
.question .box .text {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.3rem;
}
.question .box .text h4 {
  margin-top: 0.13rem;
  font-size: 0.22rem;
  line-height: 1.6363636364;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.question .box .text .rows {
  margin-top: 0.09rem;
}
.question .box .text p {
  margin-top: 0.08rem;
  color: #666;
  font-size: var(--fs16);
  line-height: 1.875;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.question .box .text p .l {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 4em;
  margin-right: 0.1em;
}
.question .box .text p .r {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.question .box .text p.row6 {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.question .box .text p.row6 .r {
  -webkit-line-clamp: 4;
}
.question .box .text p.row6 .l {
  width: 6em;
}

@media screen and (max-width: 700px) {
  .question .box {
    padding: 0.25rem;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .question .box .pic {
    width: 100%;
  }
  .question .box .text {
    margin-left: 0;
    margin-bottom: 0.1rem;
  }
  .question .box .text h4 {
    margin-top: 0.2rem;
  }
}
.box-container .list-container .channell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 0.2rem;
}
.box-container .list-container .channell h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--theme-linear);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.32rem;
  font-family: "思源宋体Heavy";
}
.box-container .list-container .channell .line {
  margin-left: 0.08rem;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 0.01rem;
  background: #d9d9d9;
}

.box-container .list-container .list-content {
  margin-top: 0.27rem;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.box-container .list-container .list-content .head {
  padding-top: 0.44rem;
  padding-bottom: 0.23rem;
}
.box-container .list-container .list-content .head::after {
  border-bottom: 1px solid #d9d9d9;
}
.box-container .list-container .list-content .head h4 {
  font-size: 0.26rem;
  font-family: "思源宋体Heavy";
}
.box-container .list-container .list-content .head p {
  font-size: 0.18rem;
  color: #666;
}
.box-container .list-container .list-content .head p i {
  margin-right: 0.02rem;
  font-size: 0.2rem;
  color: var(--theme-color);
}
.box-container .list-container .list-content .head p .row {
  margin: 0 0.22rem;
}
.box-container .list-container .list-content .content p {
  font-size: 0.2rem;
}