    /* ----------------- 公共部分 - 开始 ----------------- */
    /* 盒模型统一 */
    
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    /* 移除默认边距 */
    
    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    dl,
    dd,
    ol,
    ul,
    figure,
    hr,
    fieldset,
    legend {
        margin: 0;
        padding: 0;
    }
    /* 基础文档设置 */
    
    html {
        /* 1rem = 10px (方便计算) */
        font-size: 62.5%;
        -webkit-text-size-adjust: 100%;
        line-height: 1.5;
        scroll-behavior: smooth;
    }
    /* 列表样式重置 */
    
    ol,
    ul {
        list-style: none;
    }
    /* 链接默认样式 */
    
    a {
        color: inherit;
        text-decoration: none;
        background-color: transparent;
    }
    /* 媒体元素适配 */
    
    img,
    picture,
    video,
    canvas,
    svg {
        display: block;
        max-width: 100%;
        height: auto;
    }
    /* 表单元素重置 */
    
    button,
    input,
    select,
    textarea {
        font: inherit;
        margin: 0;
        border: 1px solid #ccc;
        border-radius: 0;
        background: none;
        -webkit-appearance: none;
        appearance: none;
    }
    
    button {
        cursor: pointer;
        background: none;
        border: none;
    }
    
    textarea {
        resize: vertical;
    }
    /* 表格重置 */
    
    table {
        border-collapse: collapse;
        border-spacing: 0;
    }
    /* 代码字体 */
    
    code,
    kbd,
    pre,
    samp {
        font-family: Menlo, Consolas, monospace;
        font-size: 1em;
    }
    /* 隐藏 visually */
    
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    /* 清除浮动 */
    
    .clearfix::after {
        content: "";
        display: table;
        clear: both;
    }
    /* 重置bootstrap样式 */
    
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        --bs-gutter-x: 0;
        padding-right: 0;
        padding-left: 0;
    }
    /* 轮播图按钮样式  */
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 5rem;
        height: 5rem;
        border: 2px solid rgba(190, 190, 190, 0.85);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 3rem;
        font-weight: normal;
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        content: '';
        width: 5.5rem;
        height: 5.5rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    .swiper-button-next:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23bebebe' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    
    .swiper-button-prev:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23bebebe' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    /* 轮播图分页器 */
    
    .swiper-pagination-bullet {
        opacity: var(--swiper-pagination-bullet-inactive-opacity, .3);
    }
    
    .swiper-pagination-bullet-active {
        width: 15px;
        border-radius: 10px;
        background-color: #ff4c88;
        opacity: 1;
    }
    /* 标题分隔线 */
    
    .divider {
        width: 80px;
        height: 3px;
        background-color: #ef3171;
        margin: 1rem auto;
    }
    /* icon图标公共样式 */
    
    .swiper-icon {
        display: inline-block;
        width: 24px;
        height: 24px;
        fill: currentColor;
        color: #ff4c88;
        transition: all 0.3s ease;
        vertical-align: middle;
        margin-bottom: 3px;
    }
    /* 4图 - 卡片样式 */
    
    .by-px-2rem {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* 
    解决哪些问题头部背景图
    1. 店务繁杂
    2. 老客留存少
    ......
    共6个问题
    */
    
    .solve-problems-bg {
        width: 100%;
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/bak_big_01.png);
        background-repeat: no-repeat;
        background-position: top center;
    }
    /* 免费试用按钮 */
    
    .learn-more {
        font-size: 16px;
        border: 1px solid #ff4c88;
        color: #fff;
        background-color: #ff4c88;
        border-radius: 20px;
        padding: 8px 20px;
    }
    
    .learn-more-2 {
        font-size: 16px;
        border: 2px solid #ff4c88;
        color: #ff4c88;
        border-radius: 5px;
        padding: 8px 20px;
    }
    
    .learn-more-3 {
        font-size: 16px;
        border: 1px solid #ff4c88;
        color: #ff4c88;
        border-radius: 20px;
        padding: 8px 20px;
    }
    /* 新闻列表 */
    
    #industry-news .industry-news-li:hover>div {
        border: 1px solid #ffd3db !important;
        box-shadow: 0 0 20px rgba(255, 211, 219, 0.8);
    }
    
    #industry-news .industry-news-content h3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    #industry-news .industry-news-content p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    #industry-news .industry-news-img img {
        max-height: 180px;
    }
    /* 新闻详情页 */
    
    .new-show .news-content p {
        line-height: 2;
        margin: 2rem 0;
    }
    
    .new-show .news-content p a {
        color: #ff4c88;
    }
    
    .new-show .news-content p img {
        margin: 0 auto;
    }
    
    .new-show .container .row {
        --bs-gutter-x: 0;
    }
    
    .new-show .news-content ul {
        margin: 2rem 0;
    }
    
    .new-show .news-content h1,
    .new-show .news-content h2,
    .new-show .news-content h3,
    .new-show .news-content h4,
    .new-show .news-content h5,
    .new-show .news-content h6 {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1.5rem;
    }
    
    .new-show .news-content strong {
        font-weight: bold;
    }
    /* 他们都在用美盈易养生馆管理系统 */
    
    #strength-guarantee .image-container {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        border-radius: 30px;
    }
    
    #strength-guarantee .image-container .default-img {
        width: 100%;
        height: auto;
        display: block;
        transition: all 0.3s ease;
    }
    
    #strength-guarantee .image-container .hover-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 2;
    }
    
    #strength-guarantee .image-container .hover-content {
        text-align: center;
        transform: translateY(20px);
        transition: transform 0.3s ease;
    }
    
    #strength-guarantee .image-container .hover-img-logo {
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    #strength-guarantee .image-container:hover .default-img {
        opacity: 0.4;
        transform: scale(1.05);
    }
    
    #strength-guarantee .image-container:hover .hover-overlay {
        background-color: rgba(0, 0, 0, 0.7);
        opacity: 1;
    }
    
    #strength-guarantee .image-container:hover .hover-content {
        transform: translateY(0);
    }
    /* 新闻详情页 - 相关文章 */
    
    .related-articles .related-col:hover>div {
        border-color: #ff8ab1;
        box-shadow: 0 0 20px rgba(255, 138, 177, 0.6);
    }
    
    .attention-word .attention-work-text {
        width: 49%;
    }
    
    .attention-word .attention-work-text:hover {
        border-color: #ff8ab1 !important;
        background-color: transparent !important;
    }
    /* 分页器 */
    
    #pages {
        margin: 3rem auto;
        text-align: center;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 1.4rem;
    }
    
    #pages a,
    #pages span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 4rem;
        height: 4rem;
        padding: 1rem;
        border: 1px solid #eee;
        color: #666;
        transition: all 0.3s ease;
    }
    
    #pages .a1 {
        background-color: #f5f5f5;
    }
    
    #pages span {
        background-color: #337ab7;
        color: white;
        border-color: transparent;
    }
    
    #pages a:hover {
        background: #ff4c88;
        color: white;
        border-color: #ff4c88;
    }
    /* ----------------- 公共部分 - 结束 ----------------- */
    /* ------------------ header - 头部导航 - 开始 ------------------ */
    
    header .navbar-expand-lg .navbar-nav .dropdown-menu {
        border: 1px solid transparent;
        border-radius: 0;
    }
    
    header .dropdown-menu[data-bs-popper] {
        margin-top: 0;
    }
    
    header .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    header .collapse.show {
        background-color: white;
    }
    
    header .navbar-toggler {
        background-color: transparent;
        font-size: 3rem;
        border-color: transparent;
        margin-right: 1rem;
    }
    
    header .navbar-toggler:focus,
    header .navbar-toggler:active {
        outline: none;
        box-shadow: none;
    }
    
    header .navbar-toggler .navbar-toggler-icon {
        --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23f86295' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5zm-3 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm0 4a1 1 0 1 0 0-2 1 1 0 0 0 0 2z'/%3e%3c/svg%3e");
    }
    
    header .free-trial {
        color: #fff;
        border: 1px solid #fff;
        padding: 8px 20px;
        font-size: 1.6rem;
        transition: all .2s ease-in-out;
    }
    
    header .free-trial:hover {
        color: #fa5a8b;
        background-color: #fff;
    }
    
    header .free-trial.free-trial-a-scroll-down {
        color: #fa5a8b;
        border: 1px solid #fa5a8b;
    }
    
    header .free-trial.free-trial-a-scroll-down:hover {
        color: #fff;
        background-color: #fa5a8b;
    }
    
    header .free-trial-mfsy {
        color: #fa5a8b;
        border: 1px solid #fa5a8b;
        padding: 8px 20px;
        font-size: 1.6rem;
        transition: all .2s ease-in-out;
    }
    
    header .free-trial-mfsy:hover {
        color: #fff;
        background-color: #fa5a8b;
    }
    
    header .nav-link .bi-chevron-down {
        width: 10px;
        height: 10px;
        stroke: currentColor;
        stroke-width: 2;
    }
    
    header .hover-bottom-0 {
        position: relative;
    }
    
    header .hover-bottom-0::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ff4c88;
        transition: width 0.3s ease-in-out;
    }
    
    header .hover-bottom-0.top-position::after {
        background-color: #fff;
    }
    
    header .hover-bottom-0:hover::after {
        width: 100%;
    }
    
    header .hover-bottom-0.active::after {
        width: 100%;
    }
    
    header .hover-bottom-mfsy {
        position: relative;
    }
    
    header .hover-bottom-mfsy::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #ff4c88;
        transition: width 0.3s ease-in-out;
    }
    
    header .hover-bottom-mfsy:hover::after {
        width: 100%;
    }
    /* ------------------ header - 头部导航 - 结束 ------------------ */
    /* ------------------ 轮播图 - 开始 ------------------ */
    
    #carouseSwiper {
        position: relative;
        width: 100%;
    }
    
    #carouseSwiper .mySwiper2 .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }
    
    .swiper {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .swiper-slide {
        background-size: cover;
        background-position: center;
    }
    
    .mySwiper2 {
        width: 100%;
        height: 56.25vw;
        max-height: 72rem;
        min-height: 51rem;
    }
    
    .mySwiper {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .mySwiper .swiper-wrapper {
        width: 100%;
        max-width: 1200px;
    }
    
    .mySwiper .swiper-slide {
        width: 25% !important;
        height: 100px;
        opacity: 0.8;
        cursor: pointer;
    }
    
    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
        background-color: rgba(255, 255, 255, .1);
    }
    
    .carouse-text-p1 {
        font-size: 4.3rem;
        font-weight: 600;
        color: #fff;
        text-shadow: 0 10px 10px rgba(0, 0, 0, .15);
    }
    
    .carouse-text-p2 {
        font-size: 2.8rem;
        font-weight: 500;
        color: #fff;
    }
    
    .carouse-text-p3 {
        font-size: 2rem;
        font-weight: 500;
        color: #fff;
    }
    
    .carouse-text-p4 {
        margin-top: 3.8rem;
        margin-bottom: 2rem;
    }
    /* 轮播图按钮样式  */
    
    #carouseSwiper .swiper-button-next,
    #carouseSwiper .swiper-button-prev {
        width: 6rem;
        height: 6rem;
        border: 1px solid rgba(255, 255, 255, 0.85);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #carouseSwiper .swiper-button-next:after,
    #carouseSwiper .swiper-button-prev:after {
        font-size: 3rem;
        font-weight: normal;
        text-align: center;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #carouseSwiper .swiper-button-next:after,
    #carouseSwiper .swiper-button-prev:after {
        content: '';
        width: 5.5rem;
        height: 5.5rem;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    #carouseSwiper .swiper-button-next:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23f1f1f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    
    #carouseSwiper .swiper-button-prev:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23f1f1f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    /* 轮播图分页器 */
    
    #carouseSwiper .swiper-pagination-bullet {
        width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 30px));
        border-radius: var(--swiper-pagination-bullet-border-radius, 5%);
        background: #fff;
        opacity: var(--swiper-pagination-bullet-inactive-opacity, .3);
    }
    
    #carouseSwiper .swiper-pagination-bullet-active {
        background-color: #ff4c88;
        opacity: 1;
    }
    /* ------------------ 轮播图 - 结束 ------------------ */
    /* -------------------------------------------- 内页 - 开始 -------------------------------------------- */
    /* --- 内页 - 申请试用页 - 开始 --- */
    
    #free-use-page .left-content {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/free_use_left_bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        max-width: 342px;
        height: 385px;
        background-position: center center;
    }
    
    #free-use-page .right-content {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    /* --- 内页 - 申请试用页 - 结束 --- */
    /* --- 内页 - index页 - 开始 - */
    
    #function-nav-list-2 .nav-list-item.active,
    #function-nav-list-3 .nav-list-item.active {
        border-bottom: 2px solid #ff4c88 !important;
        cursor: pointer;
    }
    
    #function-nav-list-4 {
        padding: 0 15rem;
    }
    
    #function-nav-list-4 .nav-list-item.active {
        border-bottom: 2px solid #ff4c88 !important;
        cursor: pointer;
    }
    
    #function-nav-list-2 .nav-list-item.active .sub-nav-list-item,
    #function-nav-list-3 .nav-list-item.active .sub-nav-list-item {
        background-color: #fff3f7;
    }
    
    #function-nav-list-2 .nav-list-item img,
    #function-nav-list-3 .nav-list-item img {
        width: 45px !important;
        height: 45px !important;
    }
    
    #function-nav-list-2 .nav-list-item.active img,
    #function-nav-list-3 .nav-list-item.active img {
        opacity: 1 !important;
    }
    
    #function-nav-list-4 .nav-list-item.active img {
        opacity: 1 !important;
    }
    
    #function-nav-list-2 .nav-list-item.active p,
    #function-nav-list-3 .nav-list-item.active p {
        color: #ff4c88 !important;
    }
    
    #function-nav-list-4 .nav-list-item.active p {
        color: #ff4c88 !important;
    }
    
    #marketing-plan {
        background-image: url("//cdn.beiing.net/dyysoft_net/newsite/index/big_02.png");
        background-position: top center;
        background-repeat: no-repeat;
        background-size: 100% 313px;
    }
    
    #marketing-plan .marketing-header {
        font-size: 24px;
        font-weight: bold;
        padding-left: 8px;
        padding-bottom: 5px;
        color: #000;
        background-image: url("//cdn.beiing.net/dyysoft_net/newsite/index/big_s2_bg01.png");
        background-repeat: no-repeat;
    }
    /* index : 美盈易养生馆管理系统核心功能 */
    
    #core-function .image-container {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    #core-function .image-container .default-img,
    #core-function .image-container .default-img-2 {
        opacity: 1;
        transform: scale(1);
        transition: all 0.3s ease;
    }
    
    #core-function .image-container:hover .default-img,
    #core-function .image-container:hover .default-img-2 {
        opacity: 0;
        transform: scale(0.9);
    }
    
    #core-function .image-container .default-img,
    #core-function .image-container .hover-img {
        width: 80px;
        height: 80px;
    }
    
    #core-function .image-container .default-img-2,
    #core-function .image-container .hover-img-2 {
        width: 88px;
        height: 85px;
    }
    
    #core-function .image-container .hover-img,
    #core-function .image-container .hover-img-2 {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transform: scale(0.9);
        transition: all 0.3s ease;
    }
    
    #core-function .image-container:hover .hover-img,
    #core-function .image-container:hover .hover-img-2 {
        opacity: 1;
        transform: scale(1);
    }
    
    #core-function article a {
        border-radius: 10px;
        transition: box-shadow 0.3s ease;
    }
    
    #core-function article a:hover {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    
    #core-function article a:hover h3 {
        color: #ff4c88;
    }
    
    #core-function article a:hover p:first-of-type {
        color: #6d767e;
    }
    /* 谁在使用 */
    
    .use-case-swiper-left .bg-and-shadow {
        background-color: #ffeef2;
        box-shadow: inset 0 -5px 28px -15px rgba(0, 0, 0, 1);
    }
    
    .use-case-swiper-right {
        height: 100%;
    }
    /* --- 内页 - index页 - 结束 - */
    /* --- 内页 - syscrm页 - 开始 - */
    
    .attract-customers-switch.active button {
        background-color: #ff4c88 !important;
        color: #fff !important;
        border-color: #ff4c88 !important;
    }
    /* 
    五个解决方案 - 背景图
    1. 全渠道引流获客
    2. 全链路销售赋能
    ......
    共5个方案
    */
    /* 正向图 */
    
    .five-solution {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/syscrm/scrm_swiper_bg01.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    /* 翻转图 */
    
    .five-solution-flip-x {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/syscrm/scrm_swiper_bg02.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    /* --- 内页 - syscrm页 - 结束 - */
    /* --- 内页 - tky页 - 开始 - */
    /* 海量拓客方案模板 */
    
    .tkyx-bg {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/tkyx/tkyx_big_bg_01.png);
        background-position: top center;
    }
    
    .hover-none {
        height: 250px;
        cursor: pointer;
        background-color: #fff;
        overflow: hidden;
        padding: 10px;
    }
    
    .hover-none:hover div:nth-child(2) {
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
    /* --- 内页 - tky页 - 结束 - */
    /* ------------------ 专题新闻 - 开始 ------------------ */
    
    #textScrolling {
        height: 60px;
        /* background-color: pink; */
        overflow: hidden;
        position: relative;
        margin-bottom: 20px;
    }
    
    #textScrolling .swiper {
        width: 100%;
        height: 100%;
    }
    
    #textScrolling .swiper-wrapper {
        height: 100%;
        padding: 0 40px;
    }
    
    #textScrolling .swiper-slide {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        height: 100%;
        width: auto;
        padding: 0 15px;
        /*  */
        border-bottom: 2px solid rgba(190, 190, 190, 0.25);
        box-sizing: border-box;
    }
    
    #textScrolling .swiper-slide:hover {
        color: #ff4c88;
    }
    
    #textScrolling .swiper-slide a {
        display: flex;
        align-items: center;
        height: 100%;
        white-space: nowrap;
    }
    
    #textScrolling .swiper-button-next,
    #textScrolling .swiper-button-prev {
        width: 6rem;
        color: #ff4c88;
        opacity: 1;
        height: 60px;
        margin-top: 0;
        top: 0;
        border: none;
        border-radius: 0%;
        background-color: #fff;
    }
    
    #textScrolling .swiper-button-next:after,
    #textScrolling .swiper-button-prev:after {
        width: 6rem;
        height: 6rem;
        font-size: 35px;
        border: 0px solid #fff;
        border-radius: 0;
        padding: 12px 15px;
        height: 60px;
        background-color: rgba(255, 255, 255, 1);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #textScrolling .swiper-button-next:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4c88' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18,36 30,24 18,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    
    #textScrolling .swiper-button-prev:after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' fill='none' stroke='%23ff4c88' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='30,36 18,24 30,12'%3e%3c/polyline%3e%3c/svg%3e");
        opacity: 0.85;
    }
    
    #textScrolling .swiper-button-prev,
    #textScrolling .swiper-rtl .swiper-button-next {
        left: -2rem;
    }
    
    #textScrolling .swiper-button-next,
    #textScrolling .swiper-rtl .swiper-button-prev {
        right: -2rem;
    }
    /* ------------------ 专题新闻 - 结束 ------------------ */
    /* ------------------ aboutus - 关于我们 - 开始 ------------------ */
    /* 团队风采 */
    
    #certify {
        width: 100%;
        height: 100%;
        min-height: 30rem;
        overflow: hidden;
    }
    
    #certify .swiper {
        width: 100%;
        height: 100%;
    }
    
    #certify .swiper-wrapper {
        width: 100%;
        height: 100%;
        transition-timing-function: cubic-bezier(0.17, 0.67, 0.83, 0.67);
    }
    
    #certify .swiper-wrapper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        transition: 300ms;
    }
    
    #certify .swiper-wrapper .swiper-slide-active,
    #certify .swiper-wrapper .swiper-slide-duplicate-active {
        z-index: 2;
    }
    
    #certify .swiper-wrapper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    
    #certify .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    #certify .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        width: 2rem;
        height: 2rem;
        border: 1px solid #ff4c88;
        border-radius: 50% !important;
        background: #fff;
        opacity: 1;
    }
    
    #certify .swiper-horizontal>.swiper-pagination-bullets,
    #certify .swiper-pagination-bullets.swiper-pagination-horizontal,
    #certify .swiper-pagination-custom,
    #certify .swiper-pagination-fraction {
        position: static;
        padding-top: 20px;
    }
    
    #certify .swiper-pagination-bullet-active {
        background-color: #ff4c88 !important;
    }
    
    #certify .swiper-button-next,
    #certify .swiper-button-prev {
        color: #fff;
    }
    
    #certify .swiper-button-next:after,
    #certify .swiper-button-prev:after {
        font-size: 28px;
        /* background-color: rgba(206, 206, 206, 0.5); */
        border-radius: 50%;
        padding: 8px 14px;
    }
    /* 价值观 */
    
    #values-concept {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/aboutus/values_background.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    #values-concept .strength-ico {
        width: 9rem;
        height: 9rem;
    }
    /* 资质认证 */
    
    #aptitude {
        width: 100%;
        height: 350px;
        position: relative;
    }
    
    #aptitude .swiper {
        width: 100%;
        height: 100%;
    }
    
    #aptitude .swiper-slide {
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #aptitude .swiper-slide img {
        width: auto;
        object-fit: contain;
    }
    
    #aptitude .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    /* ------------------ aboutus - 关于我们 - 结束 ------------------ */
    /* ------------------ 申请试用页面 - 开始 ------------------ */
    
    #free-use-page .left-content {
        background-image: url(//cdn.beiing.net/dyysoft_net/newsite/free_use_left_bg.png);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        max-width: 342px;
        height: 385px;
        background-position: center center;
    }
    
    #free-use-page .right-content {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    /* ------------------ 申请试用页面 - 结束 ------------------ */
    /* -------------------------------------------- 内页 - 开始 -------------------------------------------- */
    /* -------------------------------------------- 页脚 - footer - 开始 -------------------------------------------- */
    
    .footer-menu-column {
        line-height: 2.5;
    }
    
    .footer-menu-title {
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #fff;
        white-space: nowrap;
    }
    
    .footer-menu-list {
        /* list-style: none; */
        /* padding: 0; */
        /* margin: 0; */
    }
    
    .footer-menu-list li {
        margin-bottom: 0.5rem;
    }
    
    .footer-menu-list a {
        color: #ddd;
        text-decoration: none;
        font-size: 1.3rem;
        white-space: nowrap;
    }
    
    .footer-menu-list a:hover {
        color: #fff;
        text-decoration: underline;
    }
    
    .footer-sub-columns {
        /* display: flex; */
        gap: 8rem;
    }
    
    .footer-sub-columns .footer-menu-list {
        flex: 1;
    }
    /* 移动端底部悬浮组件 */
    
    #mobile-component.visible {
        opacity: 1 !important;
        z-index: 9 !important;
    }
    /* PC端右侧悬浮组件 */
    
    #draggableWidget {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 1050;
    }
    
    #draggableWidget .online-consult,
    #draggableWidget .wechat-consult,
    #draggableWidget .tel-consult {
        cursor: pointer;
        border: 1px solid #ff4c88;
        border-radius: 5px;
        height: 85px;
    }
    
    #draggableWidget .image-container {
        width: 50px;
        height: 30px;
    }
    
    #draggableWidget .image-container .default-img,
    #draggableWidget .image-container .hover-img {
        transition: all 0.3s ease-in-out;
    }
    
    #draggableWidget .online-consult:hover .default-img,
    #draggableWidget .online-consult:hover .hover-img,
    #draggableWidget .wechat-consult:hover .default-img,
    #draggableWidget .wechat-consult:hover .hover-img,
    #draggableWidget .tel-consult:hover .default-img,
    #draggableWidget .tel-consult:hover .hover-img {
        transform: translateX(-50px);
    }
    
    #draggableWidget .wechat-consult:hover .hover-image-codes {
        display: block;
    }
    
    #draggableWidget .hover-image-codes {
        display: none;
        position: absolute;
        bottom: 31%;
        right: 120%;
        width: 98px;
        height: 98px;
        padding: 3px;
        border: 1px solid #ff4c88;
        border-radius: 5px;
        background-color: #fff;
    }
    
    #draggableWidget .hover-tel {
        position: absolute;
        bottom: 0px;
        right: 95%;
        width: 160px;
        height: 85px;
        transform: translateX(140%);
        background-color: #fff;
        border: 1px solid #ff4c88;
        transition: transform 0.3s ease-in-out;
        z-index: 1;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    
    #draggableWidget .tel-consult:hover .hover-tel {
        transform: translateX(0);
        border-right: 1px solid #fff;
        transition: transform 0.3s ease-in-out;
    }
    /* -------------------------------------------- 页脚 - footer - 结束 -------------------------------------------- */