@-webkit-keyframes loading-rotate {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes loading-rotate {
  100% {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
.videos .container {
  padding: 20px;
}
.videos .tabs {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  gap: 25px 0;
  height: 142px;
  box-sizing: border-box;
}
.videos .tabs .tab {
  color: #333;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  height: 24px;
  width: 100%;
}
.videos .tabs .tab.two-list, .videos .tabs .tab.three-list {
  position: absolute;
  left: 0;
  top: 50px;
  display: none;
  height: 0;
  z-index: 1;
}
.videos .tabs .tab .name {
  font-weight: 500;
  padding-right: 20px;
}
.videos .tabs .tab .list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 4px;
}
.videos .tabs .tab .list .item {
  border-radius: 12px;
  cursor: pointer;
  padding: 0 15px;
}
.videos .tabs .tab .list .item:hover {
  color: #1a4299;
}
.videos .tabs .tab .list .item.active {
  background-color: #1a4299;
  color: #fff;
}
.videos .tabs .tab .list .item.active .two-list {
  display: flex;
  height: 24px;
}
.videos .tabs .tab .list .item.active .two-list .active .three-list {
  display: flex;
  height: 24px;
}
.videos .video-num {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}
.videos .video-num #total {
  font-size: 18px;
  color: #F39800;
}
.videos .video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 30px;
}
.videos .video-container .video-item {
  width: 275px;
  height: 220px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 0.2s linear;
}
.videos .video-container .video-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.videos .video-container .video-item .img {
  width: 275px;
  height: 154px;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos .video-container .video-item .name {
  margin: 8px 15px;
  font-size: 16px;
  color: #666;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.videos .no-data {
  align-items: center;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  width: 100%;
  color: #999;
  font-size: 18px;
}
.videos .no-data.show {
  display: flex;
}
.videos .el-loading-mask {
  position: absolute;
  z-index: 100;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.videos .el-loading-mask .el-loading-spinner {
  top: 50%;
  margin-top: -21px;
  width: 100%;
  text-align: center;
  position: absolute;
}
.videos .el-loading-mask .el-loading-spinner .circular {
  height: 80px;
  width: 80px;
  -webkit-animation: loading-rotate 2s linear infinite;
          animation: loading-rotate 2s linear infinite;
}
.videos .el-loading-mask .el-loading-spinner .circular .path {
  -webkit-animation: loading-dash 1.5s ease-in-out infinite;
          animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #1a4299;
  stroke-linecap: round;
}

.deail + .footer {
  margin: 0;
}
.deail .content {
  padding: 50px 0;
  width: 100%;
  background-color: #333;
}
.deail .content .box {
  display: flex;
  justify-content: space-between;
}
.deail .content .box .player {
  width: 880px;
  height: 495px;
  border-radius: 20px;
  overflow: hidden;
}
.deail .content .box .info-box {
  width: 290px;
}
.deail .content .box .info-box .info-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 24px;
  color: #fff;
}
.deail .content .box .info-box .info-list {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  margin-top: 20px;
}
.deail .content .box .info-box .info-list .info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  transition: color 0.2s linear;
}
.deail .content .box .info-box .info-list .info-item:hover {
  color: #f39800;
}
.deail .content .box .info-box .info-list .info-item .img {
  margin-right: 15px;
  width: 129px;
  height: 75px;
  border-radius: 10px;
  object-fit: cover;
}
.deail .content .box .info-box .info-list .info-item .name {
  flex: 1;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.deail .content .video-title {
  margin-top: 20px;
  font-size: 28px;
  line-height: 28px;
  color: #fff;
}