@charset "utf-8";

html {
    background: #fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* 内外边距通常让各个浏览器样式的表现位置不同 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

/* 要注意表单元素并不继承父级 font 的问题 */
body,
button,
input,
select,
textarea {
    font: 14px "microsoft yahei", arial, sans-serif;
    color: #333;
}

body {
    overflow-y: scroll;
    /* 垂直方向显示滚动条 */
}

/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* HTML5 媒体文件跟 img 保持一致 */
audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

input,
select,
textarea {
    font-size: 100%;
}

/* 去掉 table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ie bug：th 不继承 text-align */
th {
    text-align: inherit;
}

/* 去除默认边框 */
fieldset,
img {
    border: none;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr,
acronym {
    border: none;
    font-variant: normal;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: 500;
}

/* 去掉列表前的标识，li 会继承 */
ol,
ul,
li {
    list-style: none;
}

/* 对齐是排版最重要的因素，别让什么都居中 */
caption,
th {
    text-align: left;
}

/* 来自yahoo，让标题都自定义，适应多个系统应用 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: 500;
}

h2 {
    font-size: 16px;
}

q:before,
q:after {
    content: '';
}

/* 统一上标和下标 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

*,
::after,
::before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

/* 让链接在 hover 状态下显示下划线 */
a:hover {
    color: #ff7600;
    text-decoration: none;
}

/* 默认不显示下划线，保持页面简洁 */
ins,
a {
    color: #666;
    text-decoration: none;
}

/* 去除 ie6 & ie7 焦点点状线 */
a:focus,
*:focus {
    outline: none;
}

/* 清除浮动 */
.clearfix:before,
.clearfix:after {
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
    overflow: hidden;
}

.clearfix {
    zoom: 1;
    /* for ie6 & ie7 */
}

.clear {
    clear: both;
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
}

*,
::after,
::before {
    box-sizing: border-box;
}

/* 设置显示和隐藏，通常用来与 js 配合 */
.hide {
    display: none;
}

.block {
    display: block;
}

/* 设置浮动，减少浮动带来的 bug */
.fl,
.fr {
    display: inline;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

.tr {
    text-align: right !important;
}

.fc-colours {
    color: #ff9600 !important;
}

.red {
    color: #f30;
}

.green {
    color: green;
}

.fc9 {
    color: #999;
}

.fc3 {
    color: #333;
}

.fb {
    font-weight: bold !important;
}

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px !important;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

[v-cloak] {
    display: none;
}

.cursor-pointer {
    cursor: pointer !important;
}

.top7 {
    top: 7px !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml40 {
    margin-left: 40px !important;
}

.ml50 {
    margin-left: 50px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.pd0 {
    padding: 0 !important;
}
.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.pl20 {
    padding-left: 20px !important;
}

.pt50 {
    padding-top: 50px !important;
}

.pb0 {
    padding-bottom: 0px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pt100 {
    padding-top: 100px !important;
}

.pb100 {
    padding-bottom: 100px !important;
}

.pr20 {
    padding-right: 20px !important;
}

.pl20 {
    padding-left: 20px !important;
}

.w40 {
    width: 40px !important;
}

.w60 {
    width: 60px !important;
}

.w80 {
    width: 80px !important;
}

.w100 {
    width: 100px !important;
}

.w150 {
    width: 150px !important;
}

.w200 {
    width: 200px !important;
}

.w300 {
    width: 300px !important;
}

.w310 {
    width: 310px !important;
}

.w400 {
    width: 400px !important;
}

.w500 {
    width: 500px !important;
}

.wb70 {
    width: 70% !important;
}

.wb80 {
    width: 80% !important;
}

.wb84 {
    width: 84% !important;
}

.wb90 {
    width: 90% !important;
}

.wb100 {
    width: 100% !important;
}


/* 文本过长显示省略号 */
.ellipsis {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.d-f-c {
    display: flex;
    align-items: center;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.container {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: .9375rem;
    padding-left: .9375rem
}

.container::after {
    display: table;
    clear: both;
    content: ''
}

@media (min-width:480px) {
    .container {
        padding: 0px;
    }
}

@media (min-width:768px) {
    .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

@media (min-width:1600px) {
    .container {
        width: 1320px
    }
}

.w1200 {
    clear: both;
    margin: 0 auto;
    width: 1200px;
}

.w1226 {
    clear: both;
    margin: 0 auto;
    width: 1226px;
}

.w1320 {
    clear: both;
    margin: 0 auto;
    width: 1320px;
}

.border-no {
    border: none !important;
}

.dpf {
    display: flex;
}

.asc {
    align-self: center;
}

.mg05 {
    margin: 5px 0px !important;
}

.el-table__header {
    width: 100% !important;
}

.el-table__body {
    width: 100% !important;
}

.ey-body-bg {
    width: 100%;
    padding-bottom: 40px;
    background-color: #f5f5f5;
    min-height: calc(100vh - 185px);
}

.ey-body {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

/*头部样式*/
.ey-header {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    box-shadow: 0px 0px 7px 0px rgba(6, 0, 1, 0.11);
}

.ey-header .ey-header-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ey-header .ey-logo {}

.ey-header .ey-logo img {
    max-height: 50px;
    max-width: 265px;
    vertical-align: middle;
}

.ey-header .ey-header-r {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/*新增购物车头部样式-210623开始*/
.ey-cart-header {
    font-size: 12px;
    border-bottom: 2px solid #fd8a27;
    background: #fff;
    color: #b0b0b0;
    position: relative;
    z-index: 20;
    height: 80px;
}

.ey-cart-header-con {
    max-width: 100%;
    margin: 0 auto;
}

.ey-cart-header .ey-logo {
    position: relative;
    float: left;
    top: 15px;
}

.ey-cart-header .ey-logo img {
    max-height: 50px;
    max-width: 265px;
}

.ey-cart-title {
    float: left;
}

.ey-cart-title h2 {
    float: left;
    line-height: 80px;
    margin-bottom: 0;
    font-size: 28px;
    font-weight: 400;
    color: #424242;
}

.ey-cart-title p {
    float: left;
    height: 20px;
    line-height: 20px;
    margin-top: 34px;
    margin-left: 15px;
    color: #757575;
}

.ey-cart-header .ey-cart-header-nav li {
    float: left;
    margin-right: 20px;
}

.ey-cart-header .ey-cart-header-nav li a {
    display: block;
    line-height: 36px;
    font-size: 15px;
}

.margin-small-left {
    margin-left: 5px;
}

.ey-cart-header .ey-cart-header-r {
    position: relative;
    float: right;
    top: 20px;
}

.ey-cart-header .right-item {
    height: 60px;
    vertical-align: middle;
    position: relative;
    display: inline-block;
}

.ey-cart-header .right-item.user-news .icon,
.ey-cart-header .right-item.user-news .text {
    text-align: center;
    display: inline-block;
    width: 100%;
}

.ey-cart-header .right-item.user-news .icon {
    font-size: 22px;
    line-height: 1;
    margin-top: 12px;
}

.ey-cart-header .right-item.user-news .text {
    font-size: 12px;
}

.ey-cart-header .right-item.user-news .num {
    position: absolute;
    text-align: center;
    line-height: 15px;
    top: 4px;
    right: -8px;
    background-color: red;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    z-index: 10;

}

.ey-cart-header .right-item.user-photo {
    position: relative;
    padding: 6px 20px 0;
    cursor: pointer;
}

.ey-cart-header .right-item.user-photo img {
    width: 32px;
    height: 32px;
    border: 1px solid #eee;
    border-radius: 50px;
}

.ey-cart-header .right-item.user-photo .user-drop {
    position: absolute;
    top: 60px;
    width: 120px;
    left: -35px;
    z-index: 5;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 2px;
    display: none;
}

.ey-cart-header .right-item.user-photo .user-drop li {
    padding: 0 10px;
    height: 32px;
    text-align: center;
}

.ey-cart-header .right-item.user-photo .user-drop li a {
    position: relative;
    height: 32px;
    line-height: 32px;

}

.ey-cart-header .right-item.user-photo .user-drop::after {
    content: "";
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #e9e8e8;
    top: -15px;
    right: 35px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*新增购物车头部样式--210623结束*/
@media (max-width: 1366px) {
    .ey-cart-header .ey-logo {
        display: none;
    }
}

.ey-header .right-item.user-news {
    height: 58px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    vertical-align: middle;
}

.ey-header .right-item.user-news a {
    position: relative;
    margin-left: 20px;
}

.ey-header .right-item.user-news .icon,
.ey-header .right-item.user-news .text {
    text-align: center;
    display: inline-block;
    width: 100%;
}

.ey-header .right-item.user-news .icon {
    font-size: 24px;
    line-height: 1;
}

.ey-header .right-item.user-news .text {
    font-size: 12px;
}

.ey-header .right-item.user-news .num {
    position: absolute;
    text-align: center;
    line-height: 15px;
    top: -5px;
    right: -8px;
    background-color: red;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    z-index: 10;

}

.ey-header .right-item.user-photo {
    position: relative;
    padding: 10px 20px;
    cursor: pointer;
}

.ey-header .right-item.user-photo img {
    width: 42px;
    height: 42px;
    border: 1px solid #eee;
    border-radius: 50px;
}

.ey-header .right-item.user-photo .user-drop {
    position: absolute;
    top: 73px;
    width: 120px;
    left: -35px;
    z-index: 5;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    border-radius: 2px;
    display: none;
}

.ey-header .right-item.user-photo .user-drop li {
    padding: 0 10px;
    height: 32px;
    text-align: center;
}

.ey-header .right-item.user-photo .user-drop li a {
    position: relative;
    height: 32px;
    line-height: 32px;

}

.ey-header .right-item.user-photo .user-drop::after {
    content: "";
    position: absolute;
    border: 8px solid transparent;
    border-bottom-color: #e9e8e8;
    top: -15px;
    right: 35px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*头部 end*/
.ey-container .el-table::before {
    background-color: #fff;
}

.ey-container .ey-nav {
    background-color: #fff;
    width: 200px;
    /* box-shadow: 1px 2px 10px rgba(0,0,0,0.1); */
    min-height: 649px;
    border-radius: 0px;
}

.ey-container .ey-container {
    position: relative;
}

.ey-container .ey-con {
    position: relative;
    width: 1006px;
}

.ey-container .xin_mian {
    padding: 25px;
    background: #fff;
    min-height: 649px;
}

.ey-container .main-bg {
    background-color: #fff;
    /* box-shadow: 1px 2px 10px rgba(0,0,0,0.1); */
    border-radius: 0px;
    margin-bottom: 14px;
}

.ey-container .el-input input::-webkit-input-placeholder {
    color: #666;
}

.ey-container .el-input input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #666;
}

.ey-container .el-input input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #666;
}

.ey-container .el-input input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #666;
}

/* .ey-container .ey-nav .sidebar-box{
	padding: 20px 0;
} */
.ey-container .ey-nav ul {
    padding: 15px 48px;
}

.ey-container .ey-nav ul:last-child {
    border-bottom: none;
}

.ey-container .ey-nav ul li {
    color: #757575;
    padding: 7px 0;
}

.ey-container .ey-nav ul li .title {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 38px;
    font-weight: 400;
    color: #222;
}

.ey-container .ey-nav ul li .title i {
    margin-right: 10px;
    font-size: 20px;
}

.ey-container .ey-nav ul li a {
    display: block;
    font-size: 14px;
    background-color: #FFF;
}

.ey-container .ey-nav ul .active a {
    color: #ff7600;
}

.ey-container .ey-nav ul li a:hover {
    color: #ff7600;
}

.ey-container .column-title {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
}

.ey-container .xin_mian .column-title {
    border-bottom: unset !important;
}

.ey-container .column-title .title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    margin-right: auto;
}

.ey-container .ey-con .title small {
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.ey-container .column-title.line30 {
    line-height: 30px;
}

.ey-container .column-title .column-name {
    color: #ff7600;
    font-size: 16px;
}

.ey-container .column-title .column-left {}

.ey-container .column-title2 {
    display: flex;
    border-bottom: 1px solid #eaeaea;
    justify-content: space-between;
    align-items: center;
    line-height: 50px;
}

.ey-container .column-title2 .column-name2 {
    padding: 0 20px;
    color: #757575;
    font-size: 18px;
}

.ey-container .user-info-con {
    padding: 25px;
    background: #fff;
    min-height: 649px;
}

/* .ey-container .user-info-box{
	margin: 0 48px;
} */
.ey-container .user-info-title h1 {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    margin-right: auto;
}

.ey-container .ey-con .user-info {
    padding: 5px 0;
    overflow: hidden;
}

.ey-container .ey-con .user-info .face {
    display: block;
    position: relative;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .14);
    overflow: hidden;
}

.ey-container .ey-con .user-info .face i {
    width: 50px;
    overflow: hidden;
    color: #999;
}

.ey-container .ey-con .user-info .face img {
    width: 90px;
    height: 90px;
    border-radius: 50%;

}

.ey-container .ey-con .user-info .face .avatar-uploader-icon {
    font-size: 28px;
    color: #8c939d;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
}

.ey-container .ey-con .user-info .face span {
    position: absolute;
    width: 100%;
    height: 24px;
    line-height: 24px;
    background: rgba(0, 0, 0, 0.4);
    bottom: 0;
    left: 0;
    color: #fff;
    z-index: 2;
    font-size: 16px;
    border-radius: 0 0 50px 50px;
}

.ey-container .ey-con .user-info .info {
    display: block;
    width: 100%;
}

.ey-container .ey-con .user-info .user-info-button {
    display: block;
    outline: 0;
    background: #ff6700;
    border: 1px solid #ff6700;
    color: #fff;
    text-align: center;
    width: 210px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    cursor: pointer;
}

.ey-container .ey-con .user-info .user-info-button {
    display: block;
    outline: 0;
    background: #ff6700;
    border: 1px solid #ff6700;
    color: #fff;
    text-align: center;
    width: 210px;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    cursor: pointer;
}

.ey-container .ey-con .user-info .item-from-row .from-row-r .el-input__inner {
    width: 310px;
}

/* .ey-container .ey-con .user-info .item-from-row{
	border-bottom: 1px dashed #eee;
} */
.ey-container .item-from-row {
    position: relative;
    min-height: 40px;
    line-height: 40px;
    padding: 8px 0;
    vertical-align: middle;
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px dashed #eee; */
}

.ey-container .item-from-row:last-child {
    border: 0;
}

.ey-container .item-from-row .el-input__inner {
    height: 40px;
    line-height: 40px;
    border-radius: 4px;
}

.ey-container .item-from-row .from-row-l,
.ey-container .item-from-row .from-row-r {
    float: left;
}

.ey-container .item-from-row .from-row-l {
    width: 114px;
    text-align: right;
    margin-right: 10px;
    font-size: 15px;
    color: #666;
}

.ey-container .item-from-row .from-row-r {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    min-width: 0;
    font-size: 15px;
}

.ey-container .item-from-row .from-row-r.ico-xltb {
    position: relative;
    color: #a7a7a7;
}

.ey-container .item-from-row .from-row-r.ico-xltb::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-left: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: translate3d(0, -50%, 0) rotate(135deg);
    -webkit-transform: translate3d(0, -50%, 0) rotate(135deg);
}

.ey-container .item-from-row .from-row-r .el-button {
    font-size: 15px;
}

.ey-container .item-from-row .from-row-r .el-input_select_inner {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 8px 10px;
    overflow: hidden;
    background-color: #fff;
    color: #555;
    border: 1px solid #DCDFE6;
    text-shadow: none;
    border-radius: 4px;
    transition: box-shadow 0.25s ease;
    z-index: 2;
}

.ey-container .item-from-row p.notic {
    line-height: 20px;
    color: #F56C6C;
    font-size: 13px;
}

.ey-container .item-from-row .err a {
    color: #ff7600;
}

.ey-container .item-from-row.user-info-pic {
    position: relative;
    min-height: 90px;
    line-height: 90px;
}

.ey-container .input-file-show {
    position: relative;
    display: table-cell;
    width: 120px;
    height: 120px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}

.ey-container .input-file-show img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.ey-container .input-file-show span {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 2;
}

.ey-container .item-from-row .from-row-r textarea {
    padding: 6px 15px;
    line-height: 1.5;
    border: 1px solid #DCDFE6;
    border-radius: 4px;
}

.ey-container .on-off {
    font-size: 0;
    position: relative;
    overflow: hidden;
    display: block;
}

.ey-container .on-off label {
    cursor: pointer;
}

.ey-container .on-off .cb-enable {
    color: #777;
    font-size: 16px;
    line-height: 40px;
    background-color: #f8f8f8;
    height: 40px;
    padding: 0px 20px;
    border-style: solid;
    border-color: #ddd;
    border-radius: 4px 0 0 4px;
}

.ey-container .on-off .cb-enable {
    border-width: 1px 0 1px 1px;
}

.ey-container .on-off .cb-disable.selected {
    color: #FFF;
    background-color: #ff9600;
    border-color: #ff9600;
    border-radius: 0 4px 4px 0;
}

.ey-container .on-off .cb-disable {
    border-width: 1px 1px 1px 0;
}

.ey-container .on-off .cb-disable {
    color: #777;
    font-size: 16px;
    line-height: 40px;
    background-color: #f8f8f8;
    height: 40px;
    padding: 0px 20px;
    border-style: solid;
    border-color: #ddd;
    border-radius: 0 4px 4px 0;
}

.ey-container .on-off input[type="radio"] {
    position: absolute;
    top: 0;
    left: -999px;
}

.ey-container .on-off .cb-enable.selected {
    color: #FFF;
    background-color: #ff9600;
    border-color: #ff9600;
    border-radius: 4px 0 0 4px;
}

.laydate_body .laydate_top {
    padding: 0px !important;
}

.ey-container .custom-form .item-from-row {
    border-bottom: 0;
}

/*多选项、单选项按钮样式*/

.ey-container .checkbox-label .checkbox,
.ey-container .radio-label .radio {
    display: none;
}

.ey-container .checkbox-label {
    position: relative;
    font-family: sans-serif;
    display: inline-block;
    padding-left: 25px;
    user-select: none;
    margin-right: 10px;
    cursor: pointer;
}

.ey-container .el-table .checkbox-label {
    padding-left: 0;
}

.ey-container .checkbox-label .check-mark {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    display: inline-block;
    top: 11px;
    border-radius: 3px;
    border: 1px solid #e4eaec;
}

.ey-container .checkbox-label.table-checkbox .check-mark {
    top: -6px;
}

.ey-container .checkbox-label.release-checkbox .check-mark {
    top: 2px;
}

.ey-container .checkbox-label .checkbox:checked+.check-mark {
    background-color: #ff7600;
    border: 1px solid #ff7600;
    transition: .1s;
}

.ey-container .checkbox-label .checkbox:checked+.check-mark:after {
    content: "";
    position: absolute;
    width: 10px;
    transition: .1s;
    height: 5px;
    background: #ff7600;
    top: 45%;
    left: 50%;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ey-container .radio-label {
    position: relative;
    font-family: sans-serif;
    display: inline-block;
    padding-left: 25px;
    user-select: none;
    margin-right: 10px;
    cursor: pointer;
}

.ey-container .radio-label .check-mark {
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    display: inline-block;
    top: 11px;
    border-radius: 50%;
    border: 1px solid #e4eaec;
}

.ey-container .radio-label .radio:checked+.check-mark {
    border: 1px solid #ff7600;
    background-color: #ff7600;
    transition: .1s;
}

.ey-container .radio-label .radio:checked+.check-mark:after {
    content: "";
    position: absolute;
    width: 10px;
    transition: .1s;
    height: 5px;
    background: #ff7600;
    top: 45%;
    left: 50%;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ey-container .level-row .radio-label .check-mark {
    top: 16px;
}

.ey-container .select {
    height: 40px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    color: #555;
    border: 1px solid #DCDFE6;
    text-shadow: none;
    border-radius: 4px;
    transition: box-shadow 0.25s ease;
    z-index: 2;
}

.ey-container .select:hover {
    border-color: #C0C4CC;
}

.ey-container .select:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #DCDFE6;
    top: 17px;
    right: 10px;
    cursor: pointer;
    z-index: -2;
}

.ey-container .select select {
    cursor: pointer;
    padding: 8px 15px;
    color: #606266;
    width: 100%;
    border: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.ey-container .select select:focus {
    outline: none;
}

.ey-con .user-info .info ul li {
    position: relative;
    line-height: 50px;
    height: 50px;
    border-bottom: 1px dashed #eee;
    vertical-align: middle;
    float: left;
    width: 100%;
}

.ey-con .user-info .info ul li:last-child {
    border: 0;
}

.ey-con .user-info .info ul li em {
    color: #999;
    display: inline-block;
    width: 80px;
    text-align: right;
    margin-right: 10px;
    overflow: hidden;
}

.ey-con .user-info .info ul li span {
    width: 70%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ey-container .ey-con .info-bt {
    position: absolute;
    top: 0;
    right: 0;
}

.ey-container .ey-con .info-bt a {
    display: flex;
    align-items: center;
}

.ey-container .ey-con .info-bt i {
    font-size: 16px;
}

.ey-container .oper-row {
    margin-bottom: 10px;
}

.ey-container .oper-row .oper-row-l {
    color: #999;
}

.ey-container .oper-row .oper-row-r {
    text-align: right;
}

.ey-container .oper-row .oper-row-l .el-button:focus.el-button--default,
.ey-container .oper-row .oper-row-l .el-button.el-button--default:hover {
    border: 1px solid #DCDFE6;
    color: #606266;
    background-color: #fff;
}

.ey-container .oper-row .oper-row-l .el-button {
    cursor: default;
}

.ey-container .oper-row .oper-row-l .el-button:focus.el-button--warning,
.ey-container .oper-row .oper-row-l .el-button.el-button--warning:hover {
    color: #FFF;
    background-color: #E6A23C;
    border-color: #E6A23C;
}

.ey-container .oper-row .oper-row-l .el-button:focus.el-button--danger,
.ey-container .oper-row .oper-row-l .el-button.el-button--danger:hover {
    color: #FFF;
    background-color: #F56C6C;
    border-color: #F56C6C;
}

.ey-container .ey-con .ey-con-form {
    width: 460px;
}

.ey-container .ey-con .ey-con-forms .avatar-uploader .el-upload {
    border: 1px dashed #d9d9d9;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.ey-container .ey-con .ey-con-forms .avatar-uploader .el-upload:hover {
    border-color: #ff7600;
}

.ey-container .ey-con .ey-con-forms .avatar-uploader-icon {
    font-size: 28px;
    color: #8c939d;
    width: 178px;
    height: 178px;
    line-height: 178px;
    text-align: center;
}

.ey-container .ey-con .ey-con-forms .avatar {
    width: 178px;
    height: 178px;
    display: block;
}

.ey-container .ey-con .ey-con-forms .edui-default .edui-editor-toolbarboxinner {
    padding: 2px;
    /*height: 30px;*/
    line-height: 20px;
}

.ey-container .ey-con .shop-oper {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.ey-container .ey-con .shop-oper .title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    margin-right: auto;
}

.ey-container .ey-con .shop-oper .title small {
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.ey-container .ey-con .shop-oper .title small a {
    color: #757575;
}

.ey-container .ey-con .shop-oper .shop-oper-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ey-container .ey-con .shop-oper .shop-oper-l {
    margin: 0;
    list-style-type: none;
    font-size: 16px;
}

.ey-container .ey-con .shop-oper .shop-oper-r {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

.ey-container .ey-con .shop-oper .shop-oper-r .users-money {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 15px;
}

.ey-container .ey-con .shop-oper .shop-oper-r form {
    display: block;
    width: 262px;
    height: 40px;
}

.ey-container .ey-con .shop-oper .shop-oper-l .el-button-xin:first-child {
    padding-left: 0;
    border-left: 0;
}

.ey-container .ey-con .shop-oper .shop-oper-l .el-button-xin.active {
    color: #ff7600;
}

.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select {
    display: flex;
}

.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-text {
    right: 37px;
    z-index: 1;
    width: 221px;
    height: 38px;
    padding: 0 15px;
    font-size: 14px;
    line-height: 40px;
    color: #757575;
}

.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-btn,
.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-text {
    position: absolute;
    top: 0;
    border: 1px solid #e0e0e0;
    outline: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-btn {
    right: 0;
    z-index: 2;
    width: 38px;
    height: 38px;
    font-size: 24px;
    line-height: 24px;
    background: #fff;
    color: #616161;
}

.ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-btn i {
    font-size: 20px;
    color: #616161;
}

/* 新版新增 */
.uc-order-item {
    position: relative;
}

.ey-container .goods-con .order-list {
    margin: 0;
    padding: 20px 0;
    list-style-type: none;
}

.ey-container .goods-con .order-list *,
.ey-container .goods-con .order-list::after,
.ey-container .goods-con .order-list::before {
    /* box-sizing: unset; */
}

.ey-container .goods-con .order-list table {
    border-collapse: collapse;
    border-spacing: 0;
}

.ey-container .goods-con .order-list .uc-order-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.ey-container .goods-con .order-list .order-summary {
    padding: 20px 30px 1px;
}

.ey-container .goods-con .order-list .uc-order-item .order-status {
    font-size: 18px;
}
.ey-container .goods-con .order-list .order-detail-inof {
    padding: 0px 30px 20px;
    color: #757575;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.ey-container .goods-con .order-list .order-detail-inof .caption-info span {
    padding: 0 5px;
}
.ey-container .goods-con .order-list .order-detail-inof .caption-info a {
    word-break: break-all;
}
.ey-container .goods-con .order-list .order-detail-inof .caption-price .num {
    margin-right: 5px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #333;
}

.ey-container .goods-con .order-list .order-detail-table {
    width: 100%;
}

.ey-container .goods-con .order-list .order-detail-table th {
    height: 28px;
    padding: 0 30px 24px;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 400;
    text-align: left;
    color: #757575;
    vertical-align: bottom;
    background-color: unset;
}

.ey-container .goods-con .order-list .order-detail-table th.col-main {
    padding-right: 10px;
}

.ey-container .goods-con .order-list .order-detail-table th p {
    margin: 0;
    font-weight: 400;
}

.ey-container .goods-con .order-list .order-detail-table th .sep {
    margin: 0 .25em;
    font-family: sans-serif;
    color: #e0e0e0;
}

.ey-container .goods-con .order-list .order-detail-table th.col-sub {
    width: 280px;
    padding-left: 10px;
    text-align: right;
}

.ey-container .goods-con .order-list .order-detail-table th .num {
    height: 18px;
    margin-right: 5px;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    color: #333;
}

.ey-container .goods-con .order-list .order-detail-table th .num em {
    font-size: 14px;
    font-weight: 400;
    color: #757575;
    margin-left: 12px;
}

.ey-container .goods-con .order-list .order-detail-table td {
    padding: 0 30px;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list {
    margin: 0;
    padding: 10px 0;
    list-style-type: none;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list li {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    color: #333;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .figure-thumb {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .pro-pic {
    display: table-cell;
    position: absolute;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: middle;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .pro-pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .name {
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .name a {
    color: #333;
}

.ey-container .goods-con .order-list .order-detail-table td .goods-list .price {
    margin: 10px 0 0 0;
    color: #999;
}

.ey-container .goods-con .order-list .order-detail-table td.order-actions {
    padding-top: 20px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.ey-container .goods-con .order-list .order-detail-table td.order-actions .btn-small {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #b0b0b0;
    color: ##757575;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin: 0 0 10px auto;
    padding: 7px 26px;
    min-width: 110px;
    font-size: 14px;
    border-radius: 0;



}

.ey-container .goods-con .order-list .order-detail-table td.order-actions .btn-primary {
    background: #ff9600;
    border-color: #ff9600;
    border: 1px solid #ff9600 !important;
    color: #fff;
    height: unset;
}

.ey-container .goods-con .order-list .order-detail-table td.order-actions .btn-line-gray {
    border-color: #b0b0b0;
    background: #fff;
    color: #757575;
}




.ey-container .goods-con .order-list .uc-order-item-pay {
    border-color: #ff6700;
}

.ey-container .goods-con .order-list .uc-order-item-pay .order-summary {
    background: #fffaf7;
}

.ey-container .goods-con .order-list .uc-order-item-pay .order-status {
    color: #ff6700;
}

.ey-container .goods-con .order-list .uc-order-item-pay .order-detail-inof {
    background: #fffaf7;
    border-bottom: 1px solid #feccac;
}

.ey-container .goods-con .order-list .uc-order-item-shipping {
    border-color: rgba(255, 103, 0, 0.3);
}

.ey-container .goods-con .order-list .uc-order-item-shipping .order-summary {
    background-color: rgba(255, 103, 0, 0.06);
}

.ey-container .goods-con .order-list .uc-order-item-shipping .order-status {
    color: #ff6700;
}

.ey-container .goods-con .order-list .uc-order-item-shipping .order-detail-inof {
    background: rgba(255, 103, 0, 0.06);
    border-bottom: 1px solid rgba(255, 103, 0, 0.3);
}

.ey-container .goods-con .order-list .uc-order-item-finish {
    border-color: #b0b0b0;
}

.ey-container .goods-con .order-list .uc-order-item-finish .order-status {
    color: #b0b0b0;
}

.ey-container .goods-con .order-list .uc-order-item-finish .order-detail-inof {
    border-bottom: 1px solid #e0e0e0
}


.ey-container .goods-con .goods-item {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.ey-container .goods-con .goods-item .goods-item-top {
    background: #fafafa;
    display: flex;
    border-bottom: 1px solid #eee;
}

.ey-container .goods-con .goods-item .goods-item-l {
    border-right: 1px solid #eee;
    padding: 10px 20px;
    flex: 1;
    font-size: 0;
}

.ey-container .goods-con .goods-item .goods-item-l .goods-items {
    width: 100%;
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ey-container .goods-con .goods-item .goods-item-l .goods-items:last-child {
    border: 0;
}

.ey-container .goods-con .goods-item .goods-item-l span {
    font-size: 13px;
    display: inline-block;
}

.ey-container .goods-con .goods-item .goods-item-l .date {
    width: 150px;
}

.ey-container .goods-con .goods-item .goods-item-l .pic {
    width: 140px;
    margin-left: 10px;
}

.ey-container .goods-con .goods-item .goods-item-l .pic img {
    width: 100px;
    height: 100px;
    padding: 2px;
}

.ey-container .goods-con .goods-item .goods-item-l .price {
    width: 120px;
}

.ey-container .goods-con .goods-item .goods-item-l .num {
    width: 80px;
}

.ey-container .goods-con .goods-item .goods-item-l .orderid a {
    color: #999;
}

.ey-container .goods-con .goods-item .goods-item-l .orderid,
.ey-container .goods-con .goods-item .goods-item-l .name {
    width: 296px;
}

.ey-container .goods-con .goods-item .goods-item-l .name {
    line-height: 24px;
}

.ey-container .goods-con .goods-item .goods-item-r {
    padding: 10px 20px;
    width: 190px;
    display: flex;
}

.ey-container .goods-con .goods-item .goods-item-r .goods-items {
    width: 100%;
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.ey-container .goods-con .goods-item .goods-item-r .goods-items:last-child {
    border: 0;
}

.ey-container .goods-con .goods-item .goods-item-r span {
    /* flex: 1; */
    display: inline-block;
    width: 50%;
    text-align: center;
}

.ey-container .goods-con .goods-item .goods-item-r .view a {
    color: #ff7600;
}

.ey-container .goods-con .goods-item .goods-item-bottom .goods-item-r .el-button {
    color: #fff;
    margin-left: 0;
    margin-bottom: 10px;
}

.ey-container .goods-con .goods-item .goods-item-bottom .goods-item-r .price {
    color: red;
}

.ey-container .goods-con .goods-item .goods-item-bottom {
    display: flex;
}

.ey-container .goods-con .goods-item .goods-item-bottom .price {
    color: #666;
    align-items: center;
}

.add-address-desc {
    display: inline-block;
    padding: 2px 10px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    background: #ff9600;
    border: 1px solid #ff9600;
    border-radius: .215rem;
    cursor: pointer;
}
.address-list {
    margin: 0 -12px;
    display: flex;
    flex-wrap: wrap;
}
.address-list .address-item {
width: 306px;
    height: 178px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    position: relative;
    margin: 0 10px;
    margin-bottom: 20px;
    vertical-align: top;
}

.address-list .address-item.cur:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    color: #ff9600;
    width: 0;
    height: 0;
    border-top: 50px solid #ff9600;
    border-left: 50px solid transparent;
    z-index: 10;
}

.address-list .address-item.selected {
    border: 1px solid #ff9600;
}

.address-list .address-item.cur {
    border: 1px solid #ff9600;
}

.address-list .address-item .el-icon-house {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 16px;
    color: #fff;
    z-index: 10;
    display: none;
}

.address-list .address-item.cur .el-icon-house {
    display: block;
}

.address-list .address-item .show-action.address-action {
    opacity: 1
}

.address-list .address-item:hover {
    border-color: #b0b0b0
}

.address-list .address-item.cur:hover {
    border-color: #ff9600;
}

.address-list .address-item:hover .address-action {
    opacity: 1
}

.address-list .address-item:hover .iconfont {
    background-color: #b0b0b0
}

.address-list .address-item:hover .add-desc {
    color: #b0b0b0
}

.address-list .address-item.active,
.address-list .address-item.active:hover {
    border-color: #ff6700
}

.address-list .add-desc i {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 8px;
    font-size: 20px;
    line-height: 30px;
    background-color: #e0e0e0;
    border-radius: 17px;
    text-align: center;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    color: #fff
}

.address-list .add-desc {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    color: #b0b0b0
}

.address-list .address-info {
    padding: 15px;
    height: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: column;
}

.address-list .name {
    font-size: 18px;
    color: #333;
    line-height: 30px;
    margin-bottom: 10px
}

.address-list .name span {
    float: right;
    font-size: 14px;
    color: #757575
}

.address-list .address-action,
.address-list .address-info,
.address-list .telephone {
    line-height: 22px;
    color: #757575
}

.address-list .address-con span {
    display: inline-block;
    margin-right: 3px;
    word-wrap: break-word
}

.address-list .address-con .info {
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.address-list .address-action {
    margin-top: auto;
    text-align: right;
}

.address-list .address-action span {
    display: inline-block;
    padding: 2px 10px;
    margin: 0;
    font-size: 14px;
    text-align: center;
    color: #999999;
    background: #fff;
    border: 1px solid #b0b0b0;
    border-radius: .215rem;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.address-list .more-btn {
    margin-bottom: 30px;
    height: 50px;
    line-height: 50px;
    background-color: #eee;
    color: #424242;
    text-align: center;
    cursor: pointer
}

.address-list .more-btn i {
    margin-left: 5px;
    font-size: 14px;
    color: #424242;
}

.address-list .more-btn span .iconfont-normal {
    display: inline-block;
    margin-left: 3px;
    position: relative;
    top: -1px;
    font-size: 14px;
    vertical-align: middle
}


.delivery-type-item {
    position: relative;
    background-color: #fff;
    display: inline-block;
    border: 1px solid #efefef;
    padding: 10px 20px;
    margin-right: 20px;
    cursor: pointer;
}

.delivery-type-item.on {
    color: #ff9600;
    border: 1px solid rgba(255, 150, 0, 0.4);
}

.delivery-type-item.on:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    color: #FF7600;
    width: 0;
    height: 0;
    border-bottom: 20px solid #FF7600;
    border-left: 20px solid transparent;
    z-index: 10;
}

.delivery-type-item i {
    position: absolute;
    right: 0px;
    bottom: -1px;
    display: block;
    color: #fff;
    z-index: 12;
    display: none;
}

.delivery-type-item.on i {
    display: block;
}

.ey-container .address-con {
    width: 100%;
    overflow: hidden;
}

.ey-container .address-con .el-col.el-col-6 {
    padding-right: 20px;
}

.ey-container .address-con .el-col.el-col-6:nth-child(4n) {
    padding-right: 0 !important;
}

.ey-container .address-con .address-item {
    border: 1px solid #ededed;
    height: 200px;
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ey-container .address-con .address-oper {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 40px;
    text-align: right;
    font-size: 14px;
    padding-right: 15px;
    cursor: pointer;
}

.ey-container .address-con .el-col.el-col-6:hover .address-oper {
    display: block;
}

.ey-container .address-con .address-oper span {
    margin: 0 6px;
    color: #ff7600;
}

.ey-container .address-con .address-oper span i {
    margin: 0 4px;
}

.ey-container .address-con .address-item .address-main {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
}

.ey-container .address-con .address-item .address-main span {
    line-height: 24px;
    display: inline-block;
    width: 100%;
}

.ey-container .address-con .address-item .address-main h2 {
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
    width: 100%;
}

.ey-container .address-con .address-item.cur:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    color: #ff7600;
    width: 0;
    height: 0;
    border-top: 50px solid #ff7600;
    border-left: 50px solid transparent;
    z-index: 10;
}

.ey-container .address-con .address-item.cur {
    border: 1px solid #ffc899;
}

.ey-container .address-item .el-icon-house {
    position: absolute;
    right: 6px;
    top: 6px;
    font-size: 16px;
    color: #fff;
    z-index: 10;
    display: none;
}

.ey-container .address-con .address-item.cur .el-icon-house {
    display: block;
}

.ey-container .address-con .selected .address-item {
    border: 1px solid #ffc899;
}

.ey-container .address-con .address-cursor {
    cursor: pointer;
}

.ey-container .address-con .selected .address-item:before {
    position: absolute;
    content: "";
    right: 0;
    top: 0;
    color: #ff7600;
    width: 0;
    height: 0;
    border-top: 50px solid #ff7600;
    border-left: 50px solid transparent;
    z-index: 10;
}

.ey-container .address-con .selected .address-item .el-icon-house {
    display: block;
}

.ey-container .address-con .address-item .address-add {
    text-align: center;
    line-height: 200px;
}

.ey-container .address-con .address-item .address-add i {
    margin-right: 6px;
}

.ey-container .address-con .address-item .address-add:hover {
    color: #ff7600;
    cursor: pointer;
}


.ey-container .shop-car .goods-item {
    display: flex;
}

.ey-container .shop-car .goods-item .goods-item-l {
    width: 90px;
    padding-right: 10px;
}

.ey-container .shop-car .goods-item .goods-item-r {
    flex: 1;
}

.ey-container .shop-car .goods-item .goods-item-r .info {
    font-size: 12px;
    color: #999;
}

.ey-container .shop-car .goods-item .goods-item-l img {
    width: 80px;
    height: 80px;
    padding: 2px;
}

.ey-container .shopcar-table-expand {
    font-size: 0;
}

.ey-container .shopcar-table-expand label {
    width: 90px;
    color: #99a9bf;
}

.ey-container .shopcar-table-expand .el-form-item {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
}

.ey-container .shopcar-table-expand .el-form-item .el-form-item__label,
.ey-container .shopcar-table-expand .el-form-item .el-form-item__content {
    line-height: 30px;
}

.ey-container .shop-car .el-table__body .el-icon-arrow-right:before {
    content: "\e6df"
}

.ey-container .shop-car .el-table__body .el-table__expand-icon--expanded {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ey-container .shopcar-footer {
    display: flex;
}

.ey-container .shopcar-footer .shopcar-footer-r {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ey-container .shopcar-footer .shopcar-footer-r span {
    margin-right: 6px;
}

.ey-container .shopcar-page {
    text-align: right;
}

.ey-container .order-con .address-item {
    height: 160px;
    cursor: pointer;
}

.ey-container .order-con .address-item .address-add {
    line-height: 160px;
}

.ey-container .order-con .el-radio-group {
    vertical-align: baseline;
}

.ey-container .order-con .el-form-item {
    margin-bottom: 0px;
}

.ey-container .order-con .goods-item {
    display: flex;
}

.ey-container .order-con .goods-item .goods-item-l {
    width: 90px;
    padding-right: 10px;
}

.ey-container .order-con .goods-item .goods-item-r {
    flex: 1;
}

.ey-container .order-con .goods-item .goods-item-l img {
    width: 80px;
    height: 80px;
    border: 1px solid #eaeaea;
    padding: 2px;
}

.ey-container .order-footer {
    display: flex;
}

.ey-container .order-footer .order-footer-r {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ey-container .order-footer .order-footer-r span {
    margin-right: 6px;
}

.ey-container .order-footer .order-footer-l {
    flex: 1;
}

.ey-container .order-footer .order-footer-r2 .el-form-item {
    margin-bottom: 4px;
}

.ey-container .order-footer .order-footer-r2 .el-form-item__label,
.ey-container .order-footer .order-footer-r2 .el-form-item__content {
    line-height: 30px;
}

.ey-container .order-row {
    display: flex;
}

.ey-container .order-row .order-row-l {
    flex: 1;
}

.ey-container .order-row .order-row-l .order-row-lt {
    display: flex;
    align-items: center;
    font-size: 30px;
}

.ey-container .order-row .order-row-l .order-row-lt i {
    font-size: 50px;
    margin-right: 10px;
    color: #67c23a;

}

.ey-container .order-row .order-row-l .order-row-lb {
    line-height: 40px;
    padding-left: 70px;
}

.ey-container .order-row .order-row-l .order-row-lb span {
    margin: 0 10px;
}

.ey-container .order-row .order-row-r {
    display: flex;
    align-items: center;
}

.ey-container .order-row .order-row-r .red {
    font-size: 30px;
}

/* .ey-container .zan-uc-box *, .ey-container .zan-uc-box::after, .ey-container .zan-uc-box::before {
    box-sizing: unset;
} */

.ey-container .u_xinxi {
    padding: 0 44px;
}

.ey-container .zan-uc-box {
    padding: 25px;
    background: #fff;
    min-height: 649px;
}

.ey-container .zan-uc-box .tag {
    display: inline-block;
    padding: 0 12px;
    margin-left: 10px;
    margin-top: -2px;
    font-size: 12px;
    color: #fff;
    vertical-align: middle
}

.ey-container .zan-uc-box .box-hd {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ey-container .zan-uc-box .box-hd .title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    margin-right: auto;
}

.ey-container .zan-uc-box .box-hd small {
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.5
}

.ey-container .zan-uc-box .box-hd small a {
    color: #757575
}

.ey-container .zan-uc-box .box-hd small a:hover {
    text-decoration: underline
}

.ey-container .zan-uc-box .box-hd .filter-list {
    float: left;
    margin: 0;
    padding: 18px 0;
    list-style-type: none;
    font-size: 16px;
    line-height: 1.25
}

.ey-container .zan-uc-box .box-hd .filter-list li {
    float: left;
    padding: 0 20px;
    border-left: 1px solid #e0e0e0;
    color: #757575
}

.ey-container .zan-uc-box .box-hd .filter-list li.first {
    padding-left: 0;
    border-left: 0
}

.ey-container .zan-uc-box .box-hd .filter-list li.active,
.ey-container .zan-uc-box .box-hd .filter-list li.active a {
    color: #ff6700
}

.ey-container .zan-uc-box .box-hd .subtitle {
    float: left;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 400;
    color: #333
}
.ey-container .zan-uc-box .box-hd-b .more {
    padding-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.ey-container .zan-uc-box .box-hd-b .actions {
    margin-left: auto;
}

.ey-container .zan-uc-box .box-hd-b .actions .btn-xin {
    padding: 7px 26px;
    border: 1px solid #b0b0b0;
    border-radius: 0;
}

.ey-container .zan-uc-box .box-hd-b .actions .el-button {}

.ey-container .zan-uc-box .box-hd-b .actions .btn-small {
    width: 118px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
}

.ey-container .zan-uc-box .box-hd-b .actions .btn-line-gray {
    border-color: #b0b0b0;
    background: #fff;
    color: #757575;
}

.ey-container .zan-uc-box .box-hd-b .actions .btn-primary {
    color: #fff;
    border: 1px solid #ff9600 !important;
}

.ey-container .zan-uc-box .box-hd-b .actions .btn-contract {
    margin-right: 5px;
}

.ey-container .zan-uc-box .box-bd .empty {
    margin: 40px 0;
    font-size: 18px;
    text-align: center;
    color: #b0b0b0
}

.ey-container .zan-uc-box .box-bd .empty p {
    margin: 0 0 5px
}

.ey-container .zan-uc-box .box-bd .empty a {
    font-size: 14px;
    color: #424242
}

.ey-container .zan-uc-box .box-bd .empty a:hover {
    color: #ff6700
}

.ey-container .zan-uc-box .box-bd .empty .sep {
    font-size: 14px
}

/* 售后-开始 */
.zan-uc-box .order-detail {
    padding: 25px 0;
}

.ey-container .zan-uc-box .order-status {
    margin-bottom: 25px;
    font-size: 18px;
}

.ey-container .zan-uc-box .order-progress {
    height: 65px;
    margin-bottom: 15px;
}

.ey-container .zan-uc-box .progress-list {
    width: 880px;
    height: 20px;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    border-radius: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #424242;
    background-color: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.ey-container .zan-uc-box .progress-list .step-xin {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 20px;
}

.ey-container .zan-uc-box .progress-list .step-xin .info {
    margin-top: 15px;
    color: #757575;
    line-height: 1.3;
}

.ey-container .zan-uc-box .progress-list .step-first {
    margin-left: 0 !important;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.ey-container .zan-uc-box .progress-list .step-last {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ey-container .zan-uc-box .progress-list .step-done {
    background-color: #83c44e;
    color: #fff;
}

.ey-container .zan-uc-box .progress-list .step-active {
    margin-left: -10px;
    padding-right: 8px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #83c44e;
    color: #fff;
}

.zan-orderview .uc-order-item-finish .order-desc,
.zan-orderview .uc-order-item-finish .order-status {
    color: #b0b0b0;
}

.ey-container .zan-uc-box .order-goods h3 {
    margin: 0 0 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    border-left: 3px solid #ff7600;
    padding-left: 10px;
}

.ey-container .zan-uc-box .order-goods .goods-table {
    width: 100%;
}

.ey-container .zan-uc-box .order-goods .goods-table .goods-box {
    border-bottom: 1px solid #e0e0e0;
    padding-top: 10px;
}

.ey-container .zan-uc-box .order-goods .goods-table .col-thumb {
    width: 100px;
    padding: 10px 0px;
}

.ey-container .zan-uc-box .order-goods .goods-table .col {
    text-align: left;
    color: #333;
}

.ey-container .zan-uc-box .order-goods .goods-table .figure-thumb {
    width: 80px;
}

.ey-container .zan-uc-box .order-goods .goods-table .figure-thumb a.pro-pic {
    display: table-cell;
    position: relative;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: middle;
}

.ey-container .zan-uc-box .order-goods .goods-table .figure-thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.ey-container .zan-uc-box .order-goods .goods-table .col-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.order-goods .goods-table .col-info .col-info-box,
.order-goods .goods-table .col-info .goods-box-info {
    width: 100%;
}

.order-goods .goods-table .col-name {
    width: 520px;
    padding-right: 20px;
}

.order-goods .goods-table .col-name .name {
    margin: 0;
}

.order-goods .goods-table .col-name .name a {
    color: #333;
}

.goods-table .price {
    margin: 0;
}

.goods-table .col-actions {
    width: 120px;
    padding: 0;
    text-align: right !important;
}

.ey-container .zan-uc-box .order-detail-info {
    position: relative;
    height: auto;
    min-height: 120px;
    padding: 6px 0 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.ey-container .zan-uc-box .order-detail-info h3 {
    margin: 0 0 15px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    border-left: 3px solid #ff7600;
    padding-left: 10px;
}

.ey-container .zan-uc-box .order-detail-info .info-table {
    color: #757575;
}

.ey-container .zan-uc-box .order-detail-info .info-table td,
.ey-container .zan-uc-box .order-detail-info .info-table th {
    padding: 3px 0;
    text-align: left;
    background-color: unset
}

.ey-container .zan-uc-box .order-detail-info .info-table th {
    width: auto;
    text-align: right;
    padding-right: 5px;
}

.ey-container .zan-uc-box .order-detail-info .actions {
    position: absolute;
    top: 5px;
    right: 0
}

.ey-container .zan-uc-box .order-detail-info .actions .btn {
    display: block;
    margin: 0 0 10px
}

.ey-container .zan-uc-box .order-detail-total .total-table {
    margin: 0 0 0 auto;
    color: #757575;
}

.ey-container .zan-uc-box .order-detail-total .total-table td,
.ey-container .zan-uc-box .order-detail-total .total-table th {
    padding: 5px 0;
    text-align: left;
}

.ey-container .zan-uc-box .order-detail-total .total-table th {
    width: 200px;
    font-weight: 400;
    text-align: right;
    background: unset;
}

.ey-container .zan-uc-box .order-detail-total .total-table td {
    text-align: right;
    color: #ff6700;
}

.ey-container .zan-uc-box .order-detail-total .total-table td.total .num,
.ey-container .zan-uc-box .order-detail-total .total-table th.total .num {
    font-size: 30px;
    font-weight: 200;
    line-height: 1;
}

.ey-container .zan-uc-box .order-detail-total .total-table td.total .num em,
.ey-container .zan-uc-box .order-detail-total .total-table th.total .num em {
    font-size: 14px;
    font-weight: 200;
    line-height: 1;
}

.ey-container .zan-uc-box .order-detail-total .total-table td .num {
    margin-right: 3px;
}




.service-list-item {
    margin-bottom: 20px;
    border: 1px solid rgba(255, 103, 0, 0.3);
}

.service-list-item.no {
    border: 1px solid #b0b0b0;
}

.service-list-item .hd {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 103, 0, 0.3);
    background-color: rgba(255, 103, 0, 0.06);
}

.service-list-item.no .hd {
    border-bottom: 1px solid #e0e0e0;
    background-color: #fff;
}

.service-list-item .hd .status-xin {
    margin-bottom: 5px;
    font-size: 18px;
    color: #ff6700;
}

.service-list-item.no .hd .status-xin {
    color: #b0b0b0;
}

.service-list-item .hd small {
    font-size: 80%;
    margin-left: 4px;
}

.service-list-item .hd .s-info {
    font-size: 14px;
    color: #757575;
}

.service-list-item .hd .s-info span:not(:last-child):after {
    margin: 0 .25em;
    content: "|";
    color: #e0e0e0;
}

.service-list-item .bd {
    padding: 25px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-list-item .bd .thumb {
    margin-right: 30px;
}

.service-list-item .bd .thumb img {
    width: auto;
    max-height: 144px;
}

.service-list-item .bd .p-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.service-list-item .bd .button {
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 1px solid #b0b0b0;
    color: ##757575;
    -webkit-appearance: none;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    margin: 0 0 10px auto;
    padding: 7px 26px;
    font-size: 14px;
    border-radius: 0;
}


/* .el-main .service-main-box *, .el-main .service-main-box::after, .el-main .service-main-box::before {
    box-sizing: unset;
} */
.el-main .service-main-box {
    padding: 36px 0;
}

.el-main .service-content-box {
    margin: 0 48px;
}

.el-main .order-view-box .box-hd {
    border: unset !important;
}

.el-main .service-content-box .box-hd {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 25px;
}

.el-main .service-content-box .box-hd .title {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #757575;
    margin-right: auto;
}

.el-main .service-content-box .box-hd .clearfix:after,
.el-main .service-content-box .box-hd .clearfix:before {
    content: " ";
    display: table;
}

.el-main .service-content-box .box-hd .clearfix:after {
    clear: both;
}

.ey-container .service-content-box .box-hd .more {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.el-main .service-content-box .box-hd .subtitle {
    float: left;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.el-main .service-content-box .box-hd .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: auto;
}

.el-main .service-content-box .box-hd .actions .btn-xin {
    padding: 7px 26px;
    border: 1px solid #b0b0b0;
    border-radius: 0;
}

.el-main .service-content-box .box-hd .actions .btn-small {
    width: 118px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
}

.el-main .service-content-box .box-hd .actions .btn-line-gray {
    border-color: #b0b0b0;
    background: #fff;
    color: #757575;
}

.xin_mian .service-main-box {
    padding: 0;
}

.xin_mian .service-content-box {
    margin: 0;
}

.order-status-address {
    height: auto;
    padding: 24px;
    border-bottom: none;
    background: url(../images/emailAddressBg.png) no-repeat top;
    background-size: 100%;
    border: 1px solid #e0e0e0;
    border-top: none;
    margin-bottom: 25px;
}

.order-detail-status {
    border-bottom: 1px solid #e0e0e0;
}

.order-status-address .line1 {
    position: relative;
    margin-bottom: 12px;
    font-size: 14px;
    color: #000;
    line-height: 19px;
}

.order-status-address p {
    margin: 0;
}

.order-status-address .line1 .left {
    opacity: .54;
}

.order-status-address .line1 .right {
    position: absolute;
    right: 24px;
    top: 0;
}

.order-status-address .line1 .right span {
    opacity: .54;
}

.order-status-address .line1 .right span.red {
    color: #f60;
    opacity: 1;
}

.order-status-address .line1 .right i.tip {
    float: right;
    margin: 1px 0 0 6px;
    width: 16px;
    height: 16px;
    font-style: normal;
    background: url(../images/colseOrderTip.png) no-repeat top;
    background-size: 100%;
}

.order-status-address .line1 .right i.tip b {
    display: none;
    width: 400px;
    position: relative;
    top: 27px;
    left: -415px;
    z-index: 99;
    padding: 20px 35px;
    font-weight: 400;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    background-color: #fff;
    border: 1px solid #ff6700;
}

.order-status-address .line2,
.order-status-address .line3 {
    margin-top: 6px;
    font-size: 16px;
    color: #000;
    opacity: .87;
    line-height: 22px;
}

.delivery-submit {
    margin-top: 20px;
}

.delivery-submit .btn-xin {
    display: inline-block;
    width: 158px;
    height: 38px;
    padding: 0;
    margin: 0;
    border: 1px solid #b0b0b0;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.delivery-submit a {
    margin-right: 10px;
}

.btn-primary {
    background: #ff9600 !important;
    border-color: #ff9600 !important;
    color: #fff;
}

.btn-primary:hover {
    color: #fff !important;
}

/* .btn-small {
    width: 118px!important;;
    height: 28px!important;;
    font-size: 12px!important;;
    line-height: 28px!important;;
} */
.order-progress-xin {
    margin-bottom: 30px;
    margin-top: 15px;
}

.order-progress-xin .progress-list {
    width: 880px;
    height: 20px;
    margin: 0 auto;
    padding: 0;
    list-style-type: none;
    border-radius: 20px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #424242;
    background-color: #eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.order-progress-xin .progress-list .step-xin {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 20px;
}

.order-progress-xin .progress-list .step-first {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.order-progress-xin .progress-list .step-done {
    background-color: #83c44e;
    color: #fff;
}

.order-progress-xin .progress-list .step-active {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #83c44e;
    color: #fff;
}

.showDetail {
    overflow: hidden;
    -webkit-transition: height .3s ease;
    transition: height .3s ease;
}

.order-delivery {
    padding: 0 20px 12px;
    border: 1px solid #83c44e;
    font-size: 12px;
    color: #757575
}

.order-delivery.order-logistics {
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    padding: 20px 20px 20px 0
}

.order-delivery.order-logistics p {
    font-size: 14px
}

.order-delivery .delivery-list-wrapper {
    height: 105px;
    overflow: hidden;
}

.order-delivery .delivery-list-wrapper.height-auto {
    height: auto;
}

.order-delivery .delivery-list {
    margin: 20px 0 0 0;
    padding: 0;
    list-style-type: none
}

.order-delivery .delivery-list li {
    position: relative;
    padding: 6px 6px 6px 18px;
    text-overflow: ellipsis;
    overflow: hidden
}

.order-delivery .delivery-list li:before {
    position: absolute;
    top: 0;
    left: 3px;
    width: 1px;
    height: 30px;
    content: "";
    background-color: #e0e0e0
}

.order-delivery .delivery-list li:after {
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    content: "";
    background-color: #e0e0e0
}

.order-delivery .delivery-list li:first-child:before {
    top: 15px;
    height: 15px
}

.order-delivery .delivery-list li:first-child:after {
    background-color: #83c44e
}

.order-delivery .delivery-list li:last-child:before {
    height: 15px
}

.order-delivery .delivery-list li.empty {
    padding: 0;
    font-size: 14px;
    text-align: center
}

.order-delivery .delivery-list li.empty:after,
.order-delivery .delivery-list li.empty:before {
    display: none
}

.order-delivery .delivery-list li.loading {
    padding: 42px 0
}

.order-delivery .delivery-list li.loading:after,
.order-delivery .delivery-list li.loading:before {
    display: none
}

.order-delivery-trigger {
    display: block;
    margin-top: -1px;
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid #83c44e;
    text-align: center;
    color: #424242;
    cursor: pointer;
}

.order-delivery-trigger .iconfont {
    font-size: 16px;
    line-height: 16px;
    vertical-align: text-bottom
}

.service-content-box .order-items-table {
    width: 100%;
    margin-bottom: 30px
}

.service-content-box .order-items-table .col {
    height: 90px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    color: #333
}

.service-content-box .order-items-table .col.col-thumb {
    width: 100px
}

.service-content-box .order-items-table .col .figure-thumb {
    width: 80px
}

.service-content-box .order-items-table .col .figure-thumb img {
    width: 80px;
    height: 80px
}

.service-content-box .order-items-table .col.col-name {
    width: 290px
}

.service-content-box .order-items-table .col.col-name a {
    color: #333
}

.service-content-box .order-items-table .col.col-action {
    text-align: right
}

.service-content-box .order-items-table .col.col-action p.name {
    margin: 0
}

.service-content-box .order-detail-info {
    position: relative;
    height: auto;
    min-height: 120px;
    padding: 6px 0 12px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0
}

.service-content-box .order-detail-info h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 400;
    color: #333
}

.service-content-box .order-detail-info h3 .service-type {
    color: #ff6700;
    margin: 0 5px
}

.service-content-box .order-detail-info .info-table {
    margin: 20px 0;
    font-size: 14px;
    color: #757575
}

.service-content-box .order-detail-info .info-table th {
    width: 80px;
    padding: 3px 0;
    font-weight: 400 !important;
    text-align: left;
    background: unset;
}

.service-content-box .order-detail-info .info-table td {
    padding: 3px 0;
    text-align: left
}

.service-content-box .order-detail-info .info-table .link {
    margin-left: 30px;
    color: #ff6700
}

.zan-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.zan-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background: #000;
}

.zan-popup .zan-popup__mask {
    opacity: .5;
    background-color: #000
}

.zan-dialog__wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden
}

.zan-dialog__wrapper .zan-dialog {
    position: relative
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__body {
    padding: 20px
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__body.no-header {
    padding-top: 30px
}

.zan-dialog__wrapper .zan-dialog .el-dialog__footer {
    height: 40px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    background-color: #f5f5f5
}

.zan-dialog__wrapper .zan-dialog .el-dialog__footer .btn {
    margin: 0 7px
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__headerbtn {
    position: absolute;
    right: 14px;
    top: 14px;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #757575;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    z-index: 10;
    border-radius: 15px
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__headerbtn.no-header {
    top: 5px;
    right: 5px
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__headerbtn:hover {
    color: #fff;
    background-color: #e53935
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__headerbtn .zan-dialog__close {
    vertical-align: middle;
    font-size: 24px;
    font-weight: 200
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__header {
    position: relative;
    height: 32px;
    padding: 14px 20px;
    line-height: 32px;
    background-color: #f5f5f5
}

.zan-dialog__wrapper .zan-dialog .zan-dialog__header .zan-dialog__title {
    font-size: 18px;
    font-weight: 400;
    color: #424242;
    vertical-align: middle
}

.dialog-fade-enter-active {
    -webkit-animation: dialog-fade-in-data-v-54b15c30 .7s;
    animation: dialog-fade-in-data-v-54b15c30 .7s
}

.dialog-fade-leave-active {
    -webkit-animation: dialog-fade-out-data-v-54b15c30 .7s;
    animation: dialog-fade-out-data-v-54b15c30 .7s
}

.modal-delivery {
    width: 500px
}

.modal-delivery .hd h3 {
    margin: 60px 0 36px 0;
    text-align: center;
    font-size: 30px;
    line-height: 39px;
    opacity: .86
}

.modal-delivery .btn-wrap {
    margin-top: 36px;
    text-align: center;
    font-size: 16px
}

.modal-delivery .btn-wrap a {
    display: inline-block;
    width: 180px;
    height: 40px;
    border: none;
    font-size: 18px;
    color: #fff;
    line-height: 40px
}

.modal-delivery .btn-wrap a:first-child {
    margin-right: 14px;
    background: #bdbdbd
}

.modal-delivery .btn-wrap a:nth-child(2) {
    background: #fe6700
}

.modal-delivery {
    height: 468px;
    margin: 0 0 0 -20px
}

.modal-delivery .form .select-wrap {
    display: block;
    width: 376px;
    height: 52px;
    margin: auto;
    border: unset;
    outline: none
}

.modal-delivery .form input {
    display: block;
    width: 376px;
    height: 52px;
    padding: 0 20px;
    margin: auto;
    border: 1px solid #e0e0e0;
    outline: none
}

.modal-delivery .form .select-wrap,
.modal-delivery .form input {
    position: relative;
    margin-bottom: 14px
}

.modal-delivery .form .select-wrap .arrow {
    position: absolute;
    top: 20px;
    left: 346px;
    z-index: 98;
    width: 14px;
    height: 9px;
    background: url(../images/arrow.png) no-repeat 50%;
    background-size: 14px 9px
}

.modal-delivery .form select {
    position: relative;
    z-index: 199;
    display: block;
    width: 376px;
    height: 52px;
    padding: 0 20px;
    border: 1px solid #e0e0e0;
    background: none;
    outline: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}

.modal-delivery .error-tip {
    font-size: 12px;
    width: 375px;
    margin: 4px auto 0;
    color: red
}

.modal-delivery .error-tip.opacity0 {
    opacity: 0
}

.modal-delivery .tip {
    width: 375px;
    margin: 10px auto 0;
    font-size: 14px;
    opacity: .54
}

/* 售后-结束 */




.ey-container .order-progress {
    display: block;
    /* border: 1px solid #eee; */
    /* box-shadow: 2px 1px 6px rgba(0,0,0,0.1); */
}

.ey-container .order-progress .order-progress-tit {
    background: #fafafa;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 10px 25px;
    font-size: 16px;
}

/* .ey-container .order-progress .order-progress-titL{
	flex: 1;
	font-size: 14px;
} */
.ey-container .order-progress .order-progress-titL {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
}

.ey-container .order-progress .order-progress-titL span {
    margin: 0 6px;
}

.ey-container .order-progress .order-progress-con {
    padding: 20px;
}

.ey-container .order-progress .order-progress-con .el-step__head {
    width: 220px;
}

.ey-container .order-progress .el-step__description.is-process {
    color: #C0C4CC;
}

.ey-container .order-progress .el-step__title.is-process {
    color: #C0C4CC;
}

.ey-container .order-progress .el-step__head.is-process {
    color: #C0C4CC;
    border-color: #C0C4CC;
}

.ey-container .order-progress .el-step__title {
    font-weight: bold;
}

/* .ey-container .order-progress .order-progress-tit2{
	background: #fafafa;
	display: flex;
	padding: 10px 25px;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
	color: #333;
} */

.ey-container .order-progress .order-progress-tit2 {
    height: 50px;
    padding: 0 32px;
    /* margin-bottom: 28px; */
    border-left: 2px solid #ff6700;
    background-color: #eee;
    color: #333;
}

.ey-container .order-progress .goods-item {
    display: flex;
}

.ey-container .order-progress .goods-item .goods-item-l {
    width: 90px;
    padding-right: 10px;
}

.ey-container .order-progress .goods-item .goods-item-r {
    flex: 1;
}

.ey-container .order-progress .goods-item .goods-item-l img {
    width: 80px;
    height: 80px;
    border: 1px solid #eaeaea;
    padding: 2px;
}

.ey-container .order-progress .order-progress-con .span-row {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    color: #666;
}

.ey-container .order-progress .order-progress-con .span-row a {
    color: #ff7600;
}

.ey-container .ey-con .el-table th {
    background-color: #f9f9f9 !important;
    color: #555;
    font-weight: normal !important;
}

.ey-container .email-code .el-input {
    width: 70%;
}

.ey-container .tel-code .el-input {
    width: 60%;
}


/* .ey-container .user-pay-con{
    padding: 36px 0!important;
} */
/* .ey-container .user-pay-con .user-pay-box{
    margin: 0 48px;
} */
.ey-container .user-pay-title h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
    line-height: 68px;
    color: #757575;
}

.ey-container .user-pay-con .user-pay-box .item-from-row {
    position: relative;
    min-height: 48px;
    line-height: 48px;
    padding: 20px 0;
    vertical-align: middle;
    width: 100%;
    display: inline-block;
    border-bottom: 1px solid #eee;
    ;
}

.ey-container .user-pay-con .user-pay-box .item-from-row .from-row-l {
    text-align: left;
    width: auto;
}

.ey-container .user-pay-con .user-pay-box .item-from-row .from-row-r {
    width: 758px;
    font-size: 16px;
    color: #979696;
}

.ey-container .user-pay-con .user-pay-box .item-from-row .el-input__inner {
    border: 1px solid #ff7e00;
}

.ey-container .item-from-row .pay-type-item {
    float: left;
    width: 130px;
    height: 50px;
    border: 1px solid #efefef;
    text-align: center;
    margin-right: 30px;
    margin-bottom: 10px;
    padding: 5px 10px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ey-container .item-from-row .pay-type-item img {
    width: 100%;
    height: 100%;
    vertical-align: unset;
}

.ey-container .item-from-row .pay-type-item i {
    position: absolute;
    right: 2px;
    bottom: 2px;
    display: block;
    color: #fff;
    z-index: 12;
    font-size: 14px;
    display: none;
}

.ey-container .item-from-row .pay-type-item.active:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    color: #01c801;
    width: 0;
    height: 0;
    border-bottom: 30px solid #01c801;
    border-left: 30px solid transparent;
    z-index: 10;
}

.ey-container .item-from-row .pay-type-item.active i {
    display: block;
}

.ey-container .item-from-row .pay-type-item.active {
    border-color: #61c865;
}

.ey-container .user-pay-box .button2 {
    float: left;
    width: 250px;
    height: 48px;
    line-height: 48px;
    border-radius: unset;
}

.ey-container .ey-con-inside .pay_details {
    border-collapse: collapse;
}

.ey-container .ey-con-inside .el-table th {
    background-color: #f9f9f9 !important;
    color: #555;
}

.ey-container .ey-con-inside .el-table td {
    padding: 15px 0;
    border-top: unset;
    border-left: unset;
    border-right: unset;
}

.ey-container .ey-con-inside .cell {
    font-size: 15px;
    color: #7b7b7b;
}

.ey-container .ey-con-inside .el-table .cell {
    font-size: 15px;
    color: #7b7b7b;
}

.ey-container .ey-con-inside .el-table thead .cell {
    font-size: 15px;
    color: #3d3d3d;
}

.arc-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ey-container .ey-con-inside .el-table .arc-pic {
    display: table-cell;
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}

.ey-container .ey-con-inside .el-table .arc-pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.arc-title {
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .ey-container .ey-con-inside .el-table td, .ey-container .ey-con-inside .el-table th {
    text-align: center;
} */



/*分页*/
.ey-container .pagination {
    display: inline-block;
    padding-left: 0;
    border-radius: 4px
}

.ey-container .pagination>li {
    display: inline
}

.ey-container .pagination>li>a,
.ey-container .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #ff7600;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #eee
}

.ey-container .pagination>li:first-child>a,
.ey-container .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.ey-container .pagination>li:last-child>a,
.ey-container .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.ey-container .pagination>li>a:focus,
.ey-container .pagination>li>a:hover,
.ey-container .pagination>li>span:focus,
.ey-container .pagination>li>span:hover {
    color: #ff7600;
    background-color: #eee;
    border-color: #eee
}

.ey-container .pagination>.active>a,
.ey-container .pagination>.active>a:focus,
.ey-container .pagination>.active>a:hover,
.ey-container .pagination>.active>span,
.ey-container .pagination>.active>span:focus,
.ey-container .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #ff7600;
    border-color: #ff7600
}

.ey-container .pagination>.disabled>a,
.ey-container .pagination>.disabled>a:focus,
.ey-container .pagination>.disabled>a:hover,
.ey-container .pagination>.disabled>span,
.ey-container .pagination>.disabled>span:focus,
.ey-container .pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #eee
}

.ey-container .dataTables_paginate,
.ey-container .fytotal {
    text-align: center;
}

.ey-container .fytotal {
    color: #999;
}

.ey-container div.dataTables_paginate .paginate_button.active>a,
.ey-containerdiv.dataTables_paginate .paginate_button.active>a:focus,
.ey-containerdiv.dataTables_paginate .paginate_button.active>a:hover {
    background: #ff7600 !important;
    border-color: #ff7600 !important;
    color: #fff !important;
}

/*支付类型选择*/
.ey-container .pay-type-select {
    vertical-align: text-top;
}

.ey-container .pay-type-select .pay-item {
    display: block;
    width: 150px;
    float: left;
    margin-right: 10px;
}

.ey-container .pay-type-select .pay-item a {
    display: inline-block;
}

.ey-container .pay-type-select .pay-item img {
    width: 138px;
}

.ey-container .pay-type-select .pay-item span {
    display: inline-block;
}

.ey-container .pay-type ul {
    position: relative;
    border-bottom: 1px solid #eaeaea;
    width: 100%;
    height: 50px;
    line-height: 50px;
    display: block;

}

.ey-container .pay-type ul li {
    float: left;
    margin-right: 30px;
}

.ey-container .pay-type ul li a {
    color: #555;
    display: block;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid #eaeaea;
}

.ey-container .pay-type .payTag a {
    color: #ff7600;
    border-bottom: 1px solid #ff7600;
}

.ey-container .pay-type .pay-con {
    padding: 40px 20px;
}

.ey-container .pay-type .pay-con .el-form-item {
    margin-bottom: 0;
}

.ey-container .pay-type .pay-inner-con {
    background-color: #f5f7fa;
    padding: 20px;
}

.ey-container .pay-type .pay-item-row {
    line-height: 30px;
    display: flex;
}

.ey-container .pay-type .pay-item-row .pay-item-l {
    text-align: right;
}

.ey-container .pay-type .pay-con .pay-type-item {
    float: left;
    width: 130px;
    height: 50px;
    margin: 0 30px 10px 0;
    padding: 5px 10px;
    border: 1px solid #efefef;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ey-container .pay-type .pay-con .pay-type-item img {
    width: 100%;
    height: 100%;
    vertical-align: unset;
}

.ey-container .pay-type .pay-con .pay-type-item i {
    position: absolute;
    right: 2px;
    bottom: 2px;
    display: block;
    color: #fff;
    z-index: 12;
    display: none;
}

.ey-container .pay-type .pay-con .pay-type-item.active:before {
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    color: #FF7600;
    width: 0;
    height: 0;
    border-bottom: 30px solid #FF7600;
    border-left: 30px solid transparent;
    z-index: 10;
}

.ey-container .pay-type .pay-con .pay-type-item.active i {
    display: block;
}

.ey-container .pay-type .pay-con .pay-type-item.active {
    border-color: #ffc899;
}

.ey-container .level-table .radio-label .check-mark {
    top: -8px;
}

.ey-container .level-table .radio-label .radio {
    display: none;
}

.ey-container .images_upload_main .images_upload {
    display: inline-block;
    margin-right: 10px;
    float: left;
}

.ey-container .images_upload_main .images_upload:last-child {
    margin-right: 0;
}

.ey-container .images_upload_main .fieldext_upload {
    display: inline-block;
    margin-right: 10px;
    display: inline-block;
    float: left;
}

.ey-container .images_upload_main .images_upload_item {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.ey-container .images_upload_main .images_upload_item .pic {
    position: relative;
    display: table-cell;
    width: 120px;
    height: 120px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}

.ey-container .images_upload_main .images_upload_item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.ey-container .images_upload_main .images_upload_item .delete {
    position: absolute;
    top: 1px;
    right: 1px;
    z-index: 2;
    width: 0px;
    height: 0px;
    line-height: 26px;
    border-top: 30px solid rgba(0, 0, 0, 0.5);
    border-left: 30px solid transparent;
}

.ey-container .images_upload_main .images_upload_item .delete::after {
    position: absolute;
    content: "\d7";
    font-size: 20px;
    color: white;
    top: -35px;
    right: 1px;
}

.ey-container .images_upload_main textarea {
    border-color: #ddd;
    border-radius: 3px;
    -webkit-appearance: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.065) inset;
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1) 0s;
    font-size: 12px;
}

.ey-container .order-detail.uc-order-item-pay .order-status {
    color: #ff6700;
}

.ey-container .order-detail.uc-order-item-shipping .order-status {
    color: #ff6700;
}

.ey-container .order-detail.uc-order-item-finish .order-status {
    color: #b0b0b0;
}

.ey-container .order-status {
    display: flex;
}

.ey-container .order-status .status-item {
    position: relative;
    width: 25%;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

.ey-container .order-status .status-item .status-title span {
    display: block;
}

.ey-container .order-status .status-item .status-title span.time {
    font-size: 12px;
    color: #999;
}

.ey-container .order-status .status-item .status-title span.text {
    line-height: 1.5;
}

.ey-container .order-status .status-item .status-icon {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background: #ccd5db;
    border-radius: 50%;
    border: 2px solid #ccd5db;
}

.ey-container .order-status .status-item .status-icon i {
    font-size: 22px;
}

.ey-container .order-status .status-item:after,
.ey-container .order-status .status-item:before {
    position: absolute;
    top: 20px;
    z-index: 0;
    width: 50%;
    height: 3px;
    content: " ";
    background-color: #f3f7f9;
}

.ey-container .order-status .status-item:before {
    left: 0;
}

.ey-container .order-status .status-item:after {
    right: 0;
}

.ey-container .order-status .status-item:first-child:before {
    left: 50%;
}

.ey-container .order-status .status-item:last-child::after {
    right: 50%;
}

.ey-container .order-status .status-item.current:after,
.ey-container .order-status .status-item.current:before {
    background-color: #67c23a;
}

.ey-container .order-status .status-item.current .status-icon {
    color: #67c23a;
    background-color: #fff;
    border-color: #67c23a;
}

.ey-container .order-status .status-item.disabled:after,
.ey-container .order-status .status-item.disabled:before {
    background-color: #f3f7f9;
}

/* 新增会员升级样式 */

.meTitle {
    color: #333;
    line-height: 30px;
    font-size: 14px;
    margin: 15px 0;
}

.dwz-viptc {
    line-height: 30px;
    padding-top: 20px;
    color: #666;
    font-size: 14px;
}

.postForm-vip {
    overflow: hidden;
    padding-bottom: 40px;
    border-bottom: 1px solid #f4f4f4;
}

.button2 {
    text-align: center;
    width: 150px;
    line-height: 40px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    font-weight: 700;
    float: right;
    border-radius: 4px;
}

.button2:hover,
.button2:focus {
    color: #fff;
}

.button3 {
    text-align: center;
    width: 150px;
    line-height: 40px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
    font-weight: 700;
    float: left;
    border-radius: 4px;
}

.button3:hover,
.button3:focus {
    color: #fff;
}

.recharge .sel-vip {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.recharge .pc-vip-list {
    position: relative;
    width: calc((100% - 60px) / 3);
    padding: 30px 0px;
    margin-top: 18px;
    margin-right: 30px;
    border-radius: 8px;
    cursor: pointer;
    border: #eee 2px solid;
}

.recharge .pc-vip-list:nth-child(3n) {
    margin-right: 0px !important;
}

.yey-yincang-vip {
    display: none;
}

.recharge .pc-vip-list.active {
    background: #f7f7f7;
}

.recharge .pc-vip-list .icon-recomd {
    padding: 0 10px;
    display: block;
    height: 26px;
    line-height: 26px;
    position: absolute;
    right: 10px;
    top: -15px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.recharge .pc-vip-list .pc-vip-name {
    font-size: 24px;
    color: #333;
    text-align: center;
    padding: 0 10px 5px 10px;
}

.recharge .pc-vip-list .money {
    font-size: 22px;
    color: #ff7600;
    text-align: center;
    padding: 0 10px;
}

.recharge .pc-vip-list .money .money-rmb-yj {
    font-size: 16px;
    color: #52514f;
    margin-left: 5px;
}

.recharge .pc-vip-list .money .money-nd-yj,
.recharge .pc-vip-list .money .money-bn-yj,
.recharge .pc-vip-list .money .money-yd-yj {
    font-size: 16px;
    color: #52514f;
    margin-left: 10px;
    text-decoration: line-through;
}

.recharge .pc-vip-list.mar-l-95 {
    margin-right: 0;
}

.vip-zyxs-box {
    margin-top: 30px;
}

.vip-zyxs-box h3 {
    font-size: 16px;
    color: #333;
    padding: 15px 0;
}

.vip-zyxs-box p {
    line-height: 26px;
    padding-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.vip-zyxs-box p strong {
    padding-right: 5px;
}

.cash-info {
    height: auto;
    padding: 15px 0 15px;
    overflow: hidden;
}

.cash-info .info-pic {
    width: 80px;
    height: 80px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-right: 15px;
}

.cash-info .info-user-wrap {
    display: inline-block;
    vertical-align: middle;
}

.cash-info .user-info {
    height: 20px;
    line-height: 20px;
    padding: 0 !important;
}

.cash-info .user-name {
    float: left;
    font-size: 16px;
    color: #333;
    height: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 6px;
}

.cash-info .user-info img {
    float: left;
    width: 20px;
    height: 20px;
    vertical-align: top;
}

.cash-info .user-tips {
    height: 18px;
    line-height: 18px;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

.cash-info .user-tips span {
    color: #ff9600;
}

/* 个人中心-开始 */
.portal-content-box .portal-main {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.portal-content-box .user-card {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.portal-content-box .user-card .user-card-r {
    margin-left: 30px;
    display: flex;
    align-items: center;
}

.portal-content-box .user-card .user-card-r .username {
    margin-left: 10px;
    font-size: 24px;
    font-weight: 400;
    color: #616161;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.portal-content-box .user-card .user-card-edit {
    display: none;
}
.portal-content-box .user-card .user-card-edit a {
    width: 30px;
    text-align: right;
    font-size: 18px;
}

.portal-content-box .user-card .tip {
    margin: 0 0 10px;
    color: #b0b0b0;
}

.portal-content-box .user-card .link {
    font-size: 12px;
    color: #ff6700;
}

.portal-content-box .user-card .user-card-l {
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .14);
}

.portal-content-box .user-card .avatar {
    max-width: 100%;
    height: 100%;
    padding: 2px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.portal-content-box .user-card .signin-link {
    margin-bottom: 10px;
    color: #b0b0b0;
}

.portal-content-box .user-card .signin-link a {
    color: #ff9600;
}

.portal-content-box .user-actions {
    float: right;
    width: 358px;
    margin-top: 15px
}

.portal-content-box .user-actions .action-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #757575
}

.portal-content-box .user-actions .action-list li {
    position: relative;
    padding: 6px 0
}

.portal-content-box .user-actions .action-list .btn {
    position: absolute;
    right: 0;
    top: 0
}

.portal-content-box .user-actions .action-list .level-1 {
    color: #e53935
}

.portal-content-box .user-actions .action-list .level-2 {
    color: #ffac13
}

.portal-content-box .user-actions .action-list .level-3 {
    color: #83c44e
}

.portal-content-box .user-actions .action-list .grade {
    color: #ff6700;
}

.portal-data {
    display: flex;
    margin-bottom: 14px;
    padding: 20px 0;
    font-size: 28px;
    align-items: center;
    background-color: #ffffff;
}

.portal-data .portal-data-item {
    flex: 1;
    text-align: center;
    padding: 15px 50px;
}
.portal-data .portal-data-item .portal-data-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.portal-data .portal-data-item span {
    display: block;
    width: auto;
    position: relative;
    color: #37474f;
}

.portal-data .portal-data-item span em {
    color: #ff6700;
}
.portal-data .portal-data-item span:last-child {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
}

.portal-data .portal-data-item .badge {
    position: absolute;
    left: 50%;
    margin-left: 10px;
    top: -2px;
    background-color: #FF0000;
    width: 6px;
    height: 6px;
    border-radius: 6px
}

.portal-data .portal-data-item .num {
    position: absolute;
    text-align: center;
    line-height: 15px;
    top: 4px;
    right: -8px;
    background-color: red;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    padding: 0 4px;
    z-index: 10;
}



.portal-sub {}

.portal-sub .info-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #757575
}

.portal-sub .info-list li {
    position: relative;
    float: left;
    width: calc((100% - 14px) / 2);
    height: 140px;
    margin-right: 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.portal-sub .info-list li:nth-child(2n) {
    margin-right: 0 !important;
}

.portal-sub .info-list li .pic {
    position: relative;
    float: left;
    width: 100px;
    height: 100px;
    margin-left: 45px;
}

.portal-sub .info-list .pic img {
    width: 100%;
    height: 100%;
}
.portal-sub .info-list .m-info {
    display: none;
}
.portal-sub .info-list .info {
    flex: 1;
    margin-left: 27px;
}

.portal-sub .info-list .info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 400;

}

.portal-sub .info-list .info a {
    color: #a8a8a8
}

.portal-sub .info-list .info a i {
    margin-left: 2px;
    font-size: 14px;
}


.portal-sub .info-list .info .num {
    color: #ff6700
}

.portal-sub .info-list .info .iconfont {
    font-size: 16px;
    line-height: 16px;
    vertical-align: -1px
}



/* 个人中心-结束 */

/* 关注-开始 */
.zan-user-favorite .xm-goods-list-wrap {
    width: 868px;
    overflow: hidden;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-list {
    width: 930px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item {
    float: left;
    width: 260px;
    height: 332px;
    padding-top: 40px;
    padding-right: 48px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .figure-img-xin {
    width: 200px;
    margin: 0 auto 10px;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .figure-img-xin a {
    display: block;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .figure-img-xin img {
    width: 200px;
    height: 200px;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .title {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .title,
.xm-goods-item .title a {
    color: #333;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .price {
    margin: 0 0 10px;
    color: #ff6700;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .rank {
    height: 18px;
    margin: 0 0 8px;
    font-size: 12px;
    color: #b0b0b0;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .actions {
    visibility: hidden;
    opacity: 0;
    font-size: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item:hover .actions {
    visibility: visible;
    opacity: 1;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .actions .btn-xin {
    display: inline-block;
    width: 108px;
    height: 38px;
    padding: 0;
    margin: 0 7px;
    border: 1px solid #b0b0b0;
    font-size: 12px;
    line-height: 38px;
    text-align: center;
    color: #b0b0b0;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .actions .btn-small-xin {
    width: 108px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .actions .btn-line-gray-xin {
    border-color: #b0b0b0;
    background: #fff;
    color: #b0b0b0;
}

.zan-user-favorite .xm-goods-list-wrap .xm-goods-item .actions .btn-primary-xin {
    background: #ff6700;
    border-color: #ff6700;
    color: #fff;
}

/* 关注-结束 */
/* 订单评价-开始 */
.zan-comment *,
.zan-comment::after,
.zan-comment::before {
    /* box-sizing: unset; */
}

.zan-comment .zan-comment-box {
    background: #fff;
    padding: 20px 0;
}

.zan-comment .comment-box {
    margin-top: 15px;
}

.comment-list .goods-list-detail {
    width: 100%;
}

.comment-list .goods-list-detail .goods-list-ul {
    width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.comment-list .goods-list-detail .goods-list-li {
    margin: 0 auto 20px;
    width: 100%;
    border: 1px solid #e0e0e0;
}

.comment-list .goods-list-detail .goods-list-li .goods-top {
    border-bottom: 1px solid #e0e0e0;
    height: 60px;
    line-height: 60px;
    color: #757575;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.comment-list .goods-list-detail .goods-list-li .goods-top .time {
    display: inline-block;
    *zoom: 1;
    *display: inline;
    padding: 0 0 0 30px;
}

.comment-list .goods-list-detail .goods-list-li .goods-top .id {
    padding-left: 16px;
    display: inline-block;
    *zoom: 1;
    *display: inline;
}

.comment-list .goods-list-detail .goods-list-li .goods-top .pay {
    float: right;
    padding-right: 30px;
    line-height: 60px;
    height: 60px;
    white-space: nowrap;
    font-size: 14px;
}

.comment-list .goods-list-detail .goods-list-li .goods-top .pay span {
    margin-right: 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #333;
}

.comment-list .goods-list-detail .goods-list-li .goods-top .star {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    float: right;
    padding-right: 30px;
    line-height: 60px;
    height: 60px;
    white-space: nowrap;
    font-size: 14px;
}

.comment-list .goods-list-detail .goods-list-li .goods-content {
    padding: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-l {
    padding: 0 100px 0 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-l a {
    display: block;
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-l img {
    display: block;
    width: 80px;
    height: 80px;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-l .text {
    font-size: 14px;
    color: #757575;
    line-height: 22px;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r {
    width: 150px;
    padding-right: 30px;
    color: #757575;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn-xin {
    height: auto;
    padding: 7px 26px;
    border: 1px solid #b0b0b0;
    border-radius: 0;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn-xin+.btn-xin {
    margin-left: 0;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn-primary-xin {
    background: #ff6700;
    border-color: #ff6700;
    color: #fff;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn1-xin {
    display: block;
    width: 120px;
    line-height: 41px;
    font-size: 14px;
    border: none;
    background: rgba(0, 0, 0, 0);
    color: #b0b0b0;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn-small-xin {
    width: 118px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
}

.comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn2-xin {
    display: block;
    width: 120px;
    line-height: 28px;
    font-size: 14px;
    border: 1px solid #f60;
    background: #f60;
    color: #fff;
}

/* 订单评价-结束 */


/* 优惠卷-结束 */

.coupon-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    width: 906px;
    margin: 0;
    padding: 30px 0 0;
    list-style-type: none
}

.coupon-list .empty {
    margin: 40px 0;
    font-size: 18px;
    text-align: center;
    color: #b0b0b0;
    width: 100%
}

.coupon-list .coupon-card {
    float: left;
    width: 280px;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: #fff
}

.coupon-list .coupon-card .coupon-header {
    background: url(../images/coupon.jpg) no-repeat 0 0;
    width: 280px;
    height: 21px
}

.coupon-list .coupon-card .coupon-content {
    height: 140px;
    word-break: break-all;
    padding: 32px 0 0 0;
    background-color: #ff6700
}

.coupon-list .coupon-card .coupon-content .item-desc {
    padding-top: 15px;
    height: 45px
}

.coupon-list .coupon-card .coupon-footer {
    padding: 20px 0;
    position: relative;
    background: #ff6700;
    height: 36px
}

.coupon-list .coupon-card .coupon-footer .coupon-date {
    font-size: 12px;
    color: #fff;
    width: 100%
}

.coupon-list .coupon-card .coupon-footer:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 19px;
    background: url(../images/coupon.jpg) no-repeat 0 -21px
}

.coupon-list .coupon-card .item-value {
    font-size: 16px;
    color: #fff;
    margin: 0 40px;
    padding: 0 0 15px 0;
    border-bottom: 2px solid #fff;
    height: 60px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden
}

.coupon-list .coupon-card .item-value .value {
    font-size: 60px;
    font-weight: 200;
    line-height: 1
}

.coupon-list .coupon-card .item-description {
    font-size: 12px;
    color: #b0b0b0;
    height: 145px;
    background: #f5f5f5;
    border: 1px solid #ff6700;
    padding: 0 20px;
    width: 238px;
    line-height: 18px;
    overflow-y: scroll;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left
}

.coupon-list .coupon-card .item-description p {
    margin: 0;
    word-break: break-all;
    max-height: 145px
}

.coupon-list .coupon-card-expired .item-description,
.coupon-list .coupon-card-used .item-description {
    border: 1px solid #b0b0b0
}

.coupon-list .coupon-card-expired .coupon-header,
.coupon-list .coupon-card-used .coupon-header {
    background: url(../images/uncoupon.jpg) no-repeat 0 0;
    height: 19px
}

.coupon-list .coupon-card-expired .coupon-content,
.coupon-list .coupon-card-used .coupon-content {
    background-color: #b0b0b0
}

.coupon-list .coupon-card-expired .coupon-footer,
.coupon-list .coupon-card-used .coupon-footer {
    background: #b0b0b0
}

.coupon-list .coupon-card-expired .coupon-footer:after,
.coupon-list .coupon-card-used .coupon-footer:after {
    background: url(../images/uncoupon.jpg) no-repeat 0 -19px
}

/* 优惠卷-结束 */





/*欢迎页*/
.ey-container .user-box {
    position: relative;
    background-color: #ffffff;
}

.ey-container .user-box .user-box-l {
    height: 255px;
}

.ey-container .user-box .user-box-text {
    padding: 20px;
    text-align: center;
    height: 195px;
    background-color: #fd8a27;
    position: relative;
    width: 235px;
    border-radius: 6px 0 0 0;
    color: #fff;
}

.ey-container .user-box .user-box-text .user-photo {
    margin-top: 20px;
    display: inline-block;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.ey-container .user-box .user-box-text .user-photo img {
    width: 60px;
    height: 60px;
}

.ey-container .user-box .user-box-text .name {
    font-size: 16px;
    line-height: 1.5;
}

.ey-container .user-box .user-box-vip {
    text-align: center;
    height: 60px;
    line-height: 60px;
    background-color: #2b3139;
    color: #f2bc38;
    box-sizing: border-box;
    padding: 0 20px;
    border-radius: 0 0 0 6px;
}

.ey-container .user-box .user-box-vip .open-vip {
    background-color: #f2bc38;
    color: #2b3139;
    display: inline-block;
    line-height: 24px;
    padding: 4px 30px;
    border-radius: 50px;
    cursor: pointer;
}

.ey-container .user-box .user-box-r {
    width: 745px;
}

.ey-container .user-box-r .user-box-top {
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #ebebeb;
    padding: 0 25px;
}

.ey-container .user-box-r .user-box-top .user-top-l .name-id {
    font-size: 18px;
}

.ey-container .user-box-r .user-box-top .user-top-l .name-id em {
    font-size: 14px;
    color: #999;
}

.ey-container .user-box-r .user-box-top .user-top-l .user-type i {
    color: #999;
    font-size: 16px;
}

.ey-container .user-box-r .user-box-top .user-top-r .more {
    color: #ff7600;
}

.ey-container .user-box-r .user-box-bottom {
    width: 745px;
    overflow: hidden;
}

.ey-container .user-box-r .user-box-bottom .data-info {
    width: 182px;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.ey-container .user-box-r .user-box-bottom .data-info span {
    font-size: 14px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.ey-container .user-box-r .user-box-bottom .data-info .num {
    margin-top: 40px;
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
    position: relative;
}

.ey-container .user-box-r .user-box-bottom .data-info .title {
    padding: 18px 0 20px;
}

.ey-container .user-box-r .user-box-bottom .data-info .link a {
    color: #ff7600;
}

.ey-container .index-pay .pay-item {
    width: 210px;
    display: inline-block;
    border: 1px solid #eee;
    margin: 0 10px 20px;
    height: 60px;
    overflow: hidden;
}

.ey-container .index-pay .pay-item .pay-item-l,
.ey-container .index-pay .pay-item .pay-item-r {
    float: left;
    width: 104px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
}

.ey-container .index-pay .pay-item .pay-item-l {
    border-right: 1px solid #eee;
    background-color: #f9f9f9;
}

.ey-container .index-pay .pay-item .pay-item-r a {
    font-size: 20px;
    color: red;
    line-height: 1;
}

.ey-container .index-plugs {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.ey-container .index-plugs .plugs-item {
    width: calc((100% - 60px) / 4);
    margin: 10px 0;
    margin-right: 20px;
}

.ey-container .index-plugs .plugs-item:nth-child(4n) {
    margin-right: 0px !important;
}

.ey-container .index-plugs .plugs-item .plugs-item-l,
.ey-container .index-plugs .plugs-item .plugs-item-r {
    display: inline-block;
    line-height: 60px;
    overflow: hidden;
}

.ey-container .index-plugs .plugs-item .plugs-item-l {
    float: left;
    width: 50px;
    margin: 5px;
}

.ey-container .index-plugs .plugs-item .plugs-item-l img {
    float: left;
    margin: 3px;
    width: 42px;
    height: 42px;
    border-radius: 50px;
}

.ey-container .index-plugs .plugs-item .plugs-item-r {
    float: right;
    width: 164px;
}

.ey-container .index-plugs .plugs-item .plugs-item-r span {
    width: 140px;
    line-height: 60px;
    font-size: 18px;
    display: inline-block;
    color: #333;
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ey-container .el-table .read-state {
    width: 8px;
    height: 8px;
    margin-right: px;
    display: inline-block;
    border-radius: 50px;
    background-color: red;
}

.ey-container .xin_mian .services-list li {
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.ey-container .xin_mian .services-list li:hover .title_n a {
    color: #ff6d00;
}

.ey-container .xin_mian .services-list li .title_n {
    position: relative;
    padding: 28px 0;
    line-height: 30px;
    font-size: 15px;
    color: #707070;
}

.ey-container .xin_mian .services-list li .title_n .checkbox-label {
    position: relative;
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 16px;
}

.ey-container .xin_mian .services-list li .title_n a {
    font-size: 15px;
    color: #707070;

}

.ey-container .xin_mian .services-list li .title_n i {
    font-size: 20px;
    cursor: pointer;
}

.ey-container .xin_mian .services-list li .title_n.cur a {
    color: #ff6700;
}

.ey-container .xin_mian .services-list .service-content {
    background-color: #fbfbfb;
    padding: 20px;
    display: none;
}

.ey-container .xin_mian .message-footer {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.ey-container .xin_mian .message-footer .notice-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 16px;
}

/* .ey-container .xin_mian .users_notice .title_n::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    transform: translate3d(0, -50%, 0) rotate(135deg);
    -webkit-transform: translate3d(0, -50%, 0) rotate(135deg);
} */
.ey-container .xin_mian .users_notice tr td {
    padding: 20px 0;
}

.ey-container .xin_mian .el-table .read-state_y {
    display: inline-block;
    color: #999;
}

.ey-container .xin_mian .el-table .weidu .read-state_y {
    display: none;
}

.ey-container .xin_mian .el-table .read-state_w {
    display: none;
}

.ey-container .xin_mian .el-table .weidu .read-state_w {
    display: inline-block;
    color: red;
}

.ey-container .xin_mian .el-table .read-state_n {
    width: 20px;
    height: 16px;
    margin-right: 6px;
    display: inline-block;
    background: url(../images/state_y.png) no-repeat 0;
}

.ey-container .xin_mian .el-table .weidu .read-state_n {
    width: 20px;
    height: 13px;
    margin-right: 6px;
    display: inline-block;
    background: url(../images/state_n.png) no-repeat 0;
}

.ey-container .xin_mian .el-table .time_n {
    float: right;
    font-size: 14px;
    color: #a3a3a3;
}

/*欢迎页 end*/




/* 申请售后服务-开始 */
.service-step-box .service-section .section-hd {
    height: 50px;
    padding: 0 32px;
    margin-bottom: 28px;
    border-left: 2px solid #ff6700;
    background-color: #f6f6f6;
    color: #333
}

.service-step-box .service-section .section-hd.is-noborder {
    border-left: 0
}

.service-step-box .service-section .section-title {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 50px
}

.service-step-box .service-section .section-bd .xm-goods-list-wrap {
    width: 100%;
    overflow: hidden
}

.service-step-box .service-section .section-bd .xm-goods-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none
}

.service-step-box .service-section .section-bd .xm-goods-item {
    float: left;
    width: calc((100% - 60px) / 4);
    height: 348px;
    padding-top: 40px;
    margin-right: 20px;
    margin-bottom: 20px;
    border-bottom: unset;
    text-align: center;
    cursor: pointer;
}

.service-step-box .service-section .section-bd .xm-goods-item:nth-child(4n) {
    margin-right: 0;
}

.service-step-box .service-section .section-bd .xm-goods-item .figure-img {
    width: 224px;
    margin: 0 auto 10px
}

.service-step-box .service-section .section-bd .xm-goods-item .figure-img a {
    display: block
}

.service-step-box .service-section .section-bd .xm-goods-item .figure-img img {
    width: 224px;
    height: 224px
}

.service-step-box .service-section .section-bd .xm-goods-item .title {
    margin: 0 0 5px;
    font-size: 14px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    _zoom: 1
}

.service-step-box .service-section .section-bd .xm-goods-item .title,
.service-step-box .service-section .section-bd .xm-goods-item .title a {
    color: #333
}

.service-step-box .service-section .section-bd .xm-goods-item .title:hover,
.service-step-box .service-section .section-bd .xm-goods-item .title a:hover {
    color: #ff6700
}

.service-step-box .service-section .section-bd .xm-goods-item .price {
    margin: 0 0 10px;
    color: #ff6700
}

.service-step-box .service-section .section-bd .xm-goods-item .rank {
    height: 18px;
    margin: 0 0 8px;
    font-size: 12px;
    color: #b0b0b0
}

.service-step-box .service-section .section-bd .xm-goods-item .actions {
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0)\9;
    font-size: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.service-step-box .service-section .section-bd .xm-goods-item .actions .btn {
    width: 108px;
    margin: 0 7px;
    padding: 0;
    font-size: 12px;
    border-radius: 0;
    height: 28px;
    line-height: 28px;
    box-sizing: unset;
}

.service-step-box .service-section .section-bd .xm-goods-item:hover .actions {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100)\9
}

.ey-container .order-progress .order-progress-con .product-detail {
    position: relative;
    height: 140px;
    padding: 35px 124px 35px 135px;
    border: 1px solid #e0e0e0;
    border-left: 2px solid #b0b0b0
}

.ey-container .order-progress .order-progress-con .product-detail .thumb {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100px;
    height: 100px
}

.ey-container .order-progress .order-progress-con .product-detail .back {
    position: absolute;
    right: 40px;
    top: 60px;
    font-size: 12px;
    color: #ff6700
}

.ey-container .order-progress .order-progress-con .product-detail .detail-list {
    margin: 0
}

/* 申请售后服务-结束 */

/* 面包屑 */
.breadcrumbs {
    background: #f5f5f5;
}

.breadcrumbs .breadcrumb {
    padding: 1rem 0;
}

.breadcrumbs .breadcrumb .breadcrumb-item:last-of-type a {
    color: #111;
    font-weight: 700;
}


.ey-footer {
    text-align: center;
    padding: 20px;
    color: #777;
}

.ey-footer p {
    margin-bottom: 5px;
}

/* 大厨新增金额悬停 */
.hint {
    position: relative;
    display: inline-block;
}

.hint:before,
.hint:after {
    position: absolute;
    opacity: 0;
    z-index: 1000000;

    -webkit-transition: 0.3s ease;
    -moz-transition: 0.3s ease;
    pointer-events: none;
}

.hint:hover:before,
.hint:hover:after {
    opacity: 1;
}

.hint:before {
    content: '';
    position: absolute;
    background: transparent;
    border: 6px solid transparent;
    position: absolute;
}

.hint:after {
    content: attr(data-hint);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

/* top */
.hint-top:before {
    bottom: 100%;
    left: 50%;
    margin: 0 0 -18px 0;
    border-top-color: rgba(0, 0, 0, 0.8);
}

.hint-top:after {
    bottom: 100%;
    left: 50%;
    margin: 0 0 -6px -10px;
}

.hint-top:hover:before {
    margin-bottom: -10px;
}

.hint-top:hover:after {
    margin-bottom: 2px;
}

/*弹窗样式*/
.ey-popup {
    padding: 20px;
}

.ey-popup .el-input-group__append input.el-button {
    border-color: transparent;
    background-color: transparent;
    color: inherit;
    border: 0;
}

/* 评价星星 */
.z_comment-star {
    width: 78px;
    height: 14px;
    background: url(../images/star.png) no-repeat
}

.z_star0 {
    background-position: -80px 0
}

.z_star1 {
    background-position: -64px 0
}

.z_star2 {
    background-position: -48px 0
}

.z_star3 {
    background-position: -32px 0
}

.z_star4 {
    background-position: -16px 0
}

.z_star5 {
    background-position: 0 0
}

.ey-container .img-upload {
    float: left;
    position: relative;
    display: table-cell;
    width: 120px;
    height: 120px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #eee;
}

.ey-container .img-upload img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.ey-container .img-upload .y-line {
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #ebebeb;
    left: 25%;
    top: 49%;
    z-index: 5;
}

.ey-container .img-upload .x-line {
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: #ebebeb;
    left: 49%;
    top: 25%;
    z-index: 5;
}

/* 通知内容样式 */
.z_pl .layui-layer-content {
    padding: 30px;
    word-break: break-all;
}

/*服务器名称下拉*/
.help-hot-list {
    padding: 10px 0;
    width: 164px;
    position: absolute;
    left: 16px;
    top: 45px;
    margin: 0;
    line-height: 32px;
    font-size: 14px;
    border-radius: 2px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, .2);
    background-color: #fff;
    display: none;
    z-index: 999999;
}

.remote-hot-list {
    left: 110px;
    top: 26px;
}

.help-hot-list>a {
    display: block;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    padding-right: 10px;
}

.help-hot-list>a:hover {
    background-color: #f3f3f3;
}

.help-hot-list>a>div {
    float: left;
    height: 32px;
    overflow: hidden;
    max-width: 94%;
}

.help-hot-list>a>div.number {
    text-align: center;
    width: 22px;
    color: #ff8105
}

.help-hot-list>a>div.hottxt {
    width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.help-hot-list>a>div.number.c1 {
    color: #ff2c00
}

.help-hot-list>a>div.number.c2 {
    color: #ff5a00
}

.help-hot-list>a>div.number.c3 {
    color: #3cbe85
}

.template_div .ey_server_name {
    position: relative;
}

.th_server_name input[type=text] {
    width: 100%;
    padding: 0 4px;
    height: 36px;
    line-height: 36px;
    border-radius: 4px;
    border: 1px solid #DCDFE6;
}

.template_div20210507 {
    margin: 5px 0px 10px 0px;
    position: relative;
    color: #777;
    line-height: 24px;
}

.template_div20210507 .addrs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.template_div20210507 .addrs input {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.template_div20210507 .ey_server_name {
    position: relative;
}

.template_div20210507 input[type="text"] {
    line-height: 20px;
    white-space: nowrap;
    display: inline-block;
    height: 20px;
    overflow: hidden;
    cursor: text;
    font-size: 13px;
    padding: 14px 6px;
    color: #555555;
    background-color: #FFF;
    border: solid 1px #eee;
}

/*评价晒单*/
.ey-container .appraise-list .item-from-row {
    padding: 0;
}

.appraise-list .item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.appraise-list .item .item-l {
    width: 150px;
    box-sizing: border-box;
    margin-right: 40px;
}

.appraise-list .item .item-l .img {
    width: 150px;
    height: 150px;
    border: 1px solid #eee;

}

.appraise-list .item .item-l .img img {
    width: 100%;
    height: 100%;
}

.appraise-list .item .item-l .title {
    margin-top: 6px;
    display: inline-block;
    height: 58px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
    color: #666;
}

.appraise-list .item .item-r {
    width: calc(100% - 190px);
}

.appraise-list .item .item-r .item-r-b {
    margin-top: 10px;
}

.appraise-list .item .item-r .item-r-b span {
    margin-left: 10px;
    color: #999;
}

.appraise-list .item .item-r .ey-start-ment i {
    color: #e0e0e0;
    cursor: pointer;
}

.appraise-list .item .item-r .ey-start-ment i.active {
    color: #e4393c;
}

.appraise-list .order-progress-con {
    margin-left: 190px;
    margin-top: 20px;
}
/*  */
/*积分商城列表*/
.pro-list {
    padding: 20px 0 30px 0;
    position: relative;
    width: 100%;
}

.pro-list ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.pro-list li {
    width: calc((100% - 36px) / 2);
    margin: 0 18px 18px 0;
    position: relative;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    border: #eee 1px solid;
    border-radius: 5px;
}

.pro-list li:nth-child(2n) {
    margin-right: 0;
}

.pro-list li .diva {}

.pro-list li h2 {
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    min-height: 72px;
    cursor: pointer;
}

.pro-list li .diva p {
    line-height: 30px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #999;
}

.pro-list li .diva .icon-vip {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 47px;
    background: url(../images/vip_icon.png);
}

.pro-list li .diva .info {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
}

.pro-list li .diva:hover .info {
    display: flex;
}

.pro-list .tit {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pro-list .bt {
    width: 260px;
    height: 95px;
    margin: 0 auto;
    line-height: 45px;
    text-align: center;
    color: #999;
}

.pro-list .bt:hover {
    color: #ff6600;
}

.pro-list .tit .tit-l {
    display: table-cell;
    position: relative;
    width: 150px;
    height: 150px;
    margin-right: 15px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
}

.pro-list .tit .tit-l img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.pro-list .tit .tit-r {
    flex: 1;
}

.pro-list .tit .tit-r a.okgo {
    display: block;
    float: left;
    height: 30px;
    width: 80px;
    line-height: 30px;
    text-align: center;
    color: #ff9600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 8px;
    border: solid 1px #ff9600;
}

.pro-list .tit .tit-r a.okgo:hover {
    background: #ff9600;
    color: #fff;
}

.pro-list .tit .tit-r a.nones {
    color: #ccc;
    border: solid 1px #ccc;
    cursor: default;
}

.bind_mobile {
    overflow-y: unset;
}

.bind_mobile .el-input__inner {
    height: 40px;
}

.bind_mobile .el-input .chicuele {
    position: absolute;
    top: 1px;
    right: 1px;
    height: 38px;
    z-index: 10;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}

.bind_email {
    overflow-y: unset;
}

.relate-box {
    margin: 5px 0 20px 0;
    line-height: 30px;
    height: 30px;
}

.relate-box .relate-img {
    width: 150px;
}

.relate-box .relate-img img {
    float: left;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.relate-box .relate-img p {
    float: left;
    margin: 0 20px;
}

.relate-box .relate-txt {
    width: 200px;
    text-align: center;
    margin-right: 30px;
}

.relate-box .relate-bt a.ok {
    background-color: #ff9600;
    color: #fff;
    text-decoration: none;
}

.relate-box .relate-bt a {
    font-size: 14px;
    text-align: center;
    width: 96px;
    height: 30px;
    line-height: 30px;
    display: block;
    overflow: hidden;
}

.relate-box .relate-bt a.no {
    color: #626262;
    border: 1px solid #ff9600;
    text-decoration: none;
}

.relate-box .relate-bt a .hover-box {
    position: relative;
    height: 100%;
    width: 200%;
    display: flex;
}

.relate-box .relate-bt a .hover-box:hover {
    transform: translate(-50%, 0);
    text-decoration: none;
}

.relate-box .relate-bt a .before-hover {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.relate-box .relate-bt a .after-hover {
    width: 50%;
    height: 100%;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.null-data {
    font-size: 16px;
    color: #7b7b7b;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    word-break: break-all;
    line-height: 23px;
}

/* 面包屑-结束 */

@media (max-width:991px) {
    .m-none {
        display: none;
    }

    .breadcrumbs {
        padding: 0 10px;
    }

    .ey-body {
        padding: 0 10px;
    }

    .w1226 {
        width: 100%;
    }
    .ey-container .user-info-title,
    .ey-container .ey-con .shop-oper.title,
    .ey-container .zan-uc-box .box-hd {
        display: none;
    }
    .ey-container .user-info-con,
    .ey-container .xin_mian,
    .ey-container .zan-uc-box {
        padding: 25px 10px;
    }
    .ey-container .u_xinxi {
        padding: 0 20px;
        margin-bottom: 0;
    }
    .portal-content-box .user-card .user-card-l {
        width: 60px;
        height: 60px;
    }
    .portal-content-box .user-card .user-card-r  {
        margin-left: 0;
    }
    .portal-content-box .user-card .user-card-r .username {
        font-size: 18px;
    }
    .portal-content-box .user-card .user-card-edit {
        display: flex;
        justify-content: flex-end;
    }
    .ey-container .ey-nav {
        display: none;
    }
    .ey-container .ey-con {
        width: 100%;
    }
    .ey-container .ey-con .portal-data {
        padding: 20px 0;
    }
    .uc-main-box {
        margin-bottom: 20px;
    }
    .portal-sub .info-list li {
        width: calc((100% ) / 2);
        margin-right: 0;
        margin-bottom: 0;
        padding-bottom: 10px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .portal-sub .info-list li .pic {
        width: 70px;
        height: 70px;
        float: unset;
        margin: 0 auto;
    }
    .portal-sub .info-list li .pic a{
        display: flex;
    }
    .portal-sub .info-list .m-info {
        display: block;
        margin-top: 5px;
        font-size: 15px;
    }
    .portal-sub .info-list .info {
        display: none;
        margin: 0 15px;
    }
    .portal-sub .info-list .info h3{
        font-size: 18px;
    }
    .portal-data .portal-data-item {
        width: calc((100% ) / 3);
    }
    .ey-container .item-from-row {
        display: flex;
    }

    .ey-container .item-from-row.user-info-pic .from-row-l {
        display: none;
    }

    .ey-container .item-from-row.user-info-pic .from-row-r {
        display: flex;
        justify-content: center;
    }

    .ey-container .item-from-row .from-row-l {
        width: 100px;
    }

    .ey-container .item-from-row .from-row-r {
        width: 100%;
        float: unset;
    }

    .ey-container .ey-con .user-info .item-from-row .from-row-r .el-input__inner {
        width: 100%;
    }

    .ey-container .ey-con .shop-oper .shop-oper-bottom {
        display: block;
    }

    .ey-container .ey-con .shop-oper.mt20 {
        margin-top: 0 !important;
    }

    .ey-container .ey-con .shop-oper .shop-oper-r {
        margin-top: 5px;
    }

    .ey-container .ey-con .shop-oper .shop-oper-r form {
        width: 100%;
    }
    .ey-container .ey-con .shop-oper .shop-oper-r .input-with-select {
        display: flex;
        justify-content: center;
    }
    .ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-text {
        position: unset;
        width: 70%;
    }
    .ey-container .ey-con .shop-oper .shop-oper-r .input-with-select .search-btn {
         position: unset;
    }
    .ey-container .ey-con-inside .el-table,
    .ey-container .ey-con-inside .pay_details {
        width: 500px !important;
        overflow-x: auto;
    }


    .ey-container .goods-con .order-list .order-detail-table td {
        padding: 0 10px;
    }

    .ey-container .goods-con .order-list .order-detail-table td.order-actions .btn-small {
        padding: 7px 10px;
    }
    .ey-container .goods-con .order-list .order-summary {
        padding: 10px 10px 5px;
    }
    .ey-container .goods-con .order-list .order-detail-inof {
        padding: 10px 10px 5px;
        flex-direction: column;
        align-items: baseline;
    }
    .ey-container .goods-con .order-list .order-detail-inof .caption-info {
        padding-bottom: 10px;
    }
    .ey-container .goods-con .order-list .order-detail-inof .caption-price .num {
        font-size: 22px;
    }
    
    .ey-container .zan-uc-box .progress-list {
        width: 100%;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .goods-box {
        padding: 10px 0;
        display: block;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .col-thumb {
        width: 70px;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .figure-thumb {
        width: 60px;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .figure-thumb a.pro-pic {
        width: 60px;
        height: 60px;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .col-name {
        width: auto;
    }
    .ey-container .zan-uc-box .order-goods .goods-table .col-price {
        width: 120px;
        text-align: right;
    }
    .ey-container .zan-uc-box .order-goods .goods-table  .col-actions{
        width: 60px;
    }
    
    .address-list {
        margin: 0 -9px;
    }
    .address-list .address-item {
        width: 100%;
    }
    .ey-container .zan-uc-box .box-hd-b .more {
        flex-direction: column;
        align-items: flex-start;
    }
    .ey-container .zan-uc-box .box-hd-b .actions {
        margin-top: 20px;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-top {
        padding: 15px 10px;
        height: auto;
        line-height: 1.5;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-top .time {
        padding-left: 0;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-top .id {
        padding-left: 0;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-top .pay {
        padding-right: 0;
        line-height: 1.5;
        height: auto;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-content {
        padding: 15px 10px;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-content .cont-l {
        padding: 0;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-content .cont-r {
        padding-right: 0;
        width: auto;
        display: flex;
        flex-direction: column;
    }
    .comment-list .goods-list-detail .goods-list-li .goods-content .cont-r .btn-xin {
        padding: 7px 10px;
    }
    .appraise-list .item .item-l {
        width: 100%;
    }
    .appraise-list .item {
        display: flex;
        flex-direction: column;
    }
    .appraise-list .item .item-l .img {
        margin: 0 auto;
    }
    .appraise-list .item .item-l .title {
        text-align: center;
    }
    .appraise-list .item .item-r {
        width: 100%;
    }
    .appraise-list .order-progress-con {
        margin: 0;
        text-align: right;
    }
}

@font-face {
    font-family: "iconfont-users2";
    /* Project id 3377172 */
    src: url('../fonts/iconfont.woff2?t=1714963022411') format('woff2'),
        url('../fonts/iconfont.woff?t=1714963022411') format('woff'),
        url('../fonts/iconfont.ttf?t=1714963022411') format('truetype');
}

.iconfont-users2 {
    font-family: "iconfont-users2" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-users2-arrow-down:before {
    content: "\e648";
}

.icon-users2-sousuo1:before {
    content: "\e630";
}

.icon-users2-jia:before {
    content: "\e600";
}

.icon-users2-youjiantou:before {
    content: "\e678";
}

.icon-users2-round_rmb_fill:before {
    content: "\e673";
}

.icon-users2-xingxing:before {
    content: "\e637";
}
