/* ==============================
   解决方案列表页
   Theme: #026ABD
================================= */

.solution-list-page {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.solution-list-head {
    margin-bottom: 42px;
}

.solution-list-title {
    margin-bottom: 28px;
}

.solution-list-title h1 {
    margin: 0;
    color: #111;
    font-size: 38px;
    line-height: 48px;
    font-weight: bold;
}

.solution-list-title span {
    display: block;
    width: 60px;
    height: 10px;
    margin-top: 12px;
    background: #026ABD;
}

.solution-list-title p {
    max-width: 820px;
    margin: 20px 0 0;
    color: #666;
    font-size: 16px;
    line-height: 30px;
}

/* 分类筛选 */
.solution-list-cate {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.solution-list-cate a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    padding: 0 22px;
    box-sizing: border-box;
    border: 1px solid #eeeeee;
    border-radius: 22px;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: all .25s ease;
}

.solution-list-cate a:hover,
.solution-list-cate a.active {
    border-color: #026ABD;
    background: #026ABD;
    color: #fff;
}

/* 列表 */
.solution-list-main {
    display: block;
}

.app-row {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: stretch;
    margin-bottom: 34px;
    background: #f7f7f7;
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
}

.app-row:last-child {
    margin-bottom: 0;
}

.app-row:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 18px 42px rgba(0,0,0,.08);
}

.app-row-pic {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #eee;
}

.app-row-pic a {
    display: block;
    width: 100%;
    height: 100%;
}

.app-row-pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .45s ease;
}

.app-row:hover .app-row-pic img {
    transform: scale(1.06);
}

.app-row-info {
    position: relative;
    padding: 42px 44px;
    box-sizing: border-box;
}

.app-row-title {
    display: block;
    margin-bottom: 18px;
    color: #111;
    font-size: 26px;
    line-height: 36px;
    font-weight: bold;
    text-decoration: none;
    transition: all .25s ease;
}

.app-row-title:hover,
.app-row:hover .app-row-title {
    color: #026ABD;
}

.app-row-desc {
    height: 84px;
    margin: 0 0 24px;
    overflow: hidden;
    color: #666;
    font-size: 15px;
    line-height: 28px;
}

.app-row-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 30px;
    color: #777;
    font-size: 14px;
    line-height: 24px;
}

.app-row-meta span {
    display: inline-flex;
    align-items: center;
}

.app-row-meta i {
    margin-right: 7px;
    color: #026ABD;
}

.app-row-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    height: 40px;
    padding: 0 22px;
    box-sizing: border-box;
    border-radius: 22px;
    background: #026ABD;
    color: #fff;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    transition: all .25s ease;
}

.app-row-more i {
    margin-left: 8px;
    transition: all .25s ease;
}

.app-row-more:hover {
    background: #01569a;
    color: #fff;
}

.app-row-more:hover i {
    transform: translateX(4px);
}

/* 分页 */
.default.clear {
    margin-top: 46px;
    text-align: center;
}

/* ==============================
   解决方案分类编辑内容
   主色：#026ABD
================================= */

.solution-editor-box {
    margin-top: 42px;
    padding: 36px 40px;
    box-sizing: border-box;
    background: #f7f9fc;
    border-left: 5px solid #026ABD;
    color: #444;
    font-size: 16px;
    line-height: 32px;
    border-radius: 0 16px 16px 0;
}

/* 段落 */
.solution-editor-box p {
    margin: 0 0 18px;
    color: #444;
    font-size: 16px;
    line-height: 32px;
}

.solution-editor-box p:last-child {
    margin-bottom: 0;
}

/* 标题 */
.solution-editor-box h2,
.solution-editor-box h3,
.solution-editor-box h4 {
    position: relative;
    margin: 34px 0 18px;
    color: #111;
    font-weight: bold;
}

.solution-editor-box h2:first-child,
.solution-editor-box h3:first-child,
.solution-editor-box h4:first-child {
    margin-top: 0;
}

.solution-editor-box h2 {
    padding-left: 16px;
    font-size: 28px;
    line-height: 38px;
}

.solution-editor-box h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 24px;
    background: #026ABD;
    border-radius: 3px;
}

.solution-editor-box h3 {
    font-size: 24px;
    line-height: 34px;
}

.solution-editor-box h4 {
    font-size: 20px;
    line-height: 30px;
}

/* 加粗 */
.solution-editor-box strong,
.solution-editor-box b {
    color: #111;
    font-weight: bold;
}

/* 链接 */
.solution-editor-box a {
    color: #026ABD;
    text-decoration: none;
    transition: all .25s ease;
}

.solution-editor-box a:hover {
    color: #01569a;
    text-decoration: underline;
}

/* 列表 */
.solution-editor-box ul,
.solution-editor-box ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.solution-editor-box li {
    margin-bottom: 10px;
    color: #444;
    font-size: 16px;
    line-height: 30px;
}

.solution-editor-box ul li::marker {
    color: #026ABD;
}

.solution-editor-box ol li::marker {
    color: #026ABD;
    font-weight: bold;
}

/* 图片 */
.solution-editor-box img {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 24px auto;
    border-radius: 10px;
}

/* 表格 */
.solution-editor-box table {
    width: 100% !important;
    margin: 26px 0;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
}

.solution-editor-box table th,
.solution-editor-box table td {
    padding: 13px 15px;
    box-sizing: border-box;
    border: 1px solid #e5e5e5;
    color: #444;
    font-size: 15px;
    line-height: 26px;
    text-align: left;
    vertical-align: middle;
}

.solution-editor-box table th {
    background: #026ABD;
    color: #fff;
    font-weight: bold;
}

.solution-editor-box table tr:nth-child(even) td {
    background: #f7f9fc;
}

/* 引用 */
.solution-editor-box blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid #026ABD;
    background: #fff;
    color: #555;
    font-size: 15px;
    line-height: 30px;
}

/* iframe / 视频 */
.solution-editor-box iframe,
.solution-editor-box video {
    max-width: 100%;
}

/* 清除后台编辑器可能带来的溢出 */
.solution-editor-box * {
    max-width: 100%;
    box-sizing: border-box;
}

