@media only screen and (max-width: 900px) {
    /* For mobile phones: */
    .shopbody{
        width: 95% !important;
    }
    .tips_right{
        display: none;
    }
    .center{
       width: 95% !important;
    }
    .tableformatbottom{
        height: 100px !important;
    }
    .tableformatbottomcenter{
        left: 50% !important;
        top:75% !important;
    }
}
.box_S,.type1003{
    color: #ffc547;
}
.box_A,.type1002{
    color: #bc4cd4;
}
.box_B,.type1001{
    color: #4271ea;
}
.box_C,.type1000{
    color: #ffffff;
}
select{
    width: 80px;
    cursor: pointer;
}
select option{
    text-align: center;
    cursor: pointer;
}
input[type=checkbox]{
    width:16px;
    height: 16px;
    cursor: pointer;
}
.moeny {
    background: url(http://pic.56uxi.com/img/money_icon.png);
    width: 54px;
    height: 48px;
    position: absolute;
    top: -8px;
    background-size: 54px,48px;
    left: -20px;
    z-index: 5;
}
.money_content {
    width: 150px;
    height: 30px;
    position: absolute;
    top: 3px;
    left: 5px;
    z-index: 2;
    font-size: 16px;
    text-align: center;
    color: #ffe17e;
    background: url(http://pic.56uxi.com/img/moeny_background.png);
    background-repeat: no-repeat;
}
.Market_backpack{
    width: 100%;
}
.Market_backpack_title{
    margin: 10px 0px;
    margin-left: 10px;
     font-size: 22px;
     font-weight: bold;
}
.Market_backpack_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.Market_backpack_content_img{
    width: 180px;
    /*height: 120px;*/
    margin: 0px 6px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size:16px;
    font-weight: bold;
    text-align: center;
}
.Market_backpack_content_img>img{
    width: 180px;
    height: 120px;
}

.transigodown{
    /*display: flex;*/
}
/*.transigodown div div:first-child{*/
/*    font-size: 22px;*/
/*    font-weight: bold;*/
/*}*/
/*.transigodown div>div:not(:first-child){*/
/*   */
/*}*/
.mypack,.temporarypack{
    width: 50%;
}
.mypack div,.temporarypack div {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: flex;
}
.mypack div span,.temporarypack div span{
    width: 50%;
    text-align: center;
}
.mypack input[type=button],.temporarypack input[type=button]{
    background-color: #ffffff;
    margin-left: 5px;
    border: none;
    outline: none;
    width: 40px;
    height: 20px;
    line-height: 20px;
    border-radius: 200px;
    cursor: pointer;
}
.tableformatbottomcenter{
    position: absolute;
    left: 60%;
    top: 50%;
    transform:translate(-50%,-50%);
}
.pagebox{
    padding: 5px;
    height: 10px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #ffffff;
    color:black;
    cursor:pointer;
}
.pageboxavtive{
    background-color: #ffe17e;
}
.searchtext{
    outline: none;
    width: 50%;
    height: 25px;
    padding-left: 10px;
}
#searchtextbutton{
    background-color: #ffffff;
    margin-left: 5px;
    border: none;
    outline: none;
    width: 80px;
    height: 24px;
    border-radius: 200px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
    float: none;
}
.tableformat_title{
    width: 100%;
    height: 40px;
    margin-top: 10px;
    margin-bottom:10px;
    display: flex;
    justify-content: center;
    align-items:center;
}
.tips_right{
    width: 250px;
    background: rgba(0,0,0,.78);
    height: 500px;
    position: absolute;
    right: -260px;
    top: 0;
    box-sizing: border-box;
    padding: 12px;
    overflow-y: scroll;
}

.tips_right p{
    line-height: 24px;
    font-size: 12px;
    text-align: center;
}
.tips_right::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}
.tips_right::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #b7b7b7;
}
.tips_right::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 10px;
    background-color: black;
    opacity: 0.75;
}


.marketbox_content{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.marketbox_content_item{
    position: relative;
    width: 180px;
    margin: 15px 10px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #1f1f1f;
    padding-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.2s ease-out forwards;
    animation-delay: var(--delay, 0s); /* 使用自定义属性 --delay，默认值为 0s */
}
.marketbox_content_item>button{
    margin-top: 4px;
    margin-left: 0px;
}
.marketbox_content_item>img{
    width: 180px;
    height: 120px;
}
.marketbox_content_item_text{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
}
.marketbox_content_item_text>div{
    width: 100%;
    text-align: center;
    margin: 5px 0px;
}

/* 定义 fadeInUp 动画 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px); /* 初始状态稍微向下偏移 */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* 回到原始位置 */
    }
}

.AllPaidButton {
    float: right;
    width: 80px;
    height: 25px;
    background-color: #ffffff;
    color: black;
    border-radius: 200px;
    text-align: center;
    margin: 0px 20px;
 }


.isSellingByPlayer {
    font-size: 12px;
    color: #fff;
    transform: translate(-22px, 2px);
    padding: 3px 5px;
    background-color: #e74c3c;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    width: 60px;
    height: 16px;
}

.showPlayerSold {
    position: absolute;
    left: -6%;
    top: -8%;
    width: 344px;
    height: auto;
    max-height: 330px;
    border: 2px solid #808080;
    background-color: rgba(0, 0, 0, 1.7);
    z-index: 9999;
    overflow: auto;
}



.showPlayerSold::-webkit-scrollbar {
    display: none;
}


.showPlayerSoldGood {
    width: 100%;
    height: 123px;
    border-bottom: 1px solid #808080;
}

.showPlayerSoldGoodImg {
    width: 184px;
    height: 123px;
    float: left;
    overflow: hidden;
}

.showPlayerSoldGoodImg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.PublishPurchaseInfoDiv {
    width: 1000px;
    height: 810px;
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: rgba(0,0,0,.7);
    border: 3px solid gray;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background-color:#161616;
    transform: translate(-50%,-50%);
    text-align: center;
    padding: 40px 24px 6px 24px;
    flex-wrap: wrap
}

.PublishPurchaseSearchDiv {
    display: flex;
    justify-content: space-evenly;
    flex: 1;
}

.PublishPurchaseEquipInfoDiv {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex: 7;
}