*{margin:0;padding:0}
body {
    margin: 0;
    font-size: 14px;
    color: #444;
    background: #FFFFFF;
}
a:link, a:visited, a:active {
    text-decoration: none;
}
a:hover{
    color:#b06cef;
}
.fr {
    float: right;
}
.fl{
    float:left;
}
.clear{clear:both;}
ul li {
    list-style-type: none;
}
.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.pointer{cursor:pointer;}
.tc{text-align:center;}
.flex{
    display: flex;
    align-content: center;
    justify-content: center;
}
.clearfix:after{
    content: '';
    display: table;
    clear: both;
}
.container{
    margin: 0 auto;
    max-width: 1350px;
    padding: 0 20px;
    position: relative;
}

/*header start*/
.header {
    display: flex;
    width: 100%;
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .6), transparent);
    z-index: 30000;
    align-items: center; /* Vertically center items */
    box-sizing: border-box; /* Include padding in width calculation */
}
.header a{
    color: #f9fafb;
}
.header.scrolled{
    background: #202233;
    box-shadow: 0 1px 2px -1px rgba(0, 0, 0, .1), 0 2px 3px rgba(0, 0, 0, .07), 0 1px 5px rgba(0, 0, 0, .06);
}
.header-box {
    display: flex;
    width: 100%;
    margin: 0 auto; /* Center the container */
    justify-content: space-between; /* Space out the left, center, right */
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    flex: 1; /* Take up available space */
    justify-content: flex-start; /* Align to left */
}

.header-center {
    display: flex;
    justify-content: center; /* Center the search */
    flex: 1; /* Take up available space */
}

.header-right {
    display: flex;
    align-items: center;
    flex: 1; /* Take up available space */
    justify-content: flex-end; /* Align to right */
    gap: 20px; /* Space between links */
}

.logo {
    width: 200px;
    height: 28px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.header a {
    margin-right: 15px; /* Space between nav links */
}

/* 搜索框容器 */
.search {
    display: flex;
    width: 330px;
    position: relative;
}

/* 搜索输入框 */
.search_keyword {
    flex-grow: 1;
    height: 36px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* 搜索输入框聚焦效果 */
.search_keyword:focus {
    border-color: #2b9828;
    box-shadow: 0 0 0 2px rgba(167, 139, 250,0.2);
}

/* 搜索输入框占位文字 */
.search_keyword::placeholder {
    color: #999;
    font-size: 14px;
}

/* 搜索按钮 */
.search_submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    outline: none;
}

/* 搜索按钮悬停效果 */
.search_submit:hover {
    color: #2b9828;
}

/* 搜索图标 */
.search_submit i.fa-search {
    font-size: 16px;
}

.header_banner {
    margin: 0 auto;
    max-width: 1920px;
    overflow: hidden;
    z-index: -1;
    opacity: 1;
    height: 172px;
}

.header_banner img {
    height: 172px;
    max-width: 1920px;
    width: 100%;
}
.header-right a:last-child{
    padding:5px 10px;
    border-radius:5px;
    background: #2b9828;
    transition: color .3s cubic-bezier(.4, 0, .2, 1), background-color .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), border-color .3s cubic-bezier(.4, 0, .2, 1);
}
/*header end*/

/*nav start*/
.nav {
    border-bottom: 1px solid #e5e5e5; /* 底部边框 */
    margin-bottom: 12px;
}
.nav ul.clearfix {
    list-style-type: none; /* 去除列表默认样式 */
    margin: 0;
    padding: 0;
    display: flex; /* 使用 flex 布局 */
}
.nav ul.clearfix li {
    padding-right: 35px;
}
.nav ul.clearfix li:last-child {
    margin-right: 0; /* 最后一个列表项去掉右边距 */
}
.nav ul.clearfix a {
    display: block;
    padding: 13.5px 0; /* 链接内边距 */
    color: #333; /* 链接文字颜色 */
    text-decoration: none; /* 去除下划线 */
    transition: color 0.3s ease; /* 颜色过渡效果 */
}
.nav ul.clearfix a:hover {
    color: #007bff; /* 鼠标悬停时链接文字颜色 */
}
.nav ul.clearfix li.active a, .nav ul.clearfix li:hover a{
    border-bottom: 3px solid #2b9828;
    color: #2b9828;
    font-weight: 700;
}
/* 最后一个li的循环放大动画 */
.nav li:last-child a {
    color: #2b9828;
    /* 绑定动画：动画名 时长 循环次数 速度曲线 */
    animation: scaleLoop 2s infinite ease-in-out;
}
.nav li:last-child:hover a {
     animation-play-state: paused; /* 暂停动画 */
    transform: scale(1); /* 可选：恢复到原始大小，避免停留在放大状态 */
}
/* 定义放大动画关键帧 */
@keyframes scaleLoop {
    0% {
        transform: scale(1); /* 初始大小（1倍） */
    }
    50% {
        transform: scale(1.1); /* 中间放大到1.2倍 */
        font-weight: bold;
    }
    100% {
        transform: scale(1); /* 结束回到原大小 */
    }
}
/*nav end*/

/*footer start*/
.footer{
    background-color: #1c5d1f;
    color: #fff;
    flex-wrap: wrap;
    height: 500px;
    justify-content: center;
    position: relative;
    width: 100%;
}
.footer *{
    color: #fff;
}
.footer-links{
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.footer-section{
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    min-height: 20px;
    padding: 10px;
    width: 200px;
}
.footer-section h3{
    font-weight: normal;
    font-size: 16px;
    -webkit-line-clamp: 1; 
    color: #fff;
    text-wrap: unset;
    word-break: break-word;
    word-wrap: break-word;
}
.footer-section ul {
    position: relative;
    z-index: 9;
    display: flex;
    flex-direction: column;
    margin-top: 12px;
}
.footer-section ul>* {
    margin: 4px 0;
}
.footer-copyright{
    display: flex;
    flex-direction: column;
}
.footer-copyright div {
    margin: 8px 0;
}
.footer .miao {
    top: 15%;
    position: absolute;
    right: 0;
    height: 325px;
}
/*footer end*/

/*returnTop start*/
.returnTop{
    position: fixed;
    right: .5%;
    bottom: 5%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #2b9828;
    color: white;
    border-radius: 5px;
    display: none;
    transition: color .3s cubic-bezier(.4, 0, .2, 1), background-color .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), border-color .3s cubic-bezier(.4, 0, .2, 1);
    transform: rotate(-90deg);
    text-align: center;
}
.returnTop i{
    font-size: 24px;
    color: #fff;
}
.returnTop:hover{
    background: none;
}
.returnTop:hover i{
    color: #2b9828;
}
/*returnTop end*/

/*推荐 start*/
.part2 {
    margin-top: 20px;
    border-radius: 6px;
    box-sizing: border-box;
}
.part2 .left {
    float: left;
    width: 547px;
    height: auto;
    border-radius: 6px;
    background: #F9F9F9;
    border: 1px solid #e5e5e5;
}
.part2 .left .img_wrap {
    width: 100%;
    height: 547px;
    overflow: hidden;
    border-radius: 6px;
}
.part2 .left .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 确保图片填充容器 */
    transition: transform 0.3s ease; /* 过渡效果 */
}
.part2 .left .bottom {
    position: relative;
    width: 100%;
    height: 97px;
}
.part2 .left .bottom .info {
    width: 100%;
    margin-left: 15px;
    margin-top: 20px;
    overflow: hidden;
}
.part2 .left .bottom .info span {
    display: block;
    width: 95%;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.part2 .left .bottom .info p {
    float: left;
    width: 40%;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    transition: font-size 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.part2 .bottom .load {
    float: right;
    border-radius: 5px;
    color: #FFFFFF;
    text-align: center;
    background: #2b9828;
    transition: color .3s cubic-bezier(.4, 0, .2, 1), background-color .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), border-color .3s cubic-bezier(.4, 0, .2, 1);
}
.part2 .left .bottom .load {
    font-size: 18px;
    width: 120px;
    height: 45px;
    margin-top: 10px;
    margin-right: 35px;
    line-height: 45px;
    display: block;
}

.part2 .right .item .bottom .load {
    height: 30px;
    margin-top: 5px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 30px;
    padding: 2px 15px;
}
.part2 .right .item {
    float: left;
    width: 245px;
    height: auto;
    margin-left: 20px;
    margin-bottom: 20px;
    background: #F9F9F9;
    border-radius: 6px;
    overflow: hidden;
    transition: background 0.3s ease;
    border: 1px solid #e5e5e5;
}
.part2 .right .item .img_wrap {
    width: 100%;
    height: 245px;
    overflow: hidden;
    border-radius: 6px;
}
.part2 .right .item .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease; /* 过渡动画 */
}
.part2 .right .item .bottom {
    position: relative;
    width: 100%;
    height: 70px;
}
.part2 .right .item .bottom .info {
    margin-left: 15px;
    margin-top: 6px;
}
.part2 .right .item .bottom .info span {
    display: block;
    width: 200px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.part2 .right .item .bottom .info p {
    float: left;
    width: 40%;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 400;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: font-size 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.part2 .right .item .item2 {
    position: relative;
}

.part2 .right .item .item2::after {
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.6)
}
.part2 .right .item .item2 .img_wrap {
    height: 232px;
    filter: blur(6px);
}
.part2 .right .item .item2 .game_info {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px 0;
    z-index: 2;
    color: #fff;
    box-sizing: border-box;
}
.part2 .right .item .item2 .game_info .title {
    font-size: 16px;
    font-weight: 400;
}
.part2 .right .item .item2 .game_info .tags {
    width: 100%;
    height: 20px;
    margin-top: 10px;
    margin-bottom: 16px;
}
.part2 .right .item .item2 .game_info .tags span:nth-of-type(1) {
    background: rgba(10,175,96,.2);
    color: #27D883;
}
.part2 .right .item .item2 .game_info p {
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.part2 .right .item .item2 .game_info i {
    float: left;
    width: 156px;
    font-size: 12px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.part2 .right .item .item2 .game_info .load {
    float: right;
    width: 68px;
    height: 30px;
    margin-top: -6px;
    background: #3451ff;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}
.part2 .left:hover,.part2 .right:hover .item{
    border-color: #2b9828;
}
.part2 .left:hover .bottom .info span,.part2 .left:hover .bottom .info p,.part2 .right:hover .bottom .info span,.part2 .right:hover .bottom .info p{
    color: #2b9828;
    transform: scale(1.05);
}
.part2 .left:hover .img_wrap img,.part2 .right:hover .img_wrap img{
    transform: scale(1.05); /* 放大 1.05 倍 */
}
/*推荐 end*/

/*floor start*/
.indexCenter{
    margin: 50px 0;
}
.indexCenterLeft {
    width: 75%;
}
.floor{
    margin-bottom: 30px;
}
.floor:last-child{
    margin-bottom: 0;
}
.floor .floorHead{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
.floor .floorItem{
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 16px;
}
.floor .floorItem:nth-child(4n){
    margin-right: 0;
}
.floor .floorItem .floorItemImg{
    position: relative;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.floor .floorItem .floorItemImg img{
    width: 100%;
    height: 100%;
    border-radius: 6px;
    transition: transform 0.3s ease;
}
.floor .floorItem .floorItemImg .floorItemPrice{
    position: absolute;
    bottom: 0px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transition: transform 0.3s ease;
}
.floor .floorItem .floorItemTit{
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 限制文本显示为2行 */
    overflow: hidden;
    transition: transform 0.3s ease;
}
.floor .floorItem:hover .floorItemImg{
    border-color: #2b9828;
}
.floor .floorItem:hover .floorItemTit{
    color: #2b9828;
    transform: scale(1.05);
}
.floor .floorItem:hover .floorItemImg .floorItemPrice{
    background: #2b9828;
}

.indexCenterRight {
    width: 23%;
}
.indexCenterRightHead{
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
.indexCenterRightItem{
    margin-bottom: 16px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}
.indexCenterRightItem *{
    transition: transform 0.3s ease;
}
.indexCenterRightItem .indexCenterRightItemImg{
    width: 45%;
}
.indexCenterRightItem .indexCenterRightItemImg img{
    width: 100%;
    height: 85px;
    border-radius: 6px;
}
.indexCenterRightItem .indexCenterRightItemInfo{
    margin-left: 2%;
}
.indexCenterRightItem .indexCenterRightItemInfo .indexCenterRightItemTitle{
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.indexCenterRightItem .indexCenterRightItemInfo .indexCenterRightItemPrice{
    margin-top: 15px;
}
.indexCenterRightItem:hover{
    border-color: #2b9828;
}
.indexCenterRightItem:hover .indexCenterRightItemInfo{
    color: #2b9828;
    transform: scale(1.05);
}
/*floor end*/

/*goods start*/
/*------goods-left-------start*/
.goods-left{
    width: 74.78%;
    padding-right: 2%;
    margin-bottom: 2%;
}
.back-links {
    font-size: 1.2em;
    padding: 0 0 15px 0;
    position: relative;
    margin-bottom: 15px;
    font-weight: normal;
}
.product-details{
    margin: 2% auto;
}
.goods_zoom {
    width: 48%;
    float: left;
    text-align: center;
    background: #fff;
    padding: 1% 0;
}
.goods_zoom .pic_show{
    margin: 0 auto !important;
    margin-bottom: 2% !important;
}
.goods_info{
    margin-left: 2%;
    width: 50%;
    float: right;
}
.goods_info ul li {
    display: block;
    color: #000;
    font-size: 1em;
    padding: 5px 0;
}
.goods_info ul li span:first-child,.goods_info .good_info_buy dl dt{
    font-size: 13px;
    color: #8B8B8B;
    line-height: 30px;
}
.goods_info ul li em{
    font-style: normal;
}
.goods_info ul li .price,.goods_info ul li .price span{
    font-size: 1.2em;
    color: #2b9828;
}
.goods_info .good_info_buy{
    margin: 2% 0;
}
.goods_info .good_info_buy dl{
    display: flex;
}
.goods_info .good_info_buy dl dd .input {
    display: inline;
    width: 60px;
    padding: 3px 5px;
    outline: none;
    margin-left: 5px;
    font-size: 16px;
    color: #444;
    border: none;
    text-align: center;
}
.goods_info .btn_submit_buy,.goods_info .btn_add_cart{
    width: 90%;
    margin: 3% auto;
    border-radius: 6px;
    font-size: 1.2em;
    display: block;
    padding: 3%;
    background: #2b9828;
    color: #FFF;
    text-decoration: none;
    outline: 0;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    text-align: center;
}
.goods_info .btn_add_cart{
    margin-top: 5%;
    background: #CBCBCB;
}
.area_box{
    display: none;
    position: absolute;
    font-size: .8rem;
    background: #fff;
    padding: 1%;
    width: 25%;
    margin-top: -20px;
}
.goods_info .area_box ul li{
    float: left;
    margin: 1% 2%;
    background: #ebebeb;
    padding: 2% 2%;
}
.goods_info .area_box ul li a{
    color: #23272a;
}
.product_desc{
    margin-top: 2%;
}
.resp-tabs-list li{
    font-size: 16px;
    display: inline-block;
    margin: 0;
    list-style: none;
    cursor: pointer;
    float: left;
    margin-right: 5px;
    border-radius: 2px 2px 0 0;
    margin-bottom: -1px !important;
    background: #CBCBCB;
    color: #585858;
    text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.6);
    padding: 12px 14px 14px 14px !important;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.resp-tab-active {
    border-bottom: none !important;
    background: #2b9828 !important;
    color: #fff !important;
    transition: color .3s cubic-bezier(.4, 0, .2, 1), background-color .3s cubic-bezier(.4, 0, .2, 1), opacity .3s cubic-bezier(.4, 0, .2, 1), border-color .3s cubic-bezier(.4, 0, .2, 1);
}
.resp-tabs-container {
    padding: 2%;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}
.resp-tabs-container ul:after{
    content: '';
    display: table;
    clear: both;
}
.resp-tabs-container ul li{
    float: left;
    width: 33.333%;
    margin-bottom: 2%;
    text-align: left;
    font-size: 12px;
    white-space: nowrap; /* 文本不换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
}
.resp-tabs-container img{
    max-width: 750px;
    margin-top: -4px;
}
/*------goods-left-------end*/

/*------goods-right-------start*/
.goods-right {
    width: 21.13%;
    padding-left: 2%;
    padding-bottom: 2%;
    margin-bottom: 2%;
}
.goods-right h3{
    font-size: 1.2em;
    padding: 10px;
    position: relative;
    font-weight: normal;
}
.popular-products li {
    background: #FFF;
    text-align: center;
    padding: 4%;
}
.popular-products li > h4{
    color: #23272a;
    font-size: 14px;
    font-weight: normal;
    margin-top: 2%;
    margin-bottom: 2%;
    white-space: nowrap; /* 让文本内容只在一行显示 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    width: 100%; /* 设置元素宽度，根据实际情况调整 */
}
.popular-products li .price-img{
    position: relative;
}
.popular-products li .price-img img{
    max-width: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}
.popular-products li .price-img p{
    position: absolute;
    bottom: 5px;
    left: 1px;
    width: 100%;
    text-align: center;
    font-size: 18px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    transition: transform 0.3s ease;
}
.goods-seller{
    margin: 2% 0;
    background: #fff;
    padding: 5%;
    text-align: center;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}
.goods-seller img{
    max-width: 100%;
    max-height: 90px;
}
.goods-seller p{
    font-size: 1.2em;
    margin: 2% 0;
}
.goods-seller ul li{
    text-align: left;
    margin-left: 5%;
    margin-bottom: 2%;
}
.goods-seller a{
    margin: 5% auto;
    font-size: 1.2em;
    display: block;
    padding: 3%;
    background: #2b9828;
    color: #FFF;
    text-decoration: none;
    border-radius: 6px;
}
.goods-seller:hover p{
    color: #e44f2b;
}
.goods-seller:hover a{
    background: #e44f2b;
}
.no_tip{
    margin-top: 16px;
    font-weight: 500;
    transition: color .3s cubic-bezier(.4, 0, .2, 1);
    text-align: center;
    font-size: 18px;
}
/*------goods-right-------end*/

/*goods end*/

/*simple_seller start*/
.settle-cont{
    width: 60%;
    height: auto;
    background-color: #fff;
    padding: 3%;
    margin: 2% auto;
}
.settle-cont h3 {
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 53px;
}
.settle-cont dl{
    height: 70px;
    display: flex;
}
.settle-cont dl dt{
    width: 200px;
    line-height: 40px;
    text-align: end;
    margin-right: 10px;
    color: #3c368c;
}
.settle-cont dl dd {
    width: 300px;
}
.settle-cont dl dd input,.settle-cont dl dd select{
    height: 40px;
    width: 100%;
    padding: 0 1%;
    border: 1px solid #e5e5e5;
}
.settle-cont dl dd select{
    width: 32.416%;
}
.settle-cont dl .input_submit{
    width: 300px;
    margin: 5% auto;
    font-size: 1.2em;
    display: block;
    padding: 3%;
    background: #2b9828;
    border-radius: 6px;
    border: none;
    color: #FFF;
    text-decoration: none;
}
.settle-cont dl dd .J_protocal{
    height: auto;
    width: auto;
    margin-top: 1%;
    margin-right: 1%;
}
.settle-cont p.go_login{
    text-align: center;
    margin: 2% 0 0 0;
}
.settle-cont .prompt{
   text-align: center;
    color: #e44f2b;
    font-size: 16px;
    margin-bottom: 5%;
}
/*simple_seller end*/

/*cart start*/
.cart_prompts { padding: 10px 20px; line-height: 2; border: 1px solid rgba(245, 197, 58, 0.3); background: rgba(245, 197, 58, 0.06); margin-bottom: 10px; }
.cart_prompts strong { color: #e44f2b; font-weight: bold; font-size: 14px; }
.cart_prompts ol { counter-reset: num; }
.cart_prompts ol li { color: #e44f2b; }
.cart_prompts ol li:before { content: counter(num) ". "; counter-increment: num; }

.cart_table h3, .cart_item_goods h3 { font-size: 14px; color: #222; margin-bottom: 10px; }
.cart_table h3 i, .cart_item_goods h3 i { margin-right: 10px; color: #e44f2b; }
.cart_table table, .cart_item_goods table { width: 100%; text-align: center; border: 1px solid #ccc; }
.cart_table table img, .cart_item_goods table img { display: block; width: 66px; height: 66px; padding: 3px; border: 1px solid #ddd; margin: 10px auto; }
.cart_table table td, .cart_table table th, .cart_item_goods table td, .cart_item_goods table th { border-bottom: 1px solid #ddd; }
.cart_table table td img, .cart_table table th img, .cart_item_goods table td img, .cart_item_goods table th img { display: inline-block; }
.cart_table table th, .cart_item_goods table th { border-left: 1px solid #ddd; height: 36px; font-size: 14px; background: #fff; }
.cart_table table th:first-child, .cart_item_goods table th:first-child { border-left: none; }
.cart_table table td:nth-child(3), .cart_item_goods table td:nth-child(3) { text-align: left; }
.cart_table table em, .cart_item_goods table em { font-weight: bold; color: #e44f2b; }
.cart_table table .stats, .cart_item_goods table .stats { padding: 10px; line-height: 2; text-align: right; }
.cart_table table .stats em, .cart_item_goods table .stats em { font-size: 16px; }
.cart_table table p, .cart_item_goods table p { padding-top: 4px; line-height: 1.6; }

.cart_btn { height: 50px; position: relative; margin-bottom: 50px; }
.cart_btn .clear_cart_btn { position: absolute; left: 0; top: 14px; cursor: pointer; background: #fff; position: relative; padding: 0 20px; background-image: -webkit-linear-gradient(0deg, #f0f0f0, #fff); background-image: linear-gradient(0deg, #f0f0f0, #fff); width: 100px; height: 32px; color: #555; line-height: 32px; font-size: 16px; cursor: pointer; border: 1px solid #ddd; }
.cart_btn .clear_cart_btn i { color: #999; }
.cart_btn .go_back_btn { border: 1px solid #ddd; background: #fff; position: absolute; right: 200px; top: 14px; font-size: 16px; cursor: pointer; background-image: -webkit-linear-gradient(0deg, #f0f0f0, #fff); background-image: linear-gradient(0deg, #f0f0f0, #fff); width: 120px; height: 32px; text-align: center; line-height: 32px; }
.cart_btn .go_back_btn i { color: #999; }
.cart_btn .gopay_btn { position: absolute; right: 20px; top: 10px; margin: 0; }

.cart_2, .cart_3 { width: 1198px; border: 1px solid #ddd; background: #fff; margin: 0 auto; }
.cart_2 .cart_header, .cart_3 .cart_header { background: #fff; border-top: 1px solid #fff; border-bottom: 1px solid #ddd; height: 32px; line-height: 32px; font-size: 14px; text-indent: 20px; font-weight: bold; }

.cart_item { margin: 20px; }
.cart_item h3 { border-top: 2px solid #e44f2b; padding: 10px; color: #FF8225; font-size: 15px; font-weight: bold; }

.cart_item_addr { padding: 10px 20px; border: 1px solid rgba(245, 197, 58, 0.3); background: #fff; }
.cart_item_addr h4 { border-bottom: 1px solid rgba(245, 197, 58, 0.3); font-size: 14px; padding: 8px 0; margin-bottom: 5px; }
.cart_item_addr .addr_list { line-height: 2; }
.cart_item_addr .addr_list span { color: #2d64b3; cursor: pointer; }
.cart_item_addr .addr_list span:hover { color: #FF8225; }

.cart_item_express table, .cart_item_pay table, .cart_item_msg table { width: 100%; }
.cart_item_express table, .cart_item_express table th, .cart_item_express table td, .cart_item_pay table, .cart_item_pay table th, .cart_item_pay table td, .cart_item_msg table, .cart_item_msg table th, .cart_item_msg table td { border: 1px solid #ddd; }
.cart_item_express table th, .cart_item_express table td, .cart_item_pay table th, .cart_item_pay table td, .cart_item_msg table th, .cart_item_msg table td { padding: 8px; line-height: 1.6; }
.cart_item_express table th, .cart_item_pay table th, .cart_item_msg table th { background: #fff; text-align: left; padding-left: 30px; }
.cart_item_express table tfoot td, .cart_item_pay table tfoot td, .cart_item_msg table tfoot td { background: #f0f0f0; }

.cart_item_count { padding: 20px; background: rgba(245, 197, 58, 0.06); }
.cart_item_count .count { font-size: 14px; }
.cart_item_count .count strong { color: #e44f2b; }
.cart_item_count table { margin-top: 20px; width: 100%; border-top: 1px solid #f5c53a; }
.cart_item_count table td { padding-top: 20px; }
.cart_item_count table .all_count { text-align: right; }
.cart_item_count table .all_count em { font-size: 16px; color: #e44f2b; }

.use_ticket_btn { cursor: pointer; margin-top: 10px; display: inline-block; font-size: 13px; color: #e44f2b; }
.use_ticket_btn i { color: #FF8225; }

.cart_topay_btn, .gobank_pay_btn { display: block; float: right; overflow: hidden; background: #FF8225; position: relative; margin: 20px 20px 20px 0; padding: 0 20px; min-width: 140px; height: 40px; color: #fff; line-height: 40px; cursor: pointer; }
.cart_topay_btn input, .gobank_pay_btn input { display: none; }
.cart_topay_btn span, .gobank_pay_btn span { display: block; font-size: 16px; text-align: center; }

.gobank_pay_btn { width: 120px; margin: 20px 0; float: left; }

.cart_3_con { width: 1000px; margin: 20px auto; }
.cart_3_con h3 { font-size: 14px; padding: 10px; }
.cart_3_con table { width: 100%; }
.cart_3_con table, .cart_3_con table th, .cart_3_con table td { border: 1px solid #ddd; }
.cart_3_con table th, .cart_3_con table td { padding: 8px; line-height: 1.6; }
.cart_3_con table th { background: #fff; }
.cart_3_con .show_more { display: inline-block; height: 40px; line-height: 40px; color: #0a4263; cursor: pointer; }
.cart_3_con .show_more:hover { color: #FF8225; }

.cart_3_status { padding: 10px; border-bottom: 1px solid #f5c53a; }
.cart_3_status strong { font-size: 14px; font-weight: bold; }
.cart_3_status a { float: right; }
.goods_resize { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }
.goods_resize .add, .goods_resize .reduce { display: block; width: 32px; height: 28px; background: #f0f0f0; cursor: pointer; outline: 1px solid #ddd; float: left; font-size: 14px; text-align: center; line-height: 28px; }
.goods_resize .add:hover, .goods_resize .reduce:hover { background: #e44f2b; color: #fff; outline: 1px solid #e44f2b; }
.goods_resize .input { display: block; float: left; width: 50px; height: 28px; border: none; outline: 1px solid #ddd; text-align: center; }

/*cart end*/

/*error start*/
.prompt_page { width: 600px; margin: 50px auto; padding: 50px; background: #fff; }
.prompt_page .ico { width: 140px; height: 140px; display: block; float: left; margin-right: 50px; }
.prompt_page.error { box-shadow: 0 0 5px #e44f2b; }
.prompt_page.error .ico { background: url("../image/cry.gif") center no-repeat; }
.prompt_page.error strong { color: #e44f2b; font-size: 16px; }
.prompt_page.success { box-shadow: 0 0 5px #379339; }
.prompt_page.success .ico { background: url("../image/right.gif") center no-repeat; }
.prompt_page.success strong { color: #379339; font-size: 16px; }
.prompt_page article { line-height: 2; display: table-cell; vertical-align: middle; height: 140px; }
/*error end*/

/*ucenter start*/
.center_content { background: #fff; }
.center_content .ucenter_content_bar .ucenter_bar { width: 240px; float: left; background-color: #fff; }
.center_content .ucenter_content_bar .ucenter_bar .ucenter_bar_wapper { padding: 28px 0 22px; line-height: 20px; }
.center_content .ucenter_content_bar .ucenter_bar .ucenter_bar_wapper a { font-size: 18px; display: block; color: #333; padding-left: 29px; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar { margin-bottom: 15px; background: #fff; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar h3 { font-size: 14px; text-align: center; margin: 9px 30px 11px; color: #888; font-weight: 400; position: relative; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar h3::after { content: ""; display: block; height: 1px; width: 45px; position: absolute; top: 7px; right: 0; background: #888; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar h3::before { content: ""; display: block; height: 1px; width: 45px; position: absolute; top: 7px; left: 0; background: #888; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li { padding: 10px 0; line-height: 20px; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li a { padding-left: 29px; display: block; color: #333; font-size: 14px; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li a:hover { color: #0a4263; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li:before { content: ""; position: absolute; display: block; width: 3px; height: 3px; background: #FF8225; left: 10px; top: 15px; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li:last-child { border: none; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li.current { background: #fff; border-bottom: none; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li.current a { color: #0a4263; }
.center_content .ucenter_content_bar .ucenter_bar .user_bar ul li.current:after { width: 7px; height: 7px; border-width: 0 1px 1px 0; border-style: solid; border-color: #FF8225; content: ""; display: block; position: absolute; right: 10px; top: 11px; -webkit-transform: rotate(-45deg); transform: rotate(-45deg); }
.center_content .ucenter_goods { background-color: #fff; padding-bottom: 20px; }
.center_content .ucenter_goods h3 { color: #3a3a3a; font-size: 22px; font-weight: 400; background: #fff; padding: 30px 0 15px 0; line-height: 1; border-bottom: 1px solid #dedede; }
.center_content .ucenter_goods ul { height: 704px; position: relative; }
.center_content .ucenter_goods ul li.floor_show { background: #f0f0f0; }
.center_content .ucenter_goods ul li { height: 356px; width: 300px; background: #FFF; float: left; position: relative; }
.center_content .ucenter_goods ul li a { display: inline-block; width: 100%; height: 100%; text-align: center; }
.center_content .ucenter_goods ul li a img { margin: 0 auto; display: block; width: 170px; height: 170px; padding-top: 29px; -webkit-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out; }
.center_content .ucenter_goods ul li a .pro_title { overflow: hidden; line-height: 30px; height: 30px; white-space: nowrap; text-overflow: ellipsis; margin: 10px auto 0px; width: 170px; font-size: 14px; font-weight: 400; color: #3a3a3a; text-align: center; }
.center_content .ucenter_goods ul li a .pro_price { text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin: 10px auto 0px; width: 170px; font-size: 14px; font-weight: 400; color: #0a4263; line-height: 24px; }
/*ucenter end*/

/*help_list start*/
.help-bottom-left{
    margin-bottom: 20px;
    margin-top: 20px;
    background: #e5e5e5;
    padding: 10px 25px;
    line-height: 35px;
}
.help-bottom-right{
    width: 85%;
    margin-top: 20px;
    padding-top: 10px;
}
.help_list{
    width: 100%;
    margin-top: 20px;
}
.help-bottom-left .categories li,.help_list li{
    display: block;
    font-size: 14px;
    padding: 5px 15px 5px;
    color: #23272a;
    border-bottom: 1px solid #D6D6D6;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.help_list li{
    padding: 15px 15px 15px;
}
.help-bottom-left .categories li:last-child,.help_list li:last-child{
    border:none;
}
.categories li i,.help_list li i{
    font-size: 12px;
    padding-right:10px;
    position: relative;
}
.categories li:hover,.help_list li:hover{
    color: #2b9828;
    border-color: #2b9828;
}
.categories li:hover i,.help_list li:hover i{
    font-size: 15px;
}
.help_content{
    background: #fff;
    min-height: 600px;
    line-height: 30px;
    margin: 2% 0;
}
.help_content ul {
    margin-bottom: 2%;
}
.help_content ul li{
    width: 45% !important;
    margin-right: 2%;
    padding: 15px 0 15px;
    border-bottom: 1px solid #D6D6D6;
    float: left;
    white-space: nowrap; /* 让文本内容只在一行显示 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    width: 200px; /* 设置元素宽度，根据实际情况调整 */
}
/*.help_content ul li:nth-last-child(-n + 2){*/
/*    border:none;*/
/*}*/
.help_content .help_content_tab{
    padding: 15px 0;
    border-bottom: 1px solid #2b9828;
    margin-bottom: 2%;
}
.help_content .help_content_tab span{
    border: 1px solid #2b9828;
    padding: 15px 15px 19px 15px;
    border-bottom: 3px solid #fff;
    background: #2b9828;
    color: #fff;
}
/*help_list end*/

/*article start*/
.feeds-list{
    align-content: flex-start;
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0 10px 10px;
    row-gap: 4px;
    width: 100%;
}
.feeds-item{
    align-content: flex-start;
    background-color: #fff;
    border: 0px solid transparent;
    border-radius: 20px;
    color: #1f1f1f;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: border .2s, box-shadow .3s;
    width: 265px;
    margin-bottom: 20px;
    z-index: 1;
}
.feeds-item:hover {
    border: 0px solid #fff;
    box-shadow: 0 4px 14px 0 rgba(167, 139, 250, .3);
    z-index: 2;
}
.feeds-image{
    border-radius: 16px;
    height: 265px;
    position: relative;
    width: 265px;
}
.feeds-image img{
    object-fit: cover;
    width: 265px;
    height: 265px;
    border-radius: 16px;
}
.feeds-content {
    align-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 8px 8px 10px;
}
.feeds-content p{
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #1f1f1f;
    display: -webkit-box;
    font-size: 16px;
    font-weight: 500;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.feeds-item:hover p{
    color: #2b9828;
}
.position{margin:10px 0;}
.article-title{
    font-size:18px;
}
.article_content ul:after{
    content: '';
    display: table;
    clear: both;
}
.article_content img{
    max-width: 750px;
}
/*article end*/