/* 市场应用详情页样式 */
.market-app-page {
    background-color: #000;
    color: #fff;
}

/*面包屑导航*/
.breadcrumb a{ color:#fff; text-decoration:none}

.breadcrumb a:hover{ color:#002fa7; text-decoration:none}



/* 第一屏样式 */
.hero-section {
    background-color: #000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.app-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.app-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.app-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 90%;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button-group .btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    min-width: 160px;
}

.btn-primary {
    background-color: #002fa7;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
   
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
    border: 2px solid #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.app-image {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.app-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-radius: 15px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.app-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* 第二屏样式 */
.details-section {
    padding:  0;
    background-color: #111;
}

.details-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #fff;
}

.app-details {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.feature-card ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.feature-card ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.feature-card ul li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* 响应式调整 */
@media (max-width: 1199.98px) {
    .app-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .app-title {
        font-size: 2.5rem;
    }

    .button-group {
        justify-content: center;
    }

    .app-image {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .app-title {
        font-size: 2rem;
    }

    .app-description {
        font-size: 1rem;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .button-group .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .app-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }
} 

/*弹出表单样式*/
.modal-content.d-flex {
    border-radius: 0.5rem;
}

.modal-left {
    min-width: 250px;
    max-width: 300px;
    background-color: #002fa7 !important; /* Bootstrap primary 蓝色 */
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
}

.modal-body{ color: #000 ;}
.btn-right{ text-align: right !important;
    width: 10%;
    /* height: 20%; */
    margin-left: 90%;}


/*应用详情参数*/
.market-specs {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    color: #333;
}
 .number-box {
            width: 60px;
            height: 60px;
            background-color: #002fa7;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-size: 20px;
            z-index: 1;
            left: 10px;
        }
   .content-box {
            background-color: #f1f2f3;
            color: #6c757d;
            padding: 20px;
            margin-top: -10px;
            
        }
    .content-box h3 {
            font-weight: bold;
            color: #6c757d;
            margin-top: 10px;
            border-bottom: 1px solid #0d6efd;
            line-height: 1.8;
        }
  .content-box p::before {
            content: "✓";
            color: #0d6efd;
            margin-right: 10px;
        }
    .content-box br::before {
            content: "✓";
            color: #0d6efd;
            margin-right: 10px;
        }