﻿.services-page {
    width: 100%;
    background: #fff;
}

.services-intro-section {
    padding: 70px 0 40px;
}

.services-title {
    text-align: center;
    margin-bottom: 36px;
}

.services-title h2 {
    margin: 0;
    font-size: 36px;
    line-height: 46px;
    color: #111;
    font-weight: bold;
}

.services-title p {
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 24px;
    color: #999;
    text-transform: uppercase;
}

.services-intro-text {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text p {
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    color: #555;
}

/* 服务分类 */
.services-category-section {
    padding: 30px 0 80px;
}

.services-category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-category-item {
    display: block;
    background: #fff;
    border: 1px solid #e8ecf7;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.28s ease;
}

.services-category-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 254, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 254, 0.12);
}

.services-category-img {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f7fb;
}

.services-category-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 45%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.services-category-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.services-category-img span {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 2;
    display: inline-block;
    padding: 7px 18px;
    background: #0000fe;
    border-radius: 20px;
    color: #fff;
    font-size: 14px;
    line-height: 22px;
    transition: all 0.25s ease;
}

.services-category-item:hover .services-category-img img {
    transform: scale(1.06);
}

.services-category-item:hover .services-category-img span {
    background: #fff;
    color: #0000fe;
}

.services-category-info {
    padding: 26px 26px 30px;
}

.services-category-info h3 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 16px;
    font-size: 24px;
    line-height: 34px;
    color: #111;
    font-weight: bold;
    transition: all 0.25s ease;
}

.services-category-info h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 4px;
    height: 18px;
    background: #0000fe;
    border-radius: 2px;
}

.services-category-info p {
    margin: 0;
    height: 84px;
    font-size: 15px;
    line-height: 28px;
    color: #666;
    overflow: hidden;
}

.services-category-info em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: #0000fe;
    font-size: 15px;
    line-height: 24px;
    font-style: normal;
}

.services-category-info em i {
    transition: all 0.25s ease;
}

.services-category-item:hover .services-category-info h3 {
    color: #0000fe;
}

.services-category-item:hover .services-category-info em i {
    transform: translateX(4px);
}



/* 服务流程 */
.services-process-section {
    padding: 80px 0;
    background: #f7f9ff;
}

.services-process-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.services-process-item {
    position: relative;
    min-height: 230px;
    padding: 36px 34px 34px;
    background: #fff;
    border: 1px solid #e8ecf7;
    border-radius: 18px;
    box-sizing: border-box;
    transition: all 0.28s ease;
    overflow: hidden;
}

.services-process-item::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    background: rgba(0, 0, 254, 0.06);
    border-radius: 50%;
    transition: all 0.28s ease;
}

.services-process-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 0, 254, 0.18);
    box-shadow: 0 18px 45px rgba(0, 0, 254, 0.12);
}

.services-process-item:hover::after {
    background: rgba(0, 0, 254, 0.12);
    transform: scale(1.15);
}

.services-process-item span {
    display: block;
    margin-bottom: 22px;
    font-size: 46px;
    line-height: 52px;
    color: #0000fe;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.services-process-item h3 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 34px;
    color: #111;
    font-weight: bold;
}

.services-process-item p {
    margin: 0;
    font-size: 15px;
    line-height: 28px;
    color: #666;
}

/* 联系引导 */
.services-contact-section {
    padding: 50px 0;
}

.services-contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 46px 54px;
    background: linear-gradient(135deg, #0000fe 0%, #246bff 100%);
    border-radius: 20px;
    color: #fff;
}

.services-contact-box h2 {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    color: #fff;
}

.services-contact-box p {
    margin: 12px 0 0;
    font-size: 16px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.services-contact-box a {
    display: block;
    width: 150px;
    height: 48px;
    line-height: 48px;
    background: #fff;
    color: #0000fe;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.services-contact-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}


.services-list-page {
    width: 100%;
    padding: 60px 0 90px;
    background: #fff;
}

/* 分类导航 */
.services-list-category {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
    padding: 24px 28px;
    background: #f7f9ff;
    border: 1px solid #e8ecf7;
    border-radius: 16px;
}

.services-list-category a {
    display: block;
    min-width: 120px;
    height: 42px;
    line-height: 40px;
    padding: 0 22px;
    border: 1px solid #dfe5f2;
    border-radius: 22px;
    background: #fff;
    color: #333;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.services-list-category a:hover,
.services-list-category a.active {
    background: #0000fe;
    border-color: #0000fe;
    color: #fff;
}

/* 当前分类内容 */
.services-list-content-wrap {
    padding: 46px 50px 56px;
    background: #fff;
    border: 1px solid #e8ecf7;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
}

.services-list-head {
    padding-bottom: 30px;
    margin-bottom: 34px;
    border-bottom: 1px solid #edf0f7;
    text-align: center;
}

.services-list-head h1 {
    margin: 0;
    font-size: 38px;
    line-height: 50px;
    color: #111;
    font-weight: bold;
}

.services-list-head p {
    max-width: 860px;
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 30px;
    color: #666;
}

/* 正文内容 */
.services-list-content {
    font-size: 16px;
    line-height: 32px;
    color: #444;
}

.services-list-content p {
    margin: 0 0 18px;
}

.services-list-content h2,
.services-list-content h3,
.services-list-content h4 {
    margin: 34px 0 18px;
    color: #111;
    font-weight: bold;
}

.services-list-content h2 {
    font-size: 28px;
    line-height: 38px;
}

.services-list-content h3 {
    font-size: 24px;
    line-height: 34px;
}

.services-list-content h4 {
    font-size: 20px;
    line-height: 30px;
}

.services-list-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.services-list-content ul,
.services-list-content ol {
    margin: 0 0 22px 22px;
    padding: 0;
}

.services-list-content li {
    margin-bottom: 8px;
    line-height: 30px;
}

.services-list-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.services-list-content table th,
.services-list-content table td {
    padding: 13px 15px;
    border: 1px solid #e5e9f2;
    font-size: 15px;
    line-height: 26px;
}

.services-list-content table th {
    background: #f7f9ff;
    color: #111;
}