/*————————————————————————公共样式————————————————————————*/
.text-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.container .content {
    background-color: #fff;
    margin: 25px auto;
    box-sizing: border-box;
    padding: 10px 15px;
    border-radius: 10px;
}

.container .content .piece .consultation {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container .content .piece .consultation .btn {
    width: 100px;
    text-align: center;
    padding: 5px 10px;
    color: #fff;
    background-color: #00A9F4;
    margin-bottom: 11px;
    border-radius: 6px;
}

.container .content .piece .consultation .btn a {
    color: #fff;
}

.container .content .piece {
    display: flex;
    flex-direction: column;
    position: relative;
}

.container .content .piece .title {
    font-weight: 500;
    margin-bottom: 15px;
}

.container .content .piece .table {
    border: 1px solid #eee;
    border-radius: 6px;
    margin-bottom: 15px;
    box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}

.container .content .piece .table .item {
    border-bottom: 1px solid #eee;
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.container .content .piece .table .item:last-child {
    border: none;
}

.container .content .piece .table .item:hover {
    background-color: #eceaea;
}

.container .content .piece .table .item p {
    width: 260px;
}

.container .content .piece .table .item p:last-child {
    text-align: right;
}

.container .content .piece .table .item p a {
    padding: 5px 15px;
    color: #fff;
    background-color: #00A9F4;
    text-decoration: none;
    border-radius: 5px;
}

.other {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    grid-auto-rows: 180px;
    gap: 20px;
}

.other .item {
    color: black;
    border: 1px solid #EBEBEB;
    padding: 8px;
    margin-bottom: 15px;
    border-radius: 8px;
    position: relative;
}

.other .item:hover {
    background-color: #f5f3f3;
}

.other .item img {
    width: 100%;
    height: 110px;
    transition: all .5s ease;
    border-radius: 8px;
}

.other .item p {
    text-align: center;
    position: absolute;
    bottom: 17px;
    font-size: 15px;
}

.icon {
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 9;
    border-radius: 10px;
    overflow: hidden;
}

.icon img {
    width: 100%;
    height: 100%;
}

.icon p {
    text-align: center;
    margin-top: 1px;
}


.sales {
    width: 300px;
    height: 300px;
    margin: auto;
}

.q_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    grid-auto-rows: 170px;
    gap: 20px;
    margin-bottom: 15px;
}

.q_list .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 6px;
}

.q_list .item img {
    width: 150px;
    height: 150px;
    padding: 15px 15px;
}

.q_list .item p {
    margin-top: -10px;
}

.serveData {
    margin: 25px auto;
    padding: 10px 15px;
    border-radius: 10px;
}

.toast {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0%;
    width: 100%;
    height: 100%;
    opacity: 0; /* 初始透明度为0，用于淡入效果 */  
    transition: opacity 0.5s ease; /* 透明度过渡效果 */  
    pointer-events: none; /* 防止点击 */ 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
}

.toast .toastContent{
    padding: 5px 10px;
    color: #fff;
    background-color: hsla(240, 4%, 10%, 0.8);
    border-radius: 6px;
    margin-bottom: 50px;
}

.toast .toastContent2{
    width: 600px;
    height: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsla(240, 4%, 10%, 0.8);
    border-radius: 6px;
    margin-bottom: 50px;
    margin: 80px auto;
}

.toast.show{
    display: block; /* 显示Toast */  
    opacity: 1; /* 透明度为1，完全可见 */ 
}