@charset "UTF-8";
body.dark-theme {
  background: #FAFBFC;
  background-image: radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  color: #1E293B;
  font-family: "Inter", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header .layui-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 2rem;
}
.header .nav-left .logo {
  display: block;
  height: 36px;
}
.header .nav-left .logo img {
  height: 100%;
  width: auto;
  filter: brightness(1.2);
}
.header .nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-right .layui-nav {
  background: none;
  padding: 0;
  margin: 0;
}
.header .nav-right .layui-nav .layui-nav-item {
  margin: 0 4px;
  position: relative;
}
.header .nav-right .layui-nav .layui-nav-item a {
  color: #1E293B;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 16px;
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-decoration: none;
}
.header .nav-right .layui-nav .layui-nav-item a:hover {
  color: #6366F1;
  background: rgba(99, 102, 241, 0.08);
  transform: translateY(-1px);
}
.header .nav-right .layui-nav .layui-nav-item.active a {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}
.header .nav-right .layui-nav .layui-nav-item.active a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.header .nav-right .layui-nav .layui-nav-item.active a:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}
.header .nav-right .layui-nav .layui-nav-item.active a:hover::before {
  left: 100%;
}
@media (max-width: 767px) {
  .header .nav-right .layui-nav {
    display: none;
  }
}
.header .nav-right .mobile-menu-btn {
  display: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .header .nav-right .mobile-menu-btn {
    display: block;
  }
}
.header .nav-right .mobile-menu-btn:hover {
  background: rgba(99, 102, 241, 0.1);
}
.header .nav-right .mobile-menu-btn .menu-line {
  display: block;
  width: 24px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}
.header .nav-right .mobile-menu-btn .menu-line::before, .header .nav-right .mobile-menu-btn .menu-line::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
  position: absolute;
  transition: all 0.3s ease;
}
.header .nav-right .mobile-menu-btn .menu-line::before {
  top: -8px;
}
.header .nav-right .mobile-menu-btn .menu-line::after {
  bottom: -8px;
}

.main-container {
  margin-top: 130px !important;
  padding: 0;
}
@media (max-width: 767px) {
  .main-container {
    margin-top: 110px !important;
    padding: 0;
  }
}

.search-section {
  margin: 0 auto;
  max-width: 600px;
}
@media (max-width: 767px) {
  .search-section {
    margin: 40px auto 40px;
  }
}
.search-section .search-box-main {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 8px;
  transition: all 0.3s ease;
}
.search-section .search-box-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.search-section .search-box-main .layui-input {
  flex: 1;
  height: 50px;
  background: transparent;
  border: none;
  color: #1E293B;
  font-size: 16px;
  padding: 0 24px;
  font-weight: 400;
}
.search-section .search-box-main .layui-input::placeholder {
  color: rgba(30, 41, 59, 0.6);
}
.search-section .search-box-main .layui-input:focus {
  outline: none;
}
.search-section .search-box-main .search-btn {
  height: 50px;
  padding: 0 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 25px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}
.search-section .search-box-main .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
}
.search-section .search-box-main .search-btn::before {
  content: "🔍";
  margin-right: 8px;
}
@media (max-width: 767px) {
  .search-section {
    margin-bottom: 30px;
  }
}

#banner {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin: 40px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #1E293B;
  position: relative;
  padding-left: 12px;
}
.section-title h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}
.section-title .more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.08);
  transition: all 0.3s ease;
  font-weight: 500;
}
.section-title .more-link:hover {
  color: #6366F1;
  background: rgba(99, 102, 241, 0.12);
  transform: translateY(-1px);
}
.section-title .more-link:hover svg {
  transform: translateX(3px);
}
.section-title .more-link svg {
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .section-title {
    margin: 24px 0 16px;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .section-title .more-link {
    font-size: 13px;
    padding: 6px 12px;
  }
}

.video-layout {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.video-layout.layout-featured .video-layout-main {
  margin-bottom: 32px;
}
.video-layout.layout-featured .video-layout-main .large-card {
  position: relative;
}
.video-layout.layout-featured .video-layout-main .large-card .video-cover {
  height: 300px;
  position: relative;
}
.video-layout.layout-featured .video-layout-main .large-card .video-cover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}
.video-layout.layout-featured .video-layout-main .large-card .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.video-layout.layout-featured .video-layout-main .large-card .video-info .title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.video-layout.layout-featured .video-layout-main .large-card .video-info .meta-info .publish-time {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}
.video-layout.layout-featured .video-layout-main .large-card .hot-tag {
  top: 20px !important;
  left: 20px !important;
  padding: 8px 16px !important;
  font-size: 14px !important;
  background: rgba(239, 68, 68, 0.9) !important;
  backdrop-filter: blur(10px);
}
.video-layout.layout-featured .video-layout-side {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.video-layout.layout-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.video-layout.layout-cards .video-layout-main,
.video-layout.layout-cards .video-layout-side {
  display: contents;
}
.video-layout.layout-cards .video-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.video-layout.layout-cards .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.video-layout.layout-cards .video-card .video-cover {
  height: 200px;
}
.video-layout.layout-cards .large-card .video-cover {
  height: 220px !important;
}
.video-layout.layout-cards .large-card .video-info .title {
  font-size: 18px !important;
}
.video-layout.layout-list .video-layout-main {
  margin-bottom: 24px;
}
.video-layout.layout-list .video-layout-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-layout.layout-list .video-layout-side .video-card {
  display: flex;
  gap: 16px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}
.video-layout.layout-list .video-layout-side .video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
}
.video-layout.layout-list .video-layout-side .video-card .video-cover {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.video-layout.layout-list .video-layout-side .video-card .video-info {
  flex: 1;
  padding: 0;
}
.video-layout.layout-list .video-layout-side .video-card .video-info .title {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.video-layout.layout-list .video-layout-side .video-card .video-info .meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.video-layout.layout-list .video-layout-side .video-card .video-info .meta-info .publish-time {
  font-size: 13px;
}
.video-layout.layout-list .video-layout-side .video-card .recommend-tag,
.video-layout.layout-list .video-layout-side .video-card .duration {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  bottom: auto;
  margin-left: auto;
  align-self: flex-start;
}
.video-layout.layout-magazine {
  display: block;
}
.video-layout.layout-magazine .video-layout-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover:hover img {
  transform: scale(1.05);
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover .hot-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover .hot-tag svg {
  width: 14px;
  height: 14px;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-cover .duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-info {
  padding: 24px;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-info .title {
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-main .large-card:first-child .video-info .meta-info .publish-time {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover:hover img {
  transform: scale(1.05);
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover .hot-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover .hot-tag svg {
  width: 14px;
  height: 14px;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-cover .duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-info {
  padding: 24px;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-info .title {
  font-size: 20px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-main .large-card:last-child .video-info .meta-info .publish-time {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.video-layout.layout-magazine .video-layout-side {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-layout.layout-magazine .video-layout-side .video-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}
.video-layout.layout-magazine .video-layout-side .video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover:hover img {
  transform: scale(1.03);
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover .recommend-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #f59e0b;
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover .recommend-tag svg {
  width: 10px;
  height: 10px;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-cover .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-info {
  padding: 12px;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-info .title {
  font-size: 14px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-layout.layout-magazine .video-layout-side .video-card .video-info .meta-info .publish-time {
  color: rgba(30, 41, 59, 0.8);
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .video-layout.layout-magazine .video-layout-side {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .video-layout.layout-magazine .video-layout-main {
    grid-template-columns: 1fr;
  }
  .video-layout.layout-magazine .video-layout-side {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }
}
.video-layout .video-layout-main .large-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  height: 100%;
}
.video-layout .video-layout-main .large-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.video-layout .video-layout-main .large-card .video-cover {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.video-layout .video-layout-main .large-card .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-layout .video-layout-main .large-card .video-cover:hover img {
  transform: scale(1.05);
}
.video-layout .video-layout-main .large-card .video-cover .hot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.video-layout .video-layout-main .large-card .video-cover .hot-tag svg {
  width: 12px;
  height: 12px;
}
.video-layout .video-layout-main .large-card .video-cover .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.video-layout .video-layout-main .large-card .video-info {
  padding: 20px;
}
.video-layout .video-layout-main .large-card .video-info .title {
  font-size: 18px;
  font-weight: 600;
  color: #1E293B;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-layout .video-layout-main .large-card .video-info .meta-info .publish-time {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
}
.video-layout .video-layout-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.video-layout .video-layout-side .video-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}
.video-layout .video-layout-side .video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}
.video-layout .video-layout-side .video-card .video-cover {
  height: 100px;
  position: relative;
  overflow: hidden;
}
.video-layout .video-layout-side .video-card .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-layout .video-layout-side .video-card .video-cover:hover img {
  transform: scale(1.03);
}
.video-layout .video-layout-side .video-card .video-cover .recommend-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #f59e0b;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
}
.video-layout .video-layout-side .video-card .video-cover .recommend-tag svg {
  width: 10px;
  height: 10px;
}
.video-layout .video-layout-side .video-card .video-cover .duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
}
.video-layout .video-layout-side .video-card .video-info {
  padding: 12px;
}
.video-layout .video-layout-side .video-card .video-info .title {
  font-size: 13px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 6px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-layout .video-layout-side .video-card .video-info .meta-info .publish-time {
  color: rgba(30, 41, 59, 0.8);
  font-size: 11px;
}
@media (max-width: 767px) {
  .video-layout:not(.layout-masonry) {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .video-layout:not(.layout-masonry) .video-layout-main .large-card .video-cover {
    height: 200px;
  }
  .video-layout:not(.layout-masonry) .video-layout-main .large-card .video-info {
    padding: 20px;
  }
  .video-layout:not(.layout-masonry) .video-layout-main .large-card .video-info .title {
    font-size: 18px;
  }
  .video-layout:not(.layout-masonry) .video-layout-side {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .video-layout:not(.layout-masonry) .video-layout-side .video-card .video-cover {
    height: 100px;
  }
  .video-layout:not(.layout-masonry) .video-layout-side .video-card .video-info {
    padding: 12px;
  }
  .video-layout:not(.layout-masonry) .video-layout-side .video-card .video-info .title {
    font-size: 13px;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.video-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  aspect-ratio: 16/12;
  display: flex;
  flex-direction: column;
}
.video-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 16px;
}
.video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
}
.video-card:hover::before {
  opacity: 0.03;
}
.video-card .video-cover {
  position: relative;
  flex: 1;
  overflow: hidden;
  z-index: 2;
}
.video-card .video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card .video-cover:hover img {
  transform: scale(1.05);
}
.video-card .video-cover .duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 3;
}
.video-card .video-cover .recommend-tag {
  position: absolute;
  top: 6px;
  right: 6px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 2px 5px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
  z-index: 3;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  min-width: 20px;
  height: 16px;
  justify-content: center;
}
.video-card .video-cover .recommend-tag::before {
  content: "⭐";
  font-size: 7px;
  animation: twinkle 2s ease-in-out infinite;
}
.video-card .video-cover .recommend-tag svg {
  width: 8px;
  height: 8px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
.video-card .video-cover .hot-tag {
  position: absolute;
  top: 6px;
  left: 6px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 2px 5px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
  box-shadow: 0 1px 4px rgba(239, 68, 68, 0.3);
  z-index: 3;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  min-width: 20px;
  height: 16px;
  justify-content: center;
}
.video-card .video-cover .hot-tag::before {
  content: "🔥";
  font-size: 7px;
  animation: flame 1.5s ease-in-out infinite;
}
.video-card .video-cover .hot-tag svg {
  width: 8px;
  height: 8px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}
@keyframes flame {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.05) rotate(-2deg);
  }
  75% {
    transform: scale(1.05) rotate(2deg);
  }
}
.video-card .video-info {
  padding: 12px;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}
.video-card .video-info .title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #1E293B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
.video-card .video-info .meta-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(30, 41, 59, 0.6);
  font-size: 14px;
}
.video-card .video-info .publish-time {
  font-size: 14px;
  color: rgba(30, 41, 59, 0.6);
}
.video-card:hover .title {
  color: #6366F1;
}

.ad-banner {
  margin: 40px 0;
}

.side-ad .ad-placeholder {
  background: #FFFFFF;
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(30, 41, 59, 0.8);
}

.horizontal-ad {
  margin-bottom: 20px;
  width: 100%;
}
.horizontal-ad .ad-wrapper {
  width: 100%;
}
.horizontal-ad .ad-wrapper .ad-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(32, 33, 35, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
@media (max-width: 767px) {
  .horizontal-ad {
    margin: 0 0 12px;
  }
  .horizontal-ad .ad-placeholder {
    height: 120px;
    border-radius: 8px;
  }
}

.detail-content .video-section {
  margin-bottom: 30px;
  border-radius: 12px;
}
.detail-content .video-section .player-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.detail-content .video-section .video-info {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.detail-content .video-section .video-info .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #1E293B;
}
.detail-content .video-section .video-info .meta {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 767px) {
  .detail-content .video-section {
    margin-bottom: 20px;
  }
  .detail-content .video-section .video-info {
    margin-top: 15px;
    padding: 15px;
  }
  .detail-content .video-section .video-info .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .detail-content .video-section .video-info .meta {
    padding-top: 10px;
  }
}
.detail-content .recommend-section {
  padding: 20px 0;
}
.detail-content .recommend-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.detail-content .recommend-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .detail-content .recommend-section {
    padding: 15px 0;
  }
}
.detail-content .recommend-section .video-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}
.detail-content .recommend-section .video-card .video-cover {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.detail-content .recommend-section .video-card .video-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content .recommend-section .video-card .video-cover .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.detail-content .recommend-section .video-card .video-info {
  padding: 12px;
}
.detail-content .recommend-section .video-card .video-info .title {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-content .recommend-section .video-card .video-info .meta-info {
  font-size: 12px;
  color: rgba(30, 41, 59, 0.8);
}

.plyr {
  --plyr-color-main: #6366F1;
  --plyr-video-background: #000;
  --plyr-menu-background: #FFFFFF;
  --plyr-menu-color: #1E293B;
  --plyr-menu-item-text-color: #1E293B;
  --plyr-menu-border-color: rgba(226, 232, 240, 0.8);
}
.plyr .plyr__control--overlaid {
  background: rgba(64, 158, 255, 0.8);
}
.plyr .plyr__control--overlaid:hover {
  background: rgba(64, 158, 255, 0.9);
}
.plyr .plyr__control:hover {
  background: rgba(64, 158, 255, 0.8);
}

.footer {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 60px 0 30px;
  margin-top: 80px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}
.footer .footer-content {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}
.footer .footer-content .footer-links .link-group {
  text-align: center;
}
.footer .footer-content .footer-links .link-group h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer .footer-content .footer-links .link-group .friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.footer .footer-content .footer-links .link-group .friend-links a {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(99, 102, 241, 0.08);
  transition: all 0.3s ease;
  font-weight: 500;
}
.footer .footer-content .footer-links .link-group .friend-links a:hover {
  color: #fff;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.footer .copyright {
  padding-top: 30px;
  text-align: center;
}
.footer .copyright p {
  color: rgba(30, 41, 59, 0.6);
  font-size: 14px;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: -300px;
  width: 300px;
  height: calc(100vh - 80px);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}
.mobile-menu .layui-nav {
  background: none;
  padding: 20px 0;
}
.mobile-menu .layui-nav .layui-nav-item {
  margin: 8px 16px;
}
.mobile-menu .layui-nav .layui-nav-item a {
  color: #1E293B;
  padding: 16px 20px;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.mobile-menu .layui-nav .layui-nav-item a:hover {
  background: rgba(99, 102, 241, 0.08);
  color: #6366F1;
}
.mobile-menu .layui-nav .layui-nav-item.active a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}
.mobile-menu .layui-nav .layui-nav-item.active a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}
.mobile-menu .layui-nav .layui-nav-item.active a:hover {
  background: linear-gradient(135deg, #5a67d8, #6b46c1);
}
.mobile-menu .layui-nav .layui-nav-item.active a:hover::before {
  left: 100%;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.layui-nav {
  background: none !important;
}
.layui-nav::after {
  display: none !important;
}
.layui-nav .layui-nav-item {
  line-height: inherit !important;
}
.layui-nav .layui-nav-item::after {
  display: none !important;
}
.layui-nav .layui-nav-item.active a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
}
.layui-nav .layui-nav-item a {
  text-decoration: none !important;
}
.layui-nav .layui-nav-item a:hover {
  background: rgba(99, 102, 241, 0.08) !important;
  color: #6366F1 !important;
}
.layui-nav .layui-nav-child {
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.layui-nav .layui-nav-child a {
  color: #1E293B !important;
}
.layui-nav .layui-nav-child a:hover {
  background: rgba(99, 102, 241, 0.08) !important;
  color: #6366F1 !important;
}

.search-results-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 40px 0 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.8);
}
.search-results-title .title-content {
  flex: 1;
}
.search-results-title .title-content h2 {
  color: #1E293B;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
}
.search-results-title .title-content .search-info {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  line-height: 1.5;
}
.search-results-title .title-content .search-info .result-count {
  color: #6366F1;
  font-weight: 600;
  font-size: 16px;
}
.search-results-title .title-content .search-info .keyword {
  color: #6366F1;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}
.search-results-title .filter-options {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-results-title .filter-options .filter-label {
  color: rgba(30, 41, 59, 0.8);
  font-size: 14px;
  font-weight: 500;
}
.search-results-title .filter-options .filter-select {
  min-width: 120px;
  padding: 8px 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 8px;
  background: #FFFFFF;
  color: #1E293B;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-results-title .filter-options .filter-select:hover {
  border-color: #6366F1;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}
.search-results-title .filter-options .filter-select:focus {
  outline: none;
  border-color: #6366F1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
@media (max-width: 767px) {
  .search-results-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .search-results-title .title-content h2 {
    font-size: 24px;
  }
  .search-results-title .title-content h2::before {
    font-size: 20px;
  }
  .search-results-title .title-content .search-info {
    font-size: 13px;
  }
  .search-results-title .title-content .search-info .result-count {
    font-size: 14px;
  }
  .search-results-title .filter-options {
    width: 100%;
    justify-content: flex-start;
  }
  .search-results-title .filter-options .filter-select {
    flex: 1;
    max-width: 200px;
  }
}

.video-section {
  margin-bottom: 40px;
}
.video-section .video-info {
  margin-top: 24px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.video-section .video-info .video-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.video-section .video-info .video-title-row .title {
  flex: 1;
  font-size: 24px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 767px) {
  .video-section .video-info .video-title-row .title {
    font-size: 20px;
  }
}
.video-section .video-info .video-title-row .video-tags {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.video-section .video-info .video-title-row .video-tags .hot-tag,
.video-section .video-info .video-title-row .video-tags .recommend-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.video-section .video-info .video-title-row .video-tags .hot-tag svg,
.video-section .video-info .video-title-row .video-tags .recommend-tag svg {
  flex-shrink: 0;
}
.video-section .video-info .video-title-row .video-tags .hot-tag {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}
.video-section .video-info .video-title-row .video-tags .recommend-tag {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}
@media (max-width: 767px) {
  .video-section .video-info .video-title-row {
    flex-direction: column;
    gap: 12px;
  }
  .video-section .video-info .video-title-row .video-tags {
    align-self: flex-start;
  }
}
.video-section .video-info .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.video-section .video-info .meta span {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: rgba(30, 41, 59, 0.8);
  padding: 6px 12px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(99, 102, 241, 0.1);
}
.video-section .video-info .meta span.date::before {
  content: "📅";
  margin-right: 6px;
}
.video-section .video-info .meta span.views::before {
  content: "👁️";
  margin-right: 6px;
}
.video-section .video-info .meta span.duration::before {
  content: "⏱️";
  margin-right: 6px;
}
@media (max-width: 767px) {
  .video-section .video-info .meta {
    gap: 12px;
  }
  .video-section .video-info .meta span {
    font-size: 13px;
    padding: 4px 10px;
  }
}

.pagination-container {
  margin: 50px auto 30px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pagination-container ul li {
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  text-align: center;
  color: #1E293B;
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 16px;
  overflow: hidden;
  font-weight: 500;
}
.pagination-container ul li:hover:not(.active) {
  background: rgba(99, 102, 241, 0.08);
  border-color: #6366F1;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}
.pagination-container ul li a.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-color: #6366F1;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
.pagination-container ul li a {
  width: 100%;
  height: 100%;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}
.pagination-container ul li.page-options {
  width: 80px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .pagination-container {
    margin: 30px auto 20px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .pagination-container ul li.page-options {
    width: 70px;
    font-size: 12px;
  }
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.layui-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .layui-container {
    padding: 0 1rem;
  }
}

/*# sourceMappingURL=index.css.map */
