@charset "UTF-8";
/*主题色*/
/*副题色*/
/*成功提示色*/
/*警告提示色*/
/*错误警告色*/
/*=== 媒体查询 ===*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary, input, select, button, input::-webkit-input-placeholder {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
  font-family: "MicrosoftYaHei";
  outline: none;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
   If this default setting for images is causing issues, you might want to replace it with a .responsive class instead. */
img,
object,
embed {
  max-width: 100%;
}

/* force a vertical scrollbar to prevent a jumpy page */
/*html {overflow-y: scroll;}*/
/*gavin edit*/
html {
  overflow-y: auto;
}

/* we use a lot of ULs then aren't bulleted.
  don't forget to restore the bullets within content. */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none !important;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 0px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 禁用select默认下拉箭头 */
select::-ms-expand {
  display: none;
}

/* 禁用PC端表单输入框默认清除按钮 */
/*input[type=text]::-ms-clear,input[type=tel]::-ms-clear,input[type=number]::-ms-clear{display:none;}*/
/* 禁用radio和checkbox默认样式 */
/*input[type=radio]::-ms-check,input[type=checkbox]::-ms-check{display: none;}*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/* start--文本行对齐--start */
.s-text-left {
  text-align: left;
}

.s-text-center {
  text-align: center;
}

.s-text-right {
  text-align: right;
}

/* end--文本行对齐--end */
/* start--文本行数限制--start */
.s-line-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.s-line-2 {
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-3 {
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-4 {
  -webkit-line-clamp: 4;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-5 {
  -webkit-line-clamp: 5;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-6 {
  -webkit-line-clamp: 6;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-7 {
  -webkit-line-clamp: 7;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-8 {
  -webkit-line-clamp: 8;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.s-line-9 {
  -webkit-line-clamp: 9;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/* end--文本行数限制--end */
/* start--通用颜色配置--start */
.s-color-f {
  color: #ffffff !important;
}

.s-bg-f {
  background-color: #ffffff !important;
}

.s-color-0 {
  color: #000000 !important;
}

.s-bg-0 {
  background-color: #000000 !important;
}

.s-color-1 {
  color: #111111 !important;
}

.s-bg-1 {
  background-color: #111111 !important;
}

.s-color-2 {
  color: #222222 !important;
}

.s-bg-2 {
  background-color: #222222 !important;
}

.s-color-3 {
  color: #333333 !important;
}

.s-bg-3 {
  background-color: #333333 !important;
}

.s-color-4 {
  color: #444444 !important;
}

.s-bg-4 {
  background-color: #444444 !important;
}

.s-color-5 {
  color: #555555 !important;
}

.s-bg-5 {
  background-color: #555555 !important;
}

.s-color-6 {
  color: #666666 !important;
}

.s-bg-6 {
  background-color: #666666 !important;
}

.s-color-7 {
  color: #777777 !important;
}

.s-bg-7 {
  background-color: #777777 !important;
}

.s-color-8 {
  color: #888888 !important;
}

.s-bg-8 {
  background-color: #888888 !important;
}

.s-color-82 {
  color: #828282 !important;
}

.s-bg-82 {
  background-color: #828282 !important;
}

.s-color-9 {
  color: #999999 !important;
}

.s-bg-9 {
  background-color: #999999 !important;
}

.s-color-BD {
  color: #BDBDBD !important;
}

.s-bg-BD {
  background-color: #BDBDBD !important;
}

.s-color-C {
  color: #CCCCCC !important;
}

.s-bg-C {
  background-color: #CCCCCC !important;
}

.s-color-E {
  color: #EEEEEE !important;
}

.s-bg-E {
  background-color: #EEEEEE !important;
}

.s-color-E5 {
  color: #E5E5E5 !important;
}

.s-bg-E5 {
  background-color: #E5E5E5 !important;
}

.s-color-primary {
  color: #4cd964 !important;
}

.s-bg-primary {
  background-color: #4cd964 !important;
}

.s-color-assistant {
  color: #1774ff !important;
}

.s-bg-assistant {
  background-color: #1774ff !important;
}

.s-color-success {
  color: #4cd964 !important;
}

.s-bg-success {
  background-color: #4cd964 !important;
}

.s-color-warning {
  color: #f0ad4e !important;
}

.s-bg-warning {
  background-color: #f0ad4e !important;
}

.s-color-error {
  color: #dd524d !important;
}

.s-bg-error {
  background-color: #dd524d !important;
}

/* end--通用颜色配置--end */
[class*=flex-] { /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */ /* Firefox 17- */ /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex; /* Firefox 18+ */ /* IE 10 */
  display: flex; /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}

.flex-y-top {
  flex-direction: column;
}

.flex-y-bottom {
  flex-direction: column-reverse;
}

.flex-x-right {
  flex-direction: row-reverse;
}

/* // 交叉轴上对齐 居中flex-level */
.flex-align-center {
  align-items: center;
}

/* // 交叉轴上对齐 元素第一行文字的基线对齐flex-bottom */
.flex-align-baseline {
  align-items: baseline;
}

/* // 主轴对齐 左右 左中右 基于子元素的数量flex-lr */
.flex-justify-between {
  justify-content: space-between;
}

/* //换行flex-br */
.flex-wrap {
  -webkit-box-wrap: wrap;
  flex-wrap: wrap;
}

/* // 主轴对齐 居右flex-right */
.flex-justify-end {
  justify-content: flex-end;
}

/* // 主轴对齐 居左flex-left */
.flex-justify-start {
  justify-content: flex-start;
}

/* // 主轴对齐 居中 */
.flex-justify-center {
  justify-content: center;
}

/* // 主轴对齐 居下 */
.flex-align-end {
  align-items: flex-end;
}

.overflow-y {
  overflow-y: scroll;
  overflow-x: hidden;
}

.overflow-y::-webkit-scrollbar {
  width: 0 !important;
}

.overflow-x {
  overflow-x: scroll;
  overflow-y: hidden;
}

.overflow-x::-webkit-scrollbar {
  width: 0 !important;
}

.images {
  width: 100%;
  height: 100%;
  display: inline-block;
}

[v-cloak] {
  display: none;
}

.sl-foot {
  background-color: #333333;
  padding-top: 30px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .sl-foot {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}
.sl-foot .sl-foot-nav {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-nav {
    padding-bottom: 10px;
  }
}
.sl-foot .sl-foot-nav .option {
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.sl-foot .sl-foot-nav .option:hover {
  color: #ff9900;
}
.sl-foot .foot-bq {
  font-size: 14px;
  color: #fff;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-info {
    padding-top: 20px;
    justify-content: space-between;
  }
}
.sl-foot .sl-foot-info .left {
  padding-right: 50px;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-info .left {
    padding-right: 10px;
  }
}
.sl-foot .sl-foot-info .left .p {
  font-size: 14px;
  color: #fff;
  padding-bottom: 10px;
}
.sl-foot .sl-foot-info .left .tel {
  font-size: 24px;
  color: #fff;
  padding-bottom: 10px;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-info .left .tel {
    font-size: 20px;
  }
}
.sl-foot .sl-foot-info .left .time {
  font-size: 14px;
  color: #fff;
}
.sl-foot .sl-foot-info .right .li {
  padding-left: 24px;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-info .right .li {
    padding-left: 10px;
  }
}
.sl-foot .sl-foot-info .right .li .img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 1200px) {
  .sl-foot .sl-foot-info .right .li .img {
    width: 60px;
    height: 60px;
  }
}
.sl-foot .sl-foot-info .right .li .name {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding-top: 5px;
}

@media (max-width: 1200px) {
  .sl-foot-zw {
    height: 45px;
  }
}

.sl-search {
  padding: 20px 0;
  background-color: #fff;
}
.sl-search .logo {
  height: 100px;
}
@media (max-width: 992px) {
  .sl-search .logo {
    height: 60px;
  }
}
.sl-search .menu {
  height: 100%;
}
.sl-search .menu img {
  height: 20px;
}
.sl-search .search-box {
  width: 100%;
}
.sl-search .search-box .left {
  flex: 1;
  padding-right: 40px;
}
@media (max-width: 992px) {
  .sl-search .search-box .left {
    padding-right: 16px;
  }
}
.sl-search .search-box .left .search-input {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .sl-search .search-box .left .search-input {
    margin-bottom: 8px;
  }
}
.sl-search .search-box .left .search-input input {
  height: 40px;
  border: 1px solid #3E7D41;
  font-size: 14px;
  color: #333;
  padding: 0 50px;
  width: 100%;
}
.sl-search .search-box .left .search-input .search-btn {
  height: 40px;
  background-color: #3E7D41;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  width: 80px;
  line-height: 40px;
  text-align: center;
}
.sl-search .search-box .left .search-input .search-btn:hover {
  opacity: 0.9;
}
.sl-search .search-box .right {
  height: 40px;
  border: 1px solid #EEEEEE;
  padding: 0 20px;
  font-weight: 400;
  font-size: 14px;
  color: #3E7D41;
  cursor: pointer;
}
@media (max-width: 992px) {
  .sl-search .search-box .right {
    padding: 0 10px;
  }
}
.sl-search .search-box .right .icon {
  width: 16px;
  height: 15px;
  margin-right: 8px;
}
@media (max-width: 992px) {
  .sl-search .search-box .right .icon {
    margin-right: 0;
  }
}
.sl-search .search-box .right .sum {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFB034;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  margin-left: 8px;
}
.sl-search .search-box .left .search-hot {
  font-size: 12px;
  color: #999;
  line-height: 24px;
}
.sl-search .search-box .left .search-hot a {
  color: #999;
  margin-right: 10px;
}

.sl-comp-user .user-info {
  padding: 20px 30px;
  border: 1px solid #eee;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .sl-comp-user .user-info {
    padding: 15px;
  }
}
.sl-comp-user .user-info .portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 20px;
}
@media (max-width: 992px) {
  .sl-comp-user .user-info .portrait {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }
}
.sl-comp-user .user-info span {
  color: #2272C8;
  cursor: pointer;
  padding-left: 5px;
}
.sl-comp-user .user-info span:hover {
  opacity: 0.5;
}
.sl-comp-user .sl-card {
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.sl-comp-user .sl-card .sl-card-header {
  border-bottom: 1px solid #eee;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .sl-comp-user .sl-card .sl-card-header {
    padding: 0 15px;
  }
}
.sl-comp-user .sl-card .sl-card-header span {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.sl-comp-user .sl-card .sl-card-body {
  padding-top: 15px;
}
.sl-comp-user .sl-card .sl-card-body .sl-order-item {
  width: 100%;
  padding: 20px 0;
  position: relative;
  cursor: pointer;
}
.sl-comp-user .sl-card .sl-card-body .sl-order-item .icon {
  width: 50px;
  display: block;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .sl-comp-user .sl-card .sl-card-body .sl-order-item .icon {
    width: 40px;
  }
}
.sl-comp-user .sl-card .sl-card-body .sl-order-item .text {
  font-size: 16px;
  color: #333;
  text-align: center;
  padding-top: 10px;
}
.sl-comp-user .sl-card .sl-card-body .sl-order-item .num {
  height: 20px;
  border-radius: 4px;
  padding: 0 10px;
  background-color: #65AF65;
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  position: absolute;
  top: 10px;
  right: 50%;
  margin-right: -36px;
}
.sl-comp-user .sl-card .sl-card-body .qr {
  padding: 0 10px;
}
.sl-comp-user .sl-card .sl-card-body .qr .icon {
  width: 73px;
  height: 73px;
}
.sl-comp-user .sl-card .sl-card-body .qr .text {
  font-size: 16px;
  color: #333;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sl-comp-order .sl-card {
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.sl-comp-order .sl-card .sl-card-header {
  border-bottom: 1px solid #eee;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .sl-comp-order .sl-card .sl-card-header {
    padding: 0 15px;
  }
}
.sl-comp-order .sl-card .sl-card-header span {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.sl-comp-order .sl-card .sl-card-body {
  padding: 15px;
}
.sl-comp-order .sl-pagination {
  padding: 0;
}
.sl-comp-order .sl-pagination .el-pagination {
  padding: 0;
}
.sl-comp-order .tabs .el-tabs__item {
  font-size: 16px;
}
.sl-comp-order .sl-table .el-table {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .sl-comp-order .sl-table .el-table {
    margin-bottom: 10px;
  }
}
.sl-comp-order .sl-table .order-no {
  font-size: 14px;
  color: #333;
  padding-bottom: 10px;
}
.sl-comp-order .sl-table .info {
  width: 100%;
  margin-bottom: 10px;
}
.sl-comp-order .sl-table .info:nth-last-of-type(1) {
  margin-bottom: auto;
}
.sl-comp-order .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .sl-comp-order .sl-table .info .img {
    width: 60px;
  }
}
.sl-comp-order .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .sl-comp-order .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.sl-comp-order .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.sl-comp-order .sl-table .info .cont .sum {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-order .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-order .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.sl-comp-order .sl-table .info .el-input-number--mini {
  width: 100px;
}
.sl-comp-order .sl-table tr th .cell {
  font-weight: bold;
  color: #333;
}
.sl-comp-order .sl-table .el-button {
  display: block;
  margin: 0 auto 5px auto;
}
.sl-comp-order .order-info {
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sl-comp-order .order-info .title {
  font-size: 24px;
  color: #000;
  font-weight: bold;
}
.sl-comp-order .order-info .desc {
  font-size: 14px;
  color: #333;
  padding-top: 10px;
}
.sl-comp-order .order-info .message {
  padding-top: 10px;
}
.sl-comp-order .order-info .desc span {
  color: #FF7700;
}
.sl-comp-order .order-info .operation {
  padding-top: 20px;
  font-size: 14px;
  color: #333;
}
.sl-comp-order .sl-modal .close {
  cursor: pointer;
}
.sl-comp-order .sl-modal .modal-body .sl-btn {
  width: 120px;
  height: 32px;
  background-color: rgb(62, 125, 65);
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.sl-comp-order .sl-modal .modal-body .sl-btn:hover {
  opacity: 0.8;
}
.sl-comp-order .sl-modal .modal-body .el-upload {
  width: 80px;
  height: 80px;
  line-height: 80px;
}
.sl-comp-order .sl-modal .modal-body .el-upload-list__item {
  width: 80px;
  height: 80px;
}

.sl-comp-setting .sl-card {
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.sl-comp-setting .sl-card .sl-card-header {
  border-bottom: 1px solid #eee;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .sl-comp-setting .sl-card .sl-card-header {
    padding: 0 15px;
  }
}
.sl-comp-setting .sl-card .sl-card-header span {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.sl-comp-setting .sl-card .sl-card-body {
  padding: 15px;
}
.sl-comp-setting .user-info {
  padding-top: 10px;
}
.sl-comp-setting .user-info .left .portrait {
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
@media (max-width: 992px) {
  .sl-comp-setting .user-info .left .portrait {
    width: 60px;
    height: 60px;
  }
}
.sl-comp-setting .user-info .right {
  width: calc(100% - 110px);
}
@media (max-width: 992px) {
  .sl-comp-setting .user-info .right {
    width: calc(100% - 60px);
  }
}
.sl-comp-setting .sl-table {
  padding-top: 10px;
}
.sl-comp-setting .sl-table .el-table {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .sl-comp-setting .sl-table .el-table {
    margin-bottom: 10px;
  }
}
.sl-comp-setting .sl-table .order-no {
  font-size: 14px;
  color: #333;
  padding-bottom: 10px;
}
.sl-comp-setting .sl-table .info {
  width: 100%;
  margin-bottom: 10px;
}
.sl-comp-setting .sl-table .info:nth-last-of-type(1) {
  margin-bottom: auto;
}
.sl-comp-setting .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .sl-comp-setting .sl-table .info .img {
    width: 60px;
  }
}
.sl-comp-setting .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .sl-comp-setting .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.sl-comp-setting .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.sl-comp-setting .sl-table .info .cont .sum {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-setting .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-setting .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.sl-comp-setting .sl-table .info .el-input-number--mini {
  width: 100px;
}
.sl-comp-setting .sl-table tr th .cell {
  font-weight: bold;
  color: #333;
}
.sl-comp-setting .sl-table .el-button {
  margin: 0 5px;
}
.sl-comp-setting .sl-modal .close {
  cursor: pointer;
}
.sl-comp-setting .sl-modal .modal-body .sl-btn {
  width: 120px;
  height: 32px;
  background-color: rgb(62, 125, 65);
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.sl-comp-setting .sl-modal .modal-body .sl-btn:hover {
  opacity: 0.8;
}
.sl-comp-setting .password-form {
  max-width: 400px;
}
.sl-comp-setting .password-form .el-input-group__append {
  padding: 0;
}
.sl-comp-setting .phone-form {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .sl-comp-setting .phone-form {
    padding-top: 10px;
  }
}
.sl-comp-setting .phone-form .left .icon {
  width: 150px;
  height: 150px;
}
@media (max-width: 1200px) {
  .sl-comp-setting .phone-form .left .icon {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .sl-comp-setting .phone-form .left .icon {
    width: 60px;
    height: 60px;
  }
}
.sl-comp-setting .phone-form .right {
  width: calc(100% - 150px);
  padding-left: 20px;
  padding-top: 10px;
}
@media (max-width: 1200px) {
  .sl-comp-setting .phone-form .right {
    width: calc(100% - 100px);
    padding-left: 10px;
  }
}
@media (max-width: 992px) {
  .sl-comp-setting .phone-form .right {
    width: calc(100% - 60px);
    padding-left: 10px;
    padding-top: 0px;
  }
}
.sl-comp-setting .phone-form .right .title {
  font-size: 24px;
  color: #FF6000;
  padding-bottom: 5px;
}
@media (max-width: 992px) {
  .sl-comp-setting .phone-form .right .title {
    font-size: 18px;
  }
}
.sl-comp-setting .phone-form .right .p {
  font-size: 14px;
  color: #333;
  padding-bottom: 5px;
}
.sl-comp-setting .phone-form2 {
  max-width: 400px;
}
.sl-comp-setting .phone-form2 .code-img .el-input-group__append {
  padding: 0;
}
.sl-comp-setting .phone-form2 .code {
  cursor: pointer;
  color: #FF6000;
}

.sl-comp-feedback .sl-card {
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.sl-comp-feedback .sl-card .sl-card-header {
  border-bottom: 1px solid #eee;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .sl-comp-feedback .sl-card .sl-card-header {
    padding: 0 15px;
  }
}
.sl-comp-feedback .sl-card .sl-card-header span {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.sl-comp-feedback .sl-card .sl-card-body {
  padding: 15px;
}

.sl-comp-after-sale .sl-card {
  border: 1px solid #eee;
  margin-bottom: 10px;
}
.sl-comp-after-sale .sl-card .sl-card-header {
  border-bottom: 1px solid #eee;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .sl-comp-after-sale .sl-card .sl-card-header {
    padding: 0 15px;
  }
}
.sl-comp-after-sale .sl-card .sl-card-header span {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
.sl-comp-after-sale .sl-card .sl-card-body {
  padding: 15px 30px;
}
@media (max-width: 992px) {
  .sl-comp-after-sale .sl-card .sl-card-body {
    padding: 15px;
  }
}
.sl-comp-after-sale .order-no {
  font-size: 14px;
  color: #333;
  padding-bottom: 15px;
}
.sl-comp-after-sale .sl-table .el-table {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .sl-comp-after-sale .sl-table .el-table {
    margin-bottom: 10px;
  }
}
.sl-comp-after-sale .sl-table .order-no {
  font-size: 14px;
  color: #333;
  padding-bottom: 10px;
}
.sl-comp-after-sale .sl-table .info {
  width: 100%;
  margin-bottom: 10px;
}
.sl-comp-after-sale .sl-table .info:nth-last-of-type(1) {
  margin-bottom: auto;
}
.sl-comp-after-sale .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .sl-comp-after-sale .sl-table .info .img {
    width: 60px;
  }
}
.sl-comp-after-sale .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .sl-comp-after-sale .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.sl-comp-after-sale .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.sl-comp-after-sale .sl-table .info .cont .sum {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-after-sale .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.sl-comp-after-sale .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.sl-comp-after-sale .sl-table .info .el-input-number--mini {
  width: 100px;
}
.sl-comp-after-sale .sl-table tr th .cell {
  font-weight: bold;
  color: #333;
}
.sl-comp-after-sale .sl-form {
  border: 1px solid #eee;
  padding: 15px 30px;
}
@media (max-width: 1200px) {
  .sl-comp-after-sale .sl-form {
    padding: 15px;
  }
}
.sl-comp-after-sale .sl-form .text {
  font-size: 14px;
}
.sl-comp-after-sale .sl-form .text span {
  color: #FF6000;
}
.sl-comp-after-sale .sl-form .el-form-item {
  margin-bottom: 10px;
}
.sl-comp-after-sale .sl-form .sl-select {
  margin-bottom: 10px;
}
.sl-comp-after-sale .sl-form .el-upload {
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.sl-comp-after-sale .sl-form .el-upload-list__item {
  width: 60px;
  height: 60px;
}
.sl-comp-after-sale .sl-form .el-button {
  margin-top: 10px;
}
.sl-comp-after-sale .schedule .info .title {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  padding-bottom: 10px;
}
.sl-comp-after-sale .schedule .info .text {
  font-size: 14px;
  color: #666;
}
.sl-comp-after-sale .schedule .info .text span {
  color: #3E7D41;
  padding-left: 15px;
  cursor: pointer;
}
.sl-comp-after-sale .schedule .sl-progress .title {
  font-size: 14px;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-weight: bold;
}
.sl-comp-after-sale .schedule .sl-progress .ul .li {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .sl-comp-after-sale .schedule .sl-progress .ul .li {
    padding: 15px 0;
  }
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .left .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .right {
  width: calc(100% - 50px);
  padding-left: 30px;
}
@media (max-width: 992px) {
  .sl-comp-after-sale .schedule .sl-progress .ul .li .right {
    padding-left: 15px;
  }
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .right .name {
  font-size: 14px;
  color: #333;
  font-weight: bold;
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .right .name span {
  font-weight: normal;
  padding-left: 10px;
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .right .cont {
  padding-top: 10px;
}
.sl-comp-after-sale .schedule .sl-progress .ul .li .right .cont .text {
  color: #666;
}
.sl-comp-after-sale .sl-modal .close {
  cursor: pointer;
}
.sl-comp-after-sale .sl-modal .modal-body .sl-btn {
  width: 120px;
  height: 32px;
  background-color: rgb(62, 125, 65);
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.sl-comp-after-sale .sl-modal .modal-body .sl-btn:hover {
  opacity: 0.8;
}
.sl-comp-after-sale .sl-modal .modal-body .el-upload {
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.sl-comp-after-sale .sl-modal .modal-body .el-upload-list__item {
  width: 60px;
  height: 60px;
}

.sl-nav {
  background-color: #3E7D41;
}

.sl-nav .sl-menu li {
  display: inline-block;
}

.sl-nav .sl-menu li a {
  height: 50px;
  padding: 0 50px;
  font-size: 16px;
  color: #fff;
  line-height: 50px;
  cursor: pointer;
  display: block;
  transition: all 0.3s ease-out 0s;
}
@media (max-width: 1200px) {
  .sl-nav .sl-menu li a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .sl-nav .sl-menu li a {
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding: 0 7px;
  }
}

.sl-nav .sl-menu li.active a {
  background-color: #D9E7CD;
  color: #3E7D41;
}

.home .nav {
  border-bottom: 1px solid #EEEEEE;
  padding: 15px 0;
  margin-bottom: 35px;
}
@media (max-width: 992px) {
  .home .nav {
    margin-bottom: 15px;
  }
}
.home .nav .item {
  padding: 5px 0;
  cursor: pointer;
}
.home .nav img {
  width: 80px;
  height: 80px;
}
@media (max-width: 1200px) {
  .home .nav img {
    width: 40px;
    height: 40px;
  }
}
.home .nav-text {
  font-size: 16px;
  color: #333333;
  padding-left: 14px;
}
@media (max-width: 1200px) {
  .home .nav-text {
    font-size: 14px;
  }
}
.home .new {
  margin-bottom: 20px;
}
.home .new .left {
  width: 200px;
}
@media (max-width: 1200px) {
  .home .new .left {
    width: 160px;
  }
}
.home .new .right {
  width: calc(100% - 200px);
  padding-left: 15px;
  padding-right: 15px;
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
}
@media (max-width: 1200px) {
  .home .new .right {
    width: calc(100% - 160px);
  }
}
@media (max-width: 992px) {
  .home .new .right {
    width: 100%;
  }
}
.home .new .right .row,
.home .new .right .item {
  height: 100%;
}
@media (max-width: 992px) {
  .home .new .right .row,
  .home .new .right .item {
    height: auto;
  }
}
.home .new .right .item {
  padding: 34px 18px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .home .new .right .item {
    padding: 15px;
  }
}
.home .new .right .item .img {
  width: 100%;
}
.home .new .right .item .info {
  padding-top: 30px;
}
@media (max-width: 992px) {
  .home .new .right .item .info {
    padding-top: 10px;
  }
}
.home .new .right .item .info .price {
  font-size: 16px;
  color: rgb(255, 96, 0);
  padding-bottom: 15px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .home .new .right .item .info .price {
    padding-bottom: 5px;
  }
}
.home .new .right .item .info .title {
  font-size: 14px;
  color: rgb(51, 51, 51);
}
.home .banner {
  padding-bottom: 30px;
}
@media (max-width: 992px) {
  .home .banner {
    padding-bottom: 10px;
  }
}
.home .list {
  margin-bottom: 10px;
}
.home .list .title {
  padding-bottom: 30px;
}
@media (max-width: 992px) {
  .home .list .title {
    padding-bottom: 10px;
  }
}
.home .list .title .img {
  height: 20px;
}
.home .list .title .text {
  font-size: 24px;
  color: rgb(62, 125, 65);
  padding: 0 10px;
}
@media (max-width: 992px) {
  .home .list .title .text {
    font-size: 16px;
  }
}
.home .list .box {
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  padding-left: 15px;
  padding-right: 15px;
}
.home .list .box .item {
  padding: 30px 15px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .home .list .box .item {
    padding: 15px;
  }
}
.home .list .box .item .img {
  width: 100%;
}
.home .list .box .item .info {
  padding-top: 30px;
}
@media (max-width: 992px) {
  .home .list .box .item .info {
    padding-top: 10px;
  }
}
.home .list .box .item .info .price {
  font-size: 16px;
  color: rgb(255, 96, 0);
  padding-bottom: 15px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .home .list .box .item .info .price {
    padding-bottom: 5px;
  }
}
.home .list .box .item .info .name {
  font-size: 14px;
  color: rgb(51, 51, 51);
}
.home .swiper {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
}
@media (max-width: 1200px) {
  .home .swiper {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .home .swiper {
    height: 200px;
  }
}
.home .swiper .image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
}
@media (max-width: 1200px) {
  .home .swiper .image {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .home .swiper .image {
    height: 200px;
  }
}
.home .tables {
  width: 100%;
  height: 100%;
}
@media (max-width: 1200px) {
  .home .tables {
    height: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .home .tables {
    height: 100%;
    display: block;
    margin: 0 auto;
  }
}
.home .tables img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about .tit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.about .tit .name {
  height: 300px;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 1200px) {
  .about .tit .name {
    height: 200px;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .about .tit .name {
    height: 150px;
    font-size: 24px;
  }
}
.about .info {
  padding-top: 46px;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  .about .info {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.about .info .cont {
  border: 1px solid #EEEEEE;
  padding: 66px 73px;
}
@media (max-width: 1200px) {
  .about .info .cont {
    padding: 20px;
  }
}
.about .info .cont p {
  font-size: 16px;
  color: #333;
  line-height: 28px;
}

.science .tit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.science .tit .name {
  height: 300px;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 1200px) {
  .science .tit .name {
    height: 200px;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .science .tit .name {
    height: 150px;
    font-size: 24px;
  }
}
.science .mian {
  padding-top: 46px;
  padding-bottom: 90px;
}
@media (max-width: 1200px) {
  .science .mian {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.science .mian .left {
  width: 240px;
  border: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .science .mian .left {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .science .mian .left {
    width: 150px;
  }
}
.science .mian .left .title {
  height: 80px;
  font-size: 24px;
  color: #333;
  border-bottom: 1px solid #eeeeee;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .science .mian .left .title {
    height: 50px;
    font-size: 18px;
  }
}
.science .mian .left .ul {
  padding: 20px;
}
@media (max-width: 1200px) {
  .science .mian .left .ul {
    padding: 10px;
  }
}
.science .mian .left .ul .li {
  margin-bottom: 10px;
  height: 40px;
  border: 1px solid #eeeeee;
  padding: 0 26px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .science .mian .left .ul .li {
    height: 36px;
    padding: 0 10px;
  }
}
.science .mian .left .ul .li .name {
  font-size: 16px;
  color: #333;
}
@media (max-width: 1200px) {
  .science .mian .left .ul .li .name {
    font-size: 14px;
  }
}
.science .mian .left .ul .li .icon {
  width: 7px;
  height: 12px;
}
@media (max-width: 1200px) {
  .science .mian .left .ul .li .icon {
    width: 5px;
    height: 10px;
  }
}
.science .mian .left .ul .li .icon:nth-last-of-type(1) {
  display: none;
}
.science .mian .left .ul .li.active {
  background: #71A573;
}
.science .mian .left .ul .li.active .name {
  color: #fff;
}
.science .mian .left .ul .li.active .icon:nth-of-type(1) {
  display: none;
}
.science .mian .left .ul .li.active .icon:nth-last-of-type(1) {
  display: block;
}
.science .mian .right {
  width: calc(100% - 240px);
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 30px 40px;
}
@media (max-width: 1200px) {
  .science .mian .right {
    width: calc(100% - 200px);
    padding: 20px 20px;
  }
}
@media (max-width: 992px) {
  .science .mian .right {
    width: calc(100% - 150px);
    padding: 10px 10px;
  }
}
.science .mian .right .item {
  margin-bottom: 30px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .science .mian .right .item {
    margin-bottom: 10px;
  }
}
.science .mian .right .item .img {
  width: 200px;
  height: 150px;
}
@media (max-width: 1200px) {
  .science .mian .right .item .img {
    width: 150px;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .science .mian .right .item .img {
    width: 100px;
    height: 70px;
  }
}
.science .mian .right .item .cont {
  width: calc(100% - 200px);
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .science .mian .right .item .cont {
    width: calc(100% - 150px);
    padding-left: 20px;
  }
}
@media (max-width: 992px) {
  .science .mian .right .item .cont {
    width: calc(100% - 100px);
    padding-left: 10px;
  }
}
.science .mian .right .item .cont .title {
  font-size: 16px;
  color: #333;
  padding-bottom: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .science .mian .right .item .cont .title {
    font-size: 14px;
    padding-bottom: 8px;
  }
}
.science .mian .right .item .cont .desc {
  font-size: 16px;
  color: #333;
  text-align: justify;
}
@media (max-width: 1200px) {
  .science .mian .right .item .cont .desc {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
.science .pagination {
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .science .pagination {
    padding-top: 20px;
  }
}
@media (max-width: 992px) {
  .science .pagination {
    padding-top: 10px;
  }
}
.science .new-info .top {
  padding-bottom: 32px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .science .new-info .top {
    padding-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .science .new-info .top {
    padding-bottom: 10px;
  }
}
.science .new-info .top .title {
  text-align: center;
  font-size: 24px;
  color: #333;
}
@media (max-width: 1200px) {
  .science .new-info .top .title {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .science .new-info .top .title {
    font-size: 16px;
  }
}
.science .new-info .top .time {
  padding-top: 45px;
  font-size: 16px;
  color: #333;
  text-align: center;
}
@media (max-width: 1200px) {
  .science .new-info .top .time {
    padding-top: 20px;
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .science .new-info .top .time {
    padding-top: 10px;
    font-size: 12px;
  }
}
.science .new-info .p {
  padding: 35px 0;
  font-size: 14px;
}
@media (max-width: 1200px) {
  .science .new-info .p {
    padding: 20px 0;
    font-size: 12px;
  }
}
@media (max-width: 992px) {
  .science .new-info .p {
    padding: 10px 0;
  }
}

.partner .tit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.partner .tit .name {
  height: 300px;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 1200px) {
  .partner .tit .name {
    height: 200px;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .partner .tit .name {
    height: 150px;
    font-size: 24px;
  }
}
.partner .mian {
  padding-top: 46px;
  padding-bottom: 90px;
}
@media (max-width: 1200px) {
  .partner .mian {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.partner .mian .left {
  width: 240px;
  border: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .partner .mian .left {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .partner .mian .left {
    width: 150px;
  }
}
.partner .mian .left .title {
  height: 80px;
  font-size: 24px;
  color: #333;
  border-bottom: 1px solid #eeeeee;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .partner .mian .left .title {
    height: 50px;
    font-size: 18px;
  }
}
.partner .mian .left .ul {
  padding: 20px;
}
@media (max-width: 1200px) {
  .partner .mian .left .ul {
    padding: 10px;
  }
}
.partner .mian .left .ul .li {
  margin-bottom: 10px;
  height: 40px;
  border: 1px solid #eeeeee;
  padding: 0 26px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .partner .mian .left .ul .li {
    height: 36px;
    padding: 0 10px;
  }
}
.partner .mian .left .ul .li .name {
  font-size: 16px;
  color: #333;
}
@media (max-width: 1200px) {
  .partner .mian .left .ul .li .name {
    font-size: 14px;
  }
}
.partner .mian .left .ul .li .icon {
  width: 7px;
  height: 12px;
}
@media (max-width: 1200px) {
  .partner .mian .left .ul .li .icon {
    width: 5px;
    height: 10px;
  }
}
.partner .mian .left .ul .li .icon:nth-last-of-type(1) {
  display: none;
}
.partner .mian .left .ul .li.active {
  background: #71A573;
}
.partner .mian .left .ul .li.active .name {
  color: #fff;
}
.partner .mian .left .ul .li.active .icon:nth-of-type(1) {
  display: none;
}
.partner .mian .left .ul .li.active .icon:nth-last-of-type(1) {
  display: block;
}
.partner .mian .right {
  width: calc(100% - 240px);
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 30px 40px;
}
@media (max-width: 1200px) {
  .partner .mian .right {
    width: calc(100% - 200px);
    padding: 20px 20px;
  }
}
@media (max-width: 992px) {
  .partner .mian .right {
    width: calc(100% - 150px);
    padding: 10px 10px;
  }
}
.partner .new-info .p {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .partner .new-info .p {
    font-size: 12px;
  }
}

.culture .tit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.culture .tit .name {
  height: 300px;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 1200px) {
  .culture .tit .name {
    height: 200px;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .culture .tit .name {
    height: 150px;
    font-size: 24px;
  }
}
.culture .mian {
  padding-top: 46px;
  padding-bottom: 90px;
}
@media (max-width: 1200px) {
  .culture .mian {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.culture .mian .left {
  width: 240px;
  border: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .culture .mian .left {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .culture .mian .left {
    width: 150px;
  }
}
.culture .mian .left .title {
  height: 80px;
  font-size: 24px;
  color: #333;
  border-bottom: 1px solid #eeeeee;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .culture .mian .left .title {
    height: 50px;
    font-size: 18px;
  }
}
.culture .mian .left .ul {
  padding: 20px;
}
@media (max-width: 1200px) {
  .culture .mian .left .ul {
    padding: 10px;
  }
}
.culture .mian .left .ul .li {
  margin-bottom: 10px;
  height: 40px;
  border: 1px solid #eeeeee;
  padding: 0 26px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .culture .mian .left .ul .li {
    height: 36px;
    padding: 0 10px;
  }
}
.culture .mian .left .ul .li .name {
  font-size: 16px;
  color: #333;
}
@media (max-width: 1200px) {
  .culture .mian .left .ul .li .name {
    font-size: 14px;
  }
}
.culture .mian .left .ul .li .icon {
  width: 7px;
  height: 12px;
}
@media (max-width: 1200px) {
  .culture .mian .left .ul .li .icon {
    width: 5px;
    height: 10px;
  }
}
.culture .mian .left .ul .li .icon:nth-last-of-type(1) {
  display: none;
}
.culture .mian .left .ul .li.active {
  background: #71A573;
}
.culture .mian .left .ul .li.active .name {
  color: #fff;
}
.culture .mian .left .ul .li.active .icon:nth-of-type(1) {
  display: none;
}
.culture .mian .left .ul .li.active .icon:nth-last-of-type(1) {
  display: block;
}
.culture .mian .right {
  width: calc(100% - 240px);
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 30px 40px;
}
@media (max-width: 1200px) {
  .culture .mian .right {
    width: calc(100% - 200px);
    padding: 20px 20px;
  }
}
@media (max-width: 992px) {
  .culture .mian .right {
    width: calc(100% - 150px);
    padding: 10px 10px;
  }
}
.culture .new-info .p {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .culture .new-info .p {
    font-size: 12px;
  }
}

.help .tit {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.help .tit .name {
  height: 300px;
  font-size: 36px;
  color: #fff;
}
@media (max-width: 1200px) {
  .help .tit .name {
    height: 200px;
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .help .tit .name {
    height: 150px;
    font-size: 24px;
  }
}
.help .mian {
  padding-top: 46px;
  padding-bottom: 90px;
}
@media (max-width: 1200px) {
  .help .mian {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.help .mian .left {
  width: 240px;
  border: 1px solid #eeeeee;
}
@media (max-width: 1200px) {
  .help .mian .left {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .help .mian .left {
    width: 150px;
  }
}
.help .mian .left .title {
  height: 80px;
  font-size: 24px;
  color: #333;
  border-bottom: 1px solid #eeeeee;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .help .mian .left .title {
    height: 50px;
    font-size: 18px;
  }
}
.help .mian .left .ul {
  padding: 20px;
}
@media (max-width: 1200px) {
  .help .mian .left .ul {
    padding: 10px;
  }
}
.help .mian .left .ul .li {
  margin-bottom: 10px;
  height: 40px;
  border: 1px solid #eeeeee;
  padding: 0 26px;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .help .mian .left .ul .li {
    height: 36px;
    padding: 0 10px;
  }
}
.help .mian .left .ul .li .name {
  font-size: 16px;
  color: #333;
}
@media (max-width: 1200px) {
  .help .mian .left .ul .li .name {
    font-size: 14px;
  }
}
.help .mian .left .ul .li .icon {
  width: 7px;
  height: 12px;
}
@media (max-width: 1200px) {
  .help .mian .left .ul .li .icon {
    width: 5px;
    height: 10px;
  }
}
.help .mian .left .ul .li .icon:nth-last-of-type(1) {
  display: none;
}
.help .mian .left .ul .li.active {
  background: #71A573;
}
.help .mian .left .ul .li.active .name {
  color: #fff;
}
.help .mian .left .ul .li.active .icon:nth-of-type(1) {
  display: none;
}
.help .mian .left .ul .li.active .icon:nth-last-of-type(1) {
  display: block;
}
.help .mian .right {
  width: calc(100% - 240px);
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 30px 40px;
}
@media (max-width: 1200px) {
  .help .mian .right {
    width: calc(100% - 200px);
    padding: 20px 20px;
  }
}
@media (max-width: 992px) {
  .help .mian .right {
    width: calc(100% - 150px);
    padding: 10px 10px;
  }
}
.help .mian .help-info .title {
  font-size: 16px;
  color: #333;
}
.help .mian .help-info .ul {
  padding-top: 10px;
}
.help .mian .help-info .ul .li {
  border-bottom: 1px solid #eeeeee;
}
.help .mian .help-info .ul .li .label {
  padding: 20px 0;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .help .mian .help-info .ul .li .label {
    padding: 10px 0;
  }
}
.help .mian .help-info .ul .li .value {
  background-color: #F3F3F3;
  padding: 20px;
  font-size: 16px;
  color: #333;
}
@media (max-width: 1200px) {
  .help .mian .help-info .ul .li .value {
    padding: 10px;
  }
}
.help .new-info .title {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .help .new-info .title {
    margin-bottom: 10px;
  }
}
.help .new-info .p {
  font-size: 14px;
}
@media (max-width: 1200px) {
  .help .new-info .p {
    font-size: 12px;
  }
}

.goods-list .banner {
  display: block;
  width: 100%;
}
.goods-list .list {
  padding-top: 30px;
  padding-bottom: 30px;
}
.goods-list .list .box-top {
  padding: 20px;
  border-left: 1px solid #EEEEEE;
  border-top: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .goods-list .list .box-top {
    padding: 10px 20px;
  }
}
.goods-list .list .box-top .li {
  font-size: 16px;
  color: #333;
  padding-right: 60px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .goods-list .list .box-top .li {
    padding-right: 30px;
  }
}
.goods-list .list .box-top .li .u {
  width: 9px;
  height: 4px;
  margin-bottom: 3px;
  margin-left: 12px;
}
.goods-list .list .box-top .li .n {
  width: 9px;
  height: 4px;
  margin-left: 12px;
}
.goods-list .list .box-top .li .icon {
  width: 100%;
  height: 100%;
  display: block;
}
.goods-list .list .box-top .li .n .icon {
  transform: rotate(180deg);
  margin-left: 1px;
}
.goods-list .list .box {
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  padding-left: 15px;
  padding-right: 15px;
}
.goods-list .list .box .item {
  padding: 30px 15px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .goods-list .list .box .item {
    padding: 15px;
  }
}
.goods-list .list .box .item .img {
  width: 100%;
}
.goods-list .list .box .item .info {
  padding-top: 30px;
}
@media (max-width: 992px) {
  .goods-list .list .box .item .info {
    padding-top: 10px;
  }
}
.goods-list .list .box .item .info .price {
  font-size: 16px;
  color: rgb(255, 96, 0);
  padding-bottom: 15px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .goods-list .list .box .item .info .price {
    padding-bottom: 5px;
  }
}
.goods-list .list .box .item .info .price .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .goods-list .list .box .item .info .price .icon {
    width: 20px;
    height: 20px;
  }
}
.goods-list .list .box .item .info .name {
  font-size: 14px;
  color: rgb(51, 51, 51);
}
.goods-list .list .sl-pagination {
  padding-top: 20px;
}

.login .login-container {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.login .login-container .login-top {
  padding-top: 60px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}
@media (max-width: 992px) {
  .login .login-container .login-top {
    padding-top: 20px;
  }
}
.login .login-container .login-top .title {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}
.login .login-container .login-top .desc {
  font-size: 14px;
  padding-top: 10px;
  color: #333;
}
.login .login-container .login-form {
  padding-top: 30px;
  padding-bottom: 200px;
}
.login .login-container .login-form .icon {
  width: 20px;
}
.login .login-container .login-form .code {
  cursor: pointer;
  color: #333;
}
.login .login-container .login-form .span {
  padding-top: 10px;
  padding-bottom: 30px;
}
.login .login-container .login-form .span2 {
  padding-top: 20px;
  font-size: 14px;
  color: #666666;
}
.login .login-container .login-form .span2 span {
  color: #FF6000;
  cursor: pointer;
}
.login .login-container .login-form .span2 span:hover {
  opacity: 0.5;
}
.login .login-container .login-form .span .forget {
  font-size: 14px;
  color: #FF6000;
  cursor: pointer;
}
.login .login-container .login-form .span .forget:hover {
  opacity: 0.5;
}
.login .login-container .login-form .login-btn {
  height: 46px;
  background-color: #3E7D41;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
}
.login .login-container .login-form .login-btn:hover {
  opacity: 0.8;
}
.login .login-container .login-form .register {
  padding-top: 30px;
  font-size: 14px;
  color: #333;
}
.login .login-container .login-form .register2 {
  padding-top: 20px;
}
.login .login-container .login-form .register span {
  color: #FF6000;
  cursor: pointer;
}
.login .login-container .login-form .register span:hover {
  opacity: 0.5;
}

.goods-detail .sl-breadcrumb {
  padding: 25px 0;
}
@media (max-width: 992px) {
  .goods-detail .sl-breadcrumb {
    padding: 10px 0;
  }
}
.goods-detail .sl-card {
  border: 1px solid #eee;
}
.goods-detail .sl-card .left {
  border-right: 1px solid #eee;
  padding: 20px;
}
.goods-detail .sl-card .left .swiper-imgs .img {
  width: 100%;
  display: block;
}
.goods-detail .sl-card .left .sl-swiper {
  position: relative;
  padding: 0 30px;
  margin-top: 15px;
}
.goods-detail .sl-card .left .sl-swiper .swiper-slide .img {
  width: 50px;
  border: 1px solid rgba(0, 0, 0, 0);
}
@media (max-width: 992px) {
  .goods-detail .sl-card .left .sl-swiper .swiper-slide .img {
    width: 100px;
    height: 100px;
  }
}
.goods-detail .sl-card .left .sl-swiper .swiper-slide .img.active {
  border: 1px solid #f00;
}
.goods-detail .sl-card .left .sl-swiper .sl-swiper-prev {
  width: 10px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -12px;
  z-index: 1;
  cursor: pointer;
}
.goods-detail .sl-card .left .sl-swiper .img2 {
  width: 100%;
  height: 100%;
  display: block;
}
.goods-detail .sl-card .left .sl-swiper .sl-swiper-next {
  width: 10px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -12px;
  transform: rotate(180deg);
  z-index: 1;
  cursor: pointer;
}
.goods-detail .sl-card .right {
  padding: 20px;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right {
    padding: 10px;
  }
}
.goods-detail .sl-card .right .title {
  font-size: 24px;
  color: #333;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .title {
    font-size: 16px;
  }
}
.goods-detail .sl-card .right .box {
  padding: 20px 0;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .box {
    padding: 10px 0;
  }
}
.goods-detail .sl-card .right .box .label {
  font-size: 14px;
  color: #333;
  width: 100px;
  line-height: 24px;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .box .label {
    width: 70px;
    padding-left: 10px;
  }
}
.goods-detail .sl-card .right .box .value {
  font-size: 16px;
  color: #FF6000;
  line-height: 24px;
  font-weight: bold;
}
.goods-detail .sl-card .right .box .value span {
  font-size: 24px;
  font-weight: bold;
}
.goods-detail .sl-card .right .box-card {
  background-color: #F7F7F7;
}
.goods-detail .sl-card .right .box .value2 {
  font-size: 14px;
  color: #333;
  line-height: 26px;
  margin: 4px 0;
}
.goods-detail .sl-card .right .box .value2 span {
  display: inline-block;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #FF6000;
  font-size: 14px;
  color: #FF6000;
  line-height: 24px;
  margin-right: 10px;
}
.goods-detail .sl-card .right .box .value3 {
  font-size: 14px;
  color: #333;
}
.goods-detail .sl-card .right .box .value3 span {
  color: #FF6000;
}
.goods-detail .sl-card .right .box2 {
  padding: 0;
}
.goods-detail .sl-card .right .box2 .li {
  margin: 5px;
  border: 1px solid #eee;
  padding: 10px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .box2 .li {
    padding: 5px;
  }
}
.goods-detail .sl-card .right .box2 .li.active {
  border: 1px solid #FF6000;
  color: #FF6000;
}
.goods-detail .sl-card .right .box2 .li .img {
  width: 40px;
  margin-right: 10px;
}
.goods-detail .sl-card .right .operation {
  padding-top: 15px;
  padding-left: 100px;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .operation {
    padding-left: 70px;
  }
}
.goods-detail .sl-card .right .operation .btn1 {
  width: 130px;
  height: 40px;
  background: #3E7D41;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  margin-left: 15px;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .operation .btn1 {
    width: 100px;
  }
}
.goods-detail .sl-card .right .operation .btn2 {
  width: 130px;
  height: 40px;
  background: #DF9F30;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
  text-align: center;
  margin-left: 15px;
}
@media (max-width: 992px) {
  .goods-detail .sl-card .right .operation .btn2 {
    width: 100px;
  }
}
.goods-detail .goods-info .left {
  margin-top: 10px;
}
.goods-detail .goods-info .left .title {
  padding: 20px;
  font-size: 16px;
  color: #333;
  width: 100%;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .goods-detail .goods-info .left .title {
    padding: 10px;
  }
}
.goods-detail .goods-info .left .box {
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
}
.goods-detail .goods-info .left .box .item {
  padding: 15px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
.goods-detail .goods-info .left .box .item .img {
  width: 100%;
}
.goods-detail .goods-info .left .box .item .info {
  padding-top: 10px;
}
.goods-detail .goods-info .left .box .item .info .price {
  font-size: 16px;
  color: rgb(255, 96, 0);
  padding-bottom: 5px;
  font-weight: bold;
}
.goods-detail .goods-info .left .box .item .info .price .icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.goods-detail .goods-info .left .box .item .info .name {
  font-size: 14px;
  color: rgb(51, 51, 51);
}
.goods-detail .goods-info .right {
  margin-top: 10px;
}
.goods-detail .goods-info .right .top {
  border: 1px solid #EEEEEE;
}
.goods-detail .goods-info .right .top .li {
  padding: 20px 50px;
  font-size: 16px;
  color: #333;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 992px) {
  .goods-detail .goods-info .right .top .li {
    padding: 10px 20px;
  }
}
.goods-detail .goods-info .right .top .li.active {
  background-color: #3E7D41;
  color: #fff;
}
.goods-detail .goods-info .right .content {
  padding: 20px;
}
@media (max-width: 992px) {
  .goods-detail .goods-info .right .content {
    padding: 10px;
  }
}
.goods-detail .goods-info .right .appraise .tit {
  width: 100%;
  background-color: #EEEEEE;
  padding: 10px 20px;
  font-size: 16px;
  color: #333;
}
.goods-detail .goods-info .right .appraise .ul {
  width: 100%;
  padding: 0 10px;
}
.goods-detail .goods-info .right .appraise .ul .li {
  padding: 15px 0;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
}
.goods-detail .goods-info .right .appraise .ul .li .l {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
}
.goods-detail .goods-info .right .appraise .ul .li .r {
  width: calc(100% - 44px);
  padding-left: 10px;
  padding-top: 10px;
}
.goods-detail .goods-info .right .appraise .ul .li .span {
  padding-bottom: 10px;
}
.goods-detail .goods-info .right .appraise .ul .li .span .name,
.goods-detail .goods-info .right .appraise .ul .li .span .time {
  font-size: 16px;
  color: #333;
}
.goods-detail .goods-info .right .appraise .ul .li .r .text {
  font-size: 14px;
  color: #333;
}
.goods-detail .goods-info .right .appraise .ul .li .r .imgs {
  padding-top: 10px;
}
.goods-detail .goods-info .right .appraise .ul .li .r .imgs .img {
  width: 44px;
  height: 44px;
  margin-top: 5px;
  margin-right: 5px;
}
.goods-detail .goods-info .right .appraise .sl-pagination {
  padding: 10px 0;
}

.cart .tabs .el-tabs__item {
  font-size: 16px;
}
.cart .sl-table .el-table {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cart .sl-table .el-table {
    margin-bottom: 10px;
  }
}
.cart .sl-table .info {
  width: 100%;
}
.cart .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .cart .sl-table .info .img {
    width: 60px;
  }
}
.cart .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .cart .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.cart .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.cart .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
  padding-top: 15px;
}
@media (max-width: 1200px) {
  .cart .sl-table .info .cont .p {
    padding-top: 5px;
  }
}
.cart .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.cart .sl-table .info .el-input-number--mini {
  width: 100px;
}
.cart .sl-table .el-table--border td, .cart .sl-table .el-table--border th, .cart .sl-table .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed {
  border-right: none;
}
.cart .sl-table tr th .cell {
  font-weight: bold;
  color: #333;
}
.cart .sl-table .sl-table-foot {
  height: 50px;
  background: #F2F2F2;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .cart .sl-table .sl-table-foot {
    height: 40px;
    margin-bottom: 10px;
  }
}
.cart .sl-table .sl-table-foot .left {
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .cart .sl-table .sl-table-foot .left {
    padding-left: 10px;
  }
}
.cart .sl-table .sl-table-foot .right {
  font-size: 14px;
  color: #000;
}
@media (max-width: 1200px) {
  .cart .sl-table .sl-table-foot .right {
    font-size: 12px;
  }
}
.cart .sl-table .sl-table-foot .right span {
  color: rgb(255, 96, 0);
}
.cart .sl-table .sl-table-foot .right .price {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .cart .sl-table .sl-table-foot .right .price {
    font-size: 16px;
  }
}
.cart .sl-table .sl-table-foot .right .sl-btn {
  width: 110px;
  height: 50px;
  background-color: rgb(62, 125, 65);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .cart .sl-table .sl-table-foot .right .sl-btn {
    width: 70px;
    height: 40px;
    margin-left: 10px;
    font-size: 14px;
  }
}
.cart .sl-table .sl-table-foot .right .sl-btn:hover {
  opacity: 0.8;
}
.cart .tabs2 .is-active {
  background-color: #3E7D41;
  color: #fff;
  width: 100px;
  text-align: center;
}
@media (max-width: 992px) {
  .cart .tabs2 .is-active {
    width: 80px;
  }
}
.cart .list {
  padding-bottom: 30px;
}
.cart .list .box {
  border-top: 1px solid #EEEEEE;
  border-left: 1px solid #EEEEEE;
  padding-left: 15px;
  padding-right: 15px;
}
.cart .list .box .item {
  padding: 15px;
  border-right: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}
@media (max-width: 992px) {
  .cart .list .box .item {
    padding: 15px;
  }
}
.cart .list .box .item .img {
  width: 100%;
}
.cart .list .box .item .info {
  padding-top: 10px;
}
.cart .list .box .item .info .price {
  font-size: 16px;
  color: rgb(255, 96, 0);
  padding-bottom: 10px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .cart .list .box .item .info .price {
    padding-bottom: 5px;
  }
}
.cart .list .box .item .info .price .icon {
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .cart .list .box .item .info .price .icon {
    width: 20px;
    height: 20px;
  }
}
.cart .list .box .item .info .name {
  font-size: 14px;
  color: rgb(51, 51, 51);
}

.affirm .tabs .el-tabs__item {
  font-size: 16px;
}
.affirm .address .item {
  position: relative;
  height: 120px;
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 15px;
  cursor: pointer;
}
.affirm .address .item .img {
  height: 4px;
  background-position: left center;
  background-repeat: repeat-x;
  background-size: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.affirm .address .item .name {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  padding-bottom: 5px;
}
.affirm .address .item .name span {
  font-weight: normal;
}
.affirm .address .item .info {
  font-size: 14px;
  color: #333;
}
.affirm .address .item .edit {
  padding-top: 5px;
  font-size: 14px;
  color: rgb(255, 102, 0);
}
.affirm .address .item .edit:hover {
  opacity: 0.5;
}
.affirm .address .item .icon {
  width: 27px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.affirm .address .item .add {
  font-size: 26px;
  color: #333;
}
@media (max-width: 992px) {
  .affirm .address .item .add {
    font-size: 20px;
  }
}
.affirm .operation {
  padding-bottom: 60px;
}
.affirm .operation .left {
  font-size: 14px;
  color: rgb(255, 102, 0);
  cursor: pointer;
}
.affirm .operation .right {
  font-size: 14px;
  color: rgb(62, 125, 65);
  cursor: pointer;
}
.affirm .operation .left:hover, .affirm .operation .right:hover {
  opacity: 0.5;
}
.affirm .sl-table .el-table {
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .el-table {
    margin-bottom: 10px;
  }
}
.affirm .sl-table .info {
  width: 100%;
}
.affirm .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .info .img {
    width: 60px;
  }
}
.affirm .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .affirm .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.affirm .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.affirm .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
  padding-top: 15px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .info .cont .p {
    padding-top: 5px;
  }
}
.affirm .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.affirm .sl-table .info .el-input-number--mini {
  width: 100px;
}
.affirm .sl-table .el-table--border td, .affirm .sl-table .el-table--border th, .affirm .sl-table .el-table__body-wrapper .el-table--border.is-scrolling-left ~ .el-table__fixed {
  border-right: none;
}
.affirm .sl-table tr th .cell {
  font-weight: bold;
  color: #333;
}
.affirm .sl-table .sl-table-foot {
  height: 50px;
  background: #F2F2F2;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .sl-table-foot {
    height: 40px;
    margin-bottom: 10px;
  }
}
.affirm .sl-table .sl-table-foot .left {
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .sl-table-foot .left {
    padding-left: 10px;
  }
}
.affirm .sl-table .sl-table-foot .right {
  font-size: 14px;
  color: #000;
}
@media (max-width: 1200px) {
  .affirm .sl-table .sl-table-foot .right {
    font-size: 12px;
  }
}
.affirm .sl-table .sl-table-foot .right span {
  color: rgb(255, 96, 0);
}
.affirm .sl-table .sl-table-foot .right .price {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .affirm .sl-table .sl-table-foot .right .price {
    font-size: 16px;
  }
}
.affirm .sl-table .sl-table-foot .right .sl-btn {
  width: 110px;
  height: 50px;
  background-color: rgb(62, 125, 65);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  margin-left: 15px;
}
@media (max-width: 1200px) {
  .affirm .sl-table .sl-table-foot .right .sl-btn {
    width: 70px;
    height: 40px;
    margin-left: 10px;
    font-size: 14px;
  }
}
.affirm .sl-table .sl-table-pay {
  padding: 30px 25px;
  background: #F2F5F8;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay {
    padding: 15px;
  }
}
.affirm .sl-table .sl-table-pay .title {
  font-size: 14px;
  color: rgb(255, 102, 0);
}
.affirm .sl-table .sl-table-pay .title span {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: rgb(255, 102, 0);
  font-size: 12px;
  color: #fff;
  line-height: 10px;
  text-align: center;
  margin-right: 8px;
}
.affirm .sl-table .sl-table-pay .ul {
  margin-top: 10px;
}
.affirm .sl-table .sl-table-pay .li {
  width: 156px;
  height: 50px;
  border: 1px solid rgb(229, 229, 229);
  background-color: #fff;
  font-size: 14px;
  color: rgb(51, 51, 51);
  margin: 5px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay .li {
    width: 110px;
    height: 40px;
  }
}
.affirm .sl-table .sl-table-pay .li.active {
  border: 1px solid rgb(255, 96, 0);
  color: rgb(255, 96, 0);
}
.affirm .sl-table .sl-table-pay .sl-group {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay .sl-group {
    padding-top: 10px;
  }
}
.affirm .sl-table .sl-table-pay .message {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay .message {
    padding-top: 10px;
  }
}
.affirm .sl-table .sl-table-pay .desc {
  padding-top: 20px;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay .desc {
    padding-top: 10px;
  }
}
.affirm .sl-table .sl-table-pay .desc .p {
  font-size: 14px;
  color: #333;
  line-height: 24px;
}
.affirm .sl-table .sl-table-pay .desc .p span {
  color: rgb(255, 102, 0);
}
.affirm .sl-table .sl-table-pay-btn {
  padding: 20px 0;
}
.affirm .sl-table .sl-table-pay-btn .sl-btn {
  width: 200px;
  height: 50px;
  background: #3E7D41;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 992px) {
  .affirm .sl-table .sl-table-pay-btn .sl-btn {
    width: 150px;
    height: 40px;
    font-size: 16px;
  }
}
.affirm .sl-table .sl-table-pay-btn .sl-btn:hover {
  opacity: 0.8;
}
.affirm .sl-modal .close {
  cursor: pointer;
}
.affirm .sl-modal .modal-body .sl-btn {
  width: 120px;
  height: 32px;
  background-color: rgb(62, 125, 65);
  font-size: 14px;
  color: #fff;
  cursor: pointer;
}
.affirm .sl-modal .modal-body .sl-btn:hover {
  opacity: 0.8;
}

.pay .sl-card {
  border: 1px solid #ccc;
  padding: 30px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .pay .sl-card {
    padding: 15px;
  }
}
.pay .sl-card .info {
  padding-bottom: 20px;
}
.pay .sl-card .info .title {
  font-size: 16px;
  color: rgb(62, 125, 65);
  padding-bottom: 10px;
}
.pay .sl-card .info .p {
  font-size: 14px;
  color: #333;
  line-height: 28px;
}
.pay .sl-card .info .p span {
  color: rgb(255, 102, 0);
}
.pay .sl-card .pay-info .title {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  color: #333;
}
.pay .sl-card .pay-info .sl-radio .el-radio {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  margin: 20px 0;
}
@media (max-width: 992px) {
  .pay .sl-card .pay-info .sl-radio .el-radio {
    height: 40px;
  }
}
.pay .sl-card .pay-info .sl-radio .el-radio .balance {
  font-size: 16px;
  color: rgb(62, 125, 65);
  margin-left: 10px;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .pay .sl-card .pay-info .sl-radio .el-radio .balance {
    font-size: 14px;
  }
}
.pay .sl-card .pay-info .sl-radio .el-radio .balance .money {
  margin-left: 10px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}
.pay .sl-card .pay-info .sl-radio .icon {
  height: 60px;
}
@media (max-width: 992px) {
  .pay .sl-card .pay-info .sl-radio .icon {
    height: 40px;
  }
}
.pay .sl-card .pay-info .sl-btn {
  width: 120px;
  height: 32px;
  background-color: rgb(62, 125, 65);
  font-size: 14px;
  color: white;
  cursor: pointer;
}
.pay .sl-card .pay-info .sl-btn:hover {
  opacity: 0.8;
}
.pay .sl-card .pay-info .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
  padding-top: 15px;
}
.pay .sl-table .info {
  width: 100%;
  margin-bottom: 10px;
}
.pay .sl-table .info:nth-last-of-type(1) {
  margin-bottom: auto;
}
.pay .sl-table .info .img {
  width: 80px;
}
@media (max-width: 1200px) {
  .pay .sl-table .info .img {
    width: 60px;
  }
}
.pay .sl-table .info .cont {
  padding-left: 15px;
  width: calc(100% - 80px);
}
@media (max-width: 1200px) {
  .pay .sl-table .info .cont {
    width: calc(100% - 60px);
  }
}
.pay .sl-table .info .cont .name {
  font-size: 14px;
  color: #333;
}
.pay .sl-table .info .cont .sum {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.pay .sl-table .info .cont .p {
  font-size: 14px;
  color: rgb(102, 102, 102);
}
.pay .sl-table .info .text {
  text-align: center;
  font-size: 14px;
}
.pay .modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .ul-menu {
  border: 1px solid #eee;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .user .ul-menu {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.user .ul-menu .li {
  height: 50px;
  padding: 0 20px;
  font-size: 16px;
  color: #333;
  line-height: 50px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .user .ul-menu .li {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    flex: 1;
    padding: 0;
    text-align: center;
  }
}
.user .ul-menu .li.active {
  background-color: #E5E5E5;
  font-weight: bold;
}
.user .user-content {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .user .user-content {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=style.css.map */
