.detail__left {
    width: 940px;
    float: left;
}

.detail__left__info {
    width: 940px;
    position: relative;
    /* height: 407px; */
}

.info__thumbnail-wrapper {
    width: 300px;
    float: left;
    margin: 20px 20px 10px 20px;
}

.info__thumbnail {
    width: 300px;
    height: 256px;
    border-radius: 4px;
    border: 1px dashed #d9e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.info__thumbnail img {
    max-width: 90%;
    max-height: 98%;
    display: block; /* 使图像行为像块级元素 */
}

.info__thumbnail:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 193, 151, 0.05);
    pointer-events: none; /* 确保鼠标事件不被伪元素阻止 */
    z-index: 1; /* 确保伪元素显示在图像上方 */
}

.info__thumbnail .tm-image-tips{
    position: absolute;
    top:10px;
    right:10px;
    padding: 5px 16px;
    border-radius: 15px;
    display: block;
    color: #666;
    border:1px #eee solid;
    font-size: 12px;
}
.info__thumbnail .tm-inner-tips{
    position: absolute;
    top:10px;
    left:10px;
    padding: 5px 16px;
    border-radius: 15px;
    display: block;
    color: rgb(71, 183, 68);
    border:2px rgb(71, 183, 68) solid;
    font-size: 12px;
}

.info__thumbnail-notice {
    width: 100%;
    margin: 12px 0;
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.8;
    color: #999;
    text-align: center;
    word-break: break-all;
    clear: both;
    position: relative;
    z-index: 1;
}
.info__favourites {
    margin-bottom: 15px;
    left: 30px; 
    top: 290px;
    position: absolute;
    width:289px;
}
.info__favourites img {border:1px #ddd solid;cursor:pointer;width: 40px; height: 31px;float: right; margin-top: -8px;}
.info__favourites img.image-selected {border:1px #3c7ee5 solid;}
.info__favourites i {vertical-align: baseline; font-size: 14px}
.info__favourites a{color: #666; font-size: 14px; line-height: 14px;}
.info__message {
    width: 580px;
    padding-bottom: 30px;
    float: left;
    padding-top: 18px;
}

.info__message .title {
    font-size: 22px;
    color: #333;
    font-weight: bold;
    max-width: 320px;
}

.info__message .same:hover {
    border-color: #ff7733;
    color: #ff7733;
}

.info__message .same,
.info__message .safe {
    color: #fff;
    font-size: 12px;
    color: #ff7733!important;
    line-height: 24px;
    padding: 0 6px;
    margin-top: 4px;
    height: 24px;
    float: right;
    background: rgba(255, 119, 51, 0.1)!important;
    border-radius: 4px;
}

.info__message .safe i {
    margin-right: 4px;
    margin-top: -2px;
}

.info__message .price {
    margin-top: 20px;
    width: 100%;
    height: 56px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    overflow: auto;
    padding-left: 20px;
    align-items: center;
    background: linear-gradient(to right, #ffefca, #e6f4f1);
    background-size: 200% 100%; /* 扩展背景以便动画时有足够空间 */
    background-position: left center; /* 初始背景位置 */
    transition: background-position 0.5s ease; /* 设置过渡效果 */
}

.info__message .price:hover {
    background: rgba(33, 193, 151, 0.5);
    background-size: 200% 100%;
    background-position: right center; /* 悬停时背景从右侧开始 */
}

.info__message .price i {
    color: #333;
}

.info__message .price span {
    font-size: 24px;
    font-weight: bold;
    color: #ff4433;
    transition: font-weight 0.3s ease; /* 设置字体变化的过渡效果 */
}


.info__message .list {
    line-height: 30px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center; /* 垂直居中对齐 */
}

.info__message .list label {
    color: #999;
    float: left;
}

/* span 样式，使用 inline-block 以支持伪元素 */
.info__message .list span {
    color: #454555;
    max-width: 520px;
    cursor: pointer;
    position: relative;
    padding-right: 50px; /* 为“（复制）”预留空间 */
    display: flex;       /* 使用 flex 布局 */
    align-items: center; /* 水平垂直居中对齐 */
}

.info__message .list span:hover {
   color: #1a73e8; /* 设置复制文本颜色为蓝色 */
}

/* 仅非最后一个 span 悬停时显示“（复制）”提示 */
.info__message .list span:hover::after {
   content: '（复制）';
    color: #1a73e8;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); /* 垂直居中对齐 */
}

/* 美化并居中弹窗样式 */
.copy-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}

/* 显示时的样式 */
.copy-toast.show {
    opacity: 1;
    visibility: visible;
}

/* .info__message .list li:nth-child(1) {
    flex-basis: 150px;
}

.info__message .list li:nth-child(2) {
    flex-basis: 150px;
}

.info__message .list li:nth-child(3) {
    flex-basis: 280px;
} */

.info__message .list li:nth-child(4),
.info__message .list li:nth-child(5) {
    flex-basis: 100%;
}

.info__message .list .view {
    line-height: 24px;
    font-size: 12px;
    padding-left: 62px;
}

.info__message .list .view span {
     display: inline-flex; 
     padding: 2px 6px; 
    color: #3c7ee5;
    border: solid 1px #3c7ee5;
    margin-top: 2px;
    line-height: 18px;
    border-radius: 2px;
    margin-left: 5px;
}
.info__message .list .view span:hover::after {
    content: '' !important; /* 强制清空内容 */
}

.info__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}

.info__button {
    border-radius: 4px;
    width: 106px;
    padding: 8px;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.info__button i {
  margin-right: 6px;
}

.info__button--share {
    color: #f85252;
    border: 1px solid #f85252;
    background: #fff;
}
.info__button--share:hover {
    color: #fff;
    background: #f85252;
}
.info__button--capture {
    color: #f9a825;
    border: 1px solid #f9a825;
    background: #fff;
}
.info__button--capture:hover {
    color: #fff;
    background: #f9a825;
}
.info__button--pdf {
    color: #3f51b5;
    border: 1px solid #3f51b5;
    background: #fff;
}
.info__button--pdf:hover {
    color: #fff;
    background: #3f51b5;
}

.info__button--order {
    color: #fff;
    background: #3369E3;
    border: 1px solid #3369E3;
}
.info__button--order:hover {
    background: linear-gradient(to right, #3369E3, #008A64);
    border-color: transparent;
}
.info__button--print-online {
    color: #4CAF50;
    border: 1px solid #4CAF50;
    background: #fff;
}
.info__button--print-online:hover {
    color: #fff;
    background: #4CAF50;
}

.info__process {
    height: 52px;
    border-top: 1px dashed #d9e8ff;
    display: flex;
    align-items: center;
}

.info__process li {
    height: 24px;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    flex: 1;
    border-right: 1px dashed #d9e8ff;
}

.info__process li:last-child {
    border-right: none;
}

.detail__left__tabs {
    display: flex;
}

.detail__left__tabs li {
    position: relative;
    color: #333333;
    line-height: 50px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    border: 1px dashed #d9e8ff;
    border-right: none;
    border-left: none;
    border-bottom-color: #d9e8ff !important;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* 悬停效果 - 下划线动画 */
.detail__left__tabs li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 8px;
    background: linear-gradient(to right, #3c7ee5, #008a64);
    transition: width 0.3s ease;
}

.detail__left__tabs li:hover {
    color: #008a64;
    font-weight: bold;
}

.detail__left__tabs li:hover::after {
    width: 100%;
}


/* 激活状态 - 带渐变顶部的标签页 */
.detail__left__tabs li.active {
    position: relative;
    color: #3c7ee5;
    margin-left: 3px;
    border-bottom: none;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    padding-top: 8px; /* 为伪元素留出空间 */
   background: rgba(230, 244, 241, 0.3); /* #e6f4f1 30%透明度 */
    z-index: 1; /* 确保内容在伪元素上方 */
}

.detail__left__tabs li.active::before {
    content: '';
    position: absolute;
    top: -3px; /* 轻微重叠消除缝隙 */
    left: -3px; /* 对齐边框 */
    right: -3px;
    height: 8px;
    background: linear-gradient(to right, #3c7ee5, #008a64);
    border-radius: 4px 4px 0 0;
    z-index: 0; /* 置于主元素下方 */
}

/*.detail__left__tabs li:first-child.active {
    border-left: none;
}

.detail__left__tabs li:last-child.active {
    border-right: none;
}
*/
.content__title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-top: 42px;
    line-height: 22px;
    margin-bottom: 12px;
}

.content__title--en {
    color: #999;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.detail__left__content {
    padding: 0 20px;
}

.content__table {
    border-left: solid 1px #ECECEC;
    border-top: solid 1px #ECECEC;
    line-height: 50px;
    width: 100%;
    text-align: center;
}

.content__table th,
.content__table td {
    border-right: solid 1px #ECECEC;
    border-bottom: solid 1px #ECECEC;
}

.content__table th {
    background: #F0F6FF;
    color: #333;
    font-weight: normal;
    border-right: solid 1px #ECECEC;
    border-bottom: solid 1px #ECECEC;
}

.content__advantage {
    width: 100%;
    /* height: 340px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
}

.content__advantage li {
    width: 440px;
    height: 150px;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 38px;
    border-radius: 12px; /* 添加圆角 */
    transition: all 0.3s ease; /* 平滑过渡效果 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 基础阴影 */
    cursor: pointer; /* 鼠标指针变化 */
    position: relative;
    overflow: hidden;
}

/* 移除原来的顶部线条，用动画线条替代 */
.content__advantage li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* 初始状态在左侧外部 */
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3369E3 0%, #008a64 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 2;
}

/* 悬停时的动画效果 */
.content__advantage li:hover::before {
    left: 0; /* 从左侧滑入 */
    opacity: 1; /* 显示线条 */
}

/* 添加一个伪元素作为动画的背景光效 */
.content__advantage li::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 3;
}

.content__advantage li:hover::after {
    left: 100%; /* 光效从左侧移动到右侧 */
    opacity: 1;
    transition-delay: 0.2s; /* 稍微延迟显示光效 */
}

.content__advantage li:hover {
    transform: translateY(-5px); /* 悬停上浮效果 */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* 悬停时加深阴影 */
}

.content__advantage li h3 {
    color: #0E0E0E;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px; /* 图标和文字间距 */
    position: relative;
    z-index: 1;
}

.content__advantage li h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.content__advantage li:hover h3 {
    color: #2D5BEA; /* 悬停时标题变色 */
}

.content__advantage li:hover h3::before {
    transform: scale(1.1); /* 悬停时图标稍微放大 */
}

.content__advantage li p {
    color: #6A6A6A;
    line-height: 24px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.content__advantage li:hover p {
    color: #4A5568; /* 悬停时文字颜色加深 */
}

/* 第一个优势项 - 盾牌图标（安全） */
.content__advantage li:nth-child(1) {
    margin-bottom: 20px;
    background: #F4F8F8;
    border: 1px solid #E6F2F2;
}

.content__advantage li:nth-child(1) h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2338B2AC'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

/* 第二个优势项 - 火箭图标（快速） */
.content__advantage li:nth-child(2) {
    background: #F3F5F9;
    border: 1px solid #E8ECF4;
}

.content__advantage li:nth-child(2) h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234299E1'%3E%3Cpath d='M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 5.57-1.6 7H9.1c-.56-1.43-1.6-4.51-1.6-7C7.5 4.54 12 2.5 12 2.5zm2 8.5h-4v-2h4v2zm-4 4h4v2h-4v-2z'/%3E%3C/svg%3E");
}

/* 第三个优势项 - 爱心图标（优质） */
.content__advantage li:nth-child(3) {
    background: #FFF6F6;
    border: 1px solid #FFEBEB;
}

.content__advantage li:nth-child(3) h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FC8181'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

/* 第四个优势项 - 星星图标（卓越） */
.content__advantage li:nth-child(4) {
    background: #F6F3FF;
    border: 1px solid #EDE9FE;
}

.content__advantage li:nth-child(4) h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239F7AEA'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

/* 为每个li添加不同的悬停边框色 */
.content__advantage li:nth-child(1):hover {
    border-color: #38B2AC;
}

.content__advantage li:nth-child(2):hover {
    border-color: #4299E1;
}

.content__advantage li:nth-child(3):hover {
    border-color: #FC8181;
}

.content__advantage li:nth-child(4):hover {
    border-color: #9F7AEA;
}

/* 悬停时图标颜色变化 */
.content__advantage li:nth-child(1):hover h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D5BEA'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.content__advantage li:nth-child(2):hover h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D5BEA'%3E%3Cpath d='M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 5.57-1.6 7H9.1c-.56-1.43-1.6-4.51-1.6-7C7.5 4.54 12 2.5 12 2.5zm2 8.5h-4v-2h4v2zm-4 4h4v2h-4v-2z'/%3E%3C/svg%3E");
}

.content__advantage li:nth-child(3):hover h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D5BEA'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.content__advantage li:nth-child(4):hover h3::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D5BEA'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}

.content__process {
    height: 203px;
    margin-bottom: 10px;
    display: -webkit-box;
    /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;
    /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;
    /* 混合版本语法: IE 10 */
    display: -webkit-flex;
    /* 新版本语法: Chrome 21+ */
    display: flex;
    /* 新版本语法: Opera 12.1, Firefox 22+ */
    overflow: auto;
    justify-content: flex-end;
    padding: 10px;
    text-align: center;
    background: url('/statics/epower/img/detail-detach-process.png') no-repeat center center;
    background-size: cover;
}

.content__process li {
    width: 130px;
    height: 183px;
    background: rgba(255, 255, 255, .8);
    cursor: pointer;
    margin-right: 2px;
    padding: 0 20px;
}

.content__process li.active {
    width: 235px;
    background: transparent;
    text-align: left;
    color: #fff;
}

.content__process li.active .process__circle {
    border: none;
    background: transparent;
    margin: 0;
    height: auto;
    margin-bottom: 8px;
    margin-top: 28px;
    line-height: normal;
    text-align: left;
}

.content__process li.active .process__title {
    color: #fff;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #fff;
}

.content__process li.active .process__info {
    height: auto;
    color: rgba(255, 255, 255, .79);
}

.content__process li.active .iconfont {
    display: none;
}

.process__circle {
    width: 60px;
    background: #fff;
    border: 8px solid rgba(182, 192, 219, 0.3);
    text-align: center;
    border-radius: 50%;
    margin: 0 auto;
    height: 60px;
    line-height: 44px;
    margin-top: 18px;
    margin-bottom: 16px;
}

.process__circle--zero {
    font-size: 16px;
}

.process__circle--num {
    font-size: 20px;
}

.process__title {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
}

.process__info {
    color: #999;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 16px;
    height: 16px;
    overflow: hidden;
}

.content__process--text {
    line-height: 50px;
    border-radius: 4px;
    line-height: 20px;
    padding: 15px 0;
    background: #F0F6FF;
    color: #3C7EE5;
    text-align: center;
    display: flex;
}

.content__process--text li {
    border-right: dashed 1px #3C7EE5;
    flex: 1;
}

.content__process--text li:last-child {
    border-right: none;
}

.content__table--material {
    width: 100%;
    text-align: center;
}

.content__table--material th {
    color: #fff;
    line-height: 50px;
    background: #3C7EE5;
}

.content__table--material td {
    color: #666666;
    border-left: 1px solid #ECECEC;
}

.content__table--material th,
.content__table--material td {
    border-right: solid 1px #ECECEC;
}

.content__table--material td:first-child {
    text-align: center;
    padding-left: 0;
}

.content__table--material td {
    border-bottom: 1px solid #ECECEC;
    height: 96px;
    line-height: 26px;
    padding-left: 44px;
    text-align: left;
    color: #666;
}

.content__table--material td b {
    width: 4px;
    height: 4px;
    display: inline-block;
    margin-right: 4px;
    vertical-align: 2px;
    background: #999;
    border-radius: 50%;
}

.content__question {
    padding-bottom: 23px;
}

.content__question li {
    line-height: 24px;
}

.content__question li:nth-child(odd) {
    height: 40px;
    background: #F5F6FA;
    color: #333;
    line-height: 40px;
    padding-left: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.content__question li:nth-child(even) {
    padding-left: 16px;
    line-height: 24px;
    color: #666;
    margin-bottom: 10px;
}

.detail__right {
    width: 250px;
    float: right;
}

.customer {
    height: 365px;
    border-bottom: 1px dashed #d9e8ff;
    margin-bottom: 50px;
}

.detail__right .title {
    margin-top: 27px;
    margin-bottom: 27px;
}

.detail__right .title .line {
    width: 60px;
    height: 1px;
    background-color: #3c7ee5;
    opacity: .5;
    display: inline-block;
    vertical-align: middle;
}

.customer__logo {
    width: 122px;
    height: 122px;
    line-height: 120px;
    margin: 0 auto;
    margin-bottom: 13px;
    border: 1px solid #ececec;
}

.customer__name {
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.customer__button {
    padding: 6px 25px;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    background: #3369E3!important;
    margin-bottom: 15px;
    /* border: 4px solid rgba(60, 126, 229, 0.3); */
    cursor: pointer;
}
.customer__button {
    padding: 6px 25px;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    background: #3369E3!important;
    margin-bottom: 15px;
    /* border: 4px solid rgba(60, 126, 229, 0.3); */
    cursor: pointer;
}
.customer__button:hover {
    color: #fff;
    background: linear-gradient(to right, #3369E3, #008A64)!important;
}
.customer__qr_button {
    padding: 6px 25px;
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    border-radius: 4px;
    background: #09bb07!important;
    margin-bottom: 15px;
    /* border: 4px solid rgba(60, 126, 229, 0.3); */
    cursor: pointer;
}
.customer__button:hover,.customer__qr_button:hover {
    color: #fff;
    background: linear-gradient(to right, #3369E3, #008A64); /* 渐变下划线 */
}
.customer__button {
    margin-bottom: 15px;
}

.customer__contact {
    line-height: 40px;
    text-align: left;
    border-top: 1px dashed #D9E8FF;
    padding-left: 20px;
}
.customer__contact.customer__contact-phone{
    margin-top: 10px;
}

.recommend__list {
    width: 220px;
}

.detail__right .recommend .title {
    margin: 17px auto;
}

.detail__right .recommend .title .line {
    width: 70px;
}

.recommend__list>a {
    display: block;
}

.recommend__list li {
    height: 220px;
    text-align: center;
    margin-bottom: 20px !important;
     box-shadow:0 0 20px 5px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.recommend__list li:hover {
    transform: translateX(-5px);
    box-shadow: 0px 10px 20px rgba(0, 200, 100, 0.3);
    border: 2px solid #e6f4f1;
    position: relative;
    transition: all 0.3s ease;
}

.recommend__list li a {
    display: block;
    line-height: 130px;
    overflow: hidden;
    transition: all 0.3s;
}

.recommend__list li img {
    max-width: 100%;
    padding: 5px;
    max-height: 130px;
    margin-bottom: 12px;
    transition: all 0.3s;
    vertical-align: middle;
}

.recommend__list li:hover img {
    transform: scale(1.1);
}

.recommend__list li h3 {
    font-weight: bold;
    color: #333;
    line-height: 20px;
}

.recommend__list li p {
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.recommend__list li p.price {
    font-size: 16px;
    color: #d7264a;
    font-weight: bold;
}

.showLayer {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    z-index: 3000;
}

.shareLayer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    z-index: 3000;
    height: 100%;
}

.share-content {
    position: absolute;
    z-index: 3008;
    box-sizing: content-box;
    /* padding: 10px; */
    width: 523px;
    top: 40px;
    left: 50%;
    margin-left: -261px;
}

.showWrap {
    display: none;
    position: absolute;
    background: #FFF;
    z-index: 3008 !important;
    box-sizing: content-box;
    padding: 10px;
    width: 680px;
    top: 50px;
    left: 50%;
    margin-left: -340px;
    text-align: center;
}

.showWrap img,
.share-content img {
    max-width: 100%;
    height: auto !important;
}

.share-download {
    width: 210px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 25px;
    border: 1px solid #FFFFFF;
    color: #507CF3;
    display: block;
    margin: 0 auto;
    text-align: center;
    line-height: 48px;
    margin-top: 20px;
    font-size: 18px;
}

.share-download i {
    color: #507CF3;
}

.imgbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 30px;
    width: 30px;
    background: url(/statics/epower/img/imgbox-close.png) top left no-repeat;
    cursor: pointer;
    outline: none;
}

.share-close {
    position: absolute;
    top: -20px;
    right: -20px;
    height: 20px;
    width: 20px;
    cursor: pointer;
    outline: none;
}

.share-close i {
    color: #fff;
}

.dialog-img-a:hover {
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.browse-history {
    display: none;
}

.tm-tooltip .same-item {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.tm-tooltip .same-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.tm-tooltip .same-item a {
    display: block;
    text-decoration: none;
    color: #333;
}

.tm-tooltip .same-item a:hover {
    color: #3c7ee5;
}

.tm-tooltip .same-item-row {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 20px;
}

.tm-tooltip .same-item-row-name {
    margin-bottom: 4px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.tm-tooltip .same-item-index {
    flex-shrink: 0;
    margin-right: 4px;
    color: #666;
}

.tm-tooltip .same-item-name {
    flex-shrink: 0;
    margin-right: 4px;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.tm-tooltip .same-item-price {
    flex-shrink: 0;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;
}

.tm-tooltip .same-item-price .text-danger {
    font-weight: bold;
    font-size: 13px;
}

.tm-tooltip .same-item-cls {
    flex-shrink: 0;
    margin-right: 8px;
    color: #666;
    text-align: left;
    white-space: nowrap;
}

.tm-tooltip .same-item-dots {
    flex: 1;
    min-width: 20px;
    height: 2px;
    margin: 0 8px;
    border-bottom: 2px dotted #ccc;
    align-self: center;
}

.info__off {
    padding-top: 40px;
    padding-left: 80px;
    height: 250px;
}

.info__off--title {
    line-height: 22px;
    font-size: 22px;
    color: #333;
    margin-bottom: 32px;
}

.info__off .customer__logo {
    float: left;
}

.customer__name--wrap {
    width: 328px;
    margin: 10px 0;
    padding-left: 40px;
    text-align: left;
    border-right: dashed 1px #DFE3F1;
}

.customer__name--wrap .customer__name {
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}

.customer__contact--wrap {
    padding-left: 80px;
    padding-top: 31px;
}

.customer__name--wrap .customer__logo {
    margin-bottom: 0;
}

.customer__logo img {
    max-width: 120px;
    max-height: 120px;
    vertical-align: middle;
}

.customer__name--wrap .customer__button {
    margin-bottom: 0;
}

.customer__contact--wrap .customer__contact {
    border: none;
    line-height: normal;
}

.customer__contact--wrap .customer__contact:nth-child(1) {
    margin-bottom: 8px;
}

.content__html img {
    max-width: 100%;
}
#qrcode-container {
    background-color: #fff;display: none; width: 200px; height: 200px; padding-top: 10px; text-align: center; box-shadow: 0 0 5px #ddd;
}
#qrcode-container-arrow {
    height: 10px; width: 20px;
    margin-top: 5px;
    position: relative;
}
#qrcode-container-arrow::after{
    position: absolute;
    top:0px;left: 0px;
    content: '';
    height: 10px; width: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    z-index: 9999;
}
#qrcode-container-arrow::before {
    position: absolute;
    top:2px;left: 0px;
    content: '';
    height: 10px; width: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f3f3f3;
    z-index: 9999;
}
       /* 二维码样式 */
.qrcode-section {
    text-align: center;
    margin: 10px auto;
    max-width: 200px;
    padding: 10px;
    background: #fff;
    border-radius: 8px;
}

.qrcode-container {
    margin: 0 auto;
    background: #fff;
    border-radius: 4px;
}

.qrcode-image {
    width: 128px;
    height: 128px;
}
.qrcode-title {
    font-weight: bold;
}
/* 添加可复制元素的样式 */
.copyable {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copyable:hover {
    color: #3c7ee5;
    text-decoration: underline;
}

.copyable::after {
    content: "点击复制";
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copyable:hover::after {
    opacity: 1;
}
.copy-success {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 12px 24px;
        background: #f0f9eb;
        border: 1px solid #67c23a;
        border-radius: 4px;
        color: #67c23a;
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
        z-index: 9999;
        animation: fadeInOut 3s ease-in-out;
    }

    @keyframes fadeInOut {
        0% { opacity: 0; transform: translateY(-20px); }
        10% { opacity: 1; transform: translateY(0); }
        90% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(-20px); }
    }
    @media print {
    .info__actions,
    .info__favourites {
        display: none !important;
    }
}
/* ============= 主题色（可改） ============= */
:root{
  --ai-card-blue:   #f0f6ff; /* 淡蓝 */
  --ai-card-green:  #f5fff0; /* 淡绿 */
  --ai-card-orange: #fff6f0; /* 淡橙 */
  --ai-card-pink:   #fff0f6; /* 淡粉 */
  --ai-card-purple: #f7f2ff; /* 淡紫 */
  --ai-card-cyan:   #f0fbff; /* 淡青 */
}

/* ============= 容器与栅格 ============= */
.ai-panel{
  font-size:14px; line-height:1.8; background:#fff;
}

/* 栅格容器：默认单列，≥960px 两列 */
.ai-grid{
  display: grid;
  grid-template-columns: 1fr;       /* 先保证单列稳定渲染 */
  gap: 20px;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* 第一个模块跨整行（全屏） */
.ai-grid .ai-block:first-child{
  grid-column: 1 / -1;
}

/* 桌面端两列，去掉 auto-fit/minmax 的不确定性 */
@media (min-width: 960px){
  .ai-grid{
    grid-template-columns: 1fr 1fr; /* 明确两列 */
  }
}


/* ============= 卡片（扁平化多彩） ============= */
.ai-block{
  border:1px solid #eef0f3;
  border-radius:4px;
  padding:24px 26px;        /* 加大内容与外框的距离 */
  background:#fff;          /* 默认：白 */
  box-shadow:none;          /* 扁平化：去强阴影 */
  transition:transform .18s ease, box-shadow .18s ease;
}

/* 多彩背景（按顺序套色） */
.ai-grid .ai-block:nth-child(6n+1){ background:var(--ai-card-blue); }
.ai-grid .ai-block:nth-child(6n+2){ background:var(--ai-card-green); }
.ai-grid .ai-block:nth-child(6n+3){ background:var(--ai-card-orange); }
.ai-grid .ai-block:nth-child(6n+4){ background:var(--ai-card-pink); }
.ai-grid .ai-block:nth-child(6n+5){ background:var(--ai-card-purple); }
.ai-grid .ai-block:nth-child(6n){   background:var(--ai-card-cyan); }

/* 轻微悬停：扁平但有层次感 */
.ai-block:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}

/* ============= 大标题（卡片内标题可选） ============= */
.ai-block-title{
  text-align:left;          /* 扁平信息卡更常用左对齐 */
  font-size:20px;
  line-height:1.4;
  font-weight:700;
  color:#222;
  margin:0 0 10px 0;
  letter-spacing:.2px;
}

/* ============= AI 输出内容（小标题/段落/列表） ============= */
#aiAutoPanel .ai-section h4{
  font-size:20px; color:#111; font-weight:700;
  margin:10px 0 6px; line-height:1.45;
}
#aiAutoPanel .ai-section h5{
  font-size:18px; color:#222; font-weight:600;
  margin:6px 0 4px; line-height:1.4;
}
#aiAutoPanel .ai-section p{
  font-size:16px; color:#444;
  line-height:1.75; margin:8px 0 0;
}

/* 列表：扁平排版 + 清晰缩进 */
#aiAutoPanel .ai-section ul,
#aiAutoPanel .ai-section ol{
  margin:10px 0 6px; padding-left:1.4em;
  list-style-position:outside;
}
#aiAutoPanel .ai-section ul{ list-style-type:disc; }     /* 黑点 */
#aiAutoPanel .ai-section ol{ list-style-type:decimal; }  /* 序号 */
#aiAutoPanel .ai-section li{
  font-size:16px; line-height:1.9; margin:4px 0;
}
#aiAutoPanel .ai-section strong{ color:#111; }

/* ============= 有序列表数字加粗 ============= */
#aiAutoPanel .ai-section ol {
  counter-reset: li-counter; /* 重置计数器 */
}
#aiAutoPanel .ai-section ol li {
  position: relative;
  padding-left: 1.8em; /* 为加粗数字留出空间 */
}
#aiAutoPanel .ai-section ol li::before {
  content: counter(li-counter) ".";
  counter-increment: li-counter;
  position: absolute;
  left: 0;
  font-weight: 700; /* 数字加粗 */
  color: #111; /* 数字颜色加深 */
  min-width: 1.2em; /* 确保数字对齐 */
}

/* ============= li内容以句号结尾（排除第一块卡片中的li） ============= */
/* ============= li内容以句号结尾（排除第一块和第三块卡片中的li） ============= */
.ai-grid .ai-block:not(:first-child):not(:nth-child(3)) .ai-section li::after {
  content: "。"; /* 只在非第一块和非第三块卡片的li结尾添加句号 */
}
/* ============= 状态/脚注 ============= */
#aiAutoPanel .loading{
  color:#888; font-size:16px; text-align:center; padding:12px 0;
}
#aiAutoPanel .ai-footnote{
  color:#9aa0a6; font-size:13px; text-align:right; margin-top:12px; line-height:1.5;
}

/* ============= 可选：卡片头部副标题（英文小字） ============= */
.ai-subtitle{
  font-size:13px; color:#7a8599; margin-top:2px;
}

/* ============= 移动端微调 ============= */
@media (max-width: 480px){
  .ai-grid{ gap:12px; }
  .ai-block{ padding:18px 16px; }
  #aiAutoPanel .ai-section h4{ font-size:18px; }
  #aiAutoPanel .ai-section p, #aiAutoPanel .ai-section li{ font-size:15px; }
  #aiAutoPanel .ai-section ol li::before {
    min-width: 1em; /* 移动端调整 */
  }
}
#ai-insight {
  position: relative; /* 让伪元素定位依赖它 */
  z-index: 0; /* 确保文字内容在水印上方 */
}

#ai-insight::before {
  content: "PARROT AI®";
  position: absolute;
  top: 62%; /* 下移 */
  left: 75%; /* 靠右 */
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 5rem;
  font-weight: bold;
  color: rgba(60, 126, 229, 0.05); /* 品牌蓝 + 半透明 */
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
  .sg-badges {
        margin-left: 8px;
        color: #6b7280;    /* 灰色文字 */
        font-size: 12px;
        white-space: pre-wrap;
      }

/* 详情页二维码区域样式 */
.detail-qrcode-section {
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background: #FAFBFC;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#detail-page-qrcode {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border: none;
    border-radius: 4px;
    padding: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

#detail-page-qrcode canvas,
#detail-page-qrcode img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.detail-page-url-text {
    font-size: 12px;
    color: #333;
    line-height: 1.6;
    white-space: nowrap;
    word-break: keep-all;
}

.detail-page-url-text .url-label {
    color: #666;
    margin-right: 5px;
}

.detail-page-url-text .url-content {
    color: #333;
    word-break: keep-all;
    white-space: nowrap;
}

/* 打印时确保二维码和网址显示 */
@media print {
    .detail-qrcode-section {
        page-break-inside: avoid;
        border: none !important;
        background: #fff !important;
        box-shadow: none !important;
    }
    
    #detail-page-qrcode {
        border: none !important;
        background: #fff !important;
    }
      }