/* 论坛日程页面样式 */
.forum-container {
    background-color: #fff;
    padding: 20px 0;
}

.forum-header {
    padding: 62px 0px;
}

/* pageTab1 */
.pageTab1 {
  width: 100%;
  padding-top: 50px;
}
.pageTab1 ul {
  width: 68%;
}
.pageTab1 .searchWrap{
    position: relative;
}
.pageTab1 ul li {
  min-width: 14.6666%;
  height: 56px;
  border-radius: 28px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 2%;
  transition: all 0.6s ease;
}
.pageTab1 ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  line-height: 56px;
  text-align: center;
  color: #333333;
  padding: 0 10px;
  transition: all 0.6s ease;
}
.pageTab1 ul li.on,
.pageTab1 ul li:hover {
  background-color: #082CA4;
}
.pageTab1 ul li.on a,
.pageTab1 ul li:hover a {
  color: #fff;
}
.pageTab1 form {
  width: 31%;
  border-radius: 36px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.pageTab1 form input {
  width: 86%;
  line-height: 30px;
  color: #333;
  font-size: 16px;
  padding: 12px 0 12px 20px;
}
.pageTab1 form button {
  /* width: 14%; */
  color: #082CA4;
  font-size: 24px;
  cursor: pointer;
}

/* 清空搜索按钮样式 */
.pageTab1 form .clear-btn {
  width: 14%;
  background: none;
  border: none;
  color: #999;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pageTab1 form .clear-btn:hover {
  color: #082CA4;
  background: rgba(8, 44, 164, 0.1);
  border-radius: 50%;
}

/* 搜索结果提示样式 */
.search-result-tip {
  margin: 20px 0;
  padding: 15px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f1ff 100%);
  border-left: 4px solid #082CA4;
  border-radius: 6px;
}

.search-result-tip p {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.search-result-tip .highlight {
  color: #082CA4;
  font-weight: bold;
}

.search-result-tip .keyword {
  color: #082CA4;
  font-weight: bold;
  background: rgba(8, 44, 164, 0.1);
  padding: 2px 6px;
  border-radius: 3px;
}

.search-result-tip .no-result {
  color: #999;
}

/* 搜索输入框聚焦状态 */
.pageTab1 form input:focus {
  outline: none;
  /* box-shadow: 0 0 0 2px rgba(8, 44, 164, 0.2); */
}

.search-box {
    position: relative;
    width: 450px;
    height: 56px;
    margin-left: auto;
}

.search-input {
    width: 100%;
    height: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 36px;
    outline: none;
    font-size: 16px;
    text-indent: 20px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #082CA4;
    box-shadow: 0 0 0 2px rgba(8, 44, 164, 0.1);
}

.search-btn {
    position: absolute;
    right: 18px;
    top: 15px;
    border: none;
    color: white;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-btn img{
    width: 100%;
    height: 100%;
}

/* pageForum */
.pageForum {
  width: 100%;
  padding: 50px 0 100px;
  margin: 0;
}
.pageForum .Box.on {
  background: linear-gradient(180deg, #082CA4 0%, #082CA4 100%);
}

.scheduleBox {
  width: 100%;
  margin-top: 0px;
}
.scheduleBox .liBox {
  width: 100%;
  margin-bottom: 20px;
}
.scheduleBox .Box {
  width: 100%;
  min-height: 110px;
  background: linear-gradient(180deg, #EEF2FF 0%, #FFFFFF 100%);
  border: 2px solid rgba(8, 44, 164, 0.08);
  align-items: center;
  padding: 1% 30px;
  transition: all 0.6s ease;
}

.scheduleBox .Box .titBox {
  width: calc(100% - 200px);
}
.scheduleBox .Box .titBox .tit {
  max-width: calc(100% - 130px);
  font-size: 18px;
  font-weight: bold;
  line-height: 26px;
  color: #333333;
  margin-top: 18px;
}
.scheduleBox .Box .titBox .label {
  min-width: 78px;
  height: 28px;
  line-height: 28px;
  border-radius: 2px;
  font-size: 14px;
  margin-left: 20px;
  padding: 0 4px;
  margin-top: 18px;
}
.scheduleBox .Box .titBox .label.label1 {
  border: 1px solid #52A199;
  color: #52A199;
}
.scheduleBox .Box .titBox .label.label2 {
  border: 1px solid #082CA4;
  color: #082CA4;
}
.scheduleBox .Box .titBox .label.label3 {
  border: 1px solid #999999;
  color: #999999;
}
.scheduleBox .Box .titBox .label .iconfont {
  margin-right: 3px;
  font-size: 16px;
}
.scheduleBox .Box .titBox .time {
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
  color: #082CA4;
  margin-right: 30px;
}
.scheduleBox .Box .titBox .time .iconfont {
  font-size: 18px;
  margin-right: 5px;
  font-weight: normal;
}
.scheduleBox .Box .titBox .address {
  font-size: 16px;
  line-height: 20px;
  color: #082CA4;
}
.scheduleBox .Box .titBox .address .iconfont {
  font-size: 18px;
  margin-right: 5px;
}
.scheduleBox .Box .btnBox {
  align-items: center;
}
.scheduleBox .Box .btnBox .btn {
  display: block;
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
}
.scheduleBox .Box .btnBox .btn.btn1 {
  background-color: #082CA4;
}
.scheduleBox .Box .btnBox .btn.btn2 {
  background-color: #CDCFD6;
}
.scheduleBox .Box .btnBox .iconfont {
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 12px;
  margin-left: 16px;
  background-color: #082CA4;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s ease;
}
.scheduleBox .Box .btnBox .iconfont.icon-jiantou{
    transform: rotate(90deg);
}
.scheduleBox .Box.expanded .btnBox .iconfont.icon-jiantou{
    transform: rotate(270deg);
    background-color: #fff;
    color: #082CA4;
}
.scheduleBox .Box.on {
  background: #082CA4;
  background-size: cover;
}
.scheduleBox .Box.on .titBox .tit {
  color: #fff;
}
.scheduleBox .Box.on .titBox .label.label1 {
  border: 1px solid #fff;
  color: #fff;
}
.scheduleBox .Box.on .titBox .label.label2 {
  border: 1px solid #fff;
  color: #fff;
}
.scheduleBox .Box.on .titBox .label.label3 {
  border: 1px solid #fff;
  color: #fff;
}
.scheduleBox .Box.on .titBox .time {
  color: #fff;
}
.scheduleBox .Box.on .titBox .address {
  color: #fff;
}
.scheduleBox .Box.on .btnBox .btn.btn1 {
  color: #082CA4;
  background-color: #fff;
}
.scheduleBox .Box.on .btnBox .btn.btn2 {
  color: #CDCFD6;
  background-color: #fff;
}
.scheduleBox .Box.on .btnBox .iconfont {
  background-color: #fff;
  color: #333;
  transform: rotate(270deg);
}
.scheduleBox .contBox {
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-top: none;
  display: none;
}
.scheduleBox .contBox.sel {
  display: block;
}
.scheduleBox .contBox .cont {
  width: 100%;
  background-color: #FAFBFF;
  padding: 1% 30px 26px;
}
.scheduleBox .contBox .cont .t {
  font-size: 16px;
  line-height: 24px;
  color: #3D3D3D;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}
.scheduleBox .contBox .cont .t p {
  margin: 6px 0;
}
.scheduleBox .contBox .cont .t p:nth-child(1) {
  min-width: 80px;
}
.scheduleBox .contBox .cont .t p:nth-child(2) {
  min-width: calc(100% - 80px);
}
.scheduleBox .contBox .cont .t p span:last-child em {
  display: none;
}
.scheduleBox .contBox .cont .t1 {
  font-size: 16px;
  line-height: 20px;
  color: #3D3D3D;
  padding: 20px 0 14px;
}
.scheduleBox .contBox .cont .t2 {
  font-size: 14px;
  line-height: 28px;
  color: #666666;
  overflow: hidden;
}
.scheduleBox .contBox .cont .t2.on {
  height: auto;
}
.scheduleBox .contBox .cont .show {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  line-height: 18px;
  color: #333333;
  cursor: pointer;
}
.scheduleBox .contBox .cont .show p {
  margin-bottom: 5px;
}
.scheduleBox .contBox .cont .show .iconfont {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 18px;
  background-color: #262626;
  color: #fff;
  transform: rotate(90deg);
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
}
.scheduleBox .contBox .dl {
  width: 100%;
  padding: 50px 30px 20px;
  position: relative;
}
.scheduleBox .contBox .dl::after {
  content: '';
  width: 1px;
  height: calc(100% - 150px);
  border-left: 1px dashed #082CA4;
  position: absolute;
  top: 59px;
  left: 169px;
}
.scheduleBox .contBox .dl .dt {
  width: 100%;
  margin-bottom: 30px;
}
/* .scheduleBox .contBox .dl .dt:last-child::after {
  content: '';
  width: 20px;
  height: 100px;
  border-left: 1px dashed #082CA4; 
  position: absolute;
  top: 59px;
  left: 160px;
} */
.scheduleBox .contBox .dl .dt .time {
  width: 150px;
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  margin-right: 30px;
  padding-right: 40px;
  text-align: right;
  position: relative;
}
.scheduleBox .contBox .dl .dt .time::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: rgba(8, 44, 164, 0.1);
  position: absolute;
  top: 3px;
  right: 2px;
}
.scheduleBox .contBox .dl .dt .time::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #082CA4;
  position: absolute;
  top: 7px;
  right: 6px;
}
.scheduleBox .contBox .dl .dt .dd {
  width: calc(100% - 170px);
}
.scheduleBox .contBox .dl .dt .dd .t3 {
  font-size: 16px;
  line-height: 22px;
  color: #082CA4;
  margin-bottom: 4px;
}
.scheduleBox .contBox .dl .dt .dd .p1 {
  font-size: 16px;
  line-height: 28px;
  color: #333;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.scheduleBox .contBox .dl .dt .dd .p1 span {
  font-weight: bold;
  margin-right: 20px;
}
.scheduleBox .contBox .dl .dt .dd .p1 .p1-t {
  font-weight: bold;
  margin-right: 20px;
  width: 80px;
  text-align: left;
}
.scheduleBox .contBox .dl .dt .dd .p1 .p1-c {
  text-align: left;
  flex: 1;
}
.scheduleBox .contBox .dl .dt .dd .li {
  width: 31.3333%;
  margin: 0 3% 30px 0;
  align-items: center;
}
.scheduleBox .contBox .dl .dt .dd .li:nth-child(3n) {
  margin: 0 0 30px 0;
}
.scheduleBox .contBox .dl .dt .dd .li .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.scheduleBox .contBox .dl .dt .dd .li .img img {
  width: 100%;
  display: block;
}
.scheduleBox .contBox .dl .dt .dd .li .t4 {
  width: calc(100% - 60px);
}
.scheduleBox .contBox .dl .dt .dd .li .t4 .name {
  font-size: 14px;
  line-height: 18px;
  color: #333333;
}
.scheduleBox .contBox .dl .dt .dd .li .t4 .name span {
  font-size: 12px;
  line-height: 16px;
  color: #999;
}
.scheduleBox .contBox .dl .dt .dd .li .t4 .t5 {
  font-size: 12px;
  line-height: 18px;
  color: #999;
  margin-top: 4px;
}
.scheduleBox .contBox .guestBox {
  width: 100%;
  padding: 0 20px 20px;
}
.scheduleBox .contBox .guestBox .guestTit {
  font-size: 28px;
  font-weight: bold;
  line-height: 32px;
  color: #3D3D3D;
  text-align: center;
  margin-bottom: 50px;
}
.scheduleBox .contBox .guestBox .guestList {
  width: 100%;
}
.scheduleBox .contBox .guestBox .guestList li {
  width: 220px;
  max-height: 300px;
  overflow: hidden;
  padding: 20px;
  border: 2px solid #fff;
  transition: all 0.6s ease;
}
.scheduleBox .contBox .guestBox .guestList li .img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheduleBox .contBox .guestBox .guestList li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
  border-radius: 50%;
  /* 图片质量优化 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* 图片加载失败或无图片时的占位效果 */
.scheduleBox .contBox .guestBox .guestList li .img img:not([src]),
.scheduleBox .contBox .guestBox .guestList li .img img[src=""],
.scheduleBox .contBox .guestBox .guestList li .img img[src*="placeholder"] {
  background: linear-gradient(135deg, #e3e3e3 0%, #f5f5f5 100%);
  position: relative;
}
.scheduleBox .contBox .guestBox .guestList li .img img:not([src]):before,
.scheduleBox .contBox .guestBox .guestList li .img img[src=""]:before,
.scheduleBox .contBox .guestBox .guestList li .img img[src*="placeholder"]:before {
  content: "👤";
  font-size: 40px;
  color: #ccc;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 图片加载错误时的样式 */
.scheduleBox .contBox .guestBox .guestList li .img img.error-image {
  filter: grayscale(20%);
  opacity: 0.9;
}

/* 悬停效果 */
.scheduleBox .contBox .guestBox .guestList li:hover .img {
  transform: scale(1.05);
}

.scheduleBox .contBox .guestBox .guestList li:hover .img img {
  filter: brightness(1.1);
}

/* 响应式图片适配 */
@media (max-width: 768px) {
  .scheduleBox .contBox .guestBox .guestList li .img {
    width: 100px;
    height: 100px;
  }
}

/* 图片质量优化 */
.scheduleBox .contBox .guestBox .guestList li .img img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.scheduleBox .contBox .guestBox .guestList li .name {
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #333333;
  margin-top: 16px;
}
.scheduleBox .contBox .guestBox .guestList li .p {
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    color: #999999;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.scheduleBox .contBox .guestBox .guestList li:hover {
  background: linear-gradient(180deg, #A1B7FF -107%, #FFFFFF 113%);
  border: 2px solid rgba(8, 44, 164, 0.08);
}

@media (max-width: 1480px) {
  .indexSchedule .timeBox li {
    height: 46px;
    line-height: 46px;
    border-radius: 23px;
    font-size: 16px;
  }
  .scheduleBox .Box .titBox {
    width: calc(100% - 190px);
  }
  .scheduleBox .Box .titBox .tit {
    max-width: calc(100% - 110px);
    font-size: 16px;
    line-height: 24px;
  }
  .scheduleBox .Box .titBox .label {
    min-width: 70px;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
  }
  .scheduleBox .Box .titBox .label .iconfont {
    font-size: 14px;
  }
  .scheduleBox .Box .titBox .address {
    font-size: 14px;
    line-height: 18px;
  }
  .scheduleBox .Box .titBox .address .iconfont {
    font-size: 16px;
  }
  .scheduleBox .Box .btnBox .btn {
    width: 120px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    font-size: 14px;
  }
  .scheduleBox .Box .btnBox .iconfont {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}


