:root {
    --dx-primary-color: #FF5C38;
    --dx-blue-color: #0D9BFF;
    --dx-base1-color: #16161A;
    --dx-base2-color: #25252b;
    --dx-base3-color: #2a2a32;
    --dx-base4-color: #32323c;

    --dx-hover-opacity: 0.9;
    --dx-main-bg-color: var(--dx-base1-color);
    --dx-subtitle-color: hsla(0, 0%, 100%, .87);
    --dx-app-opacity: rgba(22, 22, 26, 0.6);
}

/* sizes */
:root {
    --dx-header-height: 60px;
    --dx-mobile-header-height: 114px
}

@tailwind base;

.flex-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hide {
    display: none;
}

.aspect-h-12 {
    --tw-aspect-h: 12;
}

.aspect-h-15 {
    --tw-aspect-h: 15;
}

.aspect-h-6 {
    --tw-aspect-h: 6;
}

.aspect-h-9 {
    --tw-aspect-h: 9;
}

.aspect-w-11 {
    --tw-aspect-w: 11;
}

.aspect-w-14 {
    --tw-aspect-w: 14;
}

.aspect-w-16 {
    --tw-aspect-w: 16;
}

.aspect-w-16 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
    --tw-aspect-w: 16
}

.aspect-w-16>* {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.aspect-w-4 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
    --tw-aspect-w: 4;
}

.aspect-w-4>* {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.aspect-w-9 {
    position: relative;
    padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
    --tw-aspect-w: 9;
}

.aspect-w-9>* {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.dx-btn-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    color: var(--dx-subtitle-color);
}
.menu {
    position: relative
}

.menu-trigger {
    background: none;
    border: 0;
    color: inherit;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background .2s, box-shadow .2s
}

.menu-trigger[data-open="true"],
.menu:hover>.menu-trigger {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25)
}

.chev {
    transition: transform .2s
}

.menu-trigger[data-open="true"] .chev,
.menu:hover>.menu-trigger .chev {
    transform: rotate(180deg)
}

.dialog {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    top: calc(100% + 4px);
    min-width: 300px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
    z-index: 20
}

.menu[data-open="true"] .dialog,
.menu:hover>.dialog {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    will-change: opacity, transform
}

.dialog::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--panel);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45))
}

.dialog::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px
}

.dialog-grid {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    gap: 8px;
    padding-bottom: 50px;
}

.video-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    box-sizing: border-box;
    border-radius: 8px;
    background: var(--panel-2);
    transition: background .2s, transform .2s
}

.video-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px)
}

.video-name {
    flex: 1;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.video-episode {
    flex: 1;
    text-align: center;
    color: var(--muted)
}

.video-time {
    flex: 1;
    text-align: right;
    color: var(--muted);
    white-space: nowrap;
}

.dialog-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    background: var(--panel-2);
    border-radius: 0 0 12px 12px
}

.dialog-footer button {
    background: none;
    border: 0;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background .2s
}

.dialog-footer button:hover {
    background: rgba(255, 255, 255, 0.1)
}

.delete-icon {
    width: 16px;
    height: 16px;
    border: 2px solid var(--text);
    border-radius: 2px;
    position: relative
}

.delete-icon::before,
.delete-icon::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 10px;
    background: var(--text);
    top: 2px;
    left: 6px;
    transform-origin: center
}

.delete-icon::before {
    transform: rotate(45deg)
}

.delete-icon::after {
    transform: rotate(-45deg)
}
@media (min-width: 768px) {
    .dx-btn-link {
        background-color: var(--dx-base2-color);
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

.dx-btn-link.round {
    border-radius: 50px;
}

.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.\!left-\[-48px\] {
    left: -48px !important;
}

.bottom-0 {
    bottom: 0px;
}

.bottom-2 {
    bottom: 8px;
}

.bottom-\[-2px\] {
    bottom: -2px;
}

.bottom-\[-36px\] {
    bottom: -36px;
}

.left-0 {
    left: 0px;
}

.left-1 {
    left: 4px;
}

.left-1\/2 {
    left: 50%;
}

.right-0 {
    right: 0px;
}

.right-2 {
    right: 8px;
}

.right-4 {
    right: 16px;
}

.right-\[-4px\] {
    right: -4px;
}

.top-0 {
    top: 0px;
}

.top-1\/2 {
    top: 50%;
}

.top-\[-4px\] {
    top: -4px;
}

.\!left-\[-86px\] {
    left: -86px !important;
}

.z-10 {
    z-index: 10;
}

.z-\[100\] {
    z-index: 100;
}

.z-\[2\] {
    z-index: 2;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

.mx-4 {
    margin-left: 16px;
    margin-right: 16px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-0\.5 {
    margin-top: 2px;
    margin-bottom: 2px;
}

.my-2 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-3 {
    margin-top: 12px;
    margin-bottom: 12px;
}

.my-4 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mb-0\.5 {
    margin-bottom: 2px;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-3 {
    margin-bottom: 12px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-5 {
    margin-bottom: 20px;
}

.mb-6 {
    margin-bottom: 24px;
}

.ml-0\.5 {
    margin-left: 2px;
}

.ml-1 {
    margin-left: 4px;
}

.ml-2 {
    margin-left: 8px;
}

.ml-4 {
    margin-left: 16px;
}

.ml-5 {
    margin-left: 20px;
}

.ml-8 {
    margin-left: 32px;
}

.ml-auto {
    margin-left: auto;
}

.mr-1 {
    margin-right: 4px;
}

.mr-2 {
    margin-right: 8px;
}

.mr-20 {
    margin-right: 5rem;
}

.mr-3 {
    margin-right: 12px;
}

.mr-4 {
    margin-right: 16px;
}

.mr-5 {
    margin-right: 20px;
}

.mr-6 {
    margin-right: 24px;
}

.mr-7 {
    margin-right: 28px;
}

.mr-8 {
    margin-right: 32px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-1 {
    margin-top: 4px;
}

.mt-10 {
    margin-top: 40px;
}

.mt-2 {
    margin-top: 8px;
}

.mt-3 {
    margin-top: 12px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-6 {
    margin-top: 24px;
}

.mt-\[-18px\] {
    margin-top: -18px;
}

.mt-\[-60px\] {
    margin-top: -60px;
}

.mt-\[30px\] {
    margin-top: 30px;
}

.mt-\[36px\] {
    margin-top: 36px;
}

.mt-\[60px\] {
    margin-top: 60px;
}

.mt-auto {
    margin-top: auto;
}

.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.line-clamp-6 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.\!block {
    display: block !important;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.h-4 {
    height: 16px;
}

.h-5 {
    height: 20px;
}

.h-6 {
    height: 24px;
}

.h-8 {
    height: 32px;
}

.h-\[110px\] {
    height: 110px;
}

.h-\[18px\] {
    height: 18px;
}

.h-\[32px\] {
    height: 32px;
}

.h-\[58px\] {
    height: 58px;
}

.h-\[60px\] {
    height: 60px;
}

.h-\[80px\] {
    height: 80px;
}

.h-full {
    height: 100%;
}

.w-10 {
    width: 40px;
}

.w-4 {
    width: 16px;
}

.w-5 {
    width: 20px;
}

.w-6 {
    width: 24px;
}

.w-8 {
    width: 32px;
}

.w-\[100px\] {
    width: 100px;
}

.w-\[110px\] {
    width: 110px;
}

.w-\[120px\] {
    width: 120px;
}

.w-\[18px\] {
    width: 18px;
}

.w-\[200px\] {
    width: 200px;
}

.w-\[248px\] {
    width: 248px;
}

.w-\[320px\] {
    width: 320px;
}

.w-\[32px\] {
    width: 32px;
}

.w-\[58px\] {
    width: 58px;
}

.w-\[60px\] {
    width: 60px;
}

.w-\[80px\] {
    width: 80px;
}

.w-full {
    width: 100%;
}

.w-px {
    width: 1px;
}

.min-w-full {
    min-width: 100%;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.translate-x-\[-50\%\] {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-\[-50\%\] {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-text {
    cursor: text;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 8px;
}

.gap-4 {
    gap: 16px;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-large {
    border-radius: 50px;
}

.rounded-md {
    border-radius: 12px;
}

.rounded-sm {
    border-radius: 4px;
}

.rounded-xl {
    border-radius: 20px;
}

.rounded-bl-\[8px\] {
    border-bottom-left-radius: 8px;
}

.rounded-bl-xl {
    border-bottom-left-radius: 20px;
}

.rounded-br-xl {
    border-bottom-right-radius: 20px;
}

.rounded-tr-\[16px\] {
    border-top-right-radius: 16px;
}

.border-2 {
    border-width: 2px;
}

.border-\[1px\] {
    border-width: 1px;
}

.border-solid {
    border-style: solid;
}

.border-base2 {
    border-color: var(--dx-base2-color);
}

.border-primary {
    border-color: var(--dx-primary-color);
}

.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.\!bg-base1 {
    background-color: var(--dx-base1-color) !important;
}

.\!bg-base4 {
    background-color: var(--dx-base4-color) !important;
}

.bg-base1 {
    background-color: var(--dx-base1-color);
}

.bg-base2 {
    background-color: var(--dx-base2-color);
}

.bg-base4 {
    background-color: var(--dx-base4-color);
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-dx-blue {
    background-color: var(--dx-blue-color);
}

.bg-opacity {
    background-color: var(--dx-app-opacity);
}

.bg-primary {
    background-color: var(--dx-primary-color);
}

.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}

.p-1 {
    padding: 4px;
}

.p-2 {
    padding: 8px;
}

.p-3 {
    padding: 12px;
}

.px-1 {
    padding-left: 4px;
    padding-right: 4px;
}

.px-2 {
    padding-left: 8px;
    padding-right: 8px;
}

.px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.py-0\.5 {
    padding-top: 2px;
    padding-bottom: 2px;
}

.py-1 {
    padding-top: 4px;
    padding-bottom: 4px;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-3 {
    padding-top: 12px;
    padding-bottom: 12px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-6 {
    padding-top: 24px;
    padding-bottom: 24px;
}

.\!pl-\[60px\] {
    padding-left: 60px !important;
}

.pb-3 {
    padding-bottom: 12px;
}

.pb-8 {
    padding-bottom: 32px;
}

.pl-2 {
    padding-left: 8px;
}

.pl-4 {
    padding-left: 16px;
}

.pr-3 {
    padding-right: 12px;
}

.pt-3 {
    padding-top: 12px;
}

.pt-\[60px\] {
    padding-top: 60px;
}

.text-center {
    text-align: center;
}

.\!text-4xl {
    font-size: 22px !important;
}

.text-2xl {
    font-size: 18px;
}

.text-3xl {
    font-size: 20px;
}

.text-4xl {
    font-size: 22px;
}

.text-5xl {
    font-size: 24px;
}

.text-\[8px\] {
    font-size: 8px;
}

.text-default {
    font-size: 14px;
}

.text-mini {
    font-size: 10px;
}

.text-sm {
    font-size: 12px;
}

.text-xl {
    font-size: 16px;
    line-height: 1.4;
}

.font-bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.\!text-white {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
}

.text-primary {
    color: var(--dx-primary-color);
}

.text-subtitle {
    color: var(--dx-subtitle-color);
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-40 {
    opacity: 0.4;
}

.opacity-60 {
    opacity: 0.6;
}

.ring-1 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-regal-blue {
    --tw-ring-color: rgba(255, 255, 255, 0.4);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

.duration-300 {
    transition-duration: 300ms;
}

/* @import './tailwind.components.css'; */
/* ! tailwindcss v3.4.7 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
    box-sizing: border-box;
    /* 1 */
    border-width: 0;
    /* 2 */
    border-style: solid;
    /* 2 */
    border-color: #e5e7eb;
    /* 2 */
}

::before,
::after {
    --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
    line-height: 1.5;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    -moz-tab-size: 4;
    /* 3 */
    -o-tab-size: 4;
    tab-size: 4;
    /* 3 */
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /* 4 */
    font-feature-settings: normal;
    /* 5 */
    font-variation-settings: normal;
    /* 6 */
    -webkit-tap-highlight-color: transparent;
    /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
    margin: 0;
    /* 1 */
    line-height: inherit;
    /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
    height: 0;
    /* 1 */
    color: inherit;
    /* 2 */
    border-top-width: 1px;
    /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
    color: inherit;
    text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
    font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    /* 1 */
    font-feature-settings: normal;
    /* 2 */
    font-variation-settings: normal;
    /* 3 */
    font-size: 1em;
    /* 4 */
}

/*
Add the correct font size in all browsers.
*/
small {
    font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
    text-indent: 0;
    /* 1 */
    border-color: inherit;
    /* 2 */
    border-collapse: collapse;
    /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    /* 1 */
    font-feature-settings: inherit;
    /* 1 */
    font-variation-settings: inherit;
    /* 1 */
    font-size: 100%;
    /* 1 */
    font-weight: inherit;
    /* 1 */
    line-height: inherit;
    /* 1 */
    letter-spacing: inherit;
    /* 1 */
    color: inherit;
    /* 1 */
    margin: 0;
    /* 2 */
    padding: 0;
    /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
    text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
    -webkit-appearance: button;
    /* 1 */
    background-color: transparent;
    /* 2 */
    background-image: none;
    /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
    outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
    box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
    vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/
summary {
    display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
    margin: 0;
}

fieldset {
    margin: 0;
    padding: 0;
}

legend {
    padding: 0;
}

ol,
ul,
menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
    padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
textarea {
    resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
    /* 1 */
    color: #9ca3af;
    /* 2 */
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    /* 1 */
    color: #9ca3af;
    /* 2 */
}

/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
    cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
    cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    /* 1 */
    vertical-align: middle;
    /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
    max-width: 100%;
    height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
    display: none;
}

.dx-dot {
    width: 4px;
    height: 4px;
    background-color: #fff;
    border-radius: 50%;
}

.response-title {
    font-size: 18px;
}

@media (min-width: 768px) {
    .response-title {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .response-title {
        font-size: 22px;
    }
}

@media (min-width: 1280px) {
    .response-title {
        font-size: 24px;
    }
}

.response-text {
    font-size: 12px;
}

@media (min-width: 768px) {
    .response-text {
        font-size: 14px;
    }
}

.dx-backtop--trigger {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
}

*,
::before,
::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style: ;
}

:root {
    --dx-tab-line-item-padding: 12px 0;
    --dx-tab-line-height: 3px;
    --dx-tab-line-width-percent: 60%;
    --dx-button-tab-item-padding-pc: 4px 8px;
    --dx-button-tab-item-padding-mobile: 3px 6px;
    --bg: white;
    --panel: #11131a;
    --panel-2: #0f1117;
    --text: #e8ebf0;
    --muted: #9aa3b2;
    --brand: #6ea8fe;
    --border: #1f2430;
    --shadow: 0 10px 20px rgba(0, 0, 0, .35), 0 6px 10px rgba(0, 0, 0, .2);
}

.dx-line-tab-item {
    margin-right: 16px;
    white-space: nowrap;
    position: relative;
    padding: var(--dx-tab-line-item-padding);
    font-weight: 600;
    color: var(--dx-font2-color);

}

.dx-line-tab-item:last-child {
    margin-right: 0;
}

.dx-line-tab-item::after {
    content: '';
    display: block;
    position: absolute;
    width: var(--dx-tab-line-width-percent);
    height: var(--dx-tab-line-height);
    left: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.dx-line-tab-item.is-active {
    color: var(--dx-primary-color);
}

.dx-line-tab-item.is-active::after {

    background-color: var(--dx-primary-color);
    ;
}

.dx-button-tab-item {
    margin-right: 16px;
    white-space: nowrap;
    margin-bottom: 12px;
    position: relative;
    padding: var(--dx-button-tab-item-padding-pc);
    border-radius: 4px;
    color: var(--dx-subtitle-color);
    background-color: var(--dx-base4-color);
}

.dx-button-tab-item:last-child {
    margin-right: 0;
}

.dx-button-tab-item.is-active {
    background-color: var(--dx-primary-color);

    color: #fff;
}

.overflow-x-scroll {
    overflow-x: scroll
}

.overflow-y-scroll {
    overflow-y: scroll
}

@media (max-width: 768px) {
    .dx-line-tab-item {
        margin-right: 12px;
    }

    .dx-line-tab-item::after {

        display: none;
    }

    .dx-button-tab-item {
        margin-right: 8px;
        margin-bottom: 8px;
        padding: var(--dx-button-tab-item-padding-mobile);
    }
}

.btn-round {
    border-radius: 50px;
}

.video-card .title,
.video-card img {
    transition: all 0.2s;
}

.video-card:hover img {
    transform: scale(1.1);
}

.video-card:hover .title {
    color: var(--dx-primary-color);
}

.video-card .tag {
    max-width: 58px;
    color: #fff;
    padding: 0 4px;
    line-height: 20px;
    font-size: 10px;
    border-radius: 0 50px 50px 0;
}

.app-header {
    height: var(--dx-header-height);
}

#app-header {
    z-index: 101;
    box-shadow: unset;
    position: relative;
    padding-top: 60px;
}

#app-header li {
    list-style: none;
    color: #fff;
    white-space: nowrap;
}

#app-header .active {
    color: var(--dx-primary-color);
}

#app-header .is-scroll {
    background-color: rgba(0, 0, 0, .83);
}

#app-header .input-control {
    display: flex;
    align-items: center;
}

#app-header .share-popover .search-popover,
#app-header .search-type .search-popover {
    position: relative;
    display: block;
}

#app-header .share-popover,
#app-header .search-type {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

#app-header .share-link.is-open .share-popover {
    display: block;
}

#app-header .btn-search-type {
    position: relative;
    opacity: 1;
}

#app-header .btn-search-type.is-open .icon {
    transform: rotateZ(-270deg);
}

#app-header .btn-search-type.is-open .search-type {
    display: block;
}

#app-header .btn-search-type .icon {
    transition: all 0.2s;
    transform: rotateZ(-90deg);
    margin-bottom: 0;
}

#app-header .search-type-container::after {
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    height: 18px;
    background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    #app-header .search-type-container::after {
        display: none;
    }
}

#app-nav a {
    text-decoration: none;
    font-weight: 600;
}

#app-nav a:hover {
    color: var(--dx-primary-color);
}

.app-logo {
    width: 40px;
    height: 40px;
}

.app-logo.has-text {
    width: 133px;
}

.hot-search {
    position: absolute;
    display: none;
    font-size: 16px;
    left: 50%;
    transform: translateX(-50%);

}

.hot-search .search-popover {
    position: relative;
    display: block;
}

.hot-search li:nth-child(1) .hot-index {
    color: #fc3c17;
}

.hot-search li:nth-child(2) .hot-index {
    color: #ff5c38;
}

.hot-search li:nth-child(3) .hot-index {
    color: #ff9a38;
}

.hot-search .popover-content {
    width: 260px;
}

@media (max-width: 768px) {
    .hot-search {
        left: 0;
        transform: translate(0);
    }
}

#login_modal .modal-dialog {

    width: 360px !important;
}

.share-bg {
    background: url(/static/assets/images/share_bg.png) no-repeat;
    width: 220px;
    background-size: cover;
    height: 320px;
}

.share-border {
    width: 112px;
    height: 112px;
    position: relative;
    background-image: url(/static/assets/images/qr_code_bd.png);
    background-size: 100% 100%;
}

.download-popover {

    top: -999999px !important;
}

.download-popover .share-bg {
    width: 100%;
}

.download-popover .popover {
    min-width: 360px;
}

.swiper-img {
    width: 100%;
    height: 100%;
}

.app-swiper .swiper-link {
    display: block;
    width: 100%;
    height: 100%;
}

.app-swiper .txt-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 120px;
    filter: drop-shadow(2px 2px 4px rgba(22, 22, 26, 1));
    -webkit-text-stroke: 1px #fff;
    z-index: 1;
}

.app-swiper .txt-info .name {
    font-size: 24px;
}

.app-swiper .txt-info .gate {
    background-color: rgba(0, 0, 0, .5);
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 4px;
    border-radius: 2px;
    text-shadow: none;
    font-size: 12px;
    line-height: 18px;
    opacity: .8;
}

.app-swiper .txt-info .info {
    max-width: 60%;

}

.app-swiper::after,
.app-swiper::before {
    height: 100%;
    width: 160px;
    display: block;
    content: '';
    position: absolute;
    top: 0;
    z-index: 2;
}

.app-swiper::after {
    right: 0;
    background: linear-gradient(90deg, rgba(22, 22, 26, 0), rgba(22, 22, 26, 1));
}

.app-swiper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(22, 22, 26, 1), rgba(22, 22, 26, 0));
}

.app-swiper .swiper-slide::before,
.app-swiper .swiper-slide::after {
    position: absolute;
    width: 100%;
    height: 120px;
    display: block;
    content: '';
}

.app-swiper .swiper-slide::before {
    background: linear-gradient(0deg, rgba(22, 22, 26, 0), #16161a 100%);
    top: 0;
    z-index: 1;
}

.app-swiper .swiper-slide::after {
    background: linear-gradient(180deg, rgba(22, 22, 26, 0), #16161a 100%);
    bottom: 0;

}

.app-swiper .swiper-pagination {
    position: absolute;
    top: 50% !important;
    right: 0;
    left: initial !important;
    width: 260px !important;
    height: 430px !important;
    transform: translateY(-50%);
    color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 22, 26, 0)), color-stop(15%, rgba(22, 22, 26, .5)), color-stop(35%, rgba(22, 22, 26, .8)), color-stop(65%, rgba(22, 22, 26, .8)), color-stop(85%, rgba(22, 22, 26, .5)), to(rgba(22, 22, 26, 0)));
    z-index: 10;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-swiper .swiper-pagination-bullet {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    position: relative;
    margin: 0 !important;
    transition-property: transform;
    background-color: initial;
    opacity: 1 !important;
}

.app-swiper .sub_title {
    font-size: 12px;
    display: none;
}

.app-swiper .nav_index {
    /*搴忓彿*/
    display: inline-block;
    margin-right: 8px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    font-weight: 700;
    background: hsla(0, 0%, 100%, .15);
}

.app-swiper .nav_index_1 {
    background: #fd537f
}

.app-swiper .nav_index_2 {
    background: #f2a20c
}

.app-swiper .nav_index_3 {
    background: #148aff
}

.app-swiper .swiper-pagination-bullet-active .focus_swiper_nav_slide {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    background-color: rgba(36, 165, 255, .3)
}

.app-swiper .swiper-pagination-bullet-active .nav_title {
    font-size: 18px;
    margin-bottom: 6px;
}

.app-swiper .swiper-pagination-bullet-active .sub_title {
    display: block;
}

@media (max-width: 1024px) {
    .app-swiper .swiper-pagination {
        display: none !important;
    }

    .app-swiper::after,
    .app-swiper::before {

        display: none;
    }


}

@media (max-width: 768px) {

    .app-swiper .swiper-slide::before,
    .app-swiper .swiper-slide::after {
        display: none;
    }

    .app-swiper .txt-info {
        left: 16px;
        bottom: 16px;
    }

    .app-swiper .txt-info .name {
        font-size: 16px;
    }
}

.focus_swiper_nav_slide {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
}

.svg-icon {
    width: 100%;
    height: 100%;
}

:root {
    --dx-border-color: #353742;
    --dx-border-width: 1px;
}

[class*=dx-hairline]:after {
    box-sizing: border-box;
    content: " ";
    pointer-events: none;
    border: 0 solid var(--dx-border-color);
    position: absolute;
    inset: -50%;
    transform: scale(.5)
}

.dx-hairline,
.dx-hairline--top,
.dx-hairline--left,
.dx-hairline--right,
.dx-hairline--bottom,
.dx-hairline--surround,
.dx-hairline--top-bottom {
    position: relative
}

.dx-hairline--top:after {
    border-top-width: var(--dx-border-width)
}

.dx-hairline--left:after {
    border-left-width: var(--dx-border-width)
}

.dx-hairline--right:after {
    border-right-width: var(--dx-border-width)
}

.dx-hairline--bottom:after {
    border-bottom-width: var(--dx-border-width)
}

.app-tabbar {
    padding-bottom: 70px;
    width: 100%;
    z-index: 105;
    position: relative;
}

.app-tabbar .tabbar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.app-tabbar .tabbar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dx-popup {
    display: none;
    position: absolute;
    padding: 12px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: var(--dx-base2-color);
}

.dx-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    pointer-events: auto;
    z-index: 9999;
    display: none;
}

.dx-backtop {
    display: none;
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
    z-index: 99;
    background-color: var(--dx-primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);


}

.dx-backtop:hover {
    opacity: var(--dx-hover-opacity);
}

@media (max-width: 768px) {
    .dx-backtop {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
}

html,
body {
    font-size: 14px;
    color: #fff;
}

html {
    overflow-y: scroll;
}

:root {
    overflow-y: auto;
    overflow-x: hidden;
}

:root body {
    position: absolute;
}

body {
    width: 100vw;
    overflow: hidden;
    background-color: var(--dx-main-bg-color);
    padding: 0 !important;
}

a {
    text-decoration: none !important;
}

.active a:hover,
.is-active a:hover {
    color: #fff !important;
    opacity: 0.8;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

a:hover:not(.not-link):not(.is-active) {
    color: var(--dx-primary-color);
    text-decoration: none !important;
}

a:focus {
    outline: none !important;
}

.is-active {
    color: var(--dx-primary-color);
}

.dx-bg-linear {
    background: linear-gradient(180deg, rgba(22, 22, 26, 0), #16161a 100%);
}

.dx-video-linear {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}

.dx-safe-area-bottom {
    padding-bottom: constant(safe-area-inset-bottom);
    padding-bottom: env(safe-area-inset-bottom);
}

.color1 {
    color: #fc4274;
}

.color2 {
    color: #ff8155;
}

.color3 {
    color: #fcb80a;
}

.video-episodes li {
    margin: 0 12px 12px 0;
}

.video-episodes:last-child {
    margin-right: 0;
}

.aspect-video {
    aspect-ratio: 16/9
}

.aspect-video-small {
    aspect-ratio: 16/9
}

.max-w-56 {
    max-width: 14rem
}


.max-w-56 {
    max-width: 14rem
}

.max-w-4xl {
    max-width: 26rem
}

.shrink {
    flex-shrink: 0;
}

.line-clamp-2 {
    -webkit-line-clamp: 2
}

.grid-rows-2 {
    grid-template-rows: repeat(2, minmax(0, 1fr))
}

.grid-rows-2 li:nth-child(n+7){
    display: none;
}

@media (min-width: 1024px) {
    .lg\:\!hide {
        display: none !important;
    }

    .lg\:hide {
        display: none;
    }

    .lg\:aspect-h-5 {
        --tw-aspect-h: 5;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:flex-col {
        flex-direction: column;
    }

    
}

.hover\:scale-105:hover {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:\!text-primary:hover {
    color: var(--dx-primary-color) !important;
}

@media (min-width: 640px) {
    .sm\:mb-0 {
        margin-bottom: 0px;
    }

    .sm\:mr-1 {
        margin-right: 4px;
    }

    .sm\:mt-2 {
        margin-top: 8px;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:flex-col {
        flex-direction: column;
    }

    .sm\:justify-start {
        justify-content: flex-start;
    }

    .sm\:bg-base2 {
        background-color: var(--dx-base2-color);
    }

    .sm\:py-3 {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .md\:flex-center {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .md\:hide {
        display: none;
    }

    .md\:fixed {
        position: fixed;
    }

    .md\:absolute {
        position: absolute;
    }

    .md\:\!left-\[-48px\] {
        left: -48px !important;
    }

    .md\:order-1 {
        order: 1;
    }

    .md\:order-3 {
        order: 3;
    }

    .md\:mx-4 {
        margin-left: 16px;
        margin-right: 16px;
    }

    .md\:my-1 {
        margin-top: 4px;
        margin-bottom: 4px;
    }

    .md\:my-4 {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .md\:mb-0 {
        margin-bottom: 0px;
    }

    .md\:mb-4 {
        margin-bottom: 16px;
    }

    .md\:ml-1 {
        margin-left: 4px;
    }

    .md\:ml-3 {
        margin-left: 12px;
    }

    .md\:ml-4 {
        margin-left: 16px;
    }

    .md\:mr-3 {
        margin-right: 12px;
    }

    .md\:mr-4 {
        margin-right: 16px;
    }

    .md\:mr-6 {
        margin-right: 24px;
    }

    .md\:mt-0 {
        margin-top: 0px;
    }

    .md\:mt-4 {
        margin-top: 16px;
    }

    .md\:mt-\[-60px\] {
        margin-top: -60px;
    }

    .md\:mt-\[60px\] {
        margin-top: 60px;
    }

    .md\:mt-\[88px\] {
        margin-top: 88px;
    }

    .md\:line-clamp-4 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:h-12 {
        height: 3rem;
    }

    .md\:h-5 {
        height: 20px;
    }

    .md\:h-6 {
        height: 24px;
    }

    .md\:h-\[20px\] {
        height: 20px;
    }

    .md\:h-\[26px\] {
        height: 26px;
    }

    .md\:h-\[30px\] {
        height: 30px;
    }

    .md\:min-h-\[74vh\] {
        min-height: 74vh;
    }

    .md\:w-12 {
        width: 3rem;
    }

    .md\:w-5 {
        width: 20px;
    }

    .md\:w-6 {
        width: 24px;
    }

    .md\:w-\[150px\] {
        width: 150px;
    }

    .md\:w-\[20px\] {
        width: 20px;
    }

    .md\:w-\[26px\] {
        width: 26px;
    }

    .md\:w-\[280px\] {
        width: 280px;
    }

    .md\:w-\[30px\] {
        width: 30px;
    }

    .md\:w-\[380px\] {
        width: 380px;
    }

    .md\:w-\[420px\] {
        width: 420px;
    }

    .md\:flex-initial {
        flex: 0 1 auto;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:flex-col {
        flex-direction: column;
    }

    .md\:flex-wrap {
        flex-wrap: wrap;
    }

    .md\:items-start {
        align-items: flex-start;
    }

    .md\:justify-start {
        justify-content: flex-start;
    }

    .md\:gap-4 {
        gap: 16px;
    }

    .md\:overflow-visible {
        overflow: visible;
    }

    .md\:whitespace-nowrap {
        white-space: nowrap;
    }

    .md\:rounded-full {
        border-radius: 9999px;
    }

    .md\:bg-base2 {
        background-color: var(--dx-base2-color);
    }

    .md\:p-4 {
        padding: 16px;
    }

    .md\:px-3 {
        padding-left: 12px;
        padding-right: 12px;
    }

    .md\:px-4 {
        padding-left: 16px;
        padding-right: 16px;
    }

    .md\:py-8 {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .md\:\!pl-\[92px\] {
        padding-left: 92px !important;
    }

    .md\:text-2xl {
        font-size: 18px;
    }

    .md\:text-5xl {
        font-size: 24px;
    }

    .md\:text-default {
        font-size: 14px;
    }

    .md\:text-mini {
        font-size: 10px;
    }

    .md\:text-xl {
        font-size: 16px;
    }

    .md\:text-white {
        --tw-text-opacity: 1;
        color: rgb(255 255 255 / var(--tw-text-opacity));
    }

    .md\:hover\:opacity-80:hover {
        opacity: 0.8;
    }
}

@media (min-width: 1024px) {
    .lg\:mt-0 {
        margin-top: 0;
    }
    .lg\:mr-4 {
        margin-right: 16px;
    }

    .lg\:mr-6 {
        margin-right: 24px;
    }

    .lg\:mr-8 {
        margin-right: 32px;
    }

    .lg\:mr-\[320px\] {
        margin-right: 320px;
    }

    .lg\:max-w-48 {
        max-width: 12rem
    }

    .lg\:max-w-80 {
        max-width: 20rem
    }

    .lg\:max-w-4xl {
        max-width: 26rem
    }

    .lg\:max-w-4xl {
        max-width: 26rem
    }

    .lg\:max-w-hot {
        max-width: 25rem
    }

    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .lg\:gap-6 {
        gap: 24px;
    }

    .lg\:px-6 {
        padding-left: 24px;
        padding-right: 24px;
    }
    .lg\:article-content {
        height: 100%;
        min-height: 5rem;
        max-height: 6rem;
    }

    .lg\:grid-rows-1 {
        grid-template-rows:repeat(1, minmax(0, 1fr));
    }

    .lg\:grid-rows-1 li:nth-child(n+7){
        display: block;
    }
}

@media (min-width: 1280px) {
    .xl\:grid {
        display: grid;
    }

    .xl\:w-\[1280px\] {
        width: 1280px;
    }

    .xl\:grid-cols-8 {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }

    .xl\:gap-8 {
        gap: 32px;
    }
}