* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑", "Microsoft YaHei";
}

html,
body {
    height: 100%;
}

body {
    min-width: 1260px;
	background-color: #f8f8f8;
}

a {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 100ms;
    transition: all 100ms;
    color: inherit;
}

ul li {
    list-style: none;
}

.w1200 {
    margin: auto;
    width: 1200px;
    max-width: 1200px;
}

.clear:after,
.clear:before {
    content: "";
    clear: both;
    overflow: hidden;
    display: table;
}

.centerbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bgcolor {
    width: 100%;
    background-color: #f8f8f8;
}

.boxsd {
    z-index: 9999;
    width: 100%;
    height: 95px;
    background-color: #fff;
    box-shadow: 0 3px 5px #dedede;
    margin-bottom: 5px;
}

.padstyle {
    padding: 0 15px;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

.w938 {
    width: 938px !important;
}

.w100 {
    width: 100%;
}

input,
select,
textarea,
button,
img {
    outline: none;
}

button {
    cursor: pointer;
}

.minheight {
    height: 300px;
}

.shopping-trolley-box::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 3px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.shopping-trolley-box::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px #cdcdcd;
    background: #535353;
}

.shopping-trolley-box::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px #cdcdcd;
    border-radius: 10px;
    background: #ededed;
}


/*单行文字超出隐藏*/

.text-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


/*多行文字超出隐藏*/

.text-line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    /*要显示的行数*/
    overflow: hidden;
}


/*强制换行主要针对英文或数字*/

.break-word {
    word-wrap: break-word;
}


/*字母全部转换成大写*/

.uppercase {
    text-transform: uppercase;
}