/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 html,
 body,
 div,
 span,
 applet,
 object,
 iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video,
 input {
   margin: 0;
   padding: 0;
   border: 0;
   /* font-size: 100%; */
   font-weight: normal;
   vertical-align: baseline;
     --default-color: #E1251B;
     /*--themeColor: green;*/
 }
 
 /* HTML5 display-role reset for older browsers */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 header,
 menu,
 nav,
 section {
   display: block;
 }
 
 body {
   line-height: 1;
   font-family: "Microsoft YaHei";
   font-size: 16px;
 }
 
 blockquote,
 q {
   quotes: none;
 }
 
 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
   content: none;
 }
 
 table {
   border-collapse: collapse;
   border-spacing: 0;
 }
 
 /* custom */
 a {
   color: #7e8c8d;
   text-decoration: none;
   -webkit-backface-visibility: hidden;
 }
 
 li {
   list-style: none;
 }
 
 /*::-webkit-scrollbar {*/
 /*  width: 5px;*/
 /*  height: 5px;*/
 /*}*/
 
 /*::-webkit-scrollbar-track-piece {*/
 /*  background-color: rgba(0, 0, 0, 0.2);*/
 /*  -webkit-border-radius: 6px;*/
 /*}*/
 
 /*::-webkit-scrollbar-thumb:vertical {*/
 /*  height: 5px;*/
 /*  background-color: rgba(125, 125, 125, 0.7);*/
 /*  -webkit-border-radius: 6px;*/
 /*}*/
 
 /*::-webkit-scrollbar-thumb:horizontal {*/
 /*  width: 5px;*/
 /*  background-color: rgba(125, 125, 125, 0.7);*/
 /*  -webkit-border-radius: 6px;*/
 /*}*/
 
 html,
 body {
   width: 100%;
 }
 
 body {
   -webkit-text-size-adjust: none;
   -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }

 div {
  box-sizing: border-box;
 }

.el-dialog__wrapper{
  display: flex;
  align-items: center;
}
.el-dialog{
  margin-top: 0 !important;
  width: 690px !important;
}
.layout-component-main {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    background: #f5f5f5;
}
.main-wrapper {
    width: 1200px;
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
}
.main-container {
    width: 1010px;
    background-color: #FFFFFF;
}
.layout-component-right-tool {
    position: fixed;
    top: 0;
    right: 0;
    left: unset;
    bottom: 0;
    background: #333333;
    width: 40px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.right-tool-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    min-height: 40px;
    min-width: 40px;
    user-select: none;
    line-height: 22px;
    position: relative;
}
.right-tool-button-one{
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    margin-top: 200px;
}
.right-tool-button:hover {
    background-color: var(--themeColor);
}

.right-tool-button:hover .shop_car_position {
    display: block;
}
.shop_car_position_num{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: var(--themeColor);
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    margin-top: 10px;
}
.sidebar_active {
    /*background: #e1251b;*/
}

.right-tool-icon {
    width: 22px;
    height: 22px;
}

.qq {
    background: url('../image/qq.png') no-repeat center center;
    background-size: 100% 100%;
}

.wx {
    background: url('../image/wx.png') no-repeat center center;
    background-size: 100% 100%;
}

.coupon {
    background: url('../image/right-tool-coupon.png') no-repeat center center;
    background-size: 100% 100%;
}

.carrigth {
    margin-bottom: 10px;
    background: url('../image/right-tool-car.png') no-repeat center center;
    background-size: 100% 100%;
}

.order {
    background: url('../image/right-tool-order.png') no-repeat center center;
    background-size: 100% 100%;
}

.account {
    background: url('../image/right-tool-account.png') no-repeat center center;
    background-size: 100% 100%;
}

.focus {
    background: url('../image/right-tool-focus.png') no-repeat center center;
    background-size: 100% 100%;
}

.mb-10 {
    margin-bottom: 10px;
}

.mtb-30 {
    margin-top: 30px;
    margin-bottom: 30px;
}

.ptb-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.swiper-img-list{
    width: 100%;
    height: 450px;
}
.swiper-img-list-item{
    width: 100%;
    height: 450px;
}
.swiper-img-list-item .el-image {
    width: 100%;
    height: 100%;
}
.swiper-img-list .el-carousel__arrow {
    top: 75% !important;
}
.swiper-img-list .el-carousel__arrow--right {
    right: 75px !important;
}
.swiper-img-list .el-carousel__arrow--left {
    left: 75px !important;
}
/*.swiper-img-list img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

.shop_car_position {
    display: none;
    position: absolute;
    top: 0;
    right: 50px;
    z-index: 2001;
    width: 117px;
    min-height: 40px;
    background: #333333;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    /*overflow: hidden;*/
    /*text-overflow:ellipsis;*/
    /*white-space: nowrap;*/
}

.shop_car_position:after {
    content: ' ';
    position: absolute;
    right: -12px;
    top: 14px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-left: 6px solid #333333;
}
.shop_car_position_two{
    top: 40%;
}
.shop_car_position_three{
    top: 0%;
}

.qq_position {
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    z-index: 2002;
}

.qq_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    height: 40px;
    margin: 0 auto;
    border-bottom: 1px dashed #999999;
}

.qq_list_item:last-child {
    border-bottom: none;
}

.qq_customer {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.customer_nickname {
    width: 65px;
    height: 30px;
    font-size: 14px;
    color: #ffffff;
    line-height: 30px;
    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap;
}

.wx_position {
    padding: 10px;
    z-index: 2003;
}

.wx_position_img {
    width: 90px;
    height: 85px;
    border-radius: 4px;
    margin: 0;
    padding: 0;
}

.wx_list_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    height: 30px;
}
/*::-webkit-scrollbar {*/
/*    !*隐藏滚轮*!*/
/*    display: none;*/
/*}*/
.el-pagination.is-background .el-pager li:not(.disabled).active {
    background-color: var(--themeColor) !important;
}
.el-tabs__item.is-active{
    color: var(--themeColor) !important;
}
.el-tabs__active-bar{
    background-color: var(--themeColor) !important;
}
.el-tabs__item:hover {
    color: var(--themeColor) !important;  //修改鼠标移动到表头时候字体颜色，默认淡蓝色
    /*cursor: pointer;  //鼠标移动到表头时候鼠标样式，默认小手*/
}
.sidebar-down{

}
.el-tabs__item {
    height: 55px !important;
    line-height: 55px !important;
    font-size: 16px !important;
}
.el-tabs__nav-wrap::after {
    height: 1px !important;
}
.no-pingjia{
    margin-top: 10px;
    width: 100%;
    font-size: 14px;
    color: #333;
    text-align: center;
}
[v-cloak] {
    display: none;
}
