/* 全局重置与基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC",-apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,Arial,"Microsoft YaHei","Source Han Sans SC",sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #383838;
    line-height: 1.5;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: #383838;
    transition: color 0.3s ease;
}

a:hover {
    color: #c00;
}

ul {
    list-style: none;
}

/* 核心优化：内容宽度固定900px，自适应居中 */
.container {
    width: 100%;
    max-width: 1000px; /* 固定内容宽度900px */
    margin: 0 auto;
    overflow: hidden;
}

/* 顶部导航栏 */
.top-nav {
    background-color: #222;
    color: #ccc;
    padding: 8px 0;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 999;
    font-size: 15px;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-nav-left {
    display: flex;
    gap: 20px;
}

.top-nav-right {
    display: flex;
    gap: 20px;
}

.top-nav a {
    color: #ccc;
}

.top-nav a:hover {
    color: #fff;
}

/* 主导航栏 */
.main-nav {
    background-color: #fff;
    border-bottom: 2px solid #c00;
    padding: 12px 0;
    position: sticky;
    top: 38px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #c00;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    font-size: 18px;
    font-weight: bold;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-box input {
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    outline: none;
    font-size: 14px;
    width: 180px;
}

.search-box button {
    padding: 6px 12px;
    background-color: #c00;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-box button:hover {
    background-color: #a00;
}

/* 轮播图区域 */
.carousel {
    width: 100%;
    height: 350px; /* 适配900px宽度，调整轮播图高度 */
    position: relative;
    overflow: hidden;
    margin: 15px 0;
    border-radius: 5px;
}

.carousel-inner {
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    width: 20%;
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.carousel-prev {
    left: 25%;
}

.carousel-next {
    right: 25%;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator-dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

/* 核心新增：轮播图下左右分栏总容器（左750px/右150px） */
.main-content {
    display: flex;
    gap: 0; /* 左右栏无缝衔接，总宽度匹配900px容器 */
    margin: 20px 0 30px;
}

/* 左侧内容区（750px） */
.content-left {
    width: 750px;
    display: flex;
    flex-direction: column;
    gap: 25px; /* 左侧各模块间距 */
}

/* 左侧模块1：焦点资讯（大图+小图组合） */
.focus-news {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.module-title {
    font-size: 18px;
    font-weight: bold;
    color: #c00;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.module-title::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background-color: #c00;
    margin-right: 8px;
}

.focus-wrap {
    display: flex;
    gap: 15px;
}

.focus-big {
    width: 450px;
}

.focus-big-img {
    width: 100%;
    height: 250px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.focus-big-img img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.focus-big:hover img {
    transform: scale(1.03);
}

.focus-big-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.focus-big-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    text-indent: 20px;
    overflow: hidden;
    height: 40px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

.focus-small-list {
    width: 270px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.focus-small-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.focus-small-img {
    width: 80px;
    height: 55px;
    border-radius: 3px;
    overflow: hidden;
}

.focus-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.focus-small-title {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: normal;
    width: 200px;
    line-height: 30px;
}

/* 左侧模块2：图文推荐资讯（双列布局） */
.img-text-news {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.img-text-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.img-text-card {
    display: flex;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.img-text-card:last-child {
    border-bottom: none;
}

.img-text-card-img {
    width: 120px;
    height: 80px;
    border-radius: 3px;
    overflow: hidden;
}

.img-text-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-text-card:hover img {
    transform: scale(1.03);
}

.img-text-card-content {
    flex: 1;
}

.img-text-card-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.img-text-card-meta {
    font-size: 12px;
    color: #999;
}

/* 左侧模块3：纯文字推荐资讯 */
.text-only-news {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.text-only-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.text-only-item {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    align-items: center;
}

.text-only-item:last-child {
    border-bottom: none;
}

.text-only-tag {
    width: 36px;
    height: 18px;
    background-color: #c00;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border-radius: 2px;
    margin-right: 10px;
}

.text-only-title {
    font-size: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.text-only-meta {
    font-size: 12px;
    color: #999;
    width: 80px;
    text-align: right;
}

/* 右侧内容区（150px） */
.content-right {
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* 右侧榜单模块间距 */
    margin-left: 20px;
}

/* 右侧通用榜单卡片样式 */
.rank-card {
    background-color: #fff;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rank-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #c00;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.rank-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rank-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 榜单排名数字样式 */
.rank-num {
    width: 18px;
    height: 18px;
    background-color: #eee;
    color: #666;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    border-radius: 2px;
}

.rank-num.top1 {
    background-color: #f00;
    color: #fff;
}

.rank-num.top2 {
    background-color: #f60;
    color: #fff;
}

.rank-num.top3 {
    background-color: #fc0;
    color: #fff;
}

.rank-title {
    font-size: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 25px;
    font-weight: normal;
}

    .tool-card {
    background-color: #fff;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tool-card-title {
    font-size: 16px;
    font-weight: bold;
    color: #c00;
    margin-bottom: 12px;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.tool-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 8px; /* Logo与标题间距 */
    padding: 5px 0;
}

.tool-logo {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0; /* 防止Logo被压缩 */
}

.tool-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tool-title {
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: normal;
}

/* 资讯推荐区域（保留优化版） */
.news-recommend {
    background-color: #fff;
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    color: #c00;
    padding: 0 15px 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0 15px;
}

.news-card {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.news-card-img {
    width: 100%;
    height: 120px; /* 适配900px宽度，缩小卡片图片高度 */
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 12px;
}

.news-card-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

/* 底部信息 */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 30px 0;
    margin-top: 30px;
}

.footer .container {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 14px;
}

/* 自适应媒体查询 - 平板设备（768px-899px） */
@media (max-width: 899px) and (min-width: 768px) {
    .container {
        max-width: 750px;
    }
    .main-content {
        flex-direction: column;
    }
    .content-left, .content-right {
        width: 100%;
    }
    .content-right {
        flex-direction: row;
        justify-content: space-around;
    }
    .rank-card, .tool-card {
        width: 220px;
    }
    .focus-wrap {
        flex-direction: column;
    }
    .focus-big, .focus-small-list {
        width: 100%;
    }
    .news-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 自适应媒体查询 - 手机设备（小于768px） */
@media (max-width: 767px) {
    .top-nav {
        display: none;
    }
    .main-nav .container {
        flex-direction: column;
        gap: 10px;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 10px 0;
    }
    .carousel {
        height: 220px;
    }
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    .container {
        max-width: 100%;
    }
    .main-content {
        flex-direction: column;
    }
    .content-left, .content-right {
        width: 100%;
    }
    .focus-wrap {
        flex-direction: column;
    }
    .focus-big, .focus-small-list {
        width: 100%;
    }
    .img-text-list {
        grid-template-columns: 1fr;
    }
    .news-list {
        grid-template-columns: 1fr;
    }
    .content-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: auto;
    }
    .rank-card,.tool-card{
        width: 90%;
        margin-bottom: 15px;
        margin-top: 15px;
    }
}


#amz-footer {
    margin-top: auto
}

#amz-footer .amz123-collection {
    height: 60px;
    padding: 11px 0 12px;
    background: linear-gradient(90deg,#496ff9 0%,#3f69fd 100%)
}

#amz-footer .amz123-collection-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 18px;
    height: 37px;
    background: #fff;
    border-radius: 8px;
    color: #3b82f6;
    font-size: 14px;
    font-weight: 600;
    margin: 0 12px
}

#amz-footer .amz123-collection-font {
    font-size: 20px
}

#amz-footer .amz123-collection__wrapper {
    height: 37px;
    margin: 0 auto;
    padding: 0 10px 0 15px;
    display: flex;
    justify-content: space-between
}

#amz-footer .amz123-collection__right {
    display: flex;
    align-items: center;
    color: #fff
}

#amz-footer .amz123-collection__text {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400
}

#amz-footer .amz123-collection__img {
    display: flex;
    position: relative;
    cursor: pointer;
    margin-left: 12px
}

#amz-footer .amz123-collection__img img {
    width: 32px;
    height: 32px;
    position: relative
}

#amz-footer .amz123-collection__img .wechat-dialog {
    display: none;
    left: calc(50% + 10px);
    top: -10px;
    transform: translate(-50%,-100%);
    position: absolute;
    width: 160px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px #2a61f11a;
    padding: 10px;
    box-sizing: border-box
}

#amz-footer .amz123-collection__img .wechat-dialog img {
    display: block;
    width: 140px;
    height: 140px
}

#amz-footer .amz123-collection__img .wechat-dialog .text {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #242528
}

#amz-footer .amz123-collection__img .wechat-dialog:after {
    content: "";
    position: absolute;
    width: 160px;
    height: 20px;
    bottom: -20px;
    left: 0px
}

#amz-footer .amz123-collection__img:hover .wechat-dialog {
    display: block
}

@media (min-width: 1200px) {
    #amz-footer .amz123-collection .amz123-collection__wrapper {
        width:92%
    }
}

@media (min-width: 1600px) {
    #amz-footer .amz123-collection .amz123-collection__wrapper {
        width:1600px
    }
}

@media (max-width: 900px) {
    #amz-footer .amz123-collection {
        display:none
    }
}

#amz-footer .amz123-footer .amz-footer-wrapper {
    background: #26282c;
    --amz-second-link-size: 14px;--amz-second-link-color: #adb5bd;--amz-second-link-line-height: 24px;--amz-third-link-line-height: 20px}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 10px 12px 15px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container {
    display: flex;
    color: #fff
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz123-intro .amz-intro-title {
    font-size: 23px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 24px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz123-intro .amz-site-text {
    white-space: pre-line;
    width: 432px;
    font-weight: 400;
    font-size: var(--amz-second-link-size);
    color: var(--amz-second-link-color);
    line-height: var(--amz-second-link-line-height)
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link {
    margin: 0 auto 12px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link .amz-site-title {
    font-size: 22px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 22px;
    -webkit-font-smoothing: antialiased;
    margin-top: 24px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link .amz-site-group {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 12px;
    column-gap: 42px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link .amz-site-group a {
    font-size: var(--amz-second-link-size);
    color: var(--amz-second-link-color);
    line-height: var(--amz-third-link-line-height)
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link .amz-site-group a:hover {
    color: #fff
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-site-content-link .vn-site-group {
    grid-template-columns: repeat(1,1fr)
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-contact {
    margin-top: 72px;
    display: flex;
    position: relative
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-contact .amz-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-right: 32px
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-contact .amz-contact-item:last-child {
    margin-right: 0
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-contact .amz-contact-item>div {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #fff
}

#amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz-contact .amz-contact-item>img {
    width: 96px;
    height: 96px;
    margin-bottom: 8px
}

#amz-footer .amz123-footer .amz-footer-links-group {
    background-color: #242528;
    margin-top: -2px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic {
    padding: 14px 12px 12px 15px;
    margin: 0 auto;
    background-color: #242528
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic>span {
    cursor: pointer;
    display: inline-block;
    border: 1px solid #adb5bd;
    border-radius: 20px;
    padding: 3px 10px;
    margin-right: 12px;
    color: #adb5bd;
    font-size: 12px;
    line-height: 20px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic>span.active {
    color: #fff;
    border-color: #fff
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul {
    list-style: none;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 10px 0 12px;
    padding: 0;
    color: #adb5bd;
    font-size: 12px;
    line-height: 20px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul.active {
    display: flex
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul li {
    display: flex;
    align-items: center
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul li img {
    width: 12px;
    height: 12px;
    margin-right: 8px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul li .inline-divider {
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #adb5bd;
    margin-left: 8px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic ul li a:hover {
    color: #fff
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic .amz-footer-divider {
    background: #4f5358;
    height: 1px
}

#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic .amz-copyright {
    padding-top: 10px;
    text-align: center;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    background: #242528;
    color: #adb5bd
}

@media (min-width: 1200px) {
    #amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common,#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic {
        width:92%
    }
}

@media (min-width: 1600px) {
    #amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common,#amz-footer .amz123-footer .amz-footer-links-group .amz-site-and-topic {
        width:1600px
    }

    #amz-footer .amz123-footer .amz-footer-wrapper .amz-footer-common .amz-footer-container .amz123-intro .amz-site-text {
        width: 452px
    }
}
@media (min-width: 992px) {
    .amz-mobile-footer {
        display:none!important
    }
}
#amz-footer .amz-mobile-footer {
    width: 100%;
    padding: 10px 30px 12px;
    background: #26282c
}

#amz-footer .amz-mobile-footer .amz-site-content-link-mobile {
    display: flex;
    height: 16px
}

#amz-footer .amz-mobile-footer .amz-site-content-link-mobile a {
    color: #adb5bd;
    font-size: 12px
}

#amz-footer .amz-mobile-footer .amz-footer-divider-mobile {
    margin: 10px 0 8px;
    background: #4f5358;
    height: 1px
}

#amz-footer .amz-mobile-footer section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    color: #adb5bd;
    opacity: .75
}

#amz-footer .amz-mobile-footer section .inline-divider-mobile {
    display: none;
    width: 1px;
    height: 10px;
    background: #adb5bd;
    margin-right: 8px
}

#amz-footer .amz-mobile-footer section .footer-link-group {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    font-size: 12px;
    min-width: max-content
}

#amz-footer .amz-mobile-footer section .footer-link-group img {
    margin-right: 6px;
    width: 12px;
    height: 12px
}

#amz-footer .amz-mobile-footer section .footer-link-group span,#amz-footer .amz-mobile-footer section .footer-link-group a {
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
    display: inline-block
}

@media (max-width: 741px) {
    #amz-footer .amz-mobile-footer .footer-link-group:first-child {
        display:flex
    }

    #amz-footer .amz-mobile-footer section .inline-divider-mobile {
        display: inline-block
    }
}

@media (max-width: 540px) {
    #amz-footer .amz-mobile-footer {
        padding:14px 16px
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile {
        flex-wrap: wrap;
        height: auto
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile>a:not(:nth-child(4n)) {
        margin-right: calc((100vw - 192px)/4)
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile>a:not(:last-child) {
        margin-bottom: 12px
    }
}

#amz-aside-bar {
    z-index: 555;
    position: fixed;
    right: 0;
    top: 50%;
    width: 56px;
    background: #ffffff;
    box-shadow: 0 2px 16px #3f40500f;
    border-radius: 6px 0 0 6px;
    display: flex;
    flex-direction: column;
    align-items: center
}

#amz-aside-bar>section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 54px;
    color: #3d3d3d;
    flex-direction: column
}

#amz-aside-bar>section:hover .amz-aside-bar-title {
    color: #477eff
}

#amz-aside-bar>section:hover .img-box img,#amz-aside-bar>section:hover .amz-aside-bar_scroll-svg svg {
    transform: translate(-60px);
    filter: drop-shadow(#477eff 60px 0)
}

#amz-aside-bar>section:after {
    content: "";
    width: 46px;
    height: 1px;
    position: absolute;
    bottom: 0px;
    background: #ebebeb
}

#amz-aside-bar>section:last-of-type:after {
    width: 0px;
    height: 0px
}

#amz-aside-bar>section:nth-last-of-type(2):after {
    width: 0px;
    height: 0px
}

#amz-aside-bar .have-after-line:after {
    width: 46px!important;
    height: 1px!important
}

#amz-aside-bar .img-box {
    width: 24px;
    height: 24px;
    overflow: hidden;
    display: flex
}

#amz-aside-bar .img-box img,#amz-aside-bar .img-box svg {
    width: 100%;
    height: 100%;
    object-fit: contain
}

#amz-aside-bar .amz-aside-bar_scroll-svg {
    height: 24px;
    overflow: hidden
}

#amz-aside-bar .amz-aside-bar_contact {
    cursor: pointer
}

#amz-aside-bar .amz-aside-bar_contact a {
    display: flex;
    flex-direction: column;
    align-items: center
}

.amz123-header #amz-aside-bar .amz-aside-bar_contact:hover a {
    z-index: 2;
    opacity: 0
}

#amz-aside-bar .amz-aside-bar-title {
    color: #495057;
    font-size: 11px;
    line-height: 11px;
    white-space: nowrap;
    margin-top: 5px;
    flex-shrink: 0
}

#amz-aside-bar .amz-aside-bar_msg_first:hover:after {
    border-radius: 4px 0 0
}

#amz-aside-bar .amz-aside-bar_msg {
    cursor: pointer
}

#amz-aside-bar .amz-aside-bar_msg:hover:before {
    content: "";
    position: absolute;
    right: 100%;
    height: 100px;
    width: 10px;
    background: transparent
}

#amz-aside-bar .amz-aside-bar_msg:hover .amz-aside-bar_msg_box,#amz-aside-bar .amz-aside-bar_msg:hover .amz-aside-bar_new-ask,#amz-aside-bar .amz-aside-bar_msg:hover .amz-aside-bar_new-consult {
    display: flex;
    animation: showAsideBoxMsg .2s ease-in-out
}

#amz-aside-bar .amz-aside-bar_more {
    cursor: pointer
}

#amz-aside-bar .amz-aside-bar_more.more_rounded:after {
    border-bottom-left-radius: 4px
}

#amz-aside-bar .amz-aside-bar_more:hover:before {
    content: "";
    position: absolute;
    right: 100%;
    height: 100px;
    width: 10px;
    background: transparent
}

#amz-aside-bar .amz-aside-bar_more:hover .amz-aside-bar_more-box {
    display: block;
    animation: showAsideBoxMore .3s ease-in-out
}

#amz-aside-bar .amz-aside-bar_scroll {
    padding: 0 10px;
    max-height: 0px;
    overflow: hidden;
    cursor: pointer;
    width: 56px;
    border-bottom-left-radius: 6px;
    transition: all .5s
}

#amz-aside-bar .amz-show-scroll {
    transition: all .5s;
    max-height: 54px
}

#amz-aside-bar .amz-aside-bar_msg_box {
    display: none;
    background: #ebf0ff;
    overflow: hidden;
    border-radius: 8px;
    background: #3265f5;
    width: 253px;
    padding: 1px;
    grid-template-columns: 84px auto;
    align-items: center;
    position: absolute;
    right: calc(100% + 4px);
    box-shadow: #11111a0d 0 4px 16px,#11111a0d 0 8px 32px
}

#amz-aside-bar .amz-aside-bar_msg_box img {
    width: 78px;
    height: 78px;
    border-radius: 4px;
    margin-right: 6px
}

#amz-aside-bar .amz-aside-bar_msg_box h5,#amz-aside-bar .amz-aside-bar_msg_box p {
    padding: 0;
    margin: 0
}

#amz-aside-bar .amz-aside-bar_msg_box h5 {
    font-size: 15px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    line-height: 18px;
    color: #3d3d3d;
    margin-bottom: 4px
}

#amz-aside-bar .amz-aside-bar_msg_box p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #949ba4
}

#amz-aside-bar .amz-aside-bar_msg_box-content {
    display: flex;
    width: 100%;
    background-color: #fff;
    padding: 8px 20px 8px 6px;
    border-radius: 8px;
    position: relative
}

#amz-aside-bar .amz-aside-bar_msg_box-content p {
    color: #495057
}

#amz-aside-bar .amz-aside-bar_msg_box-content-close {
    position: absolute;
    width: 12px;
    height: 12px;
    right: 7px;
    top: 7px
}

#amz-aside-bar .amz-aside-bar_msg_container {
    border-radius: 8px;
    padding: 8px;
    background: #f3f8fe;
    width: 100%
}

#amz-aside-bar .amz-aside-bar_new-consult {
    display: none;
    position: absolute;
    overflow: hidden;
    right: calc(100% + 4px);
    top: -100px;
    background: #fff;
    width: 328px;
    height: 247px;
    border-radius: 8px;
    
    flex-direction: column;
    box-shadow: 0 2px 16px #3f40500f
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top {
    width: 100%;
    height: 160px;
    background-color: #477eff;
    border-radius: 8px 8px 0 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 16px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top .consult-top-left {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background-color: #fff;
    padding: 8px;
    margin-left: 12px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top .consult-top-left img {
    height: 104px;
    width: 104px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top .consult-top-right {
    display: flex;
    flex-direction: column;
    max-width: 170px;
    gap: 6px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top .consult-top-right .consult-right-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 22.61px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-top .consult-top-right .consult-right-tips {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-bottom {
    width: 100%;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
    padding: 0 22px
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-bottom .consult-bottom-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    margin-top: 18px;
    color: #3d3d3d
}

#amz-aside-bar .amz-aside-bar_new-consult .new-consult-bottom .consult-bottom-tips {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    color: #495057
}

#amz-aside-bar .amz-aside-bar_new-ask {
    display: none;
    position: absolute;
    overflow: hidden;
    right: calc(100% + 4px);
    top: -100px;
    width: 222px;
    height: 216px;
    background: #fff;
    border: 1px solid #3265f5;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    font-family: Microsoft YaHei
}

#amz-aside-bar .amz-aside-bar_new-ask .new-ask-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 21.28px;
    text-align: left;
    margin-top: 18px;
    -webkit-font-smoothing: antialiased
}

#amz-aside-bar .amz-aside-bar_new-ask .new-ask-img {
    width: 100px;
    height: 100px;
    margin-top: 16px
}

#amz-aside-bar .amz-aside-bar_new-ask .new-ask-section {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    margin-top: 17px
}

#amz-aside-bar .amz-aside-bar_more-box {
    display: none;
    position: absolute;
    overflow: hidden;
    right: calc(100% + 4px);
    top: -50px;
    width: 253px;
    background: #fff;
    border-radius: 8px;
    box-shadow: #11111a0d 0 4px 16px,#11111a0d 0 8px 32px
}

#amz-aside-bar .amz-aside-bar_more-box section.amz-aside-bar_more-tabs {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: stretch
}

#amz-aside-bar .amz-aside-bar_more-box section.amz-aside-bar_more-tabs span {
    flex-grow: 1;
    text-align: center;
    font-weight: 400;
    font-size: 13px;
    line-height: 17px;
    color: #495057;
    position: relative;
    background: #f9f9f9;
    line-height: 41px;
    cursor: pointer
}

#amz-aside-bar .amz-aside-bar_more-box section.amz-aside-bar_more-tabs span.active {
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    z-index: 1;
    text-decoration: underline;
    text-decoration-color: #00d085;
    text-decoration-thickness: 4px;
    text-underline-offset: -1px
}

#amz-aside-bar .amz-aside-bar_more-box .amz-aside-bar_more-content {
    display: none;
    grid-template-columns: 78px auto;
    padding: 12px 6px;
    align-items: center
}

#amz-aside-bar .amz-aside-bar_more-box .amz-aside-bar_more-content.active {
    display: grid
}

#amz-aside-bar .amz-aside-bar_more-box .amz-aside-bar_more-content img {
    width: 78px;
    height: 78px;
    border-radius: 4px
}

#amz-aside-bar .amz-aside-bar_more-box .amz-aside-bar_more-content p {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: #495057;
    opacity: .8;
    margin: 0;
    padding: 0 0 0 2px
}


@media (max-width: 1500px) {
    #amz-aside-bar {
        top:40%
    }
}

@media (max-width: 991px) {
    .amz123-footer,.amz123-header {
        display:none!important
    }

    #amz-header {
        padding: 15px 20px
    }

    #amz-aside-bar {
        display: none
    }
}


#amz-footer .amz-mobile-footer {
    width: 100%;
    padding: 10px 30px 12px;
    background: #26282c
}

#amz-footer .amz-mobile-footer .amz-site-content-link-mobile {
    display: flex;
    height: 16px
}

#amz-footer .amz-mobile-footer .amz-site-content-link-mobile a {
    color: #adb5bd;
    font-size: 12px
}

#amz-footer .amz-mobile-footer .amz-footer-divider-mobile {
    margin: 10px 0 8px;
    background: #4f5358;
    height: 1px
}

#amz-footer .amz-mobile-footer section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    color: #adb5bd;
    opacity: .75
}

#amz-footer .amz-mobile-footer section .inline-divider-mobile {
    display: none;
    width: 1px;
    height: 10px;
    background: #adb5bd;
    margin-right: 8px
}

#amz-footer .amz-mobile-footer section .footer-link-group {
    display: inline-flex;
    align-items: center;
    margin-right: 8px;
    font-size: 12px;
    min-width: max-content
}

#amz-footer .amz-mobile-footer section .footer-link-group img {
    margin-right: 6px;
    width: 12px;
    height: 12px
}

#amz-footer .amz-mobile-footer section .footer-link-group span,#amz-footer .amz-mobile-footer section .footer-link-group a {
    max-width: calc(100vw - 32px);
    overflow-wrap: break-word;
    display: inline-block
}

@media (max-width: 741px) {
    #amz-footer .amz-mobile-footer .footer-link-group:first-child {
        display:flex
    }

    #amz-footer .amz-mobile-footer section .inline-divider-mobile {
        display: inline-block
    }
}

@media (max-width: 540px) {
    #amz-footer .amz-mobile-footer {
        padding:14px 16px
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile {
        flex-wrap: wrap;
        height: auto
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile>a:not(:nth-child(4n)) {
        margin-right: calc((100vw - 192px)/4)
    }

    #amz-footer .amz-mobile-footer .amz-site-content-link-mobile>a:not(:last-child) {
        margin-bottom: 12px
    }
}