/*网站导航页VIP购买按钮CSS*/
.fuid-vip-link {
    text-align: center;
}
.fuid-vip-link img {
    width: 24px;
    display: initial;
}
.fuid-vip-link a {
    font-size: 12px;
    font-weight: 500;
    padding: 7px 20px;
    color: #fefefe;
    border-radius: 30px;
    background: linear-gradient(206deg, #fe0606c4 10%, #edaa0cf2 100%);
    transition: all .5s cubic-bezier(.215,.61,.355,1),
    transform .5s cubic-bezier(.215,.61,.355,1),
    -webkit-box-shadow .5s cubic-bezier(.215,.61,.355,1),
    -webkit-transform .5s cubic-bezier(.215,.61,.355,1)
}
.fuid-vip-link a:hover {
    font-size: 12px;
    font-weight: 900;
    padding: 8px 23px;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(to right,#06ffddcf 10%,#d300ffe5 100%) !important;
    all .5s cubic-bezier(.215,.61,.355,1), transform .5s cubic-bezier(.215,.61,.355,1), -webkit-box-shadow .5s cubic-bezier(.215,.61,.355,1), -webkit-transform .5s cubic-bezier(.215,.61,.355,1); box-shadow: 4px 0px 15px #4b858e91;
    animation: bganimation 5s infinite;
    background: linear-gradient(-30deg, #e90ee1, #ff5722, #cf28a1, #ff9800, #e91e63, #00ff27, #ff5722, #25c7d9, #ff5722);
    background-size: 1212% 304%;
	animation: pulse 2s infinite;
}
/* 基础样式 */
.fuid-vip-link {
    position: relative;
    display: inline-block;
    z-index: 10;
}

/* 实体提示框 - 黑白配色 */
.fuid-vip-link .vip-tooltip {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 999;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    text-align: left;
}

/* 三角箭头 */
.fuid-vip-link .vip-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

/* 皇冠SVG图标 */
.fuid-vip-link .vip-crown {
    position: absolute;
  top: 15px;
  right: 28px;
  color: #f00;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
  opacity: 0.8;
}

/* 提示框内容样式 */
.vip-tooltip h4 {
    color: #222222;
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 600;
	text-align: center
}

.vip-tooltip ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vip-tooltip li {
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
    color: #555555;
    font-size: 13px;
    transition: all 0.25s ease;
    line-height: 1.4;
}

.vip-tooltip li span {
    position: relative;
    z-index: 1;
}

.vip-tooltip li:before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 6px;
    color: #888888;
    font-size: 12px;
    transition: all 0.25s ease;
}

.vip-tooltip li:hover {
    color: #000000;
    transform: translateX(3px);
}

.vip-tooltip li:hover:before {
    transform: scale(1.3);
    color: #333333;
}

/* 鼠标悬停时显示提示框 */
.fuid-vip-link:hover .vip-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 深色模式适配 */
[data-bs-theme=dark] .fuid-vip-link .vip-tooltip {
    background: #1a1a1a;
    border: 1px solid #333333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

[data-bs-theme=dark] .fuid-vip-link .vip-tooltip::before {
    border-color: transparent transparent #1a1a1a transparent;
}

[data-bs-theme=dark] .vip-tooltip h4 {
    color: #e0e0e0;
}

[data-bs-theme=dark] .vip-tooltip li {
    color: #aaaaaa;
}

[data-bs-theme=dark] .vip-tooltip li:hover {
    color: #ffffff;
}

[data-bs-theme=dark] .vip-tooltip li:before {
    color: #cccccc;
}

/* 移除了不必要的背景动画元素 */
@media(max-width:746px){
    .fuid-vip-link{
        display: none;
    }
	
}