.service-detail-page {
    min-height: 3501px;
    padding: 84px 0 69px;
    background: #f3f3f3;
}

.service-detail-layout {
    display: grid;
    grid-template-columns: 240px 848px;
    column-gap: 40px;
    align-items: start;
    width: 1136px;
    margin: 0 auto;
}

.service-detail-sidebar {
    position: sticky;
    top: 24px;
    z-index: 3;
    width: 240px;
    min-height: 645px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.service-detail-sidebar__title {
    height: 67px;
    margin: 0;
    padding: 25px 24px 0;
    border-bottom: 1px solid #e6e6e6;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.service-detail-sidebar__list {
    padding: 18px 24px 28px;
}

.service-detail-sidebar__group + .service-detail-sidebar__group {
    margin-top: 24px;
}

.service-detail-sidebar__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 22px;
    padding: 0;
    border: 0;
    color: #222;
    background: transparent;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
    cursor: pointer;
}

.service-detail-sidebar__category span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-detail-sidebar__category i {
    position: relative;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-left: 12px;
}

.service-detail-sidebar__category i::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #666;
    border-bottom: 1.5px solid #666;
    transform: rotate(-45deg);
}

.service-detail-sidebar__category.is-active {
    color: #222;
}

.service-detail-sidebar__category.is-active i::before {
    top: 3px;
    border-color: #10bf73;
    transform: rotate(45deg);
}

.service-detail-sidebar__children {
    display: none;
    padding-top: 18px;
}

.service-detail-sidebar__group.is-open .service-detail-sidebar__children {
    display: block;
}

.service-detail-sidebar__child {
    display: block;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-detail-sidebar__child + .service-detail-sidebar__child {
    margin-top: 20px;
}

.service-detail-sidebar__child:hover,
.service-detail-sidebar__child.is-active {
    color: #10bf73;
}

.service-detail-main {
    width: 848px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    height: 20px;
    color: #666;
    font-size: 14px;
    line-height: 20px;
}

.service-breadcrumb a,
.service-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.service-breadcrumb span {
    color: #222;
}

.service-breadcrumb img {
    width: 18px;
    height: 18px;
    margin: 1px 2px 0;
    object-fit: contain;
}

.service-detail-hero {
    width: 848px;
    height: 168px;
    margin-top: 14px;
    padding: 30px 40px 0;
    overflow: hidden;
    border-radius: 12px;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-detail-hero h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
}

.service-detail-hero p {
    width: 768px;
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 20px;
}

.service-detail-hero span {
    display: inline-flex;
    align-items: center;
    height: 27px;
    margin-top: 14px;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, .92);
    border-radius: 4px;
    font-size: 12px;
    line-height: 17px;
}

.service-detail-article {
    width: 848px;
    margin-top: 16px;
    padding-bottom: 30px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.service-detail-tabs {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 66px;
    height: 60px;
    padding: 12px 0 0 40px;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 12px 12px 0 0;
    background: #fff;
}

.service-detail-tab {
    position: relative;
    height: 48px;
    padding: 0;
    border: 0;
    color: #222;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    white-space: nowrap;
    cursor: pointer;
}

.service-detail-tab.is-active {
    font-weight: 700;
}

.service-detail-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 3px;
    background: #10bf73;
}

.service-detail-section {
    padding: 28px 28px 0;
    scroll-margin-top: 72px;
}

.service-detail-section + .service-detail-section {
    padding-top: 24px;
}

.service-detail-section h2 {
    margin: 0 0 16px;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.service-detail-section h3 {
    margin: 0 0 12px;
    color: #10bf73;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.service-detail-copy {
    color: #222;
    font-size: 14px;
    line-height: 22px;
}

.service-detail-copy p {
    margin: 0;
    text-indent: 2em;
}

.service-detail-copy p + p {
    margin-top: 12px;
}

.service-detail-copy br {
    content: "";
}

.service-detail-content-image {
    display: block;
    max-width: 704px;
    height: auto;
    margin: 18px auto 0;
    object-fit: contain;
}

.service-detail-section[data-detail-tab-section="实验流程"] .service-detail-content-image,
#tab-42951d1aa669f10f74034ae551e8394e .service-detail-content-image {
    max-width: 704px;
}

.service-inquiry-card {
    width: 848px;
    margin-top: 25px;
    padding: 28px 28px 30px;
    border-radius: 12px;
    background: #fff;
}

.service-inquiry-card h2 {
    margin: 0;
    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.service-inquiry-card p {
    margin: 12px 0 0;
    color: #222;
    font-size: 14px;
    line-height: 20px;
}

.service-inquiry-card p span,
.service-inquiry-card__success {
    color: #2e93ff;
}

.service-inquiry-card form {
    margin-top: 32px;
}

.service-inquiry-grid {
    display: grid;
    gap: 30px;
}

.service-inquiry-grid--three {
    grid-template-columns: repeat(3, 240px);
}

.service-inquiry-grid--two {
    grid-template-columns: repeat(2, 240px);
    margin-top: 24px;
}

.service-inquiry-card label {
    display: block;
}

.service-inquiry-field--select {
    position: relative;
}

.service-inquiry-field--select::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid #b3b3b3;
    border-bottom: 1.5px solid #b3b3b3;
    transform: rotate(45deg);
    pointer-events: none;
}

.service-inquiry-card strong {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.service-inquiry-card em {
    margin-right: 1px;
    color: #ff1925;
    font-style: normal;
}

.service-inquiry-card input,
.service-inquiry-card textarea {
    display: block;
    width: 240px;
    height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    outline: 0;
    color: #222;
    background: #f5f5f5;
    font-size: 14px;
    line-height: 20px;
}

.service-inquiry-card input::placeholder,
.service-inquiry-card textarea::placeholder {
    color: #999;
}

.service-inquiry-wide {
    margin-top: 24px;
}

.service-inquiry-wide textarea {
    width: 780px;
    height: 69px;
    padding-top: 10px;
    resize: none;
}

.service-inquiry-card button[type="submit"] {
    display: block;
    width: 124px;
    height: 40px;
    margin: 24px auto 0;
    border: 0;
    border-radius: 4px;
    color: #fff;
    background: #1162bc;
    font-size: 16px;
    font-weight: 600;
    line-height: 40px;
    cursor: pointer;
}

.service-inquiry-card button[type="submit"]:hover {
    background: #0e57a8;
}
