/* 详情页专用样式 */
.detail-banner {
    width: 100%;

    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
	margin-top:-45px;
    position: relative;
	aspect-ratio: 3 / 1;
}
@supports not (aspect-ratio: 3/1) {
    .detail-banner {
        height: 0;
        padding-top: 33.33%; /* 100% / 3 = 33.33% */
        aspect-ratio: auto;
    }
}
.detail-banner-image {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.detail-banner-image img {
    width: 100%;
    height: 100%;
	object-fit: cover; /* 关键：保持比例填充容器 */
    object-position: center; /* 图片居中显示 */
    display: block;
    
}

.detail-banner-default {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.detail-banner-default .banner-content {
    text-align: center;
    padding: 20px;
}

.detail-banner-default .banner-content h1 {
    font-size: clamp(24px, 4vw, 50px); /* 响应式字体大小 */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.detail-logo {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 0px solid #f8f9fa;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-logo img {
    width: 120px;
    height: 120px;
}
.bg-primary{
	font-size:14px;
	padding:8px  16px;
	border-radius:20px;
}


.detail-item {
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.detail-item i {
    width: 20px;
    text-align: center;
}
/* 添加Banner overlay效果 */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0) 30%,
        rgba(0, 0, 0, 0) 70%,
        rgba(0, 0, 0, 0.1) 100%
    );
    pointer-events: none; /* 防止覆盖点击事件 */
}

.list-unstyled{
	margin-bottom:120px;
}
#platformDescription{
	font-weight:600;
	color:#000000;
	font-size:18px;
	line-height:32px;
	
}
#platformCategory{
	margin-top:10px;
}



.xiabianju2{
	
	 margin-top: 20px;
}
/* 二维码区域样式 */
.qr-code-section {
    transition: all 0.3s ease;
	margin-top: -20px !important;
	 margin-bottom:-30px;
}

.qr-code-img {
    transition: transform 0.3s ease;
}

.qr-code-img:hover {
    transform: scale(1.05);
}



/* 响应式调整 */

@media (max-width: 1200px) {
    .detail-banner {
       border-radius: 12px;
        margin-top: -40px;
    }
	 
    .detail-banner-default .banner-content h1 {
        font-size: 32px;
    }
    
    .detail-logo {
        width: 120px;
        height: 120px;
		border-radius: 12px;
    }
    
	.detail-logo img {
		width: 120px;
		height: 120px;
	}

    .detail-item {
        padding: 10px;
        font-size: 0.9rem;
    }
	

}

@media (max-width: 992px) {
    .detail-banner {
       border-radius: 12px;
        margin-top: -50px;
    }
	 
    .detail-banner-default .banner-content h1 {
        font-size: 32px;
    }
    
    .detail-logo {
        width: 120px;
        height: 120px;
		border-radius: 12px;
    }
    
	.detail-logo img {
		width: 120px;
		height: 120px;
	}

    .detail-item {
        padding: 10px;
        font-size: 0.9rem;
    }
	
}

@media (max-width: 768px) {
    .detail-banner {
        height: 256px;
        border-radius: 10px;
        margin-bottom: 20px;
		 margin-top: -60px;
    }
    @supports not (aspect-ratio: 16/7) {
        .detail-banner {
            padding-top: 43.75%; /* 100% / (16/7) = 43.75% */
        }
    }
    .detail-banner-default .banner-content h1 {
        font-size: 32px;
    }
    
    .detail-logo .modal-xl {
		 margin: 0;
        width: 100px;
        height: 100px;
		border-radius: 12px;
    }
	
	#platformName{
		text-align:center;
		margin-bottom:20px !important;
	}
	
	
     .modal-content {
        height: 100vh;
        border-radius: 0;
    }
    
    .image-viewer-container {
        max-height: 70vh;
        padding: 10px;
    }
    
    .modal-image {
        max-height: 60vh;
        max-width: 95vw;
    }
    
    .modal-footer {
        flex-wrap: wrap;
    }
    
    .modal-footer .btn {
        flex: 1;
        min-width: 70px;
        margin: 2px;
        font-size: 0.8rem;
    }
	
	.detail-logo img {
		width: 100px;
		height: 100px;
	}

    .detail-item {
        padding: 10px;
        font-size: 0.9rem;
    }
	.qr-code-section {
        margin-top: -20px;
    }
    
    .qr-code-section {
        max-width: 250px;
        margin: 0 auto;
    }
}
/* PC端适配：按钮和二维码并排 */
@media (min-width: 768px) {
    .col-md-3.text-center {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .qr-code-section {
        margin-top: auto;
    }
}

@media (max-width: 576px) {
    .detail-banner {
        height: 192px;
		 margin-top: -58px;
    }
	 @supports not (aspect-ratio: 2/1) {
        .detail-banner {
            padding-top: 50%; /* 100% / 2 = 50% */
        }
    }
    
    .detail-banner-default .banner-content h1 {
        font-size: 24px;
    }
    
    .detail-logo {
        width: 80px;
        height: 80px;
      
		border-radius: 10px;
    }
    .detail-logo img {
		width: 80px;
		height: 80px;
	}
	
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 510px) {
    .detail-banner {
        height: 170px;
    }
    
    .detail-banner-default .banner-content h1 {
        font-size: 24px;
    }
    
    .detail-logo {
        width: 80px;
        height: 80px;
      
		border-radius: 10px;
    }
    .detail-logo img {
		width: 80px;
		height: 80px;
	}
	
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .detail-banner {
        height: 160px;
		 margin-top: -60px;
    }
    
    .detail-banner-default .banner-content h1 {
        font-size: 24px;
    }
    
    .detail-logo {
        width: 80px;
        height: 80px;
      
		border-radius: 10px;
    }
     .detail-logo img {
		width: 80px;
		height: 80px;
	}
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
@media (max-width: 375px) {
    .detail-banner {
        aspect-ratio: 9 / 4; /* 更紧凑的比例 */
    }
    
    @supports not (aspect-ratio: 9/4) {
        .detail-banner {
            padding-top: 44.44%; /* 100% / (9/4) = 44.44% */
        }
    }
}







/* 富文本内容样式 */
.ql-editor {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--dark-color);
}

.ql-editor p {
    margin-bottom: 1em;
}

.ql-editor ul,
.ql-editor ol {
    padding-left: 2em;
    margin-bottom: 1em;
}

.ql-editor li {
    margin-bottom: 0.5em;
}

.ql-editor img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
	 transition: all 0.3s ease;
}
.ql-editor img:hover {
    opacity: 0.9;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}
/* 图片模态框样式 */
.image-viewer-container {
    max-height: 80vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-height: 70vh;
    max-width: 90vw;
    object-fit: contain;
    transition: transform 0.3s ease;
}
/* 图片查看器控制按钮 */
.modal-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    padding: 10px 20px;
}



.ql-editor a {
    color: var(--primary-color);
    text-decoration: none;
}

.ql-editor a:hover {
    text-decoration: underline;
}

.ql-editor blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1em;
    margin-left: 0;
    margin-right: 0;
    color: #666;
    font-style: italic;
}

.ql-editor table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
}

.ql-editor th,
.ql-editor td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.ql-editor th {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* 错误页面样式 */
.error-icon {
    animation: bounce 2s infinite;
}


/* 触摸设备优化 */
@media (hover: none) and (pointer: coarse) {
    .ql-editor img {
        padding: 2px;
        border: 1px solid #dee2e6;
    }
    
    .modal-image {
        touch-action: pan-x pan-y;
    }
}

/* 加载动画 */
@keyframes imageLoading {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

.img-loading {
    animation: imageLoading 1.5s infinite;
}

/* 图片错误状态 */
.img-error {
    border: 2px dashed #dc3545;
    background-color: #f8d7da;
    padding: 20px;
    text-align: center;
    color: #721c24;
}

/* 黑暗模式支持 */
@media (prefers-color-scheme: dark) {
    .ql-editor img {
        filter: brightness(0.9);
    }
    
    .ql-editor img:hover {
        filter: brightness(1.1);
    }
    
    .image-viewer-container {
        background-color: rgba(0, 0, 0, 0.9);
    }
}

/* 无障碍访问 */
.ql-editor img:focus {
    outline: 2px solid #0d6efd;
    outline-offset: 2px;
}



/* 预览模式相关样式 */

.preview-indicator {
    border-left: 4px solid #ffc107;
	
}

.preview-badge .badge {
	margin-top:-20px;
	margin-bottom:50px;
    font-size: 12px;
    padding: 5px 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* 预览状态标识 */
.preview-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-size: 80px;
    color: rgba(255, 193, 7, 0.1);
    pointer-events: none;
    z-index: 9999;
    font-weight: bold;
    user-select: none;
}

/* 预览模式下的特殊样式 */
body.preview-mode {
    position: relative;
}

.preview-mode .visit-btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* 复制功能样式 */
.copyable-text {
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.copyable-text:hover {
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 2px 6px;
}

.copy-icon {
    opacity: 0.6;
    font-size: 0.9em;
    transition: opacity 0.2s ease;
}

.copyable-text:hover .copy-icon {
    opacity: 1;
}

/* 复制成功/失败的动画效果 */
@keyframes copyPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.copyable-text.copy-success {
    animation: copyPulse 0.5s ease;
}

.copyable-text.copy-error {
    animation: copyPulse 0.5s ease;
}




/* 企业名称样式 */
.enterprise-name {
    font-size: 0.95rem;
    color: #6c757d;
    border-left: 3px solid #6c757d;
    padding-left: 10px;
    margin-top: -5px;
    margin-bottom: 10px !important;
}

.enterprise-name i {
    font-size: 0.9rem;
}


/* 报价卡片样式 */
.price-item {
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #0d6efd;
}

.price-item:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s ease;
}

/* 响应式适配 */
@media (max-width: 767.98px) {
    .price-item {
        margin-bottom: 8px;
    }
}



/* 产品特性样式 */
.product-feature-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.product-feature-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-feature-item i {
    font-size: 0.9rem;
}

.product-feature-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 售后保障样式 */
.detail-item strong {
    color: #495057;
    min-width: 80px;
    display: inline-block;
}

/* 响应式调整 */
@media (max-width: 767.98px) {
    .product-feature-item {
        padding: 10px 12px;
        margin-bottom: 6px;
    }
    
    .enterprise-name {
        font-size: 0.9rem;
        padding-left: 8px;
    }
    
    .detail-item {
        margin-bottom: 8px;
    }
	
	
}

/* 咨询相关样式 */
#consultBtn {
    transition: all 0.3s ease;
}

#consultBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* 咨询弹框样式 */
#consultModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#consultModal .modal-header {
    border-bottom: 2px solid #f0f0f0;
    padding: 1.25rem 1.5rem;
}

#consultModal .modal-body {
    padding: 1.5rem;
}

/* 输入框样式 */
#consultContent {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

#consultContent:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

#contactInfoInput {
    border-radius: 8px;
    padding: 12px;
    font-size: 0.95rem;
}

/* 字符计数样式 */
#charCount {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* 按钮样式 */
#submitConsult {
    min-width: 100px;
    border-radius: 8px;
    font-weight: 500;
}

#submitConsult:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}





/* Toast提示样式 */
.custom-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1055;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.custom-toast .toast-body {
    padding: 1rem;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
     #consultModal .modal-body {
        padding: 1rem;
		
    }
    .modal-content{
		height:60% !important;
		margin-top:-30px !important;
	}
    .custom-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-width: auto;
    }
	
	.justify-content-end{
		margin-bottom:10px;
	}
}

/* 咨询按钮容器调整 */
@media (max-width: 768px) {
    #consultBtn {
        padding: 0.75rem 0.5rem;
        font-size: 1rem;
    }
}

/* 弹框内表单响应式 */
@media (max-width: 576px) {
    #consultModal .modal-body {
        padding: 1rem;
    }
    
    #consultContent, #contactInfoInput {
        font-size: 16px; /* 防止移动端自动缩放 */
    }
}

/* 成功Toast提示样式 */
.success-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    min-width: 350px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 1060;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.success-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.success-toast .toast-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
}

.success-toast .toast-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.success-toast .toast-message {
    flex: 1;
    min-width: 0;
}

.success-toast .toast-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.3;
}

.success-toast .toast-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.success-toast .toast-close {
    background: none;
    border: none;
    color: #adb5bd;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.success-toast .toast-close:hover {
    color: #495057;
}

.success-toast .toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
    width: 100%;
    transform-origin: left;
    animation: progress 3s linear forwards;
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* 其他Toast样式优化 */
.custom-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1055;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.custom-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-toast .toast-content {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 10px;
    font-weight: 500;
}

.custom-toast .btn-close {
    background: transparent;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    padding: 4px;
    margin-left: 10px;
}

.custom-toast .btn-close:hover {
    opacity: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .success-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .custom-toast {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-width: auto;
    }
    
    .success-toast .toast-content {
        padding: 16px;
        gap: 12px;
    }
    
    .success-toast .toast-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* 悬停效果 */
.success-toast:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    .success-toast {
        background: #2c3e50;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .success-toast .toast-title {
        color: #ecf0f1;
    }
    
    .success-toast .toast-text {
        color: #bdc3c7;
    }
    
    .success-toast .toast-close {
        color: #95a5a6;
    }
    
    .success-toast .toast-close:hover {
        color: #ecf0f1;
    }
}



/* 敏感词检测相关样式 */
.sensitive-words-error {
    border-left: 4px solid #ffc107;
    animation: shake 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
}

.sensitive-words-error .fa-exclamation-triangle {
    color: #ffc107;
    font-size: 1.2rem;
    margin-top: 2px;
}

.sensitive-words-error strong {
    color: #664d03;
}

.sensitive-words-error p {
    margin-bottom: 0.25rem;
    color: #664d03;
}

.sensitive-words-error small {
    font-size: 0.85rem;
}

/* 抖动动画效果 */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* 咨询内容输入框敏感词高亮 */
.consult-content-sensitive {
    border-color: #ffc107 !important;
    background-color: #fffbf0 !important;
    transition: all 0.3s ease;
}

.consult-content-sensitive:focus {
    border-color: #ffc107 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

/* 敏感词标签样式 */
.sensitive-word-tag {
    display: inline-block;
    background-color: #fff3cd;
    color: #664d03;
    padding: 0.125rem 0.5rem;
    margin: 0.125rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #ffc107;
}

/* 弹框内表单优化 */
#consultModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .sensitive-words-error {
        margin: 1rem -1rem -1rem;
        border-left: none;
        border-top: 3px solid #ffc107;
        border-radius: 0 0 8px 8px;
    }
}



/* 企业认证标志样式 */
.enterprise-name-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
}

.enterprise-text {
    font-weight: 500;
    color: #495057 !important;
}

.enterprise-certification-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    animation: pulse 2s infinite;
}

.certification-icon {
    width: 80px;
    height: 2836: block; /* 确保图片正常显示 */
}

.certification-text {
    letter-spacing: 0.5px;
}

.enterprise-status-badge {
    display: inline-block;
    background-color: #6c757d;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.enterprise-status-badge .status-text {
    font-size: 11px;
}

.enterprise-tip {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.4;
}

.enterprise-tip i {
    margin-right: 4px;
    font-size: 11px;
}

/* 认证标志动画 */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .enterprise-name-container {
        padding: 6px 10px;
    }
    
    .enterprise-certification-badge {
        padding: 3px 8px;
        font-size: 11px;
    }
    
    .certification-icon {
        width: 60px;
        
    }
    
    .enterprise-tip {
        font-size: 11px;
    }
}


/* 金色渐变按钮样式 */
.btn-gold-gradient {
    background: linear-gradient(135deg, #ffd700 0%, #ffcc33 25%, #ffb347 50%, #ff9933 75%, #ff8c00 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
}
.btn-gold-gradient:hover {
	background: linear-gradient(135deg, #ffd700 0%, #ffcc33 25%, #ffb347 50%, #ff9933 75%, #ff8c00 100%);
    background-position: right center;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}


.btn-gold-gradient:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.3);
}

.btn-gold-gradient:focus {
    color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.btn-gold-gradient:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 金色按钮的图标样式 */
.btn-gold-gradient i {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* VIP专属效果 - 添加微光动画 */
.btn-gold-gradient.vip-btn {
    animation: goldShine 3s infinite;
}

@keyframes goldShine {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 215, 0, 0.6);
    }
}

/* 新增：VIP按钮专属徽章效果 */
.vip-badge-corner {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* 按钮容器相对定位 */
.btn-container {
    position: relative;
}

/* VIP标识样式 */
.vip-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 8px;
}

.vip-badge::before {
    content: 'VIP';
    margin-right: 4px;
}