/* -------------------------------------------------------------------- */
/* - 全局重置样式 ---------------------------------------------------- */
/* -------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(210, 210, 210, 0.35);
    -webkit-user-select: none;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #fff;
    color: #333;
    overflow-x: hidden;
}

body, button, input, select, textarea {
    font: 16px "tahoma", arial, sans-serif;
}

a {
    color: #0dbc79;
    text-decoration: none;
}

ul, li {
    list-style: none;
}
em, var {
    font-style: normal;
}
img {
    border: 0;
    max-width: 100%;
}

/* -------------------------------------------------------------------- */
/* - 标签页基础样式 -------------------------------------------------- */
/* -------------------------------------------------------------------- */
.tab-nav { 
    display: flex; 
    background: #f1f1f1; 
    padding: 0; 
    margin: 0; 
    list-style: none; 
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.tab-nav li { 
    padding: 15px 30px; 
    cursor: pointer; 
    border-bottom: 3px solid transparent; 
    color: #666;
    transition: all 0.3s ease;
}
.tab-nav li:hover { 
    background: rgba(0, 0, 0, 0.05);
}
.tab-nav li.active { 
    background: #fff; 
    border-bottom-color: #0dbc79; 
    font-weight: bold; 
    color: #0dbc79;
}

/* 标签页内容容器 - 确保完全独立 */
.tab-content {
    display: none;
    width: 100%;
    height: calc(100vh - 61px); /* 减去导航栏高度 */
    overflow: hidden;
    position: absolute;
    top: 61px;
    left: 0;
}

.tab-content.active { 
    display: block; 
}

/* -------------------------------------------------------------------- */
/* - MAIN页面专属样式 ------------------------------------------------- */
/* -------------------------------------------------------------------- */
#main-page {
    padding: 30px;
    background: #fafafa;
    overflow-y: auto;
    height: 100%;
}

#main-page h1 {
    color: #333;
    margin-bottom: 15px;
    font-size: 2.2em;
}

#main-page p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

/* -------------------------------------------------------------------- */
/* - CLIPBEAT页面专属样式 --------------------------------------------- */
/* -------------------------------------------------------------------- */
#clipbeat-page {
    background: #fff;
}

/* ClipBeat页面包装器 */
#clipbeat-page #page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background-color: #fff;
}

/* 播放器容器 - 完全独立 */
#clipbeat-page #player-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
    position: relative;
}

/* 顶部选择栏 */
#clipbeat-page .top-bar {
    display: flex;
    flex-direction: column;
    padding: 15px 20px 10px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

#clipbeat-page .selectors {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    width: 100%;
}

#clipbeat-page .select-inline {
    width: 48%;
    height: 36px;
    background: #f5f5f5;
    color: #333;
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 0 10px;
    font-size: 14px;
}

#clipbeat-page .song {
    text-align: center;
    font-size: 1.1em;
    color: #333;
    font-weight: bold;
    margin: 5px 0 0;
    padding: 5px 0;
}

/* 歌词显示区 */
#clipbeat-page #lyricsframe {
    flex: 1;
    overflow: hidden;
    position: relative;
}

#clipbeat-page .lrc-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}

#clipbeat-page #lyricsScroll {
    width: 100%;
    text-align: center;
    transition: transform 0.5s ease-out;
    padding-top: 40%;
}

#clipbeat-page #lyricsScroll p {
    padding: 10px 20px;
    margin: 0;
    font-size: 1.05em;
    line-height: 1.6;
    transition: all 0.4s ease;
    color: #666;
    opacity: 0.8;
}

#clipbeat-page #lyricsScroll p.lyric_now {
    opacity: 1;
    color: #0dbc79;
    font-weight: bold;
    transform: scale(1.05);
    text-shadow: 0 0 8px rgba(11, 188, 121, 0.3);
}
#clipbeat-page .lyric_now {
    color: #0dbc79 !important;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 0 8px rgba(11, 188, 121, 0.3);
    transform: scale(1.05);
    transition: all 0.4s ease-out;
    display: block;
}
#clipbeat-page .col79 {
    color: #0dbc79;
}

/* 控制面板区域 */
#clipbeat-page .player-controls {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

#clipbeat-page .time {
    font-size: 13px;
    font-family: Arial;
    height: 25px;
    margin: 0;
    color: #666;
}

#clipbeat-page .time span { float: left; }
#clipbeat-page .time .fr { float: right; }

/* 进度条 */
#clipbeat-page .progress-wrap {
    width: 100%;
    padding: 12px 0;
}

#clipbeat-page .line_bar {
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    position: relative;
    width: 100%;
    cursor: pointer;
}

#clipbeat-page .line_bar li em {
    height: 4px;
    background: #0dbc79;
    border-radius: 2px;
    float: left;
    box-shadow: 0 0 6px rgba(11, 188, 121, 0.5);
}
/* 进度光标 */
#clipbeat-page .play_icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -4px;
    box-shadow: 0 0 10px #0dbc79, 0 0 4px rgba(255, 255, 255, 0.5);
    border: 2px solid #0dbc79;
    transition: box-shadow 0.3s ease;
}

/* 控制按钮 */
#clipbeat-page .play_m {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 25px;
}
#clipbeat-page .play_m a { float: left; margin-right: 35px; }
#clipbeat-page .play_m a:last-child { margin-right: 0; }

#clipbeat-page .circle {
    width: 46px;
    height: 46px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f9f9f9;
    color: #555;
    transition: all 0.2s ease;
}
#clipbeat-page .circle:hover {
    background-color: #f0f0f0;
    border-color: #0dbc79;
}

#clipbeat-page .circle:active {
    background-color: #e8e8e8;
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

#clipbeat-page .circle.loop-active {
    border-color: #0dbc79 !important;
    color: #0dbc79 !important;
    background-color: #f0fef7;
}

#clipbeat-page .circle.loop-active:hover {
    border-color: #0dbc79 !important;
    background-color: #f0fef7 !important;
}

#clipbeat-page .triangleRight {
    width: 0; height: 0;
    border-left: 10px solid #555;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

#clipbeat-page .triangleLeft {
    width: 0; height: 0;
    border-right: 10px solid #555;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}
#clipbeat-page .pause {
    width: 4px;
    height: 16px;
    background: #555; /* 颜色深灰 */
    float: left;
}
/* 图标偏移类语 */
#clipbeat-page .foffset1 { margin: 3px 0px 2px 4px; float: right; }
#clipbeat-page .foffset2 { margin: 3px 0px 2px 3px; float: right; }
#clipbeat-page .boffset1 { margin: 3px 3px 2px 0px; float: left; }
#clipbeat-page .boffset2 { margin: 3px 4px 2px 0px; float: left; }
#clipbeat-page .ploffset { margin: 4px 2px 4px 7px; }
#clipbeat-page .poffset1 { margin: 1px 6px 0px 6px; }
#clipbeat-page .poffset2 { margin: 1px 6px 0px 2px; }

/* 图标缩放类 */
#clipbeat-page .scl1_stl { transform: scale(0.6, 1.2); }
#clipbeat-page .scl2_stl { transform: scale(1.1, 1.1); }
#clipbeat-page .scl3_stl { transform: scale(1.4, 1.4); }

/* 侧边栏 */
#clipbeat-page #side-content {
    background: #f9f9f9;
    padding: 20px;
    border-left: 1px solid #eee;
}

#clipbeat-page .ad-box {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* -------------------------------------------------------------------- */
/* - 响应式布局 ------------------------------------------------------- */
/* -------------------------------------------------------------------- */

/* 平板端 (768px - 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    #clipbeat-page #page-wrapper {
        flex-direction: row;
        padding: 20px;
        gap: 20px;
    }
    
    #clipbeat-page #player-container {
        flex: 2;
        max-width: 70%;
    }
    
    #clipbeat-page #side-content {
        flex: 1;
        max-width: 30%;
        overflow-y: auto;
    }
}
/* 平板端优化 (768px-1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tab-nav li {
        padding: 12px 15px;
        font-size: 0.9em;
    }
}

/* 桌面端 (>=1024px) */
@media screen and (min-width: 1024px) {
    #clipbeat-page #page-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 30px;
        gap: 40px;
    }
    
    #clipbeat-page #player-container {
        width: 480px;
        height: 780px;
        border-radius: 20px;
        border: 1px solid #e1e1e1;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    }
    
    #clipbeat-page #side-content {
        width: 375px;
        height: 525px;
        border-radius: 12px;
        overflow-y: auto;
    }
}
/* -------------------------------------------------------------------- */
/* - 手机端导航栏优化 ------------------------------------------------- */
/* -------------------------------------------------------------------- */

/* 手机端汉堡菜单按钮 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 2000;
    cursor: pointer;
    padding: 5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #0dbc79;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* 手机端导航栏样式 */
@media screen and (max-width: 767px) {
    /* 隐藏桌面导航，显示汉堡按钮 */
        .mobile-menu-btn {
        display: flex;
    }
    
    .tab-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .tab-nav.active {
        transform: translateY(0);
    }
    
    .tab-nav li {
        width: 100%;
        max-width: 300px;
        padding: 20px 15px;
        text-align: center;
        font-size: 1.2em;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: none;
        border-radius: 0;
        border-bottom: none;
    }
    
    .tab-nav li.active {
        color: #0dbc79;
        background: rgba(11, 188, 121, 0.1);
        border-left: 4px solid #0dbc79;
    }
    
    .tab-nav li:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* 播放器页面在手机端全屏显示 */
    #clipbeat-page #player-container {
        border-radius: 0;
        border: none;
        width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        max-height: calc(90vh - 60px);
        height: calc(100vh - 20px);
        margin: 10px 0 0 0;
    }
    .tab-content {
        height: calc(100vh - 20px);
        top: 0;
    }
    #clipbeat-page #side-content {
        display: none;
    }
    #clipbeat-page .top-bar {
        padding: 10px 15px 8px;
    }
    
    #clipbeat-page .selectors {
        flex-wrap: nowrap;
    }
    
    #clipbeat-page .select-inline {
        width: 48%;
        font-size: 12px;
        height: 32px;
    }
    
    #clipbeat-page .song {
        font-size: 1em;
        padding: 5px 0;
    }
    
    #clipbeat-page .player-controls {
        padding: 10px 15px;
    }
    
    #clipbeat-page .play_m {
        gap: 15px;
    }
    
    #clipbeat-page .circle {
        width: 40px;
        height: 40px;
    }
    
    /* 确保歌词区域充分利用空间 */
    #clipbeat-page .lrc-container {
        height: calc(100vh - 240px);
    }
    
    #clipbeat-page #lyricsScroll p {
        padding: 6px 10px;
        font-size: 0.95em;
    }
    
    /* 调整ICP页脚，避免被导航栏遮挡 */
    #ICP_show {
        z-index: 500;
    }
}

/* 小屏幕手机特殊优化 */
@media screen and (max-width: 480px) {
    .mobile-menu-btn {
        top: 10px;
        right: 10px;
    }
    
    .tab-nav li {
        font-size: 1.1em;
        padding: 18px 15px;
    }
    
    /* 数据页面在手机端的优化 */
    .data-container {
        padding: 10px 5px;
    }
    
    .data-toolbar {
        padding: 10px;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .search-box input,
    .search-box select {
        font-size: 13px;
        padding: 8px 10px;
    }
}
/* 响应式调整 */
@media screen and (max-width: 768px) {
    .data-container {
        padding: 10px;
    }
    
    .data-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input,
    .search-box select {
        width: 100%;
        margin-bottom: 10px;
    }
    
    table {
        font-size: 0.8em;
    }
    
    table th,
    table td {
        padding: 8px 6px;
    }
}

/* -------------------------------------------------------------------- */
/* - ICP页脚 --------------------------------------------------------- */
/* -------------------------------------------------------------------- */
#ICP_show {
    display: block !important;
    text-align: center;
    padding: 12px 10px;
    font-size: 0.82em;
    color: #666;
    border-top: 1px solid #eee;
    background-color: #f8f8f8;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 -1px 3px rgba(0,0,0,0.05);
}

#ICP_show a {
    color: #666;
    margin: 0 3px;
    text-decoration: none;
}

#ICP_show a:hover {
    color: #0dbc79;
    text-decoration: underline;
}

/* -------------------------------------------------------------------- */
/* - 数据展示页面样式 ------------------------------------------------- */
/* -------------------------------------------------------------------- */

/* 数据容器 */
.data-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

.data-container h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 2.2em;
    text-align: center;
}

.page-description {
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1em;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 工具栏样式 */
.data-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 300px;
}

.search-box input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #0dbc79;
    box-shadow: 0 0 0 3px rgba(11, 188, 121, 0.1);
    outline: none;
}

.search-box select {
    min-width: 120px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #333;
}

.data-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 4px;
    white-space: nowrap;
}

/* 表格滚动容器 */
.table-scroll-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.table-wrapper {
    flex: 1;
    overflow: auto;
    position: relative;
}

/* 表格基础样式 */
table {
    width: 100%;
    border-collapse: collapse;
    min-width: 2400px; /* 确保所有列都能显示，触发水平滚动 */
    font-size: 0.85em;
    table-layout: fixed;
}

table th {
    background: #f8f9fa;
    padding: 12px 8px;
    text-align: left;
    border-bottom: 2px solid #0dbc79;
    color: #0dbc79;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
    white-space: nowrap;
    min-width: 100px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

table td {
    padding: 10px 8px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.4;
    min-width: 100px;
    max-width: 200px;
    word-wrap: break-word;
}

/* 斑马纹效果 */
table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: rgba(11, 188, 121, 0.05);
}

/* 表头排序指示器 */
.sortable {
    cursor: pointer;
    user-select: none;
    position: relative;
    padding-right: 20px;
}

.sortable:hover {
    background-color: #f0f0f0;
}

.sortable::after {
    content: '↕';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 12px;
}

.sortable.asc::after {
    content: '↑';
    color: #0dbc79;
}

.sortable.desc::after {
    content: '↓';
    color: #0dbc79;
}

/* 策略列特殊样式 */
.strategy-cell {
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    padding: 4px 8px;
    display: inline-block;
    min-width: 40px;
}

.strategy-冲 {
    background-color: #ffebe6;
    color: #c00;
}

.strategy-稳 {
    background-color: #e6f7ff;
    color: #0066cc;
}

.strategy-保 {
    background-color: #f6ffed;
    color: #389e0d;
}

/* 空数据提示 */
.empty-data {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 1.1em;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 40px 20px;
    color: #0dbc79;
    font-size: 1.1em;
}

/* Tiny Info Icon */
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #bbb;
    cursor: pointer;
    margin: 0 5px;
    transition: all 0.2s ease;
}
.info-icon:hover {
    color: #0dbc79;
    transform: scale(1.1);
}

/*
.clipbeat-icon {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 8px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDEwMDAgMTAwMCI+PHN0eWxlPiNsaWdodC1pY29uIHtkaXNwbGF5OmlubGluZTt9I2RhcmswaWNvbiB7ZGlzcGxheTpub25lO30kbWlkZSBwcmVmZXJzLWNvbG9yLXNjaGVtZTogZGFyayB7I2xpZ2h0LWljb24ge2Rpc3BsYXk6bm9uZX0jZGFyay1pY29uIHtkaXNwbGF5OmlubGluZTt9fTwvc3R5bGU+PGcgaWQ9ImxpZ2h0LWljb24iPjxnIHRyYW5zZm9ybT0ibWF0cml4KDkuMjU5MjU5MjU5MjU5MjYsMCwwLDkuMjU5MjU5MjU5MjU5MjYsMCwwKSI+PHBhdGggc3Ryb2tlPSIjNzlmYWZmIiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgZD0iTSAzMiw0NCBMIDMyLDY0Ii8+PHBhdGggc3Ryb2tlPSIjNzlmYWZmIiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgZD0iTSA0MiwzMiBMIDQyLDc2Ii8+PHBhdGggZmlsbD0iIzc5ZmFmZiIgZD0iTSA1NCwzNCBMIDU0LDc0IEwgODQsNTQgWiIvPjwvZz48L2c+PGcgaWQ9ImRhcmswaWNvbiI+PHJlY3Qgd2lkdGg9IjEwMDAiIGhlaWdodD0iMTAwMCIgZmlsbD0iIzAwMDAwMCIvPjxnIHRyYW5zZm9ybT0ibWF0cml4KDYuNDgxNDgxNDgxNDgxNDgyLDAsMCw2LjQ4MTQ4MTQ4MTQ4MTQ4MiwxNTAsMTUwKSI+PHBhdGggc3Ryb2tlPSIjNzlmYWZmIiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgZD0iTSAzMiw0NCBMIDMyLDY0Ii8+PHBhdGggc3Ryb2tlPSIjNzlmYWZmIiBzdHJva2Utd2lkdGg9IjYiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgZD0iTSA0MiwzMiBMIDQyLDc2Ii8+PHBhdGggZmlsbD0iIzc5ZmFmZiIgZD0iTSA1NCwzNCBMIDU0LDc0IEwgODQsNTQgWiIvPjwvZz48L2c+PC9zdmc+");
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}
*/

.clipbeat_icon {
	/* 核心缩放变量：修改这个值就能整体缩放图标 */
	--size: 216px;
	position: relative;
	width: var(--size);
	height: var(--size);
	margin: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	border-radius: calc(var(--size) * 24 / 216); /* 等比例圆角 */
	overflow: hidden;
	/* 背景色：黑色 → 白色，直接改这里 */
	background-color: #ffffff;
	display: inline-block
}
.clipbeat_icon .line1 {
	position: absolute;
	width: calc(var(--size) * 12 / 216);
	height: calc(var(--size) * 40 / 216);
	top: calc(var(--size) * 88 / 216);
	left: calc(var(--size) * 64 / 216);
	/* 图标颜色：适配白色背景 */
	background-color: #2a5298;
	border-radius: calc(var(--size) * 6 / 216);
}
.clipbeat_icon .line2 {
	position: absolute;
	width: calc(var(--size) * 12 / 216);
	height: calc(var(--size) * 88 / 216);
	top: calc(var(--size) * 64 / 216);
	left: calc(var(--size) * 84 / 216);
	background-color: #2a5298;
	border-radius: calc(var(--size) * 6 / 216);
}
.clipbeat_icon .triangle {
	position: absolute;
	top: calc(var(--size) * 68 / 216);
	left: calc(var(--size) * 108 / 216);
	width: 0;
	height: 0;
	border-left: calc(var(--size) * 60 / 216) solid #2a5298;
	border-top: calc(var(--size) * 40 / 216) solid transparent;
	border-bottom: calc(var(--size) * 40 / 216) solid transparent;
}
.info-icon, .clipbeat_icon {
    cursor: pointer;
    transition: all 0.2s ease;
}

.info-icon:hover, .clipbeat_icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.info-icon:active, .clipbeat_icon:active {
    transform: scale(0.95);
}