/* details 详情页面样式 */

.details-source {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 34px;
  background: #fff;
  border-radius: 0px 0px 0px 0px;
  opacity: 1;
  margin-top: 10px;
  overflow: hidden;
}
.details-source-icon {
  border-radius: 2px 2px 2px 2px;
  display: flex;
  color: #ff853b;
  align-items: center;
  margin: 10px;
}
.details-source-icon > img {
  width: 100%;
  height: 100%;
  scale: 0.8;
}

.details-source-animate-text {
  width: 100%;
  height: 18px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.details-source-animate-text > p {
  margin-left: 5px;
  color: #0f131a;
  display: inline-block;
  position: absolute;
  top: 0;
  animation: 10s wordsLoop linear infinite normal;
}

@keyframes wordsLoop {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

@-webkit-keyframes wordsLoop {
  0% {
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }
}

/* 详情介绍卡片 */
.details-title {
  background: #ffffff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.12);
  border-radius: 8px 8px 8px 8px;
  margin: 10px;
  padding: 14px 12px;
  height: auto;
}
.details-title .title {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.details-title .title {
  height: 16px;
}
.details-title .title-text {
  margin-left: 6px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.details-title .title-text > p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
}
.pass {
  margin-top: 10px;
  vertical-align: middle;
  height: 16px;
}

.pass-text {
  margin-left: 4px;
  color: #07b76b;
  margin-top: 5px;
}

.details-time {
  margin: 10px 0 0 0;
  color: #999999;
}
.label {
  display: flex;
  flex: 1;
  align-items: start;
  justify-content: start;
  margin-top: 10px;
}

.label ul {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
.label-one {
  width: auto;
  height: auto;
  margin-right: 4px;
  margin-top: 4px;
  color: #999999;
  padding: 2px 0;
  flex-shrink: 0;
}
.label-items {
  padding: 2px 6px;
  background-color: #ffefe5;
  color: #ff6000;
  margin-right: 4px;
  margin-top: 4px;
  border-radius: 4px 4px 4px 4px;
}
.format {
  color: #999999;
  display: flex;
  margin-top: 10px;
}
.price {
  margin-top: 10px;
  color: #999999;
  display: flex;
}

/* 内容 */
.details-content {
  height: auto;
  background: #ffffff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.12);
  border-radius: 8px 8px 8px 8px;
  margin: 10px;
  padding: 10px;
}
.details-content-text {
  font-size: 12px;
}

/* 点击下载 */
.download-details {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 52px;
  background: #ffffff;
  box-shadow: 0px -1px 1px 1px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.download-details .download {
  width: 130px;
  height: 36px;
  background: #ffffff;
  border-radius: 4px 4px 4px 4px;
  border: 1px solid #07b76b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-details .download img {
  height: 16px;
}
.download-details .phone-contact-us {
  width: 130px;
  height: 36px;
  background: #07b76b;
  border-radius: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-details .phone-contact-us img {
  height: 16px;
}
/* details 详情页面样式 */
