body,
html {
    min-width: 1300px;
    overflow-x: hidden;
    font-size: 14px;
    font-family: Arial, 'Microsoft YaHei';
    position: relative;
    color: #333;
    margin: 0;
    padding: 0;
    /* height:100%; */
}
/* html{
    overflow:hidden
}
body{
    overflow:auto
}  */
.layer-wrapper {
    width: 1220px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 10px;
}
.layer-wrapper-delivery{
    width: 1010px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 10px;
}
.layer-wrapper .wrapper {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}


ol,
ul {
    list-style: none;
    margin:0;
    padding:0;
}

img {
    display: block;
    border: 0;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

ol,
ul {
    list-style: none
}

h1,
h2,
h3,
h4,
h5 {
    padding: 0;
    margin: 0;
    font-family: Arial, 'Microsoft YaHei';
}

q:before,
q:after {
    content: ''
}

div,
dl,
dt,
dd,
ul,
li,
pre,
form,
fieldset,
input,
textarea,
th,
td {
    font-size: inherit;
    -webkit-font-smoothing: antialiased;
}

p {
    line-height: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:focus,
a:hover,
a {
    outline: none;
}

a,
button,
input,
textarea,
li {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

i,
em {
    font-style: normal;
}


#app {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.clear {
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
    overflow: hidden;
}

/* The popup bubble styling. */
.popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    border-radius: 0;
    font-family: sans-serif;
    overflow-y: auto;
    max-height: 60px;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.2);
	display:flex;
	align-items: center;
	white-space: nowrap;
}
.popup-bubble .type-Send{
    padding: 5px;
	background-color:#000;
	color:#fff;
}
.popup-bubble .con{
	padding:0 5px;
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 55px;
    left: 0;
}

/* This element draws the tip. */
.popup-bubble-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
    cursor: auto;
    height: 0;
    position: absolute;
    /* The max width of the info window. */
    width: 200px;
}
/* 滚动条整体宽度 */
::-webkit-scrollbar {
    width: 8px;
}
/* 滚动条滑槽样式 */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 8px;
}
/* 滚动条样式 */
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: #ddd;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-thumb:hover{
    background: #ccc;
}
::-webkit-scrollbar-thumb:active{
    background: #999;
}
/* 浏览器失焦的样式 */
::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255,0,0,0.4);
}

.address-dialog .el-dialog__body{
    padding:0;
}