a.transition {
    color: #fff !important;
}

/* 保留必要的核心样式 */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    font-size: 24px;
    color: #d97706;
}

.logo span {
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-links a:hover {
    color: #d97706;
}

/* 页面标题 */
.page-header {
    text-align: center;
    margin: 30px 0 40px;
}

.page-header h1 {
    font-size: 42px;
    color: #1a365d;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
}

/* 英雄区域 */
.hero {
    background: linear-gradient(135deg, #1a365d, #2b4c7e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background: #d97706;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn:hover {
    background: #b65c00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 关于我们 */
.about {
    padding: 80px 0;
    background: #f1f5f9;
}

/* .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 15px;
} */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 价值增长方法论 */
.methodology {
    padding: 80px 0;
    background: white;
}

.methodology-steps {
    margin-bottom: 30px;
    position: relative;
}

.methodology-steps h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 15px;
}

.methodology-steps p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4b5563;
}

/* 核心服务 */
.services {
    padding: 80px 0;
    background: #f1f5f9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    font-size: 24px;
}

.service-card h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4b5563;
}

/* 圆形导航系统 */
.services-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 600px;
    margin: 0 auto;
}

.circular-nav {
    position: relative;
    width: 100%;
    height: 100%;
}

.svg-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.extension-line {
    position: absolute;
    height: 2px;
    background: rgba(30, 41, 59, 0.1);
    transform-origin: left center;
    transition: all 0.5s ease;
    z-index: 1;
}

.active-line {
    background: linear-gradient(90deg, #445A7A, #3d577e);
    box-shadow: 0 0 10px #445A7A;
    z-index: 2;
    height: 3px;
}

.active-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #d97706;
    border-radius: 50%;
    box-shadow: 0 0 15px #d97706;
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    pointer-events: none;
    width: 80%;
}

.main-text {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #1a365d, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
}

.sub-text {
    font-size: 20px;
    color: rgba(30, 41, 59, 0.9);
    transition: all 0.5s ease;
}

.info-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
}

.info-box {
    position: absolute;
    width: 210px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    z-index: 15;
    opacity: 0.85;
    transform: scale(0.95) translateY(10px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

.info-box.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.2);
    z-index: 20;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    transition: all 0.5s ease;
}

/* 重点优化部分 - 激活标题样式 */
.info-box.active .info-title {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
    padding-bottom: 12px;
    border-bottom: 2px solid #d97706;
    margin-bottom: 15px;
}

.info-content {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(30, 41, 59, 0.85);
    transition: all 0.5s ease;
}

.info-box.active .info-content {
    color: #1e293b;
}

/* 价值共创场景 */
.value-scenes {
    padding: 80px 0;
    background: white;
}

.scenes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scene-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scene-icon {
    width: 60px;
    height: 60px;
    background: #1a365d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scene-icon i {
    color: white;
    font-size: 24px;
}

.scene-card h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 15px;
}

.scene-card p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #4b5563;
}

/* 联系方式 */
.contact {
    padding: 80px 0;
    background: #1a365d;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: #d97706;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #d97706;
    transform: translateY(-5px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-btn {
    width: 100%;
    padding: 15px;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-btn:hover {
    background: #b65c00;
}

/* 页脚 */
footer {
    background: #0f1a2f;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 24px;
    color: #d97706;
}

.footer-logo span {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.footer-links h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #d97706;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    font-family: var(--font-inter);
    background-color: var(--color-light);
    color: var(--color-dark);
}

.methodology-step::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--color-accent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.8;
}

.mermaid-svg {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
}

/* 卡片翻转效果优化 */
.card-container {
    perspective: 1200px;
    height: 340px;
    position: relative;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
}

.card-container.flipped .card-inner {
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 1rem;
    padding: 1.5rem;
    background: white;
    display: flex;
    flex-direction: column;

}

.card-back {
    transform: rotateY(180deg);
    overflow-y: auto;
    /* 使整个卡片背面可滚动 */
    padding-right: 1.25rem;
    /* 为滚动条留出空间 */
    background: #254573;
}

/* 自定义滚动条样式 */
.card-back::-webkit-scrollbar {
    width: 4px;
}

.card-back::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.card-back::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.card-back::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* 放大的卡片图标 */
.card-icon {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: rgba(26, 54, 93, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.75rem;
}

.card-container.flipped .card-icon {
    background: var(--color-primary);
}

.card-container.flipped .card-icon i {
    color: white;
}

/* 放大的标题 */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.card-back .card-title {
    color: white;
}

.card-back .text-gray-700 {
    color: white;
}

/* 提示文字样式 */
.flip-hint {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: opacity 0.3s ease;
}

.card-container.flipped .flip-hint {
    opacity: 0;
}

/* 服务流程闭环布局 */
.service-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
}

.flow-step {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background-color: rgba(26, 54, 93, 0.05);
    position: relative;
    z-index: 2;
}

.flow-step.highlighted {
    background-color: rgba(217, 119, 6, 0.08);
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}



.arrow-right {
    top: 50%;
    left: 75%;
    width: 25%;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(45deg);
}

.arrow-left {
    top: 50%;
    right: 75%;
    width: 25%;
    height: 1px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.arrow-left::after {
    content: '';
    position: absolute;
    left: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
    transform: rotate(225deg);
}

.arrow-down {
    top: 75%;
    left: 50%;
    height: 25%;
    width: 1px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.arrow-down::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
}

.arrow-up {
    top: -25%;
    left: 50%;
    height: 25%;
    width: 1px;
    background-color: var(--color-primary);
    opacity: 0.3;
}

.arrow-up::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-top: 2px solid var(--color-primary);
    transform: rotate(-45deg);
}

.card-back .text-gray-700 {
    font-size: 18px;
}

.card-container {
    transition: transform 0.4s ease;
}

.card-container:hover:not(.flipped) {
    transform: scale(1.03);
    z-index: 10;
    /* 确保放大时不被其他元素遮挡 */
}

.card-container:hover:not(.flipped) .flip-hint {
    opacity: 1;
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.1);
}

/* 卡片内容居中样式保持不变 */
.card-front {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backface-visibility: hidden;
}

body {
    margin: revert-layer !important;
    padding: revert-layer !important;
    ;
}

.header {
    background: linear-gradient(135deg, #1a2a6c, #3a7bd5);
    color: white;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.header .title {
    font-size: 2.8rem;
    margin: 15px 0;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.header .subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 15px;
    opacity: 0.9;
    font-weight: 300;
}

/* 内容区域无内容时的样式 */
.empty-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    color: #8d9bba;
}

.empty-content i {
    font-size: 80px;
    margin-bottom: 25px;
    color: #e0e7ff;
    opacity: 0.5;
}

.empty-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #5f6a8f;
}

.case-title {
    font-size: 30px;
    color: #1a2a6c;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eaeff5;
    font-weight: 700;
    position: relative;
}

.case-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #3a7bd5, #1a2a6c);
    border-radius: 3px;
}

.case-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.case-content p {
    margin-bottom: 20px;
}

.case-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.case-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s, box-shadow 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(58, 123, 213, 0.2);
}

.case-img {
    height: 220px;
    --background: linear-gradient(45deg, #64b3f4, #3a7bd5);
    --background: linear-gradient(45deg, #64b3f4, #3a7bd5);
    display: flex;
    align-items: center;
    justify-content: center;
    --color: white;
    color: var(--color-primary);
    font-size: 24px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    padding: 18px;
}

.case-img::before {
    --content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

.case-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.case-date {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 15px;
    background: rgba(255, 107, 107, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.case-tag {
    background: #e6f7ff;
    color: #1890ff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.case-desc {
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
    font-size: 15px;
    flex-grow: 1;
}

.case-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    padding-top: 15px;
    border-top: 1px solid #f0f5ff;
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-item i {
    margin-right: 6px;
    font-size: 16px;
}

.footer {
    text-align: center;
    padding: 30px 0;
    color: #8d9bba;
    background-color: #1a2a6c;
    margin-top: 40px;
}

.footer p {
    margin: 5px 0;
}

.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.company-logo span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 20px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
        margin: 15px;
    }

    .left-menu {
        width: 100%;
        max-height: 400px;
        border-right: none;
        border-bottom: 1px solid #eaeff5;
    }

    .menu-container {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 10px 20px;
        font-size: 15px;
        margin: 8px 5px;
    }

    .case-grid {
        grid-template-columns: 1fr;
    }

    .header .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .content-area {
        padding: 25px 20px;
    }

    .case-title {
        font-size: 24px;
    }
}

/* 加载动画 */
.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loader .layui-icon {
    font-size: 48px;
    color: #3a7bd5;
    animation: spin 1.2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.menu-empty {
    padding: 20px;
    text-align: center;
    color: #8d9bba;
    font-size: 16px;
}

.case-content img {
    height: 100%;
    width: 100%;
}

.case-content video {
    height: 100%;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.0);
    box-shadow: none;
    background-repeat: no-repeat;
}

.swiper-button-next {
    background-image: url("/img/ico/right.png")
}

.swiper-button-prev {
    background-image: url("/img/ico/left.png")
}


.overflow-hidden {
    overflow: hidden;
}

.viewer-container {
    z-index: 999999999999 !important;
}

.fade-in-container {
    width: auto;
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.fade-in-pagination {
    text-align: center;
    position: relative;
    z-index: 999999;
    top: -27px;

}