#my-shouts-container,
#my-shouts-container::before,
#my-shouts-container::after {
  box-sizing: border-box;
}
.qexot-item {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.qexot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.08);
}
.qexot-header {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 16px;
}
.qexot-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 12px 0 0 !important;
  border: 2px solid #007bff;
  animation: pulseBorder 2s infinite alternate;
}
.qexot-user-info {
  display: flex;
  flex-direction: column;
}
.qexot-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  margin-right: 0;
}
.qexot-datatime {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}
.qexot-content {
  font-size: 15px;
  line-height: 1;
  color: #383838;
  white-space: pre-wrap;
  font-family: "Kaiti SC", KaiTi, "FangSong", "Apple LiSung", "STKaiti", cursive;
}
.qexot-content .datacont {
  clear: both;
}
.qexot-content img {
  display: block;
  max-width: 60%;
  border-radius: 6px;
  margin-top: 10px;
}
.qexot-tags-container {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.qexot-tag-item {
  background: #f0f4ff;
  color: #4a6dff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 6px;
  margin-bottom: 4px;
}
.qexot-bottom {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: 16px;
}
.qexot-like {
  display: flex;
  align-items: center;
  color: #666;
  cursor: pointer;
}
.qexot-like svg {
  margin-right: 4px;
}
.qexot-more {
  background: #f0f0f0;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  margin: 10px auto;
  color: #555;
}
@-moz-keyframes pulseBorder {
  0% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0.5);
  }
  70% {
    border-color: #66a5ff;
    box-shadow: 0 0 0 8px rgba(0,123,255,0);
  }
  100% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0);
  }
}
@-webkit-keyframes pulseBorder {
  0% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0.5);
  }
  70% {
    border-color: #66a5ff;
    box-shadow: 0 0 0 8px rgba(0,123,255,0);
  }
  100% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0);
  }
}
@-o-keyframes pulseBorder {
  0% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0.5);
  }
  70% {
    border-color: #66a5ff;
    box-shadow: 0 0 0 8px rgba(0,123,255,0);
  }
  100% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0);
  }
}
@keyframes pulseBorder {
  0% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0.5);
  }
  70% {
    border-color: #66a5ff;
    box-shadow: 0 0 0 8px rgba(0,123,255,0);
  }
  100% {
    border-color: #007bff;
    box-shadow: 0 0 0 0 rgba(0,123,255,0);
  }
}
