﻿::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #f5f5f5;
}

/*滚动条 阴影~圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(128, 128, 128, 0.7);
    border-radius: 10px;
    background-color: #f5f5f5;
}

/*滑块 阴影~圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(128, 128, 128, 0.7);
    background-color: rgb(149, 147, 147);
}

body {
    min-height: 0;
}
.navbar {
    position: fixed;
}
.content-wrapper {
    position: relative;
    margin-top: 65px;
}

.kjbtn {
    height: 28px;
    line-height: 28px;
}

.content-icp {
    color: #666EE8!important;
    clear: both;
}

.shop-tips {
    font-size: 26px;
    text-align: center;
    margin-top: 20vh;
}

.card-category {
    width: 30%;float: left;
}

.card-info {
    width: 68%;float: right;
}

.search {
    /* 文字颜色 */
    color: #0099CC;
    /* 清除背景色 */
    background: transparent;
    /* 边框样式、颜色、宽度 */
    border: 1px solid #0099CC;
    /* 给边框添加圆角 */
    border-radius: 6px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    height: 38px;
    width: 30%;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
}
@media screen and (max-width:600px) {
    .card-category {
        width: 100%;
    }

    .card-info {
        width: 100%;
    }
}