@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    font: 15px "Microsoft YaHei", Arial, Helvetica, sans-serif;
    color: #333;
    background: #f8f9fa;
    font-size: 15px;
}

img {
    border: 0;
    display: block;
}

ul,li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

/* a:hover { */
    /* text-decoration: none; */
    /* color: #d64c8d; */
/* } */

h1 {
    font-size: 28px;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 16px;
}

i {
    font-style: normal;
}

.box, .main_box {
    width: 1280px;
    margin: auto;
    overflow: hidden;
}

div {
    box-sizing: border-box;
}

input,button {
    outline: none;
    border: none;
}

.clear, .blank {
    clear: both;
    width: 100%;
    overflow: hidden;
}

.blank {
    height: 5px
}

/* header */
header {
    margin: 0;
    width: 100%;
    z-index: 9;
    transition: all 0.4s;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .header_logo img {
    height: 60px;
}

.header .header_search input {
    width: 350px;
    height: 40px;
    border: 2px #e8e8e8 solid;
    border-radius: 35px;
    padding-left: 20px;
    color: #757575;
    z-index: 9;
    transition: all 0.3s;
}

.header .header_search input:focus {
    border-color: #d64c8d;
}

.header .header_search {
    position: relative;
}

.header .header_search button {
    background-color: #fff;
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 11px;
}

.header .header_search .iconfont {
    font-size: 32px;
    color: #757575;
}

.header .header_consult {
    height: 42px;
    width: 150px;
    background: linear-gradient(135deg, #d64c8d 0%, #ff6b9d 100%);
    border-radius: 40px;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(214, 76, 141, 0.3);
    transition: all 0.3s;
}

.header .header_consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 76, 141, 0.4);
}

.header .header_consult a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
}

.header .header_consult .iconfont {
    font-size: 30px;
    margin-right: 5px;
    color: #fff;
}

.header .header_consult span {
    color: #fff;
    font-weight: 500;
}

/* 导航栏 */
.topnav {
    width: 100%;
    background: linear-gradient(135deg, #d64c8d 0%, #9a1a27 100%);
}

nav {
    text-align: center;
    line-height: 50px;
    width: 100%;
}

#starlist li {
    position: relative;
    display: inline;
    float: left;
    font-size: 15px;
    margin-right: 10px;
}

#starlist li a {
    display: inline;
    float: left;
    padding: 0 15px;
    color: #fff;
    font-weight: 500;
}

#starlist li a:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
}

a#selected {
    background: rgba(255,255,255,0.25);
    color: #fff !important;
    border-radius: 5px;
}

/* 小屏幕的导航栏 */
.topnav h2 {
    width: 100%;
    color: #fff;
    position: fixed;
    top: 0;
    padding-left: 10px;
    height: 40px;
    line-height: 40px;
    display: none;
    font-size: 20px;
}

.topnav h2 a {
    color: #fff;
}

#mnavh {
    display: none;
    width: 70px;
    height: 40px;
    background: #d64c8d;
    text-align: center;
}

.navicon {
    display: block;
    position: relative;
    width: 28px;
    height: 2.5px;
    background-color: #fff;
    margin-top: 20px;
    float: left;
	margin-left: -50px;
    margin-bottom: 18px;
}

.navicon:before,
.navicon:after {
    content: '';
    display: block;
    width: 28px;
    height: 2.5px;
    position: absolute;
    background: #fffefe;
    -webkit-transition-property: margin, -webkit-transform;
    transition-property: margin, -webkit-transform;
    transition-property: margin, transform;
    transition-property: margin, transform, -webkit-transform;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
}

.navicon:before {
    margin-top: -9px;
}

.navicon:after {
    margin-top: 9px;
}

.open .navicon {
    background: none
}

.open .navicon:before {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open .navicon:after {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.open .navicon:before,
.open .navicon:after {
    content: '';
    display: block;
    width: 28px;
    height: 2.5px;
    position: absolute;
    background: #fff;
}

.is-fixed {
    position: fixed;
    top: 0;
    box-shadow: 0px 3px 10px 1px rgba(208, 217, 228, 0.4);
    z-index: 99;
}

/* ========== 移动端头部 Topbar（默认隐藏，≤800px 显示） ========== */
.m_topbar {
    display: none;
    width: 100%;
    height: 48px;
    background: #fff;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.m_topbar .m_search_btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.m_topbar .m_search_btn .iconfont {
    font-size: 22px;
    color: #555;
}

.m_topbar .m_logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.m_topbar .m_logo img {
    height: 36px;
}

.m_topbar #mnavh {
    display: flex !important;
    width: 36px;
    height: 36px;
    background: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    position: static;
}

.m_topbar .navicon,
.m_topbar .navicon:before,
.m_topbar .navicon:after {
    background-color: #555;
}

.m_topbar .open .navicon {
    background: none;
}

/* 移动端搜索下拉框 */
.m_search_box {
    display: none;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 98;
}

.m_search_box.show {
    display: block;
}

.m_search_box form {
    display: flex;
    align-items: center;
}

.m_search_box input {
    flex: 1;
    height: 38px;
    border: 2px solid #e8e8e8;
    border-radius: 20px;
    padding: 0 40px 0 15px;
    font-size: 14px;
    color: #333;
    background: #f5f5f5;
}

.m_search_box input:focus {
    border-color: #d64c8d;
    background: #fff;
}

.m_search_box button {
    margin-left: -36px;
    background: none;
    cursor: pointer;
    z-index: 2;
}

.m_search_box button .iconfont {
    font-size: 20px;
    color: #999;
}

/* banner(1170*500) */
.banner {
    width: 100%;
    height: 560px;
    margin-top: 2px;
}

.banner .swiper-slide {
    width: 1170px;
    height: 620px;
}

.banner .swiper-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background: #d64c8d !important;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/right.png) !important;
}

.swiper-button-next, .swiper-button-prev {
    margin-top: -45px !important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/left.png) !important;
}

/* 移动端的栏目 */
.column {
    width: 100%;
    display: none;
    margin-top: 20px;
}

.column ul {
    height: 5.2rem;
    border-top: 1px solid #eaeaea;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.column ul li {
    width: 49.8%;
    float: left;
    height: 5.2rem;
}

.column ul li:first-child {
    border-right: 1px solid #eaeaea;
}

.column ul li .column_text {
    float: left;
    margin: 1rem 0 0 0.714rem;
    width: calc(100% - 5.514rem);
}

.column ul li .column_text h3 {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    height: 1.8rem;
    line-height: 1.8rem;
    overflow: hidden;
}

.column ul li .column_text span {
    font-size: 0.8rem;
    color: #999999;
    height: 1rem;
    overflow: hidden;
    display: block;
    line-height: 1rem;
}

.column ul li .column_icon {
    width: 3.5rem;
    height: 3.5rem;
    float: right;
    margin-top: 0.8rem;
    margin-right: 0.6rem;
    text-align: center;
    border-radius: 50%;
}

.column ul li .column_icon i {
    line-height: 3.5rem;
    color: #fff;
    font-size: 2rem;
}

/* 左侧文章列表 */
.lists {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
	margin-bottom: 20px;
}

.lists .list_left {
    width: 33%;
    overflow: hidden;
}

.lists .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lists .title .title_left {
    line-height: 2.0rem;
    margin-left: 5px;
}

.lists .title .title_left .iconfont {
    display: inline-block;
    width: 2.0rem;
    height: 2.0rem;
    background: linear-gradient(135deg, #d64c8d 0%, #ff6b9d 100%);
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    line-height: 2.0rem;
    border-radius: .4rem;
}

.lists .title .title_left h3 {
    display: inline-block;
    font-size: 1.25rem;
    color: #333;
    font-weight: bold;
    margin-left: .6rem;
}

.lists .title .title_right {
    display: inline-block;
    margin: 0 .4rem;
    color: #999;
}

.lists .title .title_right:hover {
    color: #d64c8d;
}

.lists .list_left .content {
    margin-top: 15px;
    width: 100%;
}

.lists .list_left .content li {
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.lists .list_left .content li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(214, 76, 141, 0.15);
}

.lists .list_left .content li a {
    display: flex;
    justify-content: space-between;
}

.lists .list_left .content li a:hover .article_text h3 {
    color: #d64c8d;
}

.lists .list_left .content li a .article_img {
    width: 31%;
    height: 4.8rem;
    border-radius: 8px;
    overflow: hidden;
}

.lists .list_left .content li a .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lists .list_left .content li a .article_text {
    width: 64%;
}

.lists .list_left .content li a .article_text h3 {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
}

.lists .list_left .content li a .article_text p {
    font-size: .87rem;
    color: #666;
    margin-top: .6rem;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.lists .list_left .content li a .article_text span {
    font-size: .8rem;
    margin: 5px 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    height: 16px;
    line-height: 16px;
    float: right;
    color: #d64c8d;
    font-weight: 600;
}

.lists .line {
    width: 1%;
    width: 0;
    border-left: 2px #d64c8d dashed;
}

/* 右边文章列表 */
.lists .list_right {
    width: 63%;
}

.lists .list_right .content {
    margin-top: 15px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.lists .list_right .content .content_left,.content_right {
    width: 100%;
}

.lists .list_right .content ul li {
    line-height: 2.2rem;
    font-size: 1.0rem;
    text-overflow: ellipsis;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    padding: 5px 0;
}

.lists .list_right .content ul li:last-child {
    border-bottom: none;
}

.lists .list_right .content ul li:hover a {
    color: #d64c8d;
}

.lists .list_right .content ul li a {
    width: 65%;
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    position: relative;
    padding-left: 15px;
}

.lists .list_right .content ul li a::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #d64c8d;
    left: 0;
    top: 18px;
}

.lists .list_right .content ul li span {
    width: 25%;
    text-align: right;
    color: #999;
    font-size: 14px;
}

.footer_m {
    display: none;
}

.tag {
    background: #fff;
    padding: 2.5rem 0;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tag .tag_content {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 94%;
    flex-wrap: wrap;
}

.tag .tag_content .tag_li {
    display: flex;
    align-items: center;
}

.tag .tag_content .tag_li .li_left {
    width: 3.0rem;
    height: 3.0rem;
    background: linear-gradient(135deg, #d64c8d 0%, #ff6b9d 100%);
    color: #fff;
    border-radius: 50%;
}

.tag .tag_content .tag_li .li_left i {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
    line-height: 3.0rem;
}

.tag .tag_content .tag_li .li_right {
    margin-left: 1.0rem;
}

.tag .tag_content .tag_li .li_right h4 {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.tag .tag_content .tag_li .li_right h5 {
    font-size: 0.8rem;
    color: #666;
    margin: .5rem 0;
    font-weight: normal;
}

/* ========== 信任背书条 ========== */
.trust-bar {
    background: #fff;
    padding: 24px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
}

.trust-bar .trust-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 94%;
    margin: 0 auto;
}

.trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
}

.trust-bar .trust-item .trust-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    background: linear-gradient(135deg, #d64c8d 0%, #ff6b9d 100%);
    flex-shrink: 0;
}

.trust-bar .trust-item .trust-icon.c1 { background: linear-gradient(135deg, #d64c8d 0%, #ff6b9d 100%); }
.trust-bar .trust-item .trust-icon.c2 { background: linear-gradient(135deg, #5B6ABF 0%, #7B8AFF 100%); }
.trust-bar .trust-item .trust-icon.c3 { background: linear-gradient(135deg, #E8923F 0%, #F5A623 100%); }
.trust-bar .trust-item .trust-icon.c4 { background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%); }

.trust-bar .trust-item .trust-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

/* ========== 通用区块标题 ========== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .en-label {
    font-size: 13px;
    color: #d64c8d;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.section-header .sub-desc {
    font-size: 15px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========== 区块容器 ========== */
.section-wrap {
    padding: 60px 0;
}

.section-wrap.bg-white { background: #fff; }
.section-wrap.bg-light { background: #fff; }

/* ========== 核心整形项目 4列网格 ========== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
	margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.project-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px 25px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d64c8d, #ff6b9d);
    opacity: 0;
    transition: opacity 0.35s;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214,76,141,0.12);
}

.project-card .proj-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #fff;
}

.project-card .proj-icon.c1 { background: linear-gradient(135deg, #d64c8d, #ff6b9d); }
.project-card .proj-icon.c2 { background: linear-gradient(135deg, #4CAF50, #66BB6A); }
.project-card .proj-icon.c3 { background: linear-gradient(135deg, #5B6ABF, #7B8AFF); }
.project-card .proj-icon.c4 { background: linear-gradient(135deg, #E8923F, #F5A623); }
.project-card .proj-icon.c5 { background: linear-gradient(135deg, #00897B, #26A69A); }

.project-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 15px;
    min-height: 48px;
}

.project-card .proj-price {
    font-size: 18px;
    color: #d64c8d;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-card .proj-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #d64c8d;
    font-size: 14px;
    font-weight: 500;
    transition: gap 0.3s;
}

.project-card .proj-link:hover { gap: 8px; }

.project-card .proj-link .iconfont { font-size: 12px; }

/* 查看全部按钮 */
.section-more {
    text-align: center;
    margin-top: 30px;
}

.section-more a {
    display: inline-block;
    border: 2px solid #d64c8d;
    color: #d64c8d;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.section-more a:hover {
    background: #d64c8d;
    color: #fff;
}

/* ========== 为什么选择我们 ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
	margin-bottom: 10px;
	margin-left: 20px;
    margin-right: 20px;
}

.why-item {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.35s;
}

.why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(214,76,141,0.1);
}

.why-item .why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(214,76,141,0.08), rgba(255,107,157,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: #d64c8d;
}

.why-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
}

/* ========== 专家团队 ========== */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
	margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.expert-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.35s;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214,76,141,0.12);
}

.expert-card .expert-img {
    /* height: 300px; */
    overflow: hidden;
    background: #f0f0f0;
}

.expert-card .expert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.expert-card:hover .expert-img img {
    transform: scale(1.05);
}

.expert-card .expert-info {
    padding: 20px;
}

.expert-card .expert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.expert-card .expert-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.expert-card .badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(214,76,141,0.1);
    color: #d64c8d;
    font-weight: 500;
    white-space: nowrap;
}

.expert-card .exp-years {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 10px;
}

.expert-card .exp-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
}

.expert-card .expert-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expert-card .expert-actions .detail-link {
    font-size: 14px;
    color: #d64c8d;
    font-weight: 500;
}

.expert-card .expert-actions .detail-link:hover {
    text-decoration: underline;
}

.expert-card .expert-actions .consult-btn {
    font-size: 12px;
    padding: 6px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #d64c8d, #ff6b9d);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}

.expert-card .expert-actions .consult-btn:hover {
    box-shadow: 0 4px 12px rgba(214,76,141,0.35);
    transform: translateY(-1px);
}

/* ========== 客户真实评价 ========== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
	margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.review-card {
    background: #fff;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.35s;
    position: relative;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(214,76,141,0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(214,76,141,0.1);
}

.review-card .review-header {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.review-card .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background: #f0f0f0;
    flex-shrink: 0;
}

.review-card .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .review-name {
    font-weight: 700;
    font-size: 15px;
    color: #222;
}

.review-card .review-stars {
    color: #FF9500;
    font-size: 14px;
    margin-top: 2px;
    letter-spacing: 1px;
}

.review-card .review-text {
    font-size: 14px;
    color: #888;
    line-height: 1.9;
    position: relative;
    z-index: 1;
}

/* ========== 真实成功案例 ========== */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
	margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
}

.case-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.35s;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(214,76,141,0.12);
}

.case-card .case-img {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.case-card .case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.case-card:hover .case-img img {
    transform: scale(1.05);
}

.case-card .case-info {
    padding: 20px;
}

.case-card .case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.case-card .case-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.case-card .case-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(214,76,141,0.1);
    color: #d64c8d;
    font-weight: 500;
    white-space: nowrap;
}

.case-card .case-desc {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
}

.case-card .case-link {
    font-size: 14px;
    color: #d64c8d;
    font-weight: 500;
}

.case-card .case-link:hover {
    text-decoration: underline;
}

/* ========== 页脚 CTA 咨询引导 ========== */
.footer-cta {
    background: linear-gradient(135deg, #a01f31 0%, #d64c8d 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

.footer-cta h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-cta .cta-desc {
    font-size: 16px;
    opacity: 0.92;
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-cta .cta-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-cta .cta-form input {
    flex: 1;
    height: 48px;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 15px;
    background: #fff;
    border: none;
    color: #333;
}

.footer-cta .cta-form input::placeholder {
    color: #bbb;
}

.footer-cta .cta-form button {
    height: 48px;
    padding: 0 28px;
    border-radius: 30px;
    background: #fff;
    color: #d64c8d;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.footer-cta .cta-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.footer-cta .cta-privacy {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 14px;
}

/* ========== 底部 ========== */
/* footer { */
    /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
    /* padding-top: 40px; */
/* } */

.footer_top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 94%;
    flex-wrap: wrap;
}

.footer_top .box1 h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.footer_top .box1 button {
    border: 2px #fff solid;
    background: transparent;
    width: 120px;
    height: 40px;
    color: #fff;
    margin: 30px 0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.footer_top .box1 button:hover {
    background: #fff;
    color: #d64c8d;
}

.footer_top .box2 h3 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin: 10px 0;
}

.footer_top .box2 ul li {
    color: #ccc;
    font-size: 13px;
    margin: 8px 0;
    line-height: 1.6;
}

/* .footer_bottom { */
    /* margin-top: 20px; */
/* } */

.footer_bottom .bq {
    background-color: #1a252f;
}

.footer_bottom .bq p {
    font-size: 14px;
    color: #999;
    line-height: 40px;
    text-align: center;
}
.footer-cta .cta-form a {
    height: 30px;
    padding: 15px 32px 15px 32px;
    border-radius: 30px;
    background: #fff;
    color: #d64c8d;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}