body {
  user-select: none; /* 禁止文本选择 */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
}
.home_banner {
  width: 100%;
  height: 600px;
}

.concise_project_box {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  min-width: 750px;
  /* margin: 15px; */
  max-width: 1366px;
  margin: auto;
  padding: 15px;
  position: relative;
}
.concise_model_box {
  width: calc(100% - 420px);
  height: auto;
}

.concise_model {
  width: 100%;
  aspect-ratio: 5 / 3;
  background-color: lightblue;
  position: relative;
  z-index: 20;
}
.concise_model_list {
  width: 420px;
  height: calc(100vh - 100px);
}

.concise_model_info .title {
  font-size: 20px;
  line-height: 2;
}
.concise_model_info .introduce {
  color: #797979;
  font-size: 13px;
}
.concise_user_info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.concise_user_info .concise_user_avatar {
  width: 40px;
  height: 40px;
  background-size: cover;
  border-radius: 50%;
  background-repeat: no-repeat;
}
.concise_user_info span {
  padding: 0px 10px;
}
.concise_user_info .concise_user_nickname {
  color: #232323;
  font-size: 16px;
  font-weight: normal;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.concise_user_info .concise_user_attention {
  color: #fff;
  background-color: var(--color-base);
  text-align: center;
  padding: 0px 7px;
  margin: 0;
  border-radius: 3px;
  margin-left: 5px;
  line-height: 20px;
  margin-top: 2px;
  white-space: nowrap;
}
.concise_model_operation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 12px;
  background: #f1f1f1;
}
.model-data {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.like-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  cursor: pointer;
  padding-right: 0.5rem;
}

.check[type="checkbox"] {
  display: none;
}

.container-like {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: -0.25em;
  margin-bottom: -0.25em;
}

.icon {
  height: 1rem;
  fill: #888888;
  transition: opacity 0.3s ease-in-out;
  padding: 0.2rem;
  width: 1rem;
}

.icon.active {
  display: none;
  fill: #f52121;
}

.check[type="checkbox"]:checked + .container-like .icon.active {
  display: inline-block;
  animation: wiggle 0.5s ease-in-out;
}

.check[type="checkbox"]:checked + .container-like .icon.inactive {
  display: none;
}

.model-numerical-count {
  padding: 0.5em;
  color: #888888;
  font-family: Arial, sans-serif;
}
.concise_user_else {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

.container-collection input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.container-collection {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-top: -0.25em;
  margin-bottom: -0.25em;
}

.container-collection svg {
  position: relative;
  top: 0;
  left: 0;
  height: 1.6em;
  width: 1.6em;
  transition: all 0.3s;
  fill: #888888;
}

.container-collection svg:hover {
  transform: scale(1.1);
}

.container-collection input:checked ~ svg {
  fill: #ffeb49;
}

.model-data-pv {
  background-image: url(../img/pv.svg);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position-y: 0.5rem;
  padding-left: 1.4rem;
  padding-right: 1.3rem;
}
.model-data-download {
  background-image: url(../img/download.svg);
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position-y: 0.4rem;
  padding-left: 1.25rem;
  padding-right: 1.3rem;
}
.collection-text {
  padding: 0.5em 0.5em 0.5em 0em;
}
.like-text {
  padding: 0.5em 0.5em 0.5em 0em;
}
.model-data-comments-title {
  font-weight: bold;
  font-size: 16px;
}
.model-data-comments-title span {
  font-weight: initial;
  font-size: 13px;
}
.model-data-comments {
  /* -------------- */
}
.model-data-comments .model-data-comments-input {
  position: relative; /* 使子元素可以绝对定位 */
  width: 100%;
  height: 120px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  margin: 10px 0px;
}
.model-data-comments #model-data-comments-input-length {
  position: absolute;
  bottom: 4px;
  right: 7px;
  font-size: 14px;
  color: #555;
}
.model-data-comments #comments-textarea {
  resize: none;
  width: calc(100% - 10px);
  height: 80px;
  font-size: 15px;
  font-weight: inherit;
  border: none;
  padding: 5px;
  border-radius: 10px;
  background-color: #fff;
  outline: none;
  overflow-y: auto;
}
.model-data-comments #comments-textarea:empty:before {
  content: attr(placeholder);
  color: #aaa; /* 占位符颜色 */
}
.model-data-comments #model-data-comments-expression {
  background-image: url(../img/expression.svg);
  position: absolute;
  bottom: 2px;
  left: 10px;
  color: #555;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}
.model-data-comments .blurred {
  border: 1px solid var(--color-base);
}
.model-data-comments .comments-send {
  display: none;
  margin-bottom: 20px;
}
.model-data-comments .comments-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
}
.model-data-comments .comments-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.model-data-comments .comments-user-data {
  display: flex;
  flex-direction: row;
}
.model-data-comments .comments-user-info {
  margin-left: 10px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
}
.model-data-comments .comments-user-info span {
  display: block;
  font-size: 12px;
}
.model-data-comments .comments-user-info .comments-user-nickname {
  font-size: 13px;
  color: var(--color-base);
}
.model-data-comments .comments-user-info .comments-user-date {
  color: #b3b3b3;
}
.model-data-comments .comments-content {
  width: calc(100% - 40px);
  margin-left: 40px;
}
.model-data-comments .comments-content .comments-to-user {
  color: var(--color-base);
  margin-right: 5px;
}
.model-data-comments .comments-content .comments-content-info {
  color: #555;
  margin-top: 5px;
}
.model-data-comments .comments-operation {
  width: calc(100% - 40px);
  margin: 5px 0 0 40px;
  display: flex;
  color: #777777;
  font-size: 13px;
  align-items: center;
  justify-content: flex-start;
}
.model-data-comments .comments-operation p {
  margin-right: 20px;
}
.model-data-comments .comments-operation .comments-reply {
  cursor: pointer;
  background-image: url(../img/info.svg);
  background-size: 17px;
  padding-left: 17px;
  background-repeat: no-repeat;
}
.model-data-comments .comments-operation .comments-like {
  cursor: pointer;
  background-image: url(../img/ax1.svg);
  background-size: 13px;
  padding-left: 15px;
  background-repeat: no-repeat;
  background-position-y: 3px;
}
.model-data-comments .comments-operation .comments-like-active {
  background-image: url(../img/ax.svg) !important;
}
.model-data-comments .comments-operation .comments-del {
  cursor: pointer;
  background-image: url(../img/del1.svg);
  background-size: 13px;
  padding-left: 15px;
  background-repeat: no-repeat;
  background-position-y: 2px;
  font-size: 12px;
  line-height: 17px;
}
.model-data-comments .comments-reply-list {
  width: calc(100% - 90px);
  margin-left: 40px;
  color: #777777;
  font-size: 13px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.model-data-comments .comments-reply-list-show {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #d5d5d5;
  padding: 20px 20px 0 20px;
  border-radius: 7px;
}
.model-data-comments .comments-reply-list-hide {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
.model-data-comments-list {
  width: 100%;
  max-height: 650px;
  min-height: 300px;
  overflow-y: auto;
}

.comments-associated {
  color: var(--color-base);
  margin-right: 5px;
  margin-right: 5px;
}
.comments-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}
.model-data-info {
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 8px;
}
.model-data-info .model-data-ico {
  background-repeat: no-repeat;
  background-size: 17px;
  padding: 5px 21px;
  height: 19px;
  background-position-y: 6px;
  color: #777;
  font-size: 13px;
}
.model-data-info .model-data-date {
  background-image: url(../img/time.svg);
}
.model-data-info .model-data-label {
  background-image: url(../img/label.svg);
}
.model-data-info .model-data-tag {
  background-image: url(../img/tag.svg);
}
.model-data-info div span:first {
  margin-left: 0;
}
.model-data-info span {
  padding: 3px 10px;
  background: #e7e7e7;
  border-radius: 3px;
  color: #777;
  margin-right: 10px;
}

.model-download-content {
  padding: 0 20px 0 0;
}

.model-download-content .model-download-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 30px;
  background: #efefef;
  padding: 0 10px;
}

.model-download-content .model-download-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.model-download-content .model-download-info-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 13px;
}

.model-download-content .model-download-info-right p {
  color: #838383;
  font-size: 13px;
  margin-right: 15px;
}

.model-download-content .concise_user_download {
  color: #fff;
  background-color: var(--color-base);
  text-align: center;
  padding: 0px 7px;
  margin: 0;
  border-radius: 3px;
  margin-left: 5px;
  line-height: 20px;
  margin-top: 2px;
}
.model-goods-content {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.model-goods-content p {
  padding: 10px 0;
}
.model-goods-content span:first-child {
  font-size: 15px;
  color: #616161;
  font-weight: 500;
}
.model-goods-content span:nth-child(2) {
  font-size: 16px;
  color: #cf0000;
  font-weight: bold;
}
.model-goods-content button {
  border-radius: 5px;
}
.model-data-content li {
  padding: 10px 5px;
  color: #3d3d3d;
}
.model-data-content li span:nth-child(2) {
  color: #7d7d7d;
}

.share-container {
  /* background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto; */
}

.share-container .share-title {
  color: #333;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.share-container .share-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.share-container .share-item {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.share-container .share-item:hover {
  transform: translateY(-3px);
}

.share-container .share-item::after {
  content: attr(data-title);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.share-container .share-item:hover::after {
  opacity: 1;
}

.share-container .wechat {
  background: #09bb07;
  color: white;
}

.share-container .weibo {
  background: #e6162d;
  color: white;
}

.share-container .qq {
  background: #12b7f5;
  color: white;
}

.share-container .qzone {
  background: #f7b500;
  color: white;
}

.share-container .douban {
  background: #00820f;
  color: white;
}

.share-container .baidu {
  background: #2932e1;
  color: white;
}

.share-container .link {
  background: #666;
  color: white;
}

.share-container .fa-douban {
  background-image: url(../img/douban.svg);
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
}

.share-container .fa-baidu {
  background-image: url(../img/baidu.svg);
  width: 16px;
  height: 16px;
  background-size: cover;
  background-repeat: no-repeat;
}

.share-container .link-section {
  /* background: white; */
  padding: 0 10px;
  border-radius: 8px;
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.share-container #shareLink {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background: #f9f9f9;
}

.share-container .copy-btn {
  background: var(--color-base);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.share-container .copy-btn:hover {
  background: var(--color-base-hover);
}

.share-container #linkQrcode {
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 110px;
  height: 110px;
  overflow: hidden;
}

.share-container #linkQrcode img {
  width: 100%;
  height: 100%;
}
.model-data-box .layui-tab-title span {
  display: none;
}
.model-data-box .layui-tab-content {
  padding: 10px 0px 0px 0px;
}

.concise_model_list li {
  width: calc(100% - 20px);
  height: 110px;
  margin: auto;
  border-radius: 3px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 1px rgba(34, 34, 34, 0.1),
    0 7px 18px 0 rgba(34, 34, 34, 0.1);
}
/* 媒体查询：屏幕宽度小于 750px */
@media (max-width: 750px) {
  .concise_project_box {
    min-width: auto;
    width: 95%;
    margin-top: 10px;
    padding: 0;
  }
  .concise_model_list {
    display: none;
  }
  .concise_model {
    width: 100%;
    height: calc(100vw * 0.6);
    margin: auto;
  }
  .concise_model_box {
    width: 100%;
  }
}

.button-attention {
  background-color: #f3f7fe;
  color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  line-height: 23px;
  transition: 0.3s;
  padding: 0 15px;
  font-size: 14px;
}

.button-attention:hover {
  background-color: var(--color-base);
  box-shadow: 0 0 0 1px --color-base-hover;
  color: #fff;
}

#is-pwd {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(135deg, #17ead9, #6078ea);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}

#private-pwd {
  border: 2px solid transparent;
  width: 15em;
  height: 2.5em;
  padding-left: 0.8em;
  outline: none;
  overflow: hidden;
  background-color: #f3f3f3;
  border-radius: 10px 0 0 10px;
  transition: all 0.5s;
}

#private-pwd:hover,
#private-pwd:focus {
  border: 2px solid #4a9dec;
  box-shadow: 0px 0px 0px 7px rgb(74, 157, 236, 20%);
  background-color: white;
}
.concise_model_pwd button:hover,
.concise_model_pwd button:focus {
  border: 2px solid #4a9dec;
  box-shadow: 7px 7px 7px 0px rgb(74, 157, 236, 20%);
}
.concise_model_pwd {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.concise_model_pwd button {
  border: 2px solid transparent;
  width: 4em;
  height: 3em;
  background: var(--color-base);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 0 10px 10px 0;
  border: none;
}

.model-item-img {
  width: 150px;
  height: 110px;
}
.model-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-item-info {
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  margin-right: 10px;
}

.model-item-numerical {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 5px;
}
.model-item-numerical p {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 10px;
  color: #919191;
}

.model-item-numerical p span {
  font-size: 13px;
}
.model-item-title {
  font-weight: bold;
  color: #1e1e1e;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 5px;
  margin-bottom: 2px;
}
.model-item-introduce {
  color: #a7a7a7;
  font-size: 12px;
  display: -webkit-box; /* 创建伸缩盒子模型 */
  -webkit-box-orient: vertical; /* 垂直排列子元素 */
  -webkit-line-clamp: 2; /* 显示的行数限制为2行 */
  overflow: hidden; /* 超出隐藏 */
  text-overflow: ellipsis; /* 超出显示省略号 */
}
@media screen and (max-width: 450px) {
  .concise_user_info .concise_user_nickname {
    font-size: 0.85rem;
  }
  .concise_user_info span {
    padding: 0px 6px;
  }
  .model-data-pv {
    padding-right: 0.5rem;
    font-size: 0.7rem;
    background-position-y: 0.3rem;
    padding-left: 1.15rem;
    background-size: 0.9rem;
  }
  .model-data-download {
    padding-right: 0.5rem;
    font-size: 0.7rem;
    background-position-y: 0.29rem;
    padding-left: 1.1rem;
    background-size: 0.85rem;
  }
  .like-wrapper {
    padding-right: 0;
  }
  .icon {
    width: 0.85rem;
    height: 0.85rem;
    padding: 0.3rem;
    padding-top: 0.4rem;
  }
  .like-text,
  .collection-text {
    font-size: 0.7rem;
  }
  .container-collection svg {
    height: 1.3em;
    width: 1.3em;
  }
}
