/* 美化按钮和UI元素样式 */

/* 通用按钮美化 */
.index-header-btn,
.global-product-btn,
.detailed-header-register-btn,
.detailed-header-btn,
.advanced-header-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.index-header-btn:hover,
.global-product-btn:hover,
.detailed-header-register-btn:hover,
.detailed-header-btn:hover,
.advanced-header-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* 为现有的::before伪元素添加增强效果 */
.index-header-btn:before,
.advanced-header-btn:before {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

/* 全局选择按钮美化 */
.index-Global-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.index-Global-btn: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.5s;
}

.index-Global-btn:hover:before {
    left: 100%;
}

.index-Global-active {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

/* 产品卡片美化 */
.global-product-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.global-product-box:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: transform 0.5s;
    transform: rotate(-45deg) translate(-100%, -100%);
}

.global-product-box:hover:before {
    transform: rotate(-45deg) translate(0%, 0%);
}

.global-product-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

/* 选择框美化 */
.selecr-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.selecr-box:before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.selecr-box:hover:before {
    opacity: 1;
}

.selecr-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.2);
}

/* 节点地图按钮美化 */
.index-node-map a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.index-node-map 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.5s;
}

.index-node-map a:hover:before {
    left: 100%;
}

.index-node-map a:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* 导航图标美化 */
.global-icon-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.global-icon-nav:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.global-icon-nav:hover:before {
    left: 100%;
}

.global-icon-nav:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

/* 数字标识美化 */
.global-num {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.global-num:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* 新闻列表项美化 */
.new-item-list-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.new-item-list-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}

.new-item-list-box:hover:before {
    left: 100%;
}

.new-item-list-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

/* 价格卡片美化 */
.detailed-price-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.detailed-price-box:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.03), transparent);
    transition: transform 0.6s;
    transform: rotate(-45deg) translate(-100%, -100%);
}

.detailed-price-box:hover:before {
    transform: rotate(-45deg) translate(0%, 0%);
}

.detailed-price-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

/* 热门标签美化 */
.detailed-price-Hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
}

/* 输入框和表单元素美化 */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    outline: none;
    transform: translateY(-1px);
}

/* 滚动条美化 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* 加载动画美化 */
.loading-spinner {
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 悬浮提示美化 */
.tooltip {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 模态框美化 */
.modal {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* 响应式增强 */
@media (max-width: 768px) {
    .index-header-btn,
    .global-product-btn,
    .detailed-header-register-btn,
    .detailed-header-btn,
    .advanced-header-btn {
        transform: none;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    
    .index-header-btn:hover,
    .global-product-btn:hover,
    .detailed-header-register-btn:hover,
    .detailed-header-btn:hover,
    .advanced-header-btn:hover {
        transform: none;
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
}

/* 导航条美化 */
.detailed-header-nav a,
.detailed-header-down-nav a {
    position: relative;
    transition: all 0.3s ease;
}

.detailed-header-nav a:before,
.detailed-header-down-nav a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.detailed-header-nav a:hover:before,
.detailed-header-down-nav a:hover:before {
    width: 100%;
}

/* 卡片列表项美化 */
.dependent-nav-box,
.detailed-line-text,
.detailed-purchase-item {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.dependent-nav-box:before,
.detailed-line-text:before,
.detailed-purchase-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}

.dependent-nav-box:hover:before,
.detailed-line-text:hover:before,
.detailed-purchase-item:hover:before {
    left: 100%;
}

.dependent-nav-box:hover,
.detailed-line-text:hover,
.detailed-purchase-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15) !important;
}

/* 页面头部轮播图美化 */
.index-header-item {
    position: relative;
    overflow: hidden;
}

.index-header-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.index-header-text {
    position: relative;
    z-index: 2;
}

/* 节点列表项美化 */
.node-list-item {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.node-list-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.4s;
}

.node-list-item:hover:before {
    left: 100%;
}

.node-list-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15) !important;
}

/* 图标动画增强 */
.indexNav-Img video,
.detailed-products-descImg,
.node-summarize-image img {
    transition: all 0.3s ease;
}

.indexNav-Img:hover video,
.detailed-products-desc:hover .detailed-products-descImg,
.node-sunmmarize-box:hover .node-summarize-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* 文字渐变效果 */
.index-Global-title,
.detailed-line-title,
.index-node-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 设置菜单列表美化 */
.setMenv-list-btnBox a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.setMenv-list-btnBox a:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

/* 镜像介绍按钮美化 */
.mirror-introduce-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.mirror-introduce-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.mirror-introduce-btn:hover:before {
    left: 100%;
}

.mirror-introduce-btn-acitve {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
}

/* 动态新闻时间标签美化 */
.news-time {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 15px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* 详细页面信任标识美化 */
.detailed-trust-item {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.detailed-trust-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.05), transparent);
    transition: left 0.5s;
}

.detailed-trust-item:hover:before {
    left: 100%;
}

.detailed-trust-item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15) !important;
}

/* 部署服务器选择框美化 */
.detailed-deploy-server-box {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.detailed-deploy-server-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.detailed-deploy-server-box:hover:before {
    left: 100%;
}

.detailed-deploy-server-box-active {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.1) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2) !important;
}

/* 页脚广告按钮美化 */
.footer-ad-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.footer-ad-btn: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.5s;
}

.footer-ad-btn:hover:before {
    left: 100%;
}

.footer-ad-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4) !important;
}

/* 下载页面按钮美化 */
.download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3) !important;
    border: none !important;
    border-radius: 25px !important;
    position: relative !important;
    overflow: hidden !important;
    transform: translateY(0) !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
}

.download-btn: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.5s;
}

.download-btn:hover:before {
    left: 100%;
}

.download-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
}

/* 导航条hover下划线效果 */
.detailed-header-nav a,
.detailed-header-down-nav a {
    position: relative;
    transition: all 0.3s ease;
}

.detailed-header-nav a:before,
.detailed-header-down-nav a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.detailed-header-nav a:hover:before,
.detailed-header-down-nav a:hover:before {
    width: 100%;
}

/* 卡片列表项光影扫过效果 */
.new-item-list-box,
.detailed-purchase-item,
.proof-item-box {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
}

.new-item-list-box:before,
.detailed-purchase-item:before,
.proof-item-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
    transition: left 0.6s;
}

.new-item-list-box:hover:before,
.detailed-purchase-item:hover:before,
.proof-item-box:hover:before {
    left: 100%;
}

.new-item-list-box:hover,
.detailed-purchase-item:hover,
.proof-item-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.18) !important;
}

/* 页面头部轮播图叠加效果增强 */
.index-header-item {
    position: relative;
    overflow: hidden;
}

.index-header-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    z-index: 1;
    transition: all 0.3s ease;
}

.index-header-text {
    position: relative;
    z-index: 2;
}

/* 节点列表项hover状态增强 */
.node-list-item {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 10px !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
    position: relative;
    overflow: hidden;
}

.node-list-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.12), transparent);
    transition: left 0.5s;
}

.node-list-item:hover:before {
    left: 100%;
}

.node-list-item:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

/* 图标动画和文字渐变效果增强 */
.indexNav-Img video,
.detailed-products-descImg,
.node-summarize-image img {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.indexNav-Img:hover video,
.detailed-products-desc:hover .detailed-products-descImg,
.node-sunmmarize-box:hover .node-summarize-image img {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.15) saturate(1.1);
}

/* 文字渐变效果增强 */
.index-Global-title,
.detailed-line-title,
.index-node-title,
.advanced-Headertitle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%) !important;
    background-size: 200% 200% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: gradientShift 3s ease-in-out infinite !important;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* 设置菜单和镜像介绍按钮增强 */
.setMenv-list-btnBox a,
.mirror-introduce-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35) !important;
    border-radius: 12px !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
    position: relative;
    overflow: hidden;
}

.setMenv-list-btnBox a:before,
.mirror-introduce-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.setMenv-list-btnBox a:hover:before,
.mirror-introduce-btn:hover:before {
    left: 100%;
}

.setMenv-list-btnBox a:hover,
.mirror-introduce-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.45) !important;
}

.mirror-introduce-btn-acitve {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4) !important;
    transform: scale(1.05) !important;
}

/* 新闻时间标签和信任标识增强 */
.news-time {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border-radius: 20px !important;
    padding: 6px 15px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

.news-time:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5) !important;
}

/* 详细页面信任标识和部署服务器选择框增强 */
.detailed-trust-item,
.detailed-deploy-server-box {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 15px !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
    position: relative;
    overflow: hidden;
}

.detailed-trust-item:before,
.detailed-deploy-server-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.08), transparent);
    transition: left 0.6s;
}

.detailed-trust-item:hover:before,
.detailed-deploy-server-box:hover:before {
    left: 100%;
}

.detailed-trust-item:hover,
.detailed-deploy-server-box:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2) !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
}

.detailed-deploy-server-box-active {
    border-color: #667eea !important;
    background: rgba(102, 126, 234, 0.12) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.25) !important;
    transform: scale(1.02) !important;
}

/* 页脚广告按钮增强效果 */
.footer-ad-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35) !important;
    border-radius: 30px !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1) !important;
    position: relative;
    overflow: hidden;
}

.footer-ad-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s;
}

.footer-ad-btn:hover:before {
    left: 100%;
}

.footer-ad-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 15px 45px rgba(102, 126, 234, 0.45) !important;
} 