.desc,
.desc1 {
    font-size: 14px;
    color: red;
    padding: 15px;
}

.teen_text {
    height: 118px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    background: url('/img/bg-001.webp') no-repeat 50%;
    margin-bottom: 35px;
    margin-top: 45px;
}

.teen_text h1,
.teen_text .subtitle {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-family: Arial;
    font-weight: 600;
}

.color_span,
.color_title {
    color: #fff;
    display: block;
}

.color_span {
    width: 90%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 20px;
    margin-top: 33px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    display: -webkit-box;
    overflow: hidden;
    max-height: 100px;
    text-overflow: ellipsis;
}

.color_span,
.color_title {
    font-family: Arial;
    font-weight: 400;
    color: #fff;
}

.color_title {
    height: 28px;
    font-size: 17px;
    line-height: 28px;
    position: absolute;
    background: linear-gradient(123deg, #ed0cff, #4eeaff);
    padding: 0 30px 0 5px;
    left: -1px;
    top: -20px;
    animation: btn 4s linear infinite;
}

@keyframes btn {
    0% {
        filter: hue-rotate(1turn);
    }
    to {
        filter: hue-rotate(0deg);
    }
}

.color_content {
    padding-bottom: 30px;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    border: 1px solid;
    -o-border-image: linear-gradient(180deg, #51ffef, #df21cb) 1 1;
    border-image: linear-gradient(180deg, #51ffef, #df21cb) 1 1;
    animation: border-animate 4s linear infinite;
}

@keyframes border-animate {
    0% {
        filter: hue-rotate(0deg);
    }
    to {
        filter: hue-rotate(1turn);
    }
}

.color_box {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fill, 380px);
    grid-gap: 0 1px;
    max-width: 1200px;
    margin: 50px auto;
}

@media screen and (max-width:600px) {
    .teen_text {
        background-size: 30%;
    }
    .teen_text h1 {
        font-size: 16px;
    }
    .color_title {
        padding: 2px 20px;
    }
    .color_span {
        font-size: 12px;
    }
}

* {
    margin: 0;
    padding: 0;
}

.el-main {
    padding: 0 !important;
}

body {
    font-family: Arial !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    justify-content: space-between;
}

.justify-content-space-between {
    justify-content: space-between;
}

.dmca-badge {
    position: absolute;
    top: 20px
}

@media screen and (max-width:600px) {
    .dmca-badge {
        position: absolute;
        top: -2px
    }
    .dmca-badge img {
        height: 15px;
    }
}

.btn-highlight {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-highlight span.outer-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: move-shine 3s infinite;
    z-index: 4
}

.btn-highlight span.outer-bg:after {
    background: #fff;
    content: "";
    display: block;
    filter: blur(8px);
    height: 200%;
    left: 0;
    opacity: .9;
    position: absolute;
    top: 0;
    width: 20px
}

.btn-highlight .light-shadow-btn {
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 20px;
    right: 14px;
    border-radius: 40px;
    overflow: hidden;
}

.btn-highlight.play-online-btn {
    display: inline-flex;
}

.btn-highlight.play-online-btn .light-shadow-btn {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.btn-highlight.play-online-btn span.outer-bg {
    animation: move-shine 2.5s infinite;
}

.btn-highlight.play-online-btn span.outer-bg:after {
    filter: blur(5px);
    width: 10px
}

@keyframes move-shine {
    0% {
        transform: scale(2) rotate(16deg)
    }
    to {
        transform: scale(2) rotate(16deg) translate(100%)
    }
}