﻿/* ==============================
   Application / Industry Page
   Main Color: #004ac5
   Accent Color: #e27a1f
============================== */

.app-page {
    width: 100%;
    background: #fff;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.app-content {
    padding: 60px 0 80px;
}

/* 页面标题 */
.app-page-title {
    text-align: center;
    margin-bottom: 42px;
}

    .app-page-title h1 {
        margin: 0;
        font-size: 38px;
        line-height: 1.3;
        color: #222;
        font-weight: bold;
        position: relative;
        padding-bottom: 18px;
    }

        .app-page-title h1::after {
            content: "";
            width: 66px;
            height: 4px;
            border-radius: 4px;
            background: #004ac5;
            position: absolute;
            left: 50%;
            bottom: 0;
            margin-left: -33px;
        }

    .app-page-title p {
        margin: 14px auto 0;
        max-width: 720px;
        color: #777;
        font-size: 15px;
        line-height: 28px;
    }

/* 应用领域分类 */
.app-category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.app-category-item {
    display: block;
    background: #fff;
    border: 1px solid #e1e9f8;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0, 74, 197, .08);
    transition: all .28s ease;
}

    .app-category-item:hover {
        transform: translateY(-8px);
        border-color: #004ac5;
        box-shadow: 0 20px 48px rgba(0, 74, 197, .16);
    }

.app-category-img {
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #f5f8ff;
    position: relative;
}

    .app-category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all .45s ease;
    }

.app-category-item:hover .app-category-img img {
    transform: scale(1.08);
}

.app-category-info {
    padding: 26px 26px 28px;
    position: relative;
}

    .app-category-info::before {
        content: "";
        width: 48px;
        height: 4px;
        border-radius: 4px;
        background: #004ac5;
        position: absolute;
        left: 26px;
        top: 0;
    }

    .app-category-info h2 {
        margin: 0 0 13px;
        font-size: 22px;
        line-height: 1.4;
        color: #222;
        font-weight: bold;
        transition: all .25s ease;
    }

.app-category-item:hover .app-category-info h2 {
    color: #e27a1f;
}

.app-category-info p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
}

.app-category-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: #004ac5;
    font-size: 14px;
    font-weight: bold;
    transition: all .25s ease;
}

.app-category-item:hover .app-category-more {
    color: #e27a1f;
    padding-left: 6px;
}


/* ==============================
   Application List Page
   Main Color: #004ac5
   Accent Color: #e27a1f
============================== */

.app-list-page {
    width: 100%;
    background: #fff;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.app-list-content {
    padding: 60px 0 80px;
}

/* 大标题 */
.app-list-title {
    text-align: center;
    margin-bottom: 38px;
}

    .app-list-title h1 {
        margin: 0;
        font-size: 42px;
        line-height: 1.3;
        color: #222;
        font-weight: bold;
        position: relative;
        padding-bottom: 20px;
    }

        .app-list-title h1::after {
            content: "";
            width: 72px;
            height: 4px;
            border-radius: 4px;
            background: #004ac5;
            position: absolute;
            left: 50%;
            bottom: 0;
            margin-left: -36px;
        }

/* 分类介绍 */
.app-list-intro {
    margin-bottom: 46px;
    padding: 34px 38px;
    background: #f5f8ff;
    border: 1px solid #dfe9fb;
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(0, 74, 197, .08);
    color: #555;
    font-size: 16px;
    line-height: 32px;
}

    .app-list-intro p {
        margin: 0 0 16px;
    }

        .app-list-intro p:last-child {
            margin-bottom: 0;
        }

    .app-list-intro img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 22px auto;
        border-radius: 14px;
    }

    .app-list-intro h2,
    .app-list-intro h3,
    .app-list-intro h4 {
        margin: 24px 0 14px;
        color: #222;
        line-height: 1.45;
    }

/* 列表 */
.app-news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.app-news-item {
    display: block;
    background: #fff;
    border: 1px solid #e1e9f8;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 12px 34px rgba(0, 74, 197, .08);
    transition: all .28s ease;
}

    .app-news-item:hover {
        transform: translateY(-8px);
        border-color: #004ac5;
        box-shadow: 0 20px 48px rgba(0, 74, 197, .16);
    }

.app-news-img {
    width: 100%;
    height: 235px;
    overflow: hidden;
    background: #f5f8ff;
}

    .app-news-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all .45s ease;
    }

.app-news-item:hover .app-news-img img {
    transform: scale(1.08);
}

.app-news-info {
    padding: 24px 24px 26px;
}

    .app-news-info h2 {
        margin: 0 0 16px;
        font-size: 22px;
        line-height: 1.42;
        color: #222;
        font-weight: bold;
        height: 62px;
        overflow: hidden;
        transition: all .25s ease;
    }

.app-news-item:hover .app-news-info h2 {
    color: #e27a1f;
}

.app-news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: #888;
    font-size: 14px;
}

    .app-news-meta span {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .app-news-meta i {
        margin-right: 6px;
        color: #004ac5;
        font-size: 14px;
    }

/* 无数据 */
.app-list-empty {
    padding: 46px 20px;
    text-align: center;
    background: #f5f8ff;
    border: 1px solid #dfe9fb;
    border-radius: 18px;
    color: #888;
    font-size: 15px;
}


/* ==============================
   应用领域列表页分类
============================== */

.app-list-category {
    margin-bottom: 42px;
    padding: 15px;
    background: #f5f8ff;
    border: 1px solid #e1e9f8;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

    .app-list-category a {
        min-width: 150px;
        height: 46px;
        line-height: 46px;
        padding: 0 22px;
        border-radius: 12px;
        text-align: center;
        background: #fff;
        color: #333;
        font-size: 15px;
        text-decoration: none;
        transition: all .25s ease;
        box-shadow: 0 6px 18px rgba(0, 74, 197, .06);
    }

        .app-list-category a:hover,
        .app-list-category a.active {
            background: #004ac5;
            color: #fff;
            box-shadow: 0 10px 24px rgba(0, 74, 197, .22);
            transform: translateY(-2px);
        }


/* ==============================
   Application Detail Page
   Main Color: #004ac5
   Accent Color: #e27a1f
============================== */

.app-detail-page {
    width: 100%;
    background: #fff;
    color: #333;
    font-family: Arial, Helvetica, sans-serif;
}

.app-detail-content {
    padding: 55px 0 80px;
}

.app-detail-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* 左侧详情 */
.app-detail-left {
    min-width: 0;
}

.app-detail-box {
    background: #fff;
    border: 1px solid #e1e9f8;
    border-radius: 22px;
    padding: 42px 46px 46px;
    box-shadow: 0 14px 38px rgba(0, 74, 197, .08);
}

.app-detail-title {
    margin-bottom: 18px;
}

    .app-detail-title h1 {
        margin: 0;
        font-size: 38px;
        line-height: 1.42;
        color: #222;
        font-weight: bold;
    }

/* meta */
.app-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #edf1f8;
    color: #888;
    font-size: 14px;
}

    .app-detail-meta span {
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
    }

    .app-detail-meta i {
        margin-right: 6px;
        color: #004ac5;
        font-size: 14px;
    }

/* 主图 */
.app-detail-cover {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 18px;
    overflow: hidden;
    background: #f5f8ff;
}

    .app-detail-cover img {
        width: 100%;
        height: auto;
        display: block;
    }

/* 正文 */
.app-detail-body {
    color: #444;
    font-size: 16px;
    line-height: 32px;
}

    .app-detail-body p {
        margin: 0 0 18px;
    }

    .app-detail-body img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 24px auto;
        border-radius: 14px;
    }

    .app-detail-body h2,
    .app-detail-body h3,
    .app-detail-body h4 {
        margin: 30px 0 16px;
        color: #222;
        line-height: 1.45;
    }

    .app-detail-body h2 {
        font-size: 28px;
    }

    .app-detail-body h3 {
        font-size: 24px;
    }

    .app-detail-body h4 {
        font-size: 20px;
    }

    .app-detail-body ul,
    .app-detail-body ol {
        margin: 0 0 20px 22px;
        padding: 0;
    }

    .app-detail-body li {
        margin-bottom: 8px;
    }

/* 上一篇下一篇 */
.app-detail-prevnext {
    margin-top: 38px;
    padding-top: 28px;
    border-top: 1px solid #edf1f8;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px 12px;
    align-items: center;
    line-height: 50px;
    color: #999;
    font-size: 15px;
}

    .app-detail-prevnext > span {
        min-height: 50px;
        padding: 0 16px;
        border-radius: 12px;
        background: #edf5ff;
        color: #004ac5;
        font-size: 15px;
        font-weight: bold;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        line-height: 22px;
    }

    .app-detail-prevnext > a {
        min-height: 50px;
        padding: 13px 18px;
        border-radius: 12px;
        background: #f7f9ff;
        color: #444;
        font-size: 15px;
        line-height: 24px;
        text-decoration: none;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        transition: all .25s ease;
    }

        .app-detail-prevnext > a:hover {
            background: #004ac5;
            color: #fff;
            transform: translateX(6px);
            box-shadow: 0 10px 24px rgba(0, 74, 197, .18);
        }

    .app-detail-prevnext > em {
        min-height: 50px;
        padding: 13px 18px;
        border-radius: 12px;
        background: #f7f9ff;
        color: #999;
        font-size: 15px;
        line-height: 24px;
        font-style: normal;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }

/* 返回按钮 */
.app-detail-back {
    margin-top: 28px;
}

    .app-detail-back a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 160px;
        height: 46px;
        border-radius: 999px;
        background: #004ac5;
        color: #fff;
        font-size: 15px;
        font-weight: bold;
        padding: 0 15px;
        text-decoration: none;
        transition: all .25s ease;
        box-shadow: 0 10px 24px rgba(0, 74, 197, .22);
    }

        .app-detail-back a:hover {
            background: #e27a1f;
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(226, 122, 31, .28);
        }

/* 右侧栏 */
.app-detail-side {
    position: sticky;
    top: 130px;
}

.app-side-box {
    background: #fff;
    border: 1px solid #e1e9f8;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 26px;
    box-shadow: 0 10px 30px rgba(0, 74, 197, .08);
}

.app-side-title {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf1f8;
    position: relative;
}

    .app-side-title h3 {
        margin: 0;
        font-size: 22px;
        line-height: 1.3;
        color: #222;
        font-weight: bold;
    }

    .app-side-title::after {
        content: "";
        width: 42px;
        height: 3px;
        border-radius: 3px;
        background: #004ac5;
        position: absolute;
        left: 0;
        bottom: -1px;
    }

/* 应用分类 */
.app-side-category-list a {
    display: block;
    height: 44px;
    line-height: 44px;
    padding: 0 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    background: #f6f8ff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

    .app-side-category-list a:hover,
    .app-side-category-list a.active {
        background: #004ac5;
        color: #fff;
        padding-left: 22px;
    }

/* 推荐应用 */
.app-recommend-item {
    display: flex;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #edf1f8;
}

    .app-recommend-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.app-recommend-img {
    width: 98px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

    .app-recommend-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all .35s ease;
    }

.app-recommend-item:hover .app-recommend-img img {
    transform: scale(1.08);
}

.app-recommend-text h4 {
    margin: 0;
    font-size: 15px;
    line-height: 23px;
    max-height: 46px;
    overflow: hidden;
}

    .app-recommend-text h4 a {
        color: #333;
        text-decoration: none;
        transition: all .25s ease;
    }

        .app-recommend-text h4 a:hover {
            color: #e27a1f;
        }

.app-recommend-text span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 12px;
    margin-top: 8px;
    color: #999;
    font-size: 13px;
}

    .app-recommend-text span em {
        display: inline-flex;
        align-items: center;
        font-style: normal;
    }

.app-recommend-text i {
    margin-right: 5px;
    color: #004ac5;
}
