/* ========== 字体 ========== */
@font-face {
    font-family: "alpuhui";
    src: url(./font/AlibabaPuHuiTi-3-55-Regular.ttf);
}

/* ========== CSS变量 ========== */
:root {
    --theme-color: 15, 109, 217;
    --theme-color-dark: 14, 73, 140;
    --theme-color2: 255, 246, 168;
    --white: 255, 255, 255;
    --text-black: 34, 34, 34;
    --text-gray: 187, 187, 187;
    --text-gray2: 102, 102, 102;
    --light-gray: 204, 204, 204;
    --bg-color: 247, 247, 247;
    --bg-color2: 242, 245, 255;
    --footer-bg-b: 51, 51, 51;
    --footer-gray: 170, 170, 170;
    --black: 0, 0, 0;
}

/* ========== 基础重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    color: rgb(var(--text-black));
    background-color: rgba(var(--bg-color), 1);
    counter-reset: title 0;
    width: 100%;
    font-family: "alpuhui", "YaHei", "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: rgb(var(--text-black));
}

ol, ul, li {
    list-style: none;
}

/* ========== 图标 ========== */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.icon-tel-y { width: 20px; height: 18px; background-image: url(../asset/icon/tel-y.png); }
.icon-cate01 { background-image: url(../asset/icon/cate01.png); }
.icon-cate02 { background-image: url(../asset/icon/cate02.png); }
.icon-cate03 { background-image: url(../asset/icon/cate03.png); }
.icon-cate04 { background-image: url(../asset/icon/cate04.png); }
.icon-tel { background-image: url(../asset/icon/tel_icon.png); }
.icon-addr { background-image: url(../asset/icon/addr_icon.png); }
.icon-area { background-image: url(../asset/icon/area_icon.png); }

/* ========== 通用 ========== */
.tips { color: rgb(var(--text-gray2)); }

.theme-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    letter-spacing: 1px;
}

.theme-title > h2 { color: rgb(var(--theme-color-dark)); }
.theme-title > h2 + p {
    color: rgb(var(--text-gray));
    margin-top: -3px;
}

/*.theme-title.white > h2 { color: rgb(var(--white)); }

/* ========== HEADER ========== */
.header {
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s;
}

.header-container {
    display: flex;
    align-items: center;
}

.header .logo { background-size: contain; }

/* ========== BANNER ========== */
.banner {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner .endesc { color: rgb(var(--theme-color2)); }

.banner .banner-title {
    position: relative;
    color: rgb(var(--white));
    width: fit-content;
}

.banner .company-name {
    display: flex;
    flex-direction: column;
}

.banner-prop {
    position: absolute;
    right: 0;
    display: flex;
    flex-wrap: wrap;
}

.banner-prop span {
    background-color: rgb(var(--theme-color-dark));
    text-align: center;
}

.banner-subtitle {
    background-color: rgb(var(--theme-color2));
    color: rgb(var(--theme-color));
    width: fit-content;
}

/* ========== PART01 服务项目 ========== */
#part01 { background: rgb(var(--white)); }

.cate-box { display: flex; }

.cate-box .cate-title { position: relative; }

.cate-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: rgb(var(--white));
    background-color: rgb(var(--theme-color));
    box-shadow: 0px 2px 10px rgba(var(--black), 0.2);
    z-index: 2;
}

.cate-content {
    border-top: 4px solid rgb(var(--theme-color2));
    z-index: 1;
    background: linear-gradient(180deg, rgba(var(--bg-color), 1) 0%, rgba(var(--white), 1) 100%);
}

.cate-content .cate-content-point {
    position: relative;
    color: rgb(var(--theme-color-dark));
    font-weight: 700;
}

.cate-content .cate-content-point::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: rgba(var(--theme-color), 1);
}

/* ========== PART02 收费标准 ========== */
.fees-table { display: flex; flex-direction: column; }

.fees-table-header {
    display: flex;
    background-color: rgb(var(--theme-color));
    color: rgb(var(--white));
    align-items: center;
    font-weight: 700;
}

.fees-table-header > div,
.fees-table-item > div { text-align: center; }

.fees-table-header > div + div { border-left: 1px solid rgb(var(--white)); }

.fees-table-item {
    display: flex;
    background-color: rgb(var(--white));
    align-items: center;
    justify-content: space-around;
}

.fees-table-item > div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fees-table-item > div:nth-child(1) {
    font-weight: 700;
    color: rgb(var(--theme-color-dark));
}

.fees-table-item:nth-child(2n+1) { background-color: rgba(var(--theme-color2), .5); }

/* ========== PART03 鉴定流程 ========== */
#part03 { background: rgb(var(--white)); }

.process_pic {
    background-position: center;
    background-size: cover;
}

.process-box { counter-reset: process; }

.process-item {
    display: flex;
    counter-increment: process;
}

.process-item::before,
.process-list2 .process-item::after {
    background-color: rgb(var(--light-gray));
    color: rgb(var(--white));
    text-align: center;
    border-radius: 50%;
}

.process-item-title {
    font-weight: 500;
    color: rgb(var(--theme-color-dark));
}

/* ========== PART04 机构介绍 ========== */
#part04 .theme-title > h2 { color: rgb(var(--white)); }

.company-introduction {
    background-color: rgba(var(--theme-color-dark), .5);
    color: rgb(var(--white));
}

.company-title + span { color: rgb(var(--theme-color2)); }

.company-area { background-color: rgba(var(--white), 0.88); }

.company-area-title {
    display: flex;
    align-items: center;
    color: rgb(var(--theme-color-dark));
}

.company-area-title::after {
    content: "";
    height: 1px;
    flex: 1;
    background-color: rgba(var(--theme-color-dark), 0.5);
}

.area-tip { color: rgb(var(--theme-color-dark)); }

.lab-advantage-list { display: flex; }

.lab-advantage-title {
    color: rgb(var(--white));
    text-align: center;
    font-weight: 500;
}

.lab-advantage-item {
    display: flex;
    flex-direction: column;
    background-size: 100% 100%;
}

.lab-advantage-sub-title {
    font-weight: 700;
    background: linear-gradient(to right, rgb(var(--theme-color2)), rgb(var(--white)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 6px rgba(var(--white), 0.3);
    width: 100%;
}

.lab-advantage-sub-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: rgb(var(--light-gray));
}

.lab-advantage-desc {
    color: rgb(var(--white));
    text-align: justify;
}

.lab-pics { display: flex; }

.lab-pics > img { box-shadow: 0px 2px 10px rgba(var(--black), 0.2); }

/* ========== PART05 常见问题 ========== */
.qa-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.qa-item {
    position: relative;
    box-sizing: border-box;
}

.qa-num {
    position: absolute;
    top: 0;
    left: 0;
    color: rgb(var(--light-gray));
    text-align: center;
    font-weight: 700;
}

.qa-title {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: rgba(var(--white), 1);
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.qa-item.active .qa-title { background: rgba(var(--theme-color2), 0.5); }

.qa-title-text { flex: 1; min-width: 0; }

.qa-btn {
    width: 20px;
    height: 20px;
    display: block;
    transition: all 0.3s ease-in-out;
    background-image: url(../asset/icon/qa_arrow.png);
    background-size: cover;
    flex-shrink: 0;
}

.qa-item.active .qa-btn { transform: rotate(180deg); }

.qa-content {
    overflow: hidden;
    max-height: 0;
    margin-top: 0;
    background: rgba(var(--white), 1);
    box-shadow: 0px 2px 10px rgba(var(--black), 0);
    transition: all 0.3s ease-in-out;
}

.qa-item-title {
    position: relative;
    color: rgb(var(--theme-color-dark));
}

.qa-item-title::before {
    content: '';
    position: absolute;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgb(var(--theme-color-dark));
}

/* ========== FOOTER ========== */
.footer {
    width: 100%;
    background: rgb(var(--footer-bg-b));
    color: rgb(var(--white));
}

.footer-title { border-bottom: 1px solid rgb(var(--footer-gray)); }

.footer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.info-row { display: flex; }

.info-row > p { flex: 1; }

.info-name { display: inline-block; }

.copyright {
    width: 100%;
    text-align: center;
    color: rgb(var(--footer-gray));
    border-top: 1px solid rgb(var(--footer-gray));
}

.copyright a { color: rgb(var(--footer-gray)); }

/* ========== 侧边悬浮 ========== */
.side-tab-box {
    position: fixed;
    right: 30px;
    bottom: 48px;
    z-index: 999;
    color: rgb(var(--text-black));
}

.side-item-box {
    display: block;
    position: relative;
    padding: 10px;
    background: rgba(var(--white), 1);
    width: fit-content;
    margin-bottom: 20px;
    cursor: pointer;
}

.side-item-box img { width: 46px; height: 46px; object-fit: contain; }

.side-item { overflow: hidden; }

.side-item-box:hover { background: rgba(var(--theme-color), 1); }
.side-item-box:hover .side-item { color: rgba(var(--white), 1); }
.side-item-box:hover .icon-img {
    transform: translateY(-100%);
    filter: drop-shadow(0px 46px #fff);
}

.side-tab-box .side-item-box:nth-last-child(1) {
    padding: 4px 10px 10px 10px;
    color: rgb(var(--text-gray));
}

.side-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.side-content-box {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    transition: all 0.3s;
    right: 100%;
    width: 0;
    box-sizing: border-box;
    padding-right: 0;
}

.side-content-box > div {
    background-color: rgb(var(--white));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    border-right: 2px solid transparent;
    border-image: linear-gradient(180deg, rgba(var(--theme-color), 1) 0%, rgba(var(--theme-color2), 1) 100%);
    border-image-slice: 1;
}

.side-content-box > div > .desc {
    width: fit-content;
    border-radius: 12px;
    font-size: 12px;
    color: rgb(var(--theme-color-dark));
    background-color: rgba(var(--theme-color2), 1);
    line-height: 24px;
    padding: 0 10px;
    margin-top: 4px;
}

.side-content-box > div .tel {
    font-size: 18px;
    font-weight: 700;
}

.side-content-box.side-wx-box > div { width: 152px; }
.side-content-box.side-wx-box > div img { width: 120px; height: 120px; object-fit: contain; }
.side-content-box.tel-box > div { color: rgb(var(--theme-color)); width: 187px; }

.side-item-box:hover .side-content-box { padding-right: 20px; }
.side-item-box:hover .side-content-box.side-wx-box { width: 172px; }
.side-item-box:hover .side-content-box.tel-box { width: 207px; }

/* ========== PC样式 ========== */
@media (min-width: 769px) {
    html { font-size: 1px; }

    .container {
        width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    .tips { font-size: 15px; }

    .header {
        min-width: 1200px;
        height: 100px;
        box-shadow: 2px 2px 10px rgba(var(--white), 0.1);
        background-color: rgba(var(--theme-color), 1);
        color: rgba(var(--white), 1);
    }

    .header .logo-box { margin-right: 65px; }
    .jingqi-title { display: none; }

    .header .logo {
        width: 68px;
        height: 72px;
        background-image: url(../asset/image/logo-w.png);
    }

    .header-container {
        width: 1200px;
        margin: 0 auto;
        height: 100px;
        align-items: center;
        display: flex;
    }

    .nav-btn { display: none; }

    .nav-list {
        display: flex;
        color: rgb(var(--white));
        flex: 1;
        height: 100px;
        overflow: hidden;
        align-items: center;
    }

    .nav-list li { flex: 1; text-align: center; height: 100%; }

    .nav-list li > a {
        color: rgb(var(--white));
        font-size: 18px;
        display: block;
        width: 100%;
        height: 100%;
        line-height: 100px;
        background-color: rgba(var(--theme-color-dark), 0);
    }

    .nav-list li > a:hover { background-color: rgba(var(--theme-color-dark), 1); }

    .header-tel {
        margin-left: 92px;
        font-size: 20px;
        font-weight: 700;
    }

    .header-tel .icon { margin-right: 8px; }

    .banner {
        min-width: 1200px;
        padding: 187px 0 187px 0;
        background-image: url(../asset/image/banner-bg.png);
    }

    .banner .endesc { font-size: 18px; margin-bottom: 35px; letter-spacing: 3px; }
    .banner .company-name { line-height: 91px; }
    .banner .company-name span:nth-child(1) { font-size: 72px; }
    .banner .company-name span:nth-child(2) { font-size: 62px; }
    .banner-prop { font-size: 24px; top: 32px; }

    .banner-prop span {
        margin-left: 8px;
        height: 36px;
        line-height: 36px;
        border-radius: 36px;
        width: 76px;
        text-align: center;
    }

    .banner-subtitle {
        margin-top: 35px;
        font-size: 24px;
        height: 50px;
        line-height: 50px;
        padding: 0 36px;
    }

    .theme-title > h2 { font-size: 30px; font-weight: 700; line-height: 42px; }
    .theme-title > h2 + p { font-weight: 300; font-size: 16px; line-height: 22px; }

    #part01 { padding-top: 88px; padding-bottom: 70px; }

    .cate-box { justify-content: space-between; margin-top: 20px; }
    .cate-box .cate-item { width: 270px; display: flex; flex-direction: column; align-items: center; }
    .cate-box .cate-item .icon { font-size: 64px; }

    .cate-title { padding: 11px 30px; letter-spacing: 1px; flex-direction: column; font-size: 18px; }
    .cate-title .icon { width: 64px; height: 64px; margin-bottom: 10px; }
    .cate-content { margin-top: -25px; padding: 40px 26px 16px 42px; line-height: 24px; font-size: 15px; }
    .cate-content li + li { margin-top: 22px; }
    .cate-content .cate-content-point::before { width: 6px; height: 6px; top: 9px; left: -16px; }

    #part02 { padding: 88px 0 76px; }

    .fees-table { margin-top: 66px; }
    .fees-table-header {
        border-radius: 55px;
        line-height: 55px;
        font-size: 18px;
        letter-spacing: 2px;
        font-weight: 700;
        padding: 0 25px;
        box-sizing: border-box;
        justify-content: space-between;
    }
    .fees-table-header > div, .fees-table-item > div { flex: 1; }
    .fees-table-item { margin: 0 25px; height: 78px; line-height: 24px; font-size: 16px; }
    .fees-table-box .tips { margin: 21px 0 0 25px; }

    #part03 { padding: 88px 0 77px; }

    .process_pic {
        width: 392px;
        height: 392px;
        margin: 30px auto;
        background-image: url(../asset/image/process_pic_p.png);
        position: absolute;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .process-box { display: flex; justify-content: space-between; }
    .process-list1 .process-item::before { margin-right: 20px; }
    .process-list2 .process-item::after { margin-left: 20px; }
    .process-list1 .process-item::before,
    .process-list2 .process-item::after {
        display: block;
        content: counter(process);
        width: 60px;
        height: 60px;
        font-size: 48px;
        line-height: 60px;
    }
    .process-item + .process-item { margin-top: 58px; }
    .process-item-title { font-size: 18px; margin: 10px 0; }
    .process-list2 .process-item-title { text-align: right; }
    .process-item-content { font-size: 15px; line-height: 24px; width: 270px; }

    #part04 { padding: 88px 0 87px; background: url(../asset/image/company-bg-p.png); }

    .company-container { display: flex; margin-top: 66px; }
    .company-introduction { flex: 1; padding: 65px 60px; }
    #part04 .company-name { margin-bottom: 20px; line-height: 42px; }
    .company-title { font-size: 30px; letter-spacing: 1px; font-weight: 500; }
    .company-desc { margin-top: 20px; font-size: 16px; line-height: 28px; margin-right: 11px; }
    .company-title + span { font-size: 18px; margin-left: 30px; }
    .company-area { flex: 1; padding: 65px 60px; }
    .company-area-title { font-size: 16px; font-weight: 500; }
    .company-area-title::after { margin-left: 30px; }
    .area-content { font-size: 15px; line-height: 24px; }
    .company-area-title + .area-content { margin-top: 12px; }
    .area-content + .company-area-title { margin-top: 20px; }
    .lab-advantage-title { font-size: 24px; line-height: 33px; margin-top: 50px; }
    .lab-advantage-list { position: relative; margin-top: 22px; }
    .lab-advantage-item { padding: 32px 53px 25px 30px; width: 321px; box-sizing: border-box; }
    .lab-advantage-item:nth-child(1) { z-index: 4; background-image: url(../asset/image/lab_bg1.png); }
    .lab-advantage-item:nth-child(2) { z-index: 3; background-image: url(../asset/image/lab_bg2.png); }
    .lab-advantage-item:nth-child(3) { z-index: 2; background-image: url(../asset/image/lab_bg3.png); }
    .lab-advantage-item:nth-child(4) { z-index: 1; background-image: url(../asset/image/lab_bg4.png); width: 291px; padding: 30px 24px 25px 16px; }
    .lab-advantage-item + .lab-advantage-item { margin-left: -18px; }
    .lab-advantage-sub-title { font-size: 24px; line-height: 33px; }
    .lab-advantage-sub-title::after { margin-top: 20px; }
    .lab-advantage-desc { font-size: 16px; line-height: 25px; margin-top: 12px; }
    .lab-pics { margin-top: 20px; display: flex; justify-content: space-between; }
    .lab-pics img { width: 291px; height: 191px; object-fit: cover; }

    #part05 { padding: 88px 0 100px; }
    .qa-box { margin-top: 81px; }
    .qa-item { width: calc(50% - 33px); margin-bottom: 42px; padding-left: 63px; }
    .qa-item:nth-child(2n) { margin-left: 66px; }
    .qa-title { padding: 0 30px 0 16px; line-height: 54px; }
    .qa-num { width: 57px; height: 54px; line-height: 54px; font-size: 48px; }
    .qa-title .qa-btn { color: rgb(var(--theme-color)); }

    .qa-item.active .qa-content { max-height: 256px; padding: 20px 16px; margin-top: 6px; }
    .qa-content { padding: 0 16px; }
    .qa-item-title { font-size: 16px; line-height: 26px; padding-left: 25px; }
    .qa-item-title::before { left: 9px; top: 13px; width: 6px; height: 6px; }
    .qa-item-content { line-height: 24px; margin-bottom: 10px; }
    .qa-item-content ul { margin-left: 24px; }
    .qa-item-content ul li { margin-top: 12px; }
    .qa-item-content p { margin-left: 24px; }

    .footer .container { display: flex; justify-content: space-between; padding: 75px 0 50px; }
    .info-row { line-height: 34px; }
    .info-row > i { transform: translateY(4px); width: 22px; height: 22px; }
    .info-row .info-name { font-weight: 700; }
    .info-row span { max-width: 853px; }
    .footer-info .icon { font-size: 22px; margin-right: 12px; }
    .footer-title { line-height: 42px; width: 100%; padding-bottom: 14px; margin-bottom: 16px; }
    .footer-title > span:nth-child(1) { font-size: 30px; font-weight: 700; }
    .footer-title > span:nth-child(2) { font-size: 24px; margin: 0 20px; }
    .footer-title > span:nth-child(3) { font-size: 24px; font-weight: 400; }
    .concat-box-pc { position: relative; margin-top: -14px; margin-left: 103px; }
    .wx-box { width: 128px; height: 128px; border: 16px solid rgba(var(--white), 0.3); }
    .wx-box img { width: 100%; height: 100%; object-fit: contain; }
    .wx-box + div { text-align: center; margin-top: 10px; color: rgb(var(--white)); }
    .copyright { font-size: 12px; line-height: 24px; padding: 14px 0; }
    .side-tab-box { right: 30px; bottom: 48px; }
    .concat-box-mb { display: none; }
}

/* ========== 移动端样式 ========== */
@media (max-width: 768px) {
    html { font-size: calc(100vw / 375); }

    .container { width: 100%; padding: 0 20px; margin: 0 auto; }
    .tips { font-size: 11px; }

    .header { height: 50px; background-color: rgba(var(--white), 1); }
    .header-container { height: 100%; padding: 0 20px; }
    .header .logo-box { display: flex; align-items: center; }
    .header .logo {
        width: 24px; height: 24px; margin-right: 4px;
        background-image: url(../asset/image/logo.png);
    }
    .jingqi-title { font-size: 14px; font-weight: 500; color: rgba(var(--theme-color), 1); }

    .nav-list {
        position: absolute;
        background: rgba(var(--theme-color-dark), 0);
        color: rgba(var(--white), 1);
        top: 0;
        right: 0;
        height: 50px;
        width: 44px;
        transition: background 0.3s ease-in-out, width .3s ease-in-out, height .3s ease-in-out, border-radius 0.3s ease-in-out;
        z-index: 999;
        padding-top: 67px;
        padding-left: 44px;
        font-size: 16px;
        border-radius: 0 0 0 30px;
    }
    .nav-list li { min-width: 224px; }
    .nav-list li > a {
        transition: margin-top .3s ease-in-out, opacity .3s ease-in-out;
        color: rgba(var(--white), 1);
        display: block;
        padding: 10px;
        opacity: 0;
    }
    .nav-list li + li > a { margin-top: 0; }
    .nav-list.active li > a { opacity: 1; }
    .nav-list.active li + li > a { margin-top: 50px; }
    .nav-list.active { background: rgba(var(--theme-color-dark), 1); width: 268px; height: 100vh; border-radius: 0; }

    .nav-btn {
        width: 24px; height: 24px;
        display: flex; align-items: center;
        position: absolute; right: 20px; top: 13px;
    }
    .icon-menu { display: block; height: 4px; width: 20px; background-image: url(../asset/icon/menu.png); }
    .nav-list.active .icon-menu { background-image: url(../asset/icon/menu-active.png); }
    .header-tel { display: none; }

    .banner { padding: 52px 0 52px 20px; background-image: url(../asset/image/banner-bg2.png); }
    .banner .endesc { color: rgb(var(--theme-color2)); font-size: 9px; margin-bottom: 16px; letter-spacing: 1.2px; }
    .banner .company-name { line-height: 40px; }
    .banner .company-name span:nth-child(1) { font-size: 36px; }
    .banner .company-name span:nth-child(2) { font-size: 24px; }
    .banner-prop { font-size: 11px; top: 4px; width: 89px; }
    .banner-prop span { margin-left: 4px; margin-bottom: 4px; height: 15px; line-height: 15px; width: 40px; border-radius: 8px; }
    .banner-subtitle { margin-top: 16px; font-size: 11px; height: 22px; line-height: 22px; padding: 0 10.5px; }

    .theme-title > h2 { font-size: 18px; font-weight: 700; line-height: 25px; }
    .theme-title > h2 + p { font-weight: 300; font-size: 10px; line-height: 14px; }

    #part01 { padding: 50px 0; }
    .cate-box { display: flex; flex-direction: column; padding-top: 10px; }
    .cate-box .cate-item { margin-top: 20px; }
    .cate-title { padding: 6px 20px; font-size: 15px; border-radius: 4px; width: fit-content; }
    .cate-title .icon { width: 40px; height: 40px; margin-right: 10px; }
    .cate-content { margin-top: -19px; padding: 28px 12px 12px 28px; line-height: 23px; font-size: 13px; }
    .cate-content .cate-content-point::before { width: 4px; height: 4px; top: 8px; left: -12px; }
    .cate-content li + li { margin-top: 20px; }

    #part02 { padding: 50px 0; }
    #part02 .container { padding: 0 16px; }
    .fees-table { margin-top: 66px; }
    .fees-table-header { border-radius: 40px; line-height: 40px; font-size: 14px; padding: 0 4px; box-sizing: border-box; justify-content: space-around; }
    .fees-table-header > div { padding: 0 9px; }
    .fees-table-item { margin: 0 4px; height: 65px; line-height: 20px; font-size: 12px; }
    .fees-table-item > div:nth-child(1) { font-size: 12px; width: 62px; }
    .fees-table-item > div:nth-child(2) { width: 76px; }
    .fees-table-item > div:nth-child(2) span { display: block; width: 43px; }
    .fees-table-item > div:nth-child(3) { width: 104px; }
    .fees-table-item > div:nth-child(3) > span { display: block; }
    .fees-table-item > div:nth-child(3) > span span { font-size: 10px; }
    .fees-table-box .tips { margin: 12px 0 0 4px; }

    #part03 { padding: 50px 0; }
    .process_pic { width: 255px; height: 255px; margin: 30px auto; background-image: url(../asset/image/process_pic_m.png); }
    .process-item > div { flex: 1; min-width: 0; }
    .process-item::before { display: block; content: counter(process); width: 40px; height: 40px; font-size: 32px; line-height: 40px; margin-right: 16px; }
    .process-item + .process-item { margin-top: 20px; }
    .process-item-title { font-size: 16px; margin: 8px 0; }
    .process-item-content { font-size: 13px; line-height: 23px; }

    #part04 { padding: 50px 0; background: url(../asset/image/company-bg-p.png); }
    #part04 .container { padding: 0 20px; }
    .company-container { flex-direction: column; margin-top: 30px; }
    .company-introduction { padding: 30px 20px; }
    #part04 .company-name { margin-bottom: 20px; line-height: 28px; }
    .company-title { font-size: 20px; letter-spacing: 1px; }
    .company-desc { font-size: 13px; line-height: 23px; }
    .company-title + span { font-size: 12px; margin-left: 20px; }
    .company-area { padding: 30px 20px; }
    .company-area-title { font-size: 16px; font-weight: 500; }
    .company-area-title::after { margin-left: 10px; }
    .area-content { font-size: 13px; line-height: 23px; }
    .company-area-title + .area-content { margin-top: 12px; }
    .area-content + .company-area-title { margin-top: 20px; }

    .lab-advantage { display: flex; flex-direction: column-reverse; }
    .lab-advantage-title { font-size: 16px; line-height: 22px; margin-top: 20px; }
    .lab-advantage-list { position: relative; margin-top: 20px; flex-flow: wrap; }
    .lab-advantage-item { padding: 30px 34px 30px 16px; width: 180px; }
    .lab-advantage-item:nth-child(1) { z-index: 4; background-image: url(../asset/image/lab_bg1_m.png); }
    .lab-advantage-item:nth-child(2) { z-index: 3; background-image: url(../asset/image/lab_bg2_m.png); }
    .lab-advantage-item:nth-child(3) { z-index: 2; background-image: url(../asset/image/lab_bg3_m.png); margin-top: 10px; }
    .lab-advantage-item:nth-child(4) { z-index: 1; background-image: url(../asset/image/lab_bg4_m.png); margin-top: 10px; }
    .lab-advantage-item:nth-child(2n) { width: 162px; padding: 30px 16px; margin-left: -8px; }
    .lab-advantage-sub-title { font-size: 16px; line-height: 22px; }
    .lab-advantage-sub-title::after { margin-top: 12px; }
    .lab-advantage-desc { font-size: 13px; line-height: 22px; margin-top: 12px; }
    .lab-pics { margin-top: 20px; display: flex; flex-flow: wrap; justify-content: space-between; }
    .lab-pics img { width: 162px; height: 106px; object-fit: cover; }
    .lab-pics img:nth-child(-n+2) { margin-bottom: 10px; }

    #part05 { padding: 50px 0; }
    .qa-box { margin-top: 23px; }
    .qa-item { width: 100%; margin-bottom: 21px; padding-left: 50px; }
    .qa-title { padding: 16px 16px 16px 10px; line-height: 22px; }
    .qa-num { width: 43px; height: 50px; line-height: 50px; font-size: 36px; }
    .qa-item.active .qa-content { max-height: 300px; padding: 20px; margin-top: 6px; }
    .qa-content { padding: 0 20px; margin-left: -50px; }
    .qa-item-title { font-size: 14px; line-height: 20px; padding-left: 20px; }
    .qa-item-title::before { left: 9px; top: 9px; width: 4px; height: 4px; }
    .qa-title-text { margin-right: 17px; }
    .qa-item-content { line-height: 23px; margin-bottom: 10px; font-size: 13px; }
    .qa-item-content ul { margin-left: 20px; }
    .qa-item-content ul li { margin-top: 10px; }
    .qa-item-content p { margin-left: 20px; }

    .footer { padding: 30px 20px 86px; }
    .footer-title { display: flex; flex-direction: column; padding-bottom: 20px; margin-bottom: 20px; }
    .footer-title > span:nth-child(1) { font-size: 18px; line-height: 25px; }
    .footer-title > span:nth-child(2) { display: none; }
    .footer-title > span:nth-child(3) { font-size: 16px; line-height: 22px; font-weight: 400; }
    .footer-info { padding-bottom: 10px; }
    .info-row { font-size: 13px; line-height: 23px; }
    .info-row + .info-row { margin-top: 10px; }
    .info-row > i { transform: translateY(5px); width: 14px; height: 14px; }
    .footer-info .icon { font-size: 22px; margin-right: 6px; }
    .copyright { font-size: 10px; line-height: 18px; padding: 10px 15px; width: 100%; }
    .concat-box-pc { display: none; }
    .concat-box-mb { display: block; position: fixed; z-index: 998; bottom: 0; left: 0; width: 100%; height: 56px; background-color: rgba(var(--white), 1); }
    .footer-tab { display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: 56px; background-color: #fff; align-items: center; z-index: 999; }
    .footer-tab > div:nth-child(-n+2) { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 60px; font-size: 10px; padding: 5px; }
    .footer-tab > div.wx-box { color: #12B05B; }
    .footer-tab > div img { height: 22px; margin-bottom: 4px; }
    .footer-tab > div span { line-height: 15px; }
    .footer-tab > .tel-box { flex: 1; background-color: rgba(var(--theme-color), 1); color: #fff; text-align: center; line-height: 56px; display: flex; align-items: center; height: 100%; justify-content: center; }
    .footer-tab > .tel-box img { width: 23px; height: 23px; margin-right: 5px; transform: translateY(2px); }
    .footer-tab > .tel-box span:nth-child(2) { font-size: 18px; font-weight: 700; }
    .footer-tab > .tel-box span:nth-child(3) { font-size: 14px; }
    .side-tab-box { display: none; }
}
