/*
KISSY CSS Reset
理念：清除和重置是紧密不可分的
特色：1.适应中文 2.基于最新主流浏览器
维护：玉伯(lifesinger@gmail.com), 正淳(ragecarrier@gmail.com)
*/
/* 清除内外边距 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
  /* table elements 表格元素 */
  margin: 0;
  padding: 0;
}
/* 设置默认字体 */
body,
button,
input,
select,
textarea {
  /* for ie */
  /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
  font: 12px/1.5 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
  /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}
h1 {
  font-size: 18px;
  /* 18px / 12px = 1.5 */
}
h2 {
  font-size: 16px;
}
h3 {
  font-size: 14px;
}
h4,
h5,
h6 {
  font-size: 100%;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
/* 将斜体扶正 */
code,
kbd,
pre,
samp,
tt {
  font-family: "Courier New", Courier, monospace;
}
/* 统一等宽字体 */
small {
  font-size: 12px;
}
/* 小于 12px 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul,
ol {
  list-style: none;
}
/* 重置文本格式元素 */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
abbr[title],
acronym[title] {
  /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
  border-bottom: 1px dotted;
  cursor: help;
}
q:before,
q:after {
  content: "";
}
/* 重置表单元素 */
legend {
  color: #000;
}
/* for ie6 */
fieldset,
img {
  border: none;
}
/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 使得表单元素在 ie 下能继承字体大小 */
}
/* 重置表格元素 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 重置 hr */
hr {
  border: none;
  height: 1px;
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
  overflow-y: scroll;
}
/**
 *  select2
 */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 34px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}
.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container .select2-search--inline {
  float: left;
}
.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 99999;
}
.select2-results {
  display: block;
}
.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}
.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
  cursor: pointer;
}
.select2-container--open .select2-dropdown {
  left: 0;
}
.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-search--dropdown {
  display: block;
  padding: 4px;
}
.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
  display: none;
}
.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 34px;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 33px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--default .select2-results__option[role="group"] {
  padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #999;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}
.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}
.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
  border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--classic .select2-results__option[role="group"] {
  padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled="true"] {
  color: grey;
}
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: #fff;
}
.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}
.select2-selection__rendered {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
/**
 * bxSlider v4.2.4
 * Copyright 2013-2015 Steven Wanderski
 * Written while drinking Belgian ales and listening to jazz

 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.bx-wrapper img {
  max-width: 100%;
  display: block;
}
.bxslider {
  margin: 0;
  padding: 0;
}
ul.bxslider {
  list-style: none;
}
.bx-viewport {
  -webkit-transform: translatez(0);
}
.bx-wrapper {
  -moz-box-shadow: 0 0 5px #ccc;
  -webkit-box-shadow: 0 0 5px #ccc;
  box-shadow: 0 0 5px #ccc;
  background: #fff;
}
.bx-wrapper .bx-controls-auto,
.bx-wrapper .bx-pager {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
.bx-wrapper .bx-loading {
  min-height: 50px;
  background: url(images/bx_loader.gif) center center no-repeat #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
.bx-wrapper .bx-pager {
  text-align: center;
  font-size: 0.85em;
  font-family: Arial;
  font-weight: 700;
  color: #666;
  padding-top: 20px;
}
.bx-wrapper .bx-pager.bx-default-pager a {
  background: #666;
  text-indent: -9999px;
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  outline: 0;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active,
.bx-wrapper .bx-pager.bx-default-pager a:focus,
.bx-wrapper .bx-pager.bx-default-pager a:hover {
  background: #000;
}
.bx-wrapper .bx-controls-auto .bx-controls-auto-item,
.bx-wrapper .bx-pager-item {
  display: inline-block;
  *zoom: 1;
  *display: inline;
}
.bx-wrapper .bx-pager-item {
  font-size: 0;
  line-height: 0;
}
.bx-wrapper .bx-prev {
  left: 10px;
  background: url(images/controls.png) no-repeat 0 -32px;
}
.bx-wrapper .bx-prev:focus,
.bx-wrapper .bx-prev:hover {
  background-position: 0 0;
}
.bx-wrapper .bx-next {
  right: 10px;
  background: url(images/controls.png) no-repeat -43px -32px;
}
.bx-wrapper .bx-next:focus,
.bx-wrapper .bx-next:hover {
  background-position: -43px 0;
}
.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 32px;
  height: 32px;
  text-indent: -9999px;
  z-index: 9999;
}
.bx-wrapper .bx-controls-direction a.disabled {
  display: none;
}
.bx-wrapper .bx-controls-auto {
  text-align: center;
}
.bx-wrapper .bx-controls-auto .bx-start {
  display: block;
  text-indent: -9999px;
  width: 10px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -11px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-start.active,
.bx-wrapper .bx-controls-auto .bx-start:focus,
.bx-wrapper .bx-controls-auto .bx-start:hover {
  background-position: -86px 0;
}
.bx-wrapper .bx-controls-auto .bx-stop {
  display: block;
  text-indent: -9999px;
  width: 9px;
  height: 11px;
  outline: 0;
  background: url(images/controls.png) -86px -44px no-repeat;
  margin: 0 3px;
}
.bx-wrapper .bx-controls-auto .bx-stop.active,
.bx-wrapper .bx-controls-auto .bx-stop:focus,
.bx-wrapper .bx-controls-auto .bx-stop:hover {
  background-position: -86px -33px;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
  text-align: left;
  width: 80%;
}
.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
  right: 0;
  width: 35px;
}
.bx-wrapper .bx-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #666;
  background: rgba(80, 80, 80, 0.75);
  width: 100%;
}
.bx-wrapper .bx-caption span {
  color: #fff;
  font-family: Arial;
  display: block;
  font-size: 0.85em;
  padding: 10px;
}
/* jquery.Jcrop.min.css v0.9.12 (build:20130126) */
.jcrop-holder {
  direction: ltr;
  text-align: left;
}
.jcrop-vline,
.jcrop-hline {
  background: #fff url(images/Jcrop.gif);
  font-size: 0;
  position: absolute;
}
.jcrop-vline {
  height: 100%;
  width: 1px !important;
}
.jcrop-vline.right {
  right: 0;
}
.jcrop-hline {
  height: 1px !important;
  width: 100%;
}
.jcrop-hline.bottom {
  bottom: 0;
}
.jcrop-tracker {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  height: 100%;
  width: 100%;
}
.jcrop-handle {
  background-color: #333;
  border: 1px #eee solid;
  font-size: 1px;
  height: 7px;
  width: 7px;
}
.jcrop-handle.ord-n {
  left: 50%;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}
.jcrop-handle.ord-s {
  bottom: 0;
  left: 50%;
  margin-bottom: -4px;
  margin-left: -4px;
}
.jcrop-handle.ord-e {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 50%;
}
.jcrop-handle.ord-w {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 50%;
}
.jcrop-handle.ord-nw {
  left: 0;
  margin-left: -4px;
  margin-top: -4px;
  top: 0;
}
.jcrop-handle.ord-ne {
  margin-right: -4px;
  margin-top: -4px;
  right: 0;
  top: 0;
}
.jcrop-handle.ord-se {
  bottom: 0;
  margin-bottom: -4px;
  margin-right: -4px;
  right: 0;
}
.jcrop-handle.ord-sw {
  bottom: 0;
  left: 0;
  margin-bottom: -4px;
  margin-left: -4px;
}
.jcrop-dragbar.ord-n,
.jcrop-dragbar.ord-s {
  height: 7px;
  width: 100%;
}
.jcrop-dragbar.ord-e,
.jcrop-dragbar.ord-w {
  height: 100%;
  width: 7px;
}
.jcrop-dragbar.ord-n {
  margin-top: -4px;
}
.jcrop-dragbar.ord-s {
  bottom: 0;
  margin-bottom: -4px;
}
.jcrop-dragbar.ord-e {
  margin-right: -4px;
  right: 0;
}
.jcrop-dragbar.ord-w {
  margin-left: -4px;
}
.jcrop-light .jcrop-vline,
.jcrop-light .jcrop-hline {
  background: #fff;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}
.jcrop-light .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #000;
  border-color: #fff;
  border-radius: 3px;
}
.jcrop-dark .jcrop-vline,
.jcrop-dark .jcrop-hline {
  background: #000;
  filter: alpha(opacity=70) !important;
  opacity: 0.7 !important;
}
.jcrop-dark .jcrop-handle {
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  background-color: #fff;
  border-color: #000;
  border-radius: 3px;
}
.solid-line .jcrop-vline,
.solid-line .jcrop-hline {
  background: #fff;
}
.jcrop-holder img,
img.jcrop-preview {
  max-width: none;
}
.upload-container {
  position: relative;
  width: 860px;
  margin: 0 auto;
}
.upload-container .upload-img {
  min-height: 220px;
  width: 550px;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);
}
.upload-container #preview-pane {
  display: block;
  position: absolute;
  width: 284px;
  height: 179px;
  z-index: 110;
  top: 0px;
  left: 574px;
  padding: 6px;
  border: 1px rgba(0, 0, 0, 0.4) solid;
  border-radius: 6px;
  background-color: white;
}
.upload-container .preview-container {
  width: 272px;
  height: 167px;
  overflow: hidden;
}
#uploadImgModal {
  z-index: 9999999;
}
#uploadImgModal .modal-dialog {
  transform: none;
}
/*
DO NOT CHANGE this file, as it will be overwritten in next update.
Write your own classes in other css file.
*/
/* bootstrap "xs": Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap (3) */
.row-space {
  margin-top: 15px !important;
}
.pagination_custom {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.small-input {
  width: 50px !important;
}
/* bootstrap 3 "sm": Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .row-space {
    margin-top: 15px !important;
  }
}
/* bootstrap 3 "md": Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .row-space {
    margin-top: 0 !important;
  }
}
/* bootstrap 3 "lg": Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .row-space {
    margin-top: 0 !important;
  }
}
/* -------------------------------------------------------------------------- */
/*!
 * Datetimepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datetimepicker {
  padding: 4px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  direction: ltr;
}
.datetimepicker-inline {
  width: 220px;
}
.datetimepicker.datetimepicker-rtl {
  direction: rtl;
}
.datetimepicker.datetimepicker-rtl table tr td span {
  float: right;
}
.datetimepicker-dropdown,
.datetimepicker-dropdown-left {
  top: 0;
  left: 0;
}
[class*=" datetimepicker-dropdown"]:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
[class*=" datetimepicker-dropdown"]:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
  position: absolute;
}
[class*=" datetimepicker-dropdown-top"]:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #ccc;
  border-top-color: rgba(0, 0, 0, 0.2);
  border-bottom: 0;
}
[class*=" datetimepicker-dropdown-top"]:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 0;
}
.datetimepicker-dropdown-bottom-left:before {
  top: -7px;
  right: 6px;
}
.datetimepicker-dropdown-bottom-left:after {
  top: -6px;
  right: 7px;
}
.datetimepicker-dropdown-bottom-right:before {
  top: -7px;
  left: 6px;
}
.datetimepicker-dropdown-bottom-right:after {
  top: -6px;
  left: 7px;
}
.datetimepicker-dropdown-top-left:before {
  bottom: -7px;
  right: 6px;
}
.datetimepicker-dropdown-top-left:after {
  bottom: -6px;
  right: 7px;
}
.datetimepicker-dropdown-top-right:before {
  bottom: -7px;
  left: 6px;
}
.datetimepicker-dropdown-top-right:after {
  bottom: -6px;
  left: 7px;
}
.datetimepicker > div {
  display: none;
}
.datetimepicker.minutes div.datetimepicker-minutes {
  display: block;
}
.datetimepicker.hours div.datetimepicker-hours {
  display: block;
}
.datetimepicker.days div.datetimepicker-days {
  display: block;
}
.datetimepicker.months div.datetimepicker-months {
  display: block;
}
.datetimepicker.years div.datetimepicker-years {
  display: block;
}
.datetimepicker table {
  margin: 0;
}
.datetimepicker td,
.datetimepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 0;
}
.table-striped .datetimepicker table tr td,
.table-striped .datetimepicker table tr th {
  background-color: transparent;
}
.datetimepicker table tr td.minute:hover {
  background: #eee;
  cursor: pointer;
}
.datetimepicker table tr td.hour:hover {
  background: #eee;
  cursor: pointer;
}
.datetimepicker table tr td.day:hover {
  background: #eee;
  cursor: pointer;
}
.datetimepicker table tr td.old,
.datetimepicker table tr td.new {
  color: #999;
}
.datetimepicker table tr td.disabled,
.datetimepicker table tr td.disabled:hover {
  background: 0;
  color: #999;
  cursor: default;
}
.datetimepicker table tr td.today,
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(top, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.datetimepicker table tr td.today:hover,
.datetimepicker table tr td.today:hover:hover,
.datetimepicker table tr td.today.disabled:hover,
.datetimepicker table tr td.today.disabled:hover:hover,
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active,
.datetimepicker table tr td.today.disabled,
.datetimepicker table tr td.today:hover.disabled,
.datetimepicker table tr td.today.disabled.disabled,
.datetimepicker table tr td.today.disabled:hover.disabled,
.datetimepicker table tr td.today[disabled],
.datetimepicker table tr td.today:hover[disabled],
.datetimepicker table tr td.today.disabled[disabled],
.datetimepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datetimepicker table tr td.today:active,
.datetimepicker table tr td.today:hover:active,
.datetimepicker table tr td.today.disabled:active,
.datetimepicker table tr td.today.disabled:hover:active,
.datetimepicker table tr td.today.active,
.datetimepicker table tr td.today:hover.active,
.datetimepicker table tr td.today.disabled.active,
.datetimepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069;
}
.datetimepicker table tr td.active,
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -ms-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(top, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td.active:hover,
.datetimepicker table tr td.active:hover:hover,
.datetimepicker table tr td.active.disabled:hover,
.datetimepicker table tr td.active.disabled:hover:hover,
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active,
.datetimepicker table tr td.active.disabled,
.datetimepicker table tr td.active:hover.disabled,
.datetimepicker table tr td.active.disabled.disabled,
.datetimepicker table tr td.active.disabled:hover.disabled,
.datetimepicker table tr td.active[disabled],
.datetimepicker table tr td.active:hover[disabled],
.datetimepicker table tr td.active.disabled[disabled],
.datetimepicker table tr td.active.disabled:hover[disabled] {
  background-color: #04c;
}
.datetimepicker table tr td.active:active,
.datetimepicker table tr td.active:hover:active,
.datetimepicker table tr td.active.disabled:active,
.datetimepicker table tr td.active.disabled:hover:active,
.datetimepicker table tr td.active.active,
.datetimepicker table tr td.active:hover.active,
.datetimepicker table tr td.active.disabled.active,
.datetimepicker table tr td.active.disabled:hover.active {
  background-color: #039;
}
.datetimepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datetimepicker .datetimepicker-hours span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker .datetimepicker-hours table tr td span.hour_am,
.datetimepicker .datetimepicker-hours table tr td span.hour_pm {
  width: 14.6%;
}
.datetimepicker .datetimepicker-hours fieldset legend,
.datetimepicker .datetimepicker-minutes fieldset legend {
  margin-bottom: inherit;
  line-height: 30px;
}
.datetimepicker .datetimepicker-minutes span {
  height: 26px;
  line-height: 26px;
}
.datetimepicker table tr td span:hover {
  background: #eee;
}
.datetimepicker table tr td span.disabled,
.datetimepicker table tr td span.disabled:hover {
  background: 0;
  color: #999;
  cursor: default;
}
.datetimepicker table tr td span.active,
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #08c, #04c);
  background-image: -ms-linear-gradient(top, #08c, #04c);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#08c), to(#04c));
  background-image: -webkit-linear-gradient(top, #08c, #04c);
  background-image: -o-linear-gradient(top, #08c, #04c);
  background-image: linear-gradient(top, #08c, #04c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #04c #04c #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datetimepicker table tr td span.active:hover,
.datetimepicker table tr td span.active:hover:hover,
.datetimepicker table tr td span.active.disabled:hover,
.datetimepicker table tr td span.active.disabled:hover:hover,
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active,
.datetimepicker table tr td span.active.disabled,
.datetimepicker table tr td span.active:hover.disabled,
.datetimepicker table tr td span.active.disabled.disabled,
.datetimepicker table tr td span.active.disabled:hover.disabled,
.datetimepicker table tr td span.active[disabled],
.datetimepicker table tr td span.active:hover[disabled],
.datetimepicker table tr td span.active.disabled[disabled],
.datetimepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #04c;
}
.datetimepicker table tr td span.active:active,
.datetimepicker table tr td span.active:hover:active,
.datetimepicker table tr td span.active.disabled:active,
.datetimepicker table tr td span.active.disabled:hover:active,
.datetimepicker table tr td span.active.active,
.datetimepicker table tr td span.active:hover.active,
.datetimepicker table tr td span.active.disabled.active,
.datetimepicker table tr td span.active.disabled:hover.active {
  background-color: #039;
}
.datetimepicker table tr td span.old {
  color: #999;
}
.datetimepicker th.switch {
  width: 145px;
}
.datetimepicker th span.glyphicon {
  pointer-events: none;
}
.datetimepicker thead tr:first-child th,
.datetimepicker tfoot tr:first-child th {
  cursor: pointer;
}
.datetimepicker thead tr:first-child th:hover,
.datetimepicker tfoot tr:first-child th:hover {
  background: #eee;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i,
.input-group.date .input-group-addon span {
  cursor: pointer;
  width: 14px;
  height: 14px;
}
.xdsoft_autocomplete,
.xdsoft_autocomplete div,
.xdsoft_autocomplete span {
  /*	-moz-box-sizing: border-box !important;
      box-sizing: border-box !important;*/
}
.xdsoft_autocomplete {
  display: inline;
  position: relative;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: start;
}
.xdsoft_autocomplete .xdsoft_input {
  position: relative;
  z-index: 999;
}
.xdsoft_autocomplete .xdsoft_autocomplete_dropdown {
  position: absolute;
  border: 1px solid #ccc;
  border-top-color: #d9d9d9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: default;
  display: none;
  z-index: 1001;
  margin-top: -1px;
  background-color: #fff;
  min-width: 100%;
  overflow: auto;
}
.xdsoft_autocomplete .xdsoft_autocomplete_hint {
  position: absolute;
  z-index: 1;
  color: #ccc !important;
  -webkit-text-fill-color: #ccc !important;
  text-fill-color: #ccc !important;
  overflow: hidden !important;
  white-space: pre !important;
}
.xdsoft_autocomplete .xdsoft_autocomplete_hint span {
  color: transparent;
  opacity: 0;
}
.xdsoft_autocomplete .xdsoft_autocomplete_dropdown > .xdsoft_autocomplete_copyright {
  color: #ddd;
  font-size: 10px;
  text-decoration: none;
  right: 5px;
  position: absolute;
  margin-top: -15px;
  z-index: 1002;
}
.xdsoft_autocomplete .xdsoft_autocomplete_dropdown > div {
  background: #fff;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1.5em;
  padding: 2px 0px 2px 0px;
}
.xdsoft_autocomplete .xdsoft_autocomplete_dropdown > div.active {
  background: #0097cf;
  color: #ffffff;
}
/*-- 通用样式 --*/
@font-face {
  font-family: "iconfont";
  /* project id 330907 */
  src: url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.eot");
  src: url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.eot?#iefix") format("embedded-opentype"), url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.woff2") format("woff2"), url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.woff") format("woff"), url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.ttf") format("truetype"), url("//at.alicdn.com/t/font_330907_ihmkf5bsv7f.svg#iconfont") format("svg");
}
.iconfont {
  font-family: "iconfont";
  font-size: 14px;
  font-style: normal;
}
.iconfont-loading {
  display: inline-block;
  -webkit-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}
@-webkit-keyframes rotating {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes rotating {
  0% {
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
.btn-lg .iconfont {
  font-size: 18px;
  line-height: 18px;
}
.btn-sm {
  padding: 8px 15px;
  border-radius: 5px;
  vertical-align: initial;
}
.btn-sm .iconfont {
  font-size: 12px;
  line-height: 12px;
}
.btn-xs .iconfont {
  font-size: 12px;
  line-height: 12px;
}
.h-mian {
  margin: 0 auto;
  min-width: 960px;
  max-width: 1190px;
}
.center-mian {
  min-width: 960px;
  max-width: 1190px;
  background-color: #ffffff;
  padding: 20px 25px 50px;
}
.btn-import {
  width: 100px;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  zoom: 1;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
}
/*-- 全局样式 --*/
body {
  min-width: 960px;
  padding-right: 0px !important;
  font-family: "微软雅黑";
}
p.sea-error {
  color: #a94442;
}
.modal {
  z-index: 99999;
}
.auto-line {
  table-layout: fixed;
  word-break: break-all;
  overflow: auto;
}
.g-loading {
  width: 100%;
  height: 124px;
  background: url(/images/loading-2.gif) no-repeat center center;
}
.p-breviary {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
/*-- 重置 --*/
.form-inline .form-group {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: baseline;
}
.form-inline .form-control {
  display: inline-block;
  width: auto;
  vertical-align: baseline;
}
.bs-example-tabs .tab-content {
  margin-top: 15px;
}
select.min-width {
  width: 200px;
}
input.min-width {
  width: 450px;
}
textarea.min-width {
  width: 450px;
}
.tooltip .tooltip-inner {
  text-align: left;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  margin-top: 2px;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12,
.col-xs-13,
.col-sm-13,
.col-md-13,
.col-lg-13,
.col-xs-14,
.col-sm-14,
.col-md-14,
.col-lg-14,
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15,
.col-xs-16,
.col-sm-16,
.col-md-16,
.col-lg-16,
.col-xs-17,
.col-sm-17,
.col-md-17,
.col-lg-17,
.col-xs-18,
.col-sm-18,
.col-md-18,
.col-lg-18,
.col-xs-19,
.col-sm-19,
.col-md-19,
.col-lg-19,
.col-xs-20,
.col-sm-20,
.col-md-20,
.col-lg-20,
.col-xs-21,
.col-sm-21,
.col-md-21,
.col-lg-21,
.col-xs-22,
.col-sm-22,
.col-md-22,
.col-lg-22,
.col-xs-23,
.col-sm-23,
.col-md-23,
.col-lg-23,
.col-xs-24,
.col-sm-24,
.col-md-24,
.col-lg-24 {
  padding-left: 10px;
  padding-right: 10px;
}
.sweet-alert h2 {
  word-break: break-all;
}
input.form-control {
  height: 36px;
  line-height: 36px;
}
select.form-control {
  height: 36px;
  line-height: 36px;
}
/*-- 头部--*/
.h-inform .i-banner {
  height: 70px;
  width: 100%;
}
.h-inform .i-banner .h-mian {
  position: relative;
}
.h-inform .i-banner .h-mian .go {
  position: absolute;
  width: 100%;
  height: 70px;
  top: 0px;
  left: 0px;
}
.h-inform .i-banner .h-mian .i-close {
  position: absolute;
  top: 5px;
  right: 0px;
  color: #ffffff;
  font-weight: bolder;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}
.h-head-top {
  height: 36px;
  line-height: 36px;
  color: #ffffff;
  background-color: #00a0e9;
}
.h-head-top .h-top-left {
  float: left;
  height: 36px;
  overflow: hidden;
}
.h-head-top .h-top-left .iconfont {
  color: #ffffff;
  background-color: #0075aa;
  height: 30px;
  display: block;
  width: 30px;
  text-align: center;
  float: left;
  margin-right: 5px;
}
.h-head-top .h-top-left a {
  color: #6a6a6b;
}
.h-head-top .h-top-left .bx-wrapper {
  height: 36px;
  overflow: hidden;
  background: no-repeat;
  box-shadow: none;
}
.h-head-top .h-top-left .choose-language select {
  width: 80px;
  margin-top: 3px;
  color: #ffffff;
  background-color: #00a0e9;
}
.h-head-top .h-top-right {
  width: 680px;
  float: right;
  text-align: right;
}
.h-head-top .h-top-right a {
  font-size: 14px;
  color: #ffffff;
}
.h-head-top .h-top-right a:hover {
  text-decoration: none;
}
.h-head-top .h-top-right .iconfont {
  padding: 0px 3px;
}
.h-head-top .h-top-right select {
  width: 100px;
  border: none;
  line-height: 29px;
  height: 29px;
  display: inline-block;
}
.h-head {
  font-family: "微软雅黑";
  height: 103px;
}
.h-head .h-mian {
  position: relative;
  height: 103px;
}
.h-head .hd-logo {
  position: absolute;
  width: 168px;
  height: 75px;
  line-height: 75px;
  top: 14px;
  left: 0px;
}
.h-head .hd-list {
  text-align: right;
  position: absolute;
  right: 0px;
}
.h-head .hd-list ul li {
  float: left;
  margin-left: 18px;
}
.h-head .hd-list ul li a {
  display: block;
  line-height: 33px;
  padding: 34px 2px 0;
  font-size: 16px;
  text-decoration: none;
  overflow: hidden;
  color: #000000;
}
.h-head .hd-list ul li a.selected {
  padding-top: 34px;
  border-bottom: 3px solid #0075aa;
  color: #0075aa;
}
.h-head .hd-list ul li #chooseLanguage {
  margin-top: 34px;
}
.h-head-bottom {
  border-bottom: 4px solid #00a0e9;
}
.no-h-head-bottom {
  border-bottom: none;
}
/*-- 尾部--*/
.h-footer {
  overflow: hidden;
  background-color: #00a0e9;
  font-size: 13px;
  color: #ffffff;
  text-align: left;
  padding: 10px 0px 10px 0px;
}
.h-footer .fo-logo {
  float: left;
}
.h-footer .fo-logo ul {
  overflow: hidden;
}
.h-footer .fo-logo ul li {
  float: left;
  margin-right: 55px;
}
.h-footer .fo-logo ul li a {
  color: #ffffff;
}
.h-footer .fo-information {
  float: right;
  color: #bbbbbb;
  text-align: right;
  margin-top: 30px;
}
.h-footer .fo-information .fo-link a {
  color: #bbbbbb;
  font-size: 14px;
  line-height: 35px;
}
.h-footer .fo-information .fo-link .email {
  background-color: #8fc320;
  color: #000000;
  padding: 0px 18px;
  border-radius: 8px;
}
.h-footer .link {
  float: left;
}
.h-footer .link ul {
  overflow: hidden;
}
.h-footer .link ul li {
  float: left;
  margin-right: 53px;
}
.h-footer .link ul li dt {
  font-size: 16px;
  line-height: 30px;
}
.h-footer .link ul li dd {
  font-size: 14px;
  line-height: 24px;
}
.h-footer .link ul li a {
  color: #ffffff;
}
.h-footer .wechat {
  margin-top: 8px;
  float: right;
}
.h-footer .wechat ul li {
  float: left;
}
.h-footer .wechat ul .chat-1 {
  text-align: right;
  margin-right: 30px;
  line-height: 25px;
}
.h-footer .wechat ul .chat-1 .p-1 {
  overflow: hidden;
}
.h-footer .wechat ul .chat-1 .p-1 a {
  display: block;
  font-size: 18px;
  color: #000000;
  background-color: #ffffff;
  border-radius: 18px;
  width: 160px;
  text-align: center;
  float: right;
  margin-bottom: 10px;
  line-height: 29px;
  padding: 4px 0px;
}
.h-footer .wechat ul .chat-1 .p-2 {
  letter-spacing: 1px;
}
.h-footer .wechat ul .chat-1 .p-3 {
  letter-spacing: 1px;
}
/*-- 主页面 --*/
.home-page {
  padding-left: 0px;
  padding-right: 0px;
}
.parcel-search {
  background-color: #00a0e9;
  color: #ffffff;
  height: 90px;
}
.parcel-search .logo {
  width: 144px;
  float: left;
}
.parcel-search .logo img {
  margin-top: 10px;
}
.parcel-search .title {
  width: 197px;
  float: left;
  font-size: 15px;
  padding-left: 5px;
}
.parcel-search .title .t-1 {
  margin-top: 16px;
  font-size: 20px;
}
.parcel-search .title .t-2 {
  margin-top: 3px;
}
.parcel-search .find {
  width: 800px;
  float: left;
}
.parcel-search .find .form-control {
  height: 50px;
  line-height: 50px;
  line-height: 40px\9;
  margin-top: 20px;
}
.parcel-search .find .btu-p-search {
  padding: 7px 15px;
  font-size: 24px;
  margin-top: 20px;
}
.parcel-search .h-mian {
  position: relative;
}
.parcel-search .h-mian .waybill-state {
  background-color: #ffffff;
  width: 747px;
  border: 2px solid #c9c9c9;
  height: 190px;
  position: absolute;
  padding: 0px 30px;
  top: 90px;
  left: 290px;
  text-align: left;
}
.parcel-search .h-mian .waybill-state h3 {
  font-size: 14px;
  line-height: 45px;
  color: #000000;
  border-bottom: 1px solid #a0a0a0;
}
.banner-bxslider {
  background-color: #ffffff;
  height: 420px;
}
.banner-bxslider .bx-wrapper {
  height: 420px;
  margin: 0 auto;
  overflow: hidden;
}
.banner-bxslider .bx-wrapper .bx-pager {
  bottom: 18px;
  z-index: 9999;
}
.banner-bxslider .bx-wrapper ul li {
  position: relative !important;
}
.banner-bxslider .bx-wrapper ul li a.banner {
  height: 420px;
  min-width: 1000px;
  display: block;
}
.weChat-box .filler {
  height: 677px;
}
.cooperate-box {
  background-color: #eeeeee;
}
.cooperate-box ul {
  width: 960px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 15px;
}
.cooperate-box ul li {
  float: left;
  width: 143px;
  height: 34px;
  margin: 8px;
}
/*-- 价格 --*/
.price-box {
  margin-top: 70px;
  margin-bottom: 50px;
}
.price-box .price-2 {
  margin-top: 30px;
}
.price-box .p-title {
  font-size: 30px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.price-box .p-list table {
  margin-bottom: 10px;
}
.price-box .p-list table td {
  background-color: #eeeeee;
  color: #000000;
  line-height: 23px;
  text-align: center;
  border-right: 1px solid #fff;
}
.price-box .p-list table td strong {
  font-size: 14px;
}
.price-box .p-list table .color-1 {
  background-color: #cde199;
}
.price-box .p-list table .color-2 {
  background-color: #fdf6ae;
}
.price-box .p-list table .color-3 {
  background-color: #dbeaf1;
}
.price-box .p-list table .color-4 {
  background-color: #eecdea;
}
.price-box .p-list table th {
  color: #f6f6f6;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  height: 30px;
  border-right: 1px solid #fff;
  background-color: #90c320;
}
.price-box .p-remark {
  font-size: 12px;
  color: #000;
  text-align: right;
  margin-top: 5px;
}
/*--运单流程--*/
.logistics-notLogin ul {
  overflow: hidden;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 25px;
}
.logistics-notLogin ul li {
  width: 113px;
  float: left;
}
.logistics-notLogin ul li .state {
  line-height: 50px;
  color: #adadad;
}
.logistics-notLogin ul li .bar {
  background-color: #adadad;
  height: 5px;
}
.logistics-notLogin ul li .round {
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: #adadad;
  margin-left: 41px;
  margin-top: -17px;
  position: relative;
}
.logistics-notLogin ul li .st-1,
.logistics-notLogin ul li .st-2,
.logistics-notLogin ul li .st-3,
.logistics-notLogin ul li .st-4,
.logistics-notLogin ul li .st-5 {
  display: block;
  width: 16px;
  height: 15px;
  background: url(/images/flow.png) no-repeat center center;
  position: absolute;
  top: 7px;
  left: 7px;
}
.logistics-notLogin ul li .st-1 {
  background-position: 0px 0px;
}
.logistics-notLogin ul li .st-2 {
  background-position: 0px -17px;
}
.logistics-notLogin ul li .st-3 {
  background-position: 0px -32px;
}
.logistics-notLogin ul li .st-4 {
  background-position: 0px -49px;
}
.logistics-notLogin ul li .st-5 {
  background-position: 0px -68px;
}
.logistics-notLogin ul .in .state {
  color: #337ab7;
}
.logistics-notLogin ul .in .bar {
  background-color: #337ab7;
}
.logistics-notLogin ul .in .round {
  background-color: #337ab7;
}
/*-- 注册登录 --*/
.register-page,
.login-page {
  background-color: #f0f0f0;
  padding: 80px 0px;
}
.register-page .form-main,
.login-page .form-main {
  background-color: #ffffff;
}
.register-page .form-main .title,
.login-page .form-main .title {
  overflow: hidden;
}
.register-page .form-main .title h1,
.login-page .form-main .title h1 {
  float: left;
}
.register-page .form-main .title .f-right,
.login-page .form-main .title .f-right {
  float: right;
}
.register-page .form-main .remember,
.login-page .form-main .remember {
  overflow: hidden;
}
.register-page .form-main .remember .forget,
.login-page .form-main .remember .forget {
  float: right;
}
.register-page .form-main .thirdParty-login,
.login-page .form-main .thirdParty-login {
  border-left: 1px solid #cccccc;
  padding-top: 5px;
  display: inline-block;
  line-height: 34px;
  height: 34px;
  padding-left: 10px;
  float: right;
}
.login-page .login-container {
  width: 365px;
  margin: 0 auto;
  overflow: hidden;
}
.login-page .login-container .form-main {
  padding: 20px;
  width: 365px;
  float: left;
}
.login-page .login-container .form-main .joint-login {
  margin-top: 10px;
}
.login-page .login-container .form-main .joint-login .joint-main a {
  display: inline-block;
  height: 19px;
  vertical-align: middle;
  background: url(/images/new/joint.png) no-repeat 2px 3px;
}
.login-page .login-container .form-main .joint-login .joint-main .joint-qq {
  width: 40px;
  padding: 0 0 0 20px;
  background-position: 0px 0px;
}
.login-page .login-container .form-main .joint-login .joint-main .joint-sina {
  padding: 0 0 0 20px;
  background-position: 0px -18px;
}
.note-form .img-verification {
  overflow: hidden;
}
.note-form .img-verification .img-input {
  width: 200px;
  float: left;
}
.note-form .img-verification .img-code {
  width: 180px;
  float: left;
}
.note-form .img-verification .img-code img {
  margin: 0px 10px 0px 15px;
  border: 1px solid #cccccc;
}
.register-page .register-container {
  width: 420px;
  margin: 0 auto;
  overflow: hidden;
}
.register-page .register-container .form-main {
  padding: 20px;
  width: 420px;
  float: left;
}
.register-page .register-container .form-main .tab-content {
  margin-top: 5px;
}
.register-page .register-container .form-main .form-group {
  margin-bottom: 10px;
}
.register-page .register-container .form-main .img-verification {
  overflow: hidden;
}
.register-page .register-container .form-main .img-verification .img-input {
  width: 200px;
  float: left;
}
.register-page .register-container .form-main .img-verification .img-code {
  width: 180px;
  float: left;
}
.register-page .register-container .form-main .img-verification .img-code img {
  margin: 0px 10px 0px 15px;
  border: 1px solid #cccccc;
}
.register-page .register-container .form-main .phone-verification {
  overflow: hidden;
}
.register-page .register-container .form-main .phone-verification .phone-code {
  width: 200px;
  float: left;
}
.register-page .register-container .form-main .phone-verification .phone-but {
  width: 180px;
  float: left;
  padding-left: 15px;
}
/*-- 门店 --*/
.store-login {
  background-color: #ffffff;
}
.store-login .login-container {
  border: 1px solid #999;
  border-radius: 5px;
}
.storeReceive-page {
  width: 1100px;
  padding: 20px 25px 50px;
  margin: 0 auto;
}
.storeReceive-page .store-title h2 {
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  font-weight: bold;
}
.storeReceive-page .store-title .batch-toLead {
  float: right;
}
.storeReceive-page .import-content {
  margin-top: 50px;
}
.storeReceive-page .import-content ul li {
  overflow: hidden;
}
.storeReceive-page .import-content ul li .import-item {
  float: left;
  width: 320px;
}
/*-- 找回密码 --*/
.forgot-main {
  width: 400px;
  margin: 100px auto;
}
.forgot-main h3 {
  text-align: center;
  font-size: 17px;
  font-weight: bolder;
  margin-bottom: 20px;
}
.forgot-main p.explain {
  text-align: right;
}
.forgot-main .img-verification {
  overflow: hidden;
}
.forgot-main .img-verification .img-input {
  float: left;
  width: 254px;
}
.forgot-main .img-verification .img-code {
  float: left;
}
.forgot-main .img-verification .img-code img {
  margin: 0px 10px 0px 15px;
  border: 1px solid #cccccc;
}
.find-state {
  width: 510px;
  margin: 0 auto;
  margin-bottom: 20px;
}
.find-state ul {
  overflow: hidden;
}
.find-state ul li {
  width: 170px;
  text-align: center;
  float: left;
}
.find-state ul li span {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  margin: 0 auto;
  border-radius: 30px;
  font-size: 20px;
  background-color: #999999;
}
.find-state ul li p {
  margin-top: 2px;
  color: #999999;
}
.find-state ul .finish span {
  background-color: #0591aa;
}
.find-state ul .finish p {
  color: #0591aa;
}
.find-main {
  width: 480px;
  margin: 0 auto;
}
/*-- markdown 样式 --*/
.markdown {
  font-family: "微软雅黑";
  padding: 20px 0px;
}
.markdown h1 {
  text-align: center;
}
.markdown p {
  padding: 10px;
}
/*-- 帮助中心 --*/
.help-page {
  background-color: #eeeeee;
}
.help-page .h-mian {
  margin: 20px auto;
}
.help-page .m-left {
  float: left;
  width: 188px;
  min-height: 700px;
  border: 1px solid #dcdcdc;
  background-color: #ffffff;
}
.help-page .m-left h2 {
  font-size: 20px;
  line-height: 45px;
  padding-left: 10px;
  text-align: center;
  font-weight: bolder;
}
.help-page .m-left h2 i {
  font-size: 22px;
  margin-right: 5px;
}
.help-page .m-left dl {
  border-bottom: 1px solid #e5e5e5;
}
.help-page .m-left dl dt {
  font-size: 17px;
  line-height: 40px;
  height: 40px;
  color: #00a0e9;
  text-align: center;
}
.help-page .m-left dl dd {
  font-size: 14px;
  line-height: 35px;
  height: 35px;
  font-weight: bold;
  border-top: 1px solid #e5e5e5;
}
.help-page .m-left dl dd a {
  display: block;
  width: 100%;
  height: 35px;
  color: #666;
  text-decoration: none;
  text-align: right;
  padding-right: 25px;
}
.help-page .m-left dl dd a:hover {
  background-color: #313131;
  color: #fff;
  text-decoration: none;
}
.help-page .m-left dl dd a.selected {
  background-color: #313131;
  color: #fff;
  position: relative;
}
.help-page .m-left dl dd a.selected:after {
  border-bottom: 13px solid transparent;
  border-top: 13px solid transparent;
  border-left: 13px solid #313131;
  content: " ";
  display: inline-block;
  height: 26px;
  position: absolute;
  right: -8px;
  top: 4px;
}
.help-page .m-right {
  float: right;
  width: 898px;
  padding: 30px;
  background-color: #fff;
  min-height: 700px;
  border: 1px solid #dcdcdc;
}
.help-page .m-right .help-list {
  padding: 0px 10px;
}
.help-page .m-right .help-list .help-item {
  display: none;
}
.help-page .m-right .help-list .active {
  display: block;
}
.help-page .m-right .help-list .markdown {
  padding: 0px 0px 20px 0px;
}
.help-page .m-right .help-list .markdown h1 {
  line-height: 45px;
  height: 45px;
  border-bottom: 1px solid #dcdcdc;
}
.help-page .m-right .help-list .loading {
  display: none;
}
.help-page .help-container {
  line-height: 28px;
}
.help-page .help-container h4 {
  font-size: 15px;
  line-height: 35px;
}
.help-page .help-container .title {
  font-size: 24px;
  font-weight: bolder;
  margin-bottom: 25px;
}
.help-page .help-container .introduce .blue {
  color: #00a0e9;
  font-weight: bolder;
}
.help-page .help-container .introduce .red {
  color: #f00;
}
.help-page .help-container .introduce .p-1 {
  margin-bottom: 20px;
}
.help-page .help-container .introduce-tabs {
  margin-top: 20px;
}
.help-page .help-container .join {
  position: relative;
}
.help-page .help-container .join .join-img {
  width: 619px;
  height: 394px;
  position: absolute;
  bottom: -130px;
  right: -62px;
}
.help-page .help-container .notice h4 {
  margin-top: 15px;
}
.help-page .help-container .operate h3 {
  font-size: 18px;
  margin-top: 20px;
}
.help-page .help-container .operate h4 {
  margin-top: 15px;
}
.help-page .help-container .tool .upload-input {
  width: 300px;
  margin: 40px auto;
}
.help-page .help-container .tool .upload-input .up-item {
  margin-bottom: 10px;
}
.help-page .help-container .tool .upload-input .up-item input {
  width: 240px;
}
.help-page .help-container .tool .upload-input .up-sub {
  text-align: center;
}
.help-page .help-container .tool .upload-text {
  list-style: inherit;
}
.help-page .help-container .tool .red {
  color: #e60012;
}
.help-page .help-container .customs .customs-img {
  width: 798px;
  margin: 20px auto;
}
.help-page .help-container .customs .customs-text .red {
  color: #e60012;
  text-decoration: underline;
}
.help-page .help-container .customs .customs-text h3 {
  font-size: 22px;
  font-weight: bolder;
}
.help-page .help-container .embargo h3 {
  margin-top: 20px;
}
.help-page .help-container .embargo .list-1 {
  overflow: hidden;
}
.help-page .help-container .embargo .list-1 li {
  width: 211px;
  text-align: left;
  float: left;
  margin: 20px 60px 20px 0px;
}
.help-page .help-container .embargo .list-1 li .name {
  line-height: 30px;
  font-weight: bolder;
}
.help-page .help-container .embargo .list-1 li .introduce {
  line-height: 20px;
}
.help-page .help-container .embargo .list-2 {
  overflow: hidden;
}
.help-page .help-container .embargo .list-2 li {
  width: 103px;
  height: 150px;
  text-align: center;
  float: left;
  margin: 10px 27px 10px 0px;
}
.help-page .help-container .embargo .list-2 li .name {
  line-height: 20px;
}
.help-page .help-container .settlement h4 {
  margin-top: 10px;
  font-weight: bolder;
}
.help-page .help-container .settlement th {
  text-align: center;
  line-height: 30px;
}
.help-page .help-container .settlement td {
  padding: 4px;
}
.help-page .help-container .settlement .th-1 {
  width: 80px;
}
.help-page .help-container .settlement .th-2 {
  width: 60px;
}
.help-page .help-container .settlement .th-3 {
  width: 60px;
}
.help-page .help-container .overseas img {
  padding: 20px;
}
.help-page .help-container .overseas h5 {
  font-size: 13px;
  line-height: 30px;
}
.help-page .help-container .overseas .red {
  color: #e60012;
}
/*-- 使用协议 --*/
.use-agreement {
  margin-bottom: 50px;
  border: 1px solid #d1d1d1;
  padding: 25px 40px;
  margin-top: 18px;
}
.use-agreement h1 {
  color: #0d7dc5;
  font-weight: bolder;
  font-size: 24px;
}
/*-- 登录以后 --*/
/*-- 区块划分 --*/
.operation-page {
  padding: 15px 0 15px 0;
}
.operation-page .h-min-big {
  background-color: #ffffff;
  padding: 10px;
}
.operation-page .op-right {
  margin-left: 140px;
  max-width: 1050px;
  min-width: 940px;
  background-color: #fff;
  min-height: 700px;
  padding: 10px 0 50px 10px;
  border-left: 1px solid #eeeeee;
}
.operation-page .page-mian {
  font-family: "微软雅黑";
  background-color: #ffffff;
}
.operation-page .page-mian .op-left {
  position: relative;
  z-index: 999;
}
.operation-page .page-mian .op-left .container {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 140px;
  padding: 0px 0px 10px 0px;
  border-top: 1px solid #eeeeee;
  border-left: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  background-color: #fff;
}
.operation-page .page-mian .op-left .container ul li {
  text-align: left;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  margin-bottom: 5px;
  white-space: nowrap;
  border-left: 2px solid #ffffff;
  position: relative;
}
.operation-page .page-mian .op-left .container ul li .iconfont {
  margin-right: 2px;
  font-size: 16px;
}
.operation-page .page-mian .op-left .container ul li a {
  height: 36px;
  display: block;
  color: #333333;
  padding-left: 5px;
  text-decoration: none;
}
.operation-page .page-mian .op-left .container ul li a:hover {
  text-decoration: none;
}
.operation-page .page-mian .op-left .container ul li:hover {
  background-color: #dff5ff;
  border-left: 2px solid #dff5ff;
}
.operation-page .page-mian .op-left .container ul li:hover a {
  color: #626262;
}
.operation-page .page-mian .op-left .container ul li:hover .subclass__list {
  display: block;
}
.operation-page .page-mian .op-left .container ul li .subclass {
  position: absolute;
  font-size: 12px;
  right: 1px;
  top: 12px;
  height: 14px;
  line-height: 14px;
}
.operation-page .page-mian .op-left .container ul li .subclass__list {
  display: none;
  width: 140px;
  border-top: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  position: absolute;
  right: -140px;
  background-color: #ffffff;
  top: 0px;
  padding-top: 5px;
}
.operation-page .page-mian .op-left .container ul li .subclass__list li {
  padding-left: 10px;
}
.operation-page .page-mian .op-left .container ul li .subclass__list li a {
  color: #000000;
}
.operation-page .page-mian .op-left .container ul .selected {
  border-left: 2px solid #0075aa;
  background-color: #dff5ff;
}
.operation-page .page-mian .op-left .container ul .selected a {
  color: #0075aa;
  padding-left: 6px;
}
.operation-page .page-mian .op-left .container ul .selected:hover {
  border-left: 2px solid #0075aa;
}
.operation-page .page-mian .op-left .container ul .title {
  text-align: center;
  font-weight: 500;
  border-bottom: 1px solid #eeeeee;
  color: #000;
}
.operation-page .page-mian .op-left .container ul .title:hover {
  background-color: #ffffff;
  border-left: 2px solid #ffffff;
}
.operation-page .page-mian .op-left-fixed {
  position: fixed;
  top: 15px;
}
/*-- 海外厂库地址 --*/
.address-list .address-line {
  line-height: 29px;
  overflow: hidden;
  margin-top: 10px;
}
.address-list .address-line .warning {
  background: #fff8d9;
  border: 1px solid #f9dfb2;
  color: #ff8b00;
  line-height: 20px;
  padding: 2px 5px 2px 5px;
}
.address-list .address-line input {
  cursor: copy;
}
.address-img {
  margin-top: 15px;
}
.address-img .title {
  color: #0096d8;
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  font-weight: bolder;
}
.address-img img {
  margin-top: 5px;
}
.ov-address .radio {
  line-height: 21px;
  display: block;
}
.ov-address .addressinf {
  margin-bottom: 15px;
}
/*-- 账户信息 --*/
.account-inf {
  font-family: "微软雅黑";
}
.account-inf .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
}
.account-inf .account-item {
  line-height: 25px;
  font-size: 14px;
  margin: 5px 20px 5px 20px;
  border-bottom: 1px solid #ededed;
}
.account-inf .account-item .inf span {
  line-height: 25px;
}
.account-inf .account-item .operation {
  text-align: right;
}
.account-inf .account-item .coupon .badge {
  background-color: #337ab7;
}
.account-inf .account-item .coupon .table {
  margin-top: 5px;
}
/*-- 账户信息 2 --*/
.personal-inf .weid strong {
  color: #e60012;
}
.personal-inf .thirdParty-p {
  background-color: #428bca;
  font-size: 16px;
  padding: 5px;
  text-align: center;
  color: #fff;
}
.personal-inf .thirdParty-p a {
  color: #000;
  text-decoration: underline;
}
.personal-inf .thirdParty-p span {
  color: #000;
  font-weight: bold;
}
.personal-inf .activate {
  font-size: 15px;
}
.personal-inf .activate p {
  line-height: 14px;
  margin-bottom: 8px;
}
.personal-inf .activate p .red {
  color: #e60012;
}
.personal-inf .state {
  overflow: hidden;
  border-bottom: 1px solid #c9c9c9;
  padding-bottom: 20px;
  font-size: 14px;
}
.personal-inf .state label {
  margin-right: 5px;
}
.personal-inf .state .p-inf-1 {
  padding-bottom: 10px;
  border-bottom: 1px solid #c9c9c9;
}
.personal-inf .state .p-inf-1 .name {
  color: #e60012;
  font-size: 20px;
}
.personal-inf .state .p-inf-2 {
  padding-top: 10px;
}
.personal-inf .state .p-inf-2 .left {
  float: left;
  width: 600px;
}
.personal-inf .state .p-inf-2 .right {
  float: left;
}
.personal-inf .state .p-inf-2 .right .price strong {
  color: #f19149;
  font-size: 28px;
  line-height: 30px;
}
.personal-inf .remind {
  margin-top: 20px;
  font-size: 15px;
}
.personal-inf .remind strong {
  color: #e60012;
}
.warehouse {
  margin-top: 25px;
  padding-top: 5px;
}
.warehouse h3 {
  font-size: 20px;
  text-align: center;
}
.warehouse .nav-tabs {
  font-weight: bolder;
}
.warehouse .click-copy {
  display: none\9;
}
.user-code-copy {
  margin: 14px 0px;
  height: 42px;
  overflow: hidden;
}
.user-code-copy input {
  border: solid 1px #0096d8;
  background: #ffffff;
  color: #54b4d3;
  font-size: 16px;
  padding: 8px 10px;
  width: 80%;
}
.user-code-copy a {
  border: none;
  background: #0096d8;
  color: #fff;
  font-size: 16px;
  padding: 15px 20px;
  text-decoration: none;
}
/*-- 消费记录 --*/
.myConsumeRecord .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
}
.myConsumeRecord .points .points-type {
  width: 200px;
  margin-bottom: 10px;
}
.myConsumeRecord .record .record-type {
  margin-bottom: 10px;
  overflow: hidden;
}
.myConsumeRecord .record .record-type .type-left {
  width: 200px;
  float: left;
}
.myConsumeRecord .record .record-type .type-rigth {
  float: right;
}
.myConsumeRecord .record .record-type .type-rigth input {
  display: inline-block;
  width: 200px;
}
.myConsumeRecord .record .record-type .type-rigth button {
  vertical-align: inherit;
}
.myConsumeRecord .record .table {
  margin-top: 5px;
}
.myConsumeRecord .record .all-record {
  text-align: right;
}
.myConsumeRecord .record .referrer h3 {
  text-align: center;
  font-size: 22px;
  line-height: 34px;
}
.myConsumeRecord .explain {
  border-top: 1px solid #ededed;
  padding-top: 10px;
  margin-top: 5px;
}
.myConsumeRecord .explain h3 {
  font-size: 18px;
  font-weight: bolder;
  line-height: 25px;
}
.myConsumeRecord .explain p {
  line-height: 22px;
}
.myConsumeRecord .compensation .compensation-type {
  margin-bottom: 10px;
  overflow: hidden;
}
.myConsumeRecord .compensation .compensation-type .prov {
  width: 200px;
  float: left;
}
.myConsumeRecord .compensation .compensation-type .btn {
  float: right;
}
/*-- 理赔中心 --*/
.compensation-centre .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.compensation-centre .title button {
  float: right;
}
.compensation-centre .compensation-search {
  line-height: 40px;
  text-align: right;
}
.compensation-centre .table {
  margin-top: 5px;
}
.fileImg-list input {
  margin-top: 5px;
}
/*-- 晒单操作 --*/
.bask-single .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.bask-single .title button {
  float: right;
}
.bask-single .bask .bask-search {
  line-height: 40px;
  text-align: right;
}
/*-- 留言中心 --*/
.message-centre .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.message-centre .title button {
  float: right;
}
.message-centre .message .bask-search {
  line-height: 40px;
  text-align: right;
}
.compensation-list {
  height: 140px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 10px;
}
.compensation-list .c-name {
  font-size: 14px;
  color: #000000;
  font-weight: bolder;
}
.compensation-list .c-name .time {
  float: right;
  padding-right: 17px;
  font-size: 12px;
  color: #666666;
  font-weight: 400;
}
.compensation-list .c-content {
  font-size: 13px;
  padding-left: 10px;
}
/*-- 在线充值 --*/
.topUp .topUp-title {
  border-bottom: 1px solid #e5e5e5;
  margin: 0 15px;
  padding-bottom: 15px;
  font-size: 18px;
}
.topUp .modal-footer {
  text-align: left;
  border-top: none;
  padding: 0px 15px;
}
.topUp label {
  margin-bottom: 0px;
  line-height: 34px;
}
.topUp .radio-inline {
  line-height: 18px;
}
.onLine-topUp-content .modal-body {
  padding: 0px 15px;
}
.onLine-topUp .t-line {
  border-bottom: 1px solid #ededed;
  line-height: 30px;
  padding: 4px 0px;
}
.onLine-topUp .t-line .verify-line {
  overflow: hidden;
}
.onLine-topUp .t-line .verify-line .verify-input {
  float: left;
}
.onLine-topUp .t-line .verify-line .verify-img {
  margin-left: 5px;
}
.onLine-topUp .t-line .verify-line .verify-img img {
  width: 86px;
}
.onLine-topUp .t-line .money-line {
  overflow: hidden;
}
.onLine-topUp .t-line .money-line .money-input {
  float: left;
}
.onLine-topUp .t-line .money-line span {
  margin-left: 5px;
}
.onLine-topUp .t-line .t-label {
  text-align: right;
}
.onLine-topUp .t-line .topMoney {
  width: 200px;
  display: inline-block;
}
.onLine-topUp .t-line .topUp-choose {
  margin-right: 10px;
}
.onLine-topUp .t-line .topUp-choose input {
  margin-top: 10px;
}
.onLine-topUp .t-line .bank-list .radio-inline {
  width: 160px;
  float: left;
  margin: 8px 8px 0px 0px;
}
.onLine-topUp .t-line .bank-list .radio-inline .bank-radio {
  margin-top: 11px;
}
.onLine-topUp .t-line .bank-list .radio-inline .iw {
  width: 126px;
  height: 36px;
  display: inline-block;
  background: url(../img/combo.png);
}
.onLine-topUp .t-line .bank-list .radio-inline .ICBC {
  background-position: 0px -684px;
}
.onLine-topUp .t-line .bank-list .radio-inline .CMBCHINA {
  background-position: 0px -360px;
}
.onLine-topUp .t-line .bank-list .radio-inline .ABC {
  background-position: 0px 0px;
}
.onLine-topUp .t-line .bank-list .radio-inline .CCB {
  background-position: 0px -216px;
}
.onLine-topUp .t-line .bank-list .radio-inline .BCCB {
  background-position: 0px -36px;
}
.onLine-topUp .t-line .bank-list .radio-inline .BOCO {
  background-position: 0px -432px;
}
.onLine-topUp .t-line .bank-list .radio-inline .CIB {
  background-position: 0px -288px;
}
.onLine-topUp .t-line .bank-list .radio-inline .CMBC {
  background-position: 0px -396px;
}
.onLine-topUp .t-line .bank-list .radio-inline .CEB {
  background-position: 0px -252px;
}
.onLine-topUp .t-line .bank-list .radio-inline .BOC {
  background-position: 0px -72px;
}
.onLine-topUp .t-line .bank-list .radio-inline .ECITIC {
  background-position: 0px -324px;
}
.onLine-topUp .t-line .bank-list .radio-inline .GDB {
  background-position: 0px -576px;
}
.onLine-topUp .t-line .bank-list .radio-inline .SPDB {
  background-position: 0px -1116px;
}
.onLine-topUp .t-line .bank-list .radio-inline .POST {
  background-position: 0px -1008px;
}
.onLine-topUp .t-line .bank-list .radio-inline .HXB {
  background-position: 0px -612px;
}
.onLine-topUp .t-line .bank-list .radio-inline .PINGANBANK {
  background-position: 0px -1080px;
}
/*-- 地址管理 --*/
.address-manage .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.address-manage .title button {
  float: right;
}
.address-manage .address-list .address-item .head {
  overflow: hidden;
  line-height: 30px;
  margin-bottom: 5px;
}
.address-manage .address-list .address-item .head .a-name {
  display: block;
  width: 100px;
  height: 30px;
  text-align: center;
  font-weight: bolder;
  border: 1px dashed #000;
  float: left;
}
.address-manage .address-list .address-item .head .label {
  margin-left: 10px;
  margin-top: 7px;
  display: inline-block;
}
.address-manage .address-list .address-item .head .a-operate {
  float: right;
}
.address-manage .address-list .address-item .head .a-operate a {
  margin-left: 10px;
}
.address-manage .address-list .address-item .content .t-1 {
  width: 95px;
}
.address-from .address-label {
  text-align: right;
  padding-top: 7px;
}
/*-- 虚拟仓储 --*/
.myVirtual .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.myVirtual .title .uploading {
  float: right;
}
.myVirtual .title .uploading input {
  display: inline-block;
  width: 300px;
  font-size: 14px;
  overflow: hidden;
  margin-top: 5px;
}
.myVirtual .title .uploading button {
  float: right;
  margin-left: 5px;
}
.myVirtual .virtual-type {
  overflow: hidden;
}
.myVirtual .virtual-type .type-left {
  float: left;
  width: 200px;
}
.myVirtual .virtual-type .type-right {
  float: right;
  width: 440px;
  text-align: right;
}
.myVirtual .virtual-type .type-right input {
  display: inline-block;
  width: 250px;
}
.myVirtual .virtual-type .type-right button {
  vertical-align: initial;
}
.myVirtual .virtual-table {
  margin-top: 10px;
}
.myVirtual .choose-table {
  margin-top: 20px;
}
.myVirtual .choose-table h3 {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
}
.myVirtual .choose-table table {
  width: 650px;
}
.myVirtual .choose-table td {
  line-height: 34px;
}
/*-- 包裹管理 --*/
.addPackages-search {
  text-align: right;
  margin-bottom: 10px;
}
.addPackages-search .btn {
  margin-left: 5px;
}
.package-manage {
  /*-- 包裹列表2 --*/
  /*-- 入库包裹列表 --*/
}
.package-manage .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.package-manage .title .btn {
  float: right;
}
.package-manage .title .dropoff {
  margin-left: 10px;
}
.package-manage .title .BatchList {
  margin-left: 10px;
}
.package-manage .eletitle {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
}
.package-manage .screen-package {
  padding: 12px;
  background-color: #f9f9f9;
  border: 1px solid #cdcdcd;
}
.package-manage .screen-package label {
  line-height: 34px;
  margin-bottom: 0px;
}
.package-manage .screen-package .row {
  margin-left: -5px;
  margin-right: -5px;
}
.package-manage .screen-package .row .col-xs-2 {
  padding-left: 5px;
  padding-right: 5px;
}
.package-manage .screen-package .row .col-xs-4 {
  padding-left: 5px;
  padding-right: 5px;
}
.package-manage .screen-package .row .col-xs-6 {
  padding-left: 5px;
  padding-right: 5px;
}
.package-manage .screen-package .row .col-xs-16 {
  padding-left: 5px;
  padding-right: 5px;
}
.package-manage .screen-package .row .col-xs-20 {
  padding-left: 5px;
  padding-right: 5px;
}
.package-manage .package-combine {
  margin-top: 16px;
}
.package-manage .package-combine .dropdown-toggle {
  padding: 14px 8px;
  height: 34px;
}
@-moz-document url-prefix() {
  .package-manage .package-combine .dropdown-toggle {
    padding: 13px 8px;
  }
}
.package-manage .package-combine button {
  margin-bottom: 5px;
}
.package-manage .package-list {
  margin-top: 10px;
  margin-bottom: 5px;
}
.package-manage .package-list .package-title {
  padding: 7px;
  font-size: 14px;
  color: #ffffff;
  background-color: #337ab7;
}
.package-manage .package-list .annotation {
  border: 1px solid #dcdcdc;
  background-color: #ebebeb;
  text-align: center;
  line-height: 40px;
}
.package-manage .package-list .annotation .package-box div {
  background: url("../img/li_back.png") no-repeat left center;
}
.package-manage .package-list .annotation .package-box .box-1 {
  background: none;
}
.package-manage .package-list .annotation .package-box .box-21 {
  background: none;
}
.package-manage .package-list .annotation .package-box .box-30 {
  background: none;
}
.package-manage .package-list .annotation .package-box-2 div {
  background: url("../img/li_back.png") no-repeat left center;
}
.package-manage .package-list .annotation .package-box-2 .box-1 {
  background: none;
}
.package-manage .package-box .box-1 {
  width: 220px;
  float: left;
}
.package-manage .package-box .box-2 {
  width: 120px;
  float: left;
}
.package-manage .package-box .box-3 {
  width: 80px;
  float: left;
}
.package-manage .package-box .box-4 {
  width: 80px;
  float: left;
}
.package-manage .package-box .box-5 {
  width: 94px;
  float: left;
}
.package-manage .package-box .box-6 {
  width: 198px;
  float: left;
}
.package-manage .package .package-item {
  margin-top: 20px;
  line-height: 35px;
}
.package-manage .package .package-item .p-head {
  background: #bdd9a6;
  color: #477a1b;
  padding: 0 10px;
}
.package-manage .package .package-item .p-head .combine {
  vertical-align: middle;
}
.package-manage .package .package-item .p-odd-list {
  background: #dfefd9;
}
.package-manage .package .package-item .p-odd-list ul li {
  padding: 0 10px;
}
.package-manage .package .package-item .p-inf {
  display: none;
  border-left: 1px solid #dfefd9;
  border-right: 1px solid #dfefd9;
}
.package-manage .package .package-item .p-inf .package-goods {
  width: 500px;
  height: 169px;
  overflow-y: auto;
  float: left;
}
.package-manage .package .package-item .p-inf .package-goods ul .package-box .box-1 {
  padding-left: 10px;
}
.package-manage .package .package-item .p-inf .package-goods ul .package-box .box-2 {
  text-align: center;
}
.package-manage .package .package-item .p-inf .package-goods ul .package-box .box-3 {
  text-align: center;
}
.package-manage .package .package-item .p-inf .package-goods ul .package-box .box-4 {
  width: 63px;
  text-align: center;
}
.package-manage .package .package-item .p-inf .package-price {
  width: 292px;
  float: left;
}
.package-manage .package .package-item .p-inf .package-price .receive-address {
  position: relative;
}
.package-manage .package .package-item .p-inf .package-price .receive-address a {
  color: #058de8;
}
.package-manage .package .package-item .p-inf .package-price .receive-address .r-address {
  position: absolute;
  top: -14px;
  left: 0px;
  display: none;
  line-height: 16px;
  width: 250px;
  padding: 2px;
  background-color: #bdd9a6;
  border: 1px solid #477a1b;
  border-radius: 5px;
}
.package-manage .package .package-item .p-inf .package-price .receive-address:hover .r-address {
  display: block;
}
.package-manage .package .package-item .p-inf .package-price .price-inf {
  border: none;
  margin-bottom: 0px;
}
.package-manage .package .package-item .p-inf .package-price .price-inf td,
.package-manage .package .package-item .p-inf .package-price .price-inf th {
  text-align: center;
}
.package-manage .package .package-item .p-inf .package-price .price-inf .p-title {
  background-color: #f3ffef;
}
.package-manage .package .package-item .p-inf .package-price .price-inf .topNo {
  border-top: none;
}
.package-manage .package .package-item .p-inf .package-price .price-inf .rightNo {
  border-right: none;
}
.package-manage .package .package-item .p-inf .package-price .price-inf .bottomNo {
  border-bottom: none;
}
.package-manage .package .package-item .p-state-list {
  background: #dfefd9;
}
.package-manage .package .package-item .p-state-list ul li {
  padding: 0 10px;
}
.package-manage .package .package-item .pack-hide {
  display: none;
}
.package-manage .package .package-item .state {
  color: #bf9758;
  margin-left: 5px;
}
.package-manage .package .package-item .operate {
  float: right;
  margin-left: 2px;
}
.package-manage .package .package-item .warning {
  color: #d9534f;
  margin-left: 5px;
}
.package-manage .package .package-item .warning .btn-danger {
  font-size: 12px;
  padding: 2px 2px;
}
.package-manage .package-box-2 .box-1 {
  width: 360px;
  float: left;
}
.package-manage .package-box-2 .box-2 {
  width: 285px;
  float: left;
}
.package-manage .package-box-2 .box-3 {
  width: 256px;
  float: left;
}
.package-manage .package-2 #deliveryContent {
  margin-bottom: 15px;
}
.package-manage .package-2 .package-item {
  margin-top: 15px;
  line-height: 20px;
}
.package-manage .package-2 .package-item table {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.package-manage .package-2 .package-item table .box-1,
.package-manage .package-2 .package-item table .box-2,
.package-manage .package-2 .package-item table .box-3 {
  padding: 5px;
}
.package-manage .package-2 .package-item table .box-1 {
  width: 361px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-2 .package-item table .box-1 .photosList {
  overflow: hidden;
}
.package-manage .package-2 .package-item table .box-1 .photosList a {
  border: 1px solid #dcdcdc;
  padding: 3px;
  display: block;
  width: 64px;
  float: left;
  margin-right: 5px;
}
.package-manage .package-2 .package-item table .box-1 .photosList a img {
  width: 56px;
  height: 56px;
}
.package-manage .package-2 .package-item table .box-2 {
  width: 285px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-2 .package-item table .box-2 li {
  border-bottom: 1px dashed #666;
  margin-bottom: 5px;
}
.package-manage .package-2 .package-item table .box-2 li label {
  margin-bottom: 0px;
}
.package-manage .package-2 .package-item table .box-2 li:last-child {
  border-bottom: initial;
}
.package-manage .package-2 .package-item .virtual-list li {
  border-bottom: 1px dashed #666666;
  margin-bottom: 5px;
}
.package-manage .package-2 .package-item .virtual-list li:last-child {
  border-bottom: initial;
}
.package-manage .package-box-3 {
  line-height: 40px;
  height: 40px;
}
.package-manage .package-box-3 .box-1 {
  width: 70px;
  float: left;
}
.package-manage .package-box-3 .box-2 {
  width: 260px;
  float: left;
}
.package-manage .package-box-3 .box-3 {
  width: 174px;
  float: left;
}
.package-manage .package-box-3 .box-4 {
  width: 80px;
  float: left;
}
.package-manage .package-box-3 .box-5 {
  width: 140px;
  float: left;
}
.package-manage .package-box-3 .box-6 {
  width: 80px;
  float: left;
}
.package-manage .package-box-3 .box-7 {
  width: 93px;
  float: left;
}
.package-manage .package-box-3 .box-21 {
  width: 450px;
  float: left;
}
.package-manage .package-box-3 .box-22 {
  width: 450px;
  float: left;
}
.package-manage .package-box-3 .box-30 {
  width: 620px;
  float: left;
}
.package-manage .package-box-3 .box-31 {
  width: 280px;
  float: left;
}
.package-manage .package-3 #enterContent {
  margin-bottom: 15px;
}
.package-manage .package-3 .package-item {
  margin-top: 15px;
  line-height: 20px;
}
.package-manage .package-3 .package-item table {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-1 {
  width: 71px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-2 {
  width: 260px;
  border-right: 1px solid #dcdcdc;
  text-align: left;
  padding-left: 5px;
  overflow: hidden;
}
.package-manage .package-3 .package-item table .box-3 {
  width: 174px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-4 {
  width: 80px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-5 {
  width: 140px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-6 {
  width: 80px;
  border-right: 1px solid #dcdcdc;
}
.package-manage .package-3 .package-item table .box-7 {
  text-align: left;
  padding-left: 5px;
}
.package-manage .package-3 .package-item table .box-21 {
  width: 450px;
  border-right: 1px solid #dcdcdc;
  padding: 5px;
}
.package-manage .package-3 .package-item table .box-21 li {
  border-bottom: 1px dashed #666;
  padding: 2px 0px;
  margin: 3px 0px;
}
.package-manage .package-3 .package-item table .box-21 li:last-child {
  border-bottom: initial;
}
.package-manage .package-3 .package-item table .box-22 {
  width: 450px;
  padding: 5px;
}
.package-manage .package-3 .package-item table .box-22 li {
  border-bottom: 1px dashed #666;
}
.package-manage .package-3 .package-item table .box-22 li:last-child {
  border-bottom: initial;
}
.package-manage .package-3 .package-item table .box-30 {
  width: 620px;
  border-right: 1px solid #dcdcdc;
  padding: 5px;
}
.package-manage .package-3 .package-item table .box-31 {
  width: 280px;
  padding: 5px;
}
.package-manage .b-checkbox {
  font-weight: 400;
  margin-bottom: 0px;
}
.PackagesContent-list table {
  text-align: center;
}
.package-manage2 .package-list .annotation .box-1,
.package-manage2 .package-list .annotation .box-2,
.package-manage2 .package-list .annotation .box-3,
.package-manage2 .package-list .annotation .box-4,
.package-manage2 .package-list .annotation .box-5,
.package-manage2 .package-list .annotation .box-6,
.package-manage2 .package-list .annotation .box-7,
.package-manage2 .package-list .annotation .box-8,
.package-manage2 .package-list .annotation .box-9,
.package-manage2 .package-list .annotation .box-10,
.package-manage2 .package-list .annotation .box-11 {
  float: left;
  text-align: center;
}
.package-manage2 .package-list .annotation .box-1 {
  width: 90px;
}
.package-manage2 .package-list .annotation .box-2 {
  width: 120px;
}
.package-manage2 .package-list .annotation .box-3 {
  width: 90px;
}
.package-manage2 .package-list .annotation .box-4 {
  width: 90px;
}
.package-manage2 .package-list .annotation .box-5 {
  width: 90px;
}
.package-manage2 .package-list .annotation .box-6 {
  width: 80px;
}
.package-manage2 .package-list .annotation .box-7 {
  width: 80px;
}
.package-manage2 .package-list .annotation .box-8 {
  width: 80px;
}
.package-manage2 .package-list .annotation .box-9 {
  width: 80px;
}
.package-manage2 .package-list .annotation .box-10 {
  width: 80px;
}
.package-manage2 .package-list .annotation .box-11 {
  width: 80px;
}
.package-manage2 .package-list .package-item {
  margin-top: 20px;
  border: 1px solid #666666;
}
.package-manage2 .package-list .package-item .p-left {
  width: 479px;
  float: left;
}
.package-manage2 .package-list .package-item .p-right {
  width: 479px;
  float: left;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-1,
.package-manage2 .package-list .package-item .pack-list .forecast .fo-2,
.package-manage2 .package-list .package-item .pack-list .forecast .fo-3,
.package-manage2 .package-list .package-item .pack-list .forecast .fo-4,
.package-manage2 .package-list .package-item .pack-list .forecast .fo-5 {
  float: left;
  text-align: center;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-1 {
  width: 90px;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-2 {
  width: 120px;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-3 {
  width: 90px;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-4 {
  width: 90px;
}
.package-manage2 .package-list .package-item .pack-list .forecast .fo-5 {
  width: 89px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-1,
.package-manage2 .package-list .package-item .pack-list .transfer .tr-2,
.package-manage2 .package-list .package-item .pack-list .transfer .tr-3,
.package-manage2 .package-list .package-item .pack-list .transfer .tr-4,
.package-manage2 .package-list .package-item .pack-list .transfer .tr-5,
.package-manage2 .package-list .package-item .pack-list .transfer .tr-6 {
  float: left;
  text-align: center;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-1 {
  width: 80px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-2 {
  width: 80px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-3 {
  width: 80px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-4 {
  width: 80px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-5 {
  width: 80px;
}
.package-manage2 .package-list .package-item .pack-list .transfer .tr-6 {
  width: 79px;
}
.package-manage2 .package-list .package-item .pack-type {
  text-align: right;
}
/*--新包裹填写--*/
.newPackage-write .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.newPackage-write .title button {
  float: right;
}
.newPackage-write .newPackage-annotation {
  background-color: #f7f7f9;
  padding: 12px;
  border: 1px solid #e1e1e8;
}
.newPackage-write .newPackage-annotation .p-2 {
  color: #ff6666;
  margin-top: 2px;
}
.newPackage-write .newPackage-factory {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  margin-top: 12px;
}
.newPackage-write .newPackage-factory ul li {
  line-height: 25px;
  font-size: 14px;
  margin: 5px 20px 5px 20px;
}
.newPackage-write .newPackage-factory ul li .l-label {
  text-align: right;
}
.newPackage-write .newPackage-factory ul li .p-annotation {
  font-size: 12px;
}
.newPackage-write .newPackage-factory ul li .fast-error {
  line-height: 34px;
}
.newPackage-write .newPackage-factory ul li label {
  font-weight: 400;
}
.newPackage-write .newPackage-factory ul li label input {
  vertical-align: text-bottom;
}
.newPackage-write .package-operation {
  margin-top: 20px;
  margin-bottom: 100px;
}
/*--包裹商品信息--*/
.package-goods-container {
  margin-top: 0px;
}
.package-goods-container .title {
  line-height: 34px;
  font-size: 16px;
  font-weight: bolder;
  margin: 0px 0px 10px 0px;
  border-bottom: none;
  overflow: hidden;
}
.package-goods-container .title button {
  float: right;
}
.package-goods-container .package-bottom {
  display: none;
  border: 1px solid #dcdcdc;
  border-top: none;
  background-color: #ebebeb;
  overflow: hidden;
  padding: 5px 0px;
}
.package-goods-container .package-bottom .reminder {
  float: left;
  width: 700px;
  padding: 8px;
}
.package-goods-container .package-bottom .taxOn {
  display: none;
  width: 400px;
  text-align: right;
  float: right;
  padding-right: 10px;
}
.package-goods-container .package-bottom .taxOn p {
  color: #337ab7;
  font-weight: bold;
  font-size: 25px;
}
.package-goods-container .package-bottom .taxOn p .t-1 {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
}
.package-goods-list .box-1,
.package-goods-list .box-2 {
  width: 170px;
  float: left;
}
.package-goods-list .box-4 {
  width: 120px;
  float: left;
}
.package-goods-list .box-5,
.package-goods-list .box-6 {
  width: 113px;
  float: left;
}
.package-goods-list .box-3 {
  width: 140px;
  float: left;
}
.package-goods-list .box-3 .form-control[readonly] {
  background-color: #fff;
}
.package-goods-list .box-3 .handling {
  display: none;
}
.package-goods-list .box-19 {
  width: 120px;
  float: left;
}
.package-goods-list .box-7 {
  width: 80px;
  float: left;
  text-align: center;
}
.package-goods-list .box-8 {
  width: 70px;
  float: left;
}
.package-goods-list .box-18 {
  width: 90px;
  float: left;
  display: none;
}
.package-goods-list .box-18 .tax-rate {
  line-height: 34px;
  text-align: center;
}
.package-goods-list .box-18 .red {
  color: #d52929;
}
.package-goods-list .box-11 {
  width: 190px;
  float: left;
  text-align: center;
}
.package-goods-list .box-12 {
  width: 170px;
  float: left;
  text-align: center;
}
.package-goods-list .box-13 {
  width: 120px;
  float: left;
  text-align: center;
}
.package-goods-list .box-14 {
  width: 120px;
  float: left;
  text-align: center;
}
.package-goods-list .box-15 {
  width: 115px;
  float: left;
  text-align: center;
}
.package-goods-list .box-16 {
  width: 110px;
  float: left;
  text-align: center;
}
.package-goods-list .box-17 {
  width: 110px;
  float: left;
  text-align: center;
}
.package-goods-list .box-20 {
  width: 110px;
  float: left;
  text-align: center;
}
.package-goods-list .virtual-item {
  line-height: 34px;
}
.package-goods-list .annotation {
  border: 1px solid #dcdcdc;
  background-color: #ebebeb;
  text-align: center;
  line-height: 40px;
}
.package-goods-list .annotation .prompt {
  text-align: left;
  padding-left: 5px;
  line-height: 25px;
  color: #ffffff;
  background-color: #ff9900;
}
.package-goods-list .annotation .package-box div {
  background: url("../img/li_back.png") no-repeat left center;
}
.package-goods-list .annotation .package-box .box-1 {
  background: none;
}
.package-goods-list .package-list {
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.package-goods-list .package-list .package-item .p-box {
  padding: 8px 5px;
}
.package-goods-list .package-list .package-item .box-7 {
  text-align: center;
  line-height: 34px;
}
/*-- 立即发货 --*/
.package-delivery {
  padding-bottom: 100px;
}
.package-delivery .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.package-delivery .note {
  color: #ff6666;
}
.package-delivery .d-item {
  margin-bottom: 40px;
}
.package-delivery .d-item .d-title {
  font-size: 16px;
  font-weight: bolder;
  line-height: 34px;
  background-color: #337ab7;
  margin-bottom: 15px;
  padding: 0px 5px;
  color: #fff;
}
.package-delivery .d-item .particulars .table {
  margin-top: 10px;
  margin-bottom: 15px;
}
.package-delivery .d-item .serveProject ul li {
  margin-bottom: 5px;
}
.package-delivery .d-item .weightCount ul li {
  margin-bottom: 15px;
}
.package-delivery .d-item .weightCount input {
  display: inline-block;
}
.package-delivery .d-item .weightCount .rectangle-size .annotation {
  line-height: 40px;
}
.package-delivery .d-item .weight-remark {
  padding: 6px;
  border: 1px dashed;
}
.package-delivery .d-item .weight-remark ul li {
  margin-bottom: 5px;
}
.package-delivery .d-item .insurance-input {
  width: 120px;
  display: inline-block;
  margin-right: 12px;
}
.deliverParcal-address .form-group {
  margin-bottom: 10px;
}
.deliverParcal-page .dropOff-header,
.deliverVirtual-page .dropOff-header {
  overflow: hidden;
}
.deliverParcal-page .dropOff-header .d-left,
.deliverVirtual-page .dropOff-header .d-left {
  float: left;
}
.deliverParcal-page .dropOff-header .d-right,
.deliverVirtual-page .dropOff-header .d-right {
  float: right;
  text-align: right;
  width: 600px;
  margin-top: 25px;
}
.deliverParcal-page .dropOff-header .d-right input,
.deliverVirtual-page .dropOff-header .d-right input {
  display: inline-block;
}
.deliverParcal-page .title,
.deliverVirtual-page .title {
  font-size: 16px;
  color: #666666;
}
.deliverParcal-page .form-group,
.deliverVirtual-page .form-group {
  margin-bottom: 20px;
}
.deliverParcal-page #parcelTypeTable .parcelType-tr,
.deliverVirtual-page #parcelTypeTable .parcelType-tr {
  cursor: pointer;
}
.deliverParcal-page .parcel-item .header,
.deliverVirtual-page .parcel-item .header {
  background-color: #999999;
  line-height: 30px;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #ffffff;
  padding: 0px;
}
.deliverParcal-page .packageContainer .package-goods-container,
.deliverVirtual-page .packageContainer .package-goods-container {
  margin-top: -40px;
}
.deliverParcal-page .insurance,
.deliverVirtual-page .insurance {
  width: 200px;
  display: inline-block;
}
.deliverParcal-page .well,
.deliverVirtual-page .well {
  margin-bottom: 10px;
}
.deliverParcal-page .receive-search .btn,
.deliverVirtual-page .receive-search .btn {
  margin-left: 5px;
}
.deliverParcal-page #receiveAddress,
.deliverVirtual-page #receiveAddress,
.deliverParcal-page #sendAddress,
.deliverVirtual-page #sendAddress,
.deliverParcal-page #areaAddress,
.deliverVirtual-page #areaAddress {
  min-height: 5px;
}
.deliverParcal-page .weightCount li,
.deliverVirtual-page .weightCount li {
  margin-bottom: 8px;
}
/*-- 包裹 --*/
.newParcel-page .title {
  font-size: 16px;
  color: #666666;
}
.newParcel-page .package-goods-container {
  margin-top: -40px;
}
.newParcel-page .no-packageContainer .package-goods-container {
  margin-top: 0px;
}
.newParcel-page .form-group {
  margin-bottom: 20px;
}
.newParcel-page .photos-list {
  overflow: hidden;
}
.newParcel-page .photos-list li {
  float: left;
  margin: 0px 15px 15px 0px;
}
.newParcel-page .photos-list li img {
  width: 150px;
  height: 150px;
}
.newParcel-page .abnormal-list ul li {
  margin-top: 10px;
}
/*-- 出库运单信息 --*/
.packageOdd-inf .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.packageOdd-inf .title .btn {
  float: right;
}
.packageOdd-inf h3 {
  font-size: 16px;
  font-weight: bolder;
  line-height: 34px;
  background-color: #337ab7;
  margin-bottom: 15px;
  padding: 0 5px;
  color: #fff;
}
.packageOdd-inf .packageOdd-1 {
  padding-bottom: 30px;
}
.packageOdd-inf .packageOdd-1 .p-item .inf-list .row {
  line-height: 25px;
  font-size: 14px;
  margin: 5px 20px 5px 20px;
  border-bottom: 1px solid #ededed;
}
.packageOdd-inf .packageOdd-1 .p-item .inf-list .p-label {
  text-align: right;
}
.packageOdd-inf .packageOdd-2 {
  padding-bottom: 10px;
}
.packageOdd-inf .packageOdd-2 .packageOdd-item {
  margin-bottom: 20px;
}
.packageOdd-inf .packageOdd-2 .packageOdd-item h4 {
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 5px;
}
.packageOdd-inf .packageOdd-2 .header {
  background-color: #999999;
  line-height: 30px;
  margin-right: 0px;
  margin-left: 0px;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #ffffff;
}
.packageOdd-inf .packageOdd-2 .package-goods-container {
  margin-bottom: 10px;
}
.packageOdd-inf .packageOdd-3 {
  padding-bottom: 20px;
}
.packageOdd-inf .red {
  color: #d43f3a;
}
/*-- 添加类别 --*/
#addCategory .insurance-cost {
  color: #e52b18;
  padding-left: 5px;
  line-height: 20px;
}
/*-- 咨询留言 --*/
.consult-container .consult-remind {
  font-size: 14px;
  line-height: 25px;
}
.consult-container .message-container .tab-content {
  margin-top: 15px;
}
.consult-container .message-container .consult-messages {
  width: 450px;
}
.consult-container .message-container .consult-messages .btn {
  margin-top: 5px;
}
.consult-container .message-container select.form-control {
  width: 200px;
  margin-bottom: 10px;
}
/*-- 优惠券 --*/
.coupon-container h3.title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
}
.coupon-container .coupon-header {
  overflow: hidden;
}
.coupon-container .coupon-header .coupon-left {
  float: left;
}
.coupon-container .coupon-header .coupon-right {
  float: right;
}
.coupon-container .coupon-header .coupon-right input {
  margin: auto 5px;
}
.coupon-container .coupon-type {
  width: 200px;
  margin-bottom: 10px;
}
.coupon-container .coupon-remind {
  font-size: 14px;
  line-height: 25px;
}
.coupon-container .coupon-explain {
  border-top: 1px solid #ededed;
  padding-top: 10px;
  margin-top: 20px;
}
.bask-container .bask-type {
  margin-bottom: 10px;
  overflow: hidden;
}
.bask-container .bask-type .prov {
  width: 200px;
  float: left;
}
.bask-container .bask-type .btn {
  float: right;
}
/*-- 留言 --*/
.suggest-container {
  width: 450px;
}
/*-- 账户信息 --*/
.userlnf-container .basic-inf {
  width: 450px;
}
.userlnf-container .password-amend {
  width: 450px;
}
.userlnf-container .receive-address {
  margin-top: 10px;
}
.userlnf-container .explain {
  border-top: 1px solid #ededed;
  padding-top: 10px;
  margin-top: 5px;
}
.userlnf-container .explain h3 {
  font-size: 18px;
  font-weight: bolder;
  line-height: 25px;
}
.userlnf-container .explain p {
  line-height: 22px;
}
.userlnf-container .newAddress-handle {
  overflow: hidden;
}
.userlnf-container .newAddress-handle .address-left {
  float: left;
}
.userlnf-container .newAddress-handle .address-right {
  float: right;
  width: 330px;
}
.userlnf-container .newAddress-handle .address-right input {
  width: 270px;
}
.userlnf-container .my-message {
  margin-top: 10px;
}
.userlnf-container select.form-control {
  width: 200px;
}
.userlnf-container .account-bound {
  width: 890px;
}
.userlnf-container .account-bound h3 {
  line-height: 30px;
  font-size: 16px;
}
.userlnf-container .account-bound .p-2 {
  text-align: right;
  line-height: 22px;
}
.userlnf-container .account-bound .input-main {
  width: 450px;
  margin-top: 20px;
}
.userlnf-container .account-bound .input-main .img-verification {
  overflow: hidden;
}
.userlnf-container .account-bound .input-main .img-verification .img-input {
  width: 300px;
  float: left;
}
.userlnf-container .account-bound .input-main .img-verification .img-code {
  float: left;
}
.userlnf-container .account-bound .input-main .img-verification .img-code img {
  margin: 0px 10px 0px 15px;
  border: 1px solid #cccccc;
}
/*-- 打印 --*/
.print-Storage {
  width: 352px;
  margin: 0 auto;
}
/*-- 价格服务 --*/
.freight-price {
  font-size: 14px;
  color: #313131;
}
.freight-price p.explain {
  line-height: 30px;
}
.freight-price p.note {
  line-height: 25px;
  text-align: right;
  padding-right: 97px;
}
.freight-price .price-list li.p-item {
  margin-top: 20px;
}
.freight-price .price-list li.p-item table {
  width: 860px;
  margin: 0 auto;
  margin-top: 15px;
}
.freight-price .price-list li.p-item table th {
  text-align: center;
  line-height: 45px;
  background-color: #1e96d5;
  color: #ffffff;
}
.freight-price .price-list li.p-item table td {
  text-align: center;
  line-height: 35px;
}
.freight-price .price-list li.p-item table td .vip-1 {
  background-color: #e9eedc;
}
.freight-price .price-list li.p-item table td .vip-2 {
  background-color: #fbe8d8;
}
.freight-price .price-list li.p-item table td .vip-3 {
  background-color: #e3deeb;
}
/*-- 用户激活 --*/
.user-activate h3 {
  font-weight: bolder;
  font-size: 18px;
  line-height: 30px;
}
.user-activate p {
  line-height: 25px;
}
.user-activate p #cause {
  color: #f31414;
  font-size: 16px;
}
.user-activate a {
  margin-top: 5px;
}
/*-- 收货地址 --*/
.papers-picture {
  margin-bottom: 5px;
}
.papers-picture .upload-item {
  margin-bottom: 5px;
}
.papers-picture .upload-item .title {
  width: 60px;
  display: inline-block;
}
.papers-picture .upload-item .uploadImg img {
  width: 85%;
}
.papers-picture .identity-test ul {
  padding-left: 5px;
}
/*-- 上传图片等待 --*/
.imgAwait .iconfont {
  color: #5cb85c;
}
/*-- 类别选择 --*/
.cataContainer a:link {
  text-decoration: none;
}
.cataContainer a:visited {
  text-decoration: none;
}
.cataContainer a:hover {
  text-decoration: none;
}
.cataContainer a:active {
  text-decoration: none;
}
.cataContainer .cata-search {
  position: relative;
}
.cataContainer .cata-search .search {
  width: 290px;
  margin-top: 8px;
  margin-bottom: 5px;
  margin: 0 auto;
}
.cataContainer .cata-search .search input {
  width: 210px;
  display: inline-block;
}
.cataContainer .cata-search .search button {
  vertical-align: top;
  margin-left: 8px;
}
.cataContainer .cata-search .ac_results {
  border: 1px solid #999999;
  background: #ffffff;
  position: absolute;
  text-align: left;
  top: 33px !important;
  left: 265px !important;
  width: 210px !important;
  z-index: 9999;
  padding: 10px;
}
.cataContainer .cata-search .ac_results .ac_over {
  background: none repeat scroll 0 0 #cbe6f7;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}
.cataContainer .cata-bar {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  overflow: hidden;
  z-index: 999;
}
.cataContainer .cata-bar .cataList {
  float: left;
  overflow: hidden;
}
.cataContainer .cata-bar .cataList .go-left {
  float: left;
}
.cataContainer .cata-bar .cataList .go-right {
  float: left;
}
.cataContainer .cata-bar .cataList .main {
  float: left;
  width: 570px;
  overflow: hidden;
}
.cataContainer .cata-bar .cataList .main a {
  width: 102px;
  margin: 0 6px;
  display: block;
  float: left;
  text-align: center;
  height: 40px;
  font-size: 16px;
}
.cataContainer .cata-bar .cataList .main a:hover {
  border-bottom: 1px solid #23527c;
  text-decoration: none;
}
.cataContainer .cata-bar .cataList .main a.selected {
  border-bottom: 1px solid #23527c;
}
.cataContainer .cata-bar .cataNum {
  float: left;
  margin-top: 7px;
  overflow: hidden;
}
.cataContainer .cata-bar .cataNum a {
  text-decoration: none;
  text-shadow: 0 1px 1px white;
  display: block;
  float: left;
  border: 1px solid #d4d4d4;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #eeeeee;
  line-height: 24px;
  padding: 0 7px;
  margin-left: 10px;
}
.cataContainer .cata-bar .cataNum a.selected {
  background-color: #286090;
  border: 1px solid #204d74;
  color: #ffffff;
}
.cataContainer .cata-main {
  border-top: 1px solid #e5e5e5;
  margin-top: -1px;
  padding: 9px;
  height: 250px;
}
.cataContainer .cata-main .cata-item .letter {
  overflow: hidden;
}
.cataContainer .cata-main .cata-item .letter a {
  text-shadow: 0 1px 1px white;
  display: block;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 11px;
  box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.5), 0px 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #eeeeee;
  width: 22px;
  line-height: 22px;
  height: 22px;
  text-align: center;
  color: #666666;
  margin: 0 2px;
}
.cataContainer .cata-main .cata-item .letter a.selected {
  background-color: #337ab7;
  color: #ffffff;
  border: 1px solid #286090;
}
.cataContainer .cata-main .cata-item .category {
  overflow-y: scroll;
  font-size: 15px;
  margin-top: 10px;
  height: 200px;
}
.cataContainer .cata-main .cata-item .category a {
  border-left: 1px solid #cccccc;
  float: left;
  height: 20px;
  line-height: 16px;
  margin: 7px 0;
  padding: 0 9px;
  color: #666666;
}
.cataContainer .cata-main .cata-item .category a:hover {
  color: #337ab7;
}
/*-- 类别选择 横向--*/
.cataContainer-cross {
  height: 500px;
}
.cataContainer-cross .category {
  width: 200px;
  float: left;
}
.cataContainer-cross .category .go-left,
.cataContainer-cross .category .go-right {
  background-color: #337ab7;
  width: 200px;
  height: 29px;
  text-align: center;
  font-size: 22px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.cataContainer-cross .category .go-left a,
.cataContainer-cross .category .go-right a {
  color: #fff;
  text-decoration: none;
}
.cataContainer-cross .category .main {
  height: 440px;
  background-color: #efefef;
  font-size: 14px;
  overflow: hidden;
}
.cataContainer-cross .category .main a:after {
  content: "＞";
  border: 1px solid transparent;
  font-size: 20px;
  color: #e0e0e0;
  transform: rotate(0deg);
  display: inline-block;
  right: 10px;
  position: absolute;
}
.cataContainer-cross .category .main a {
  display: block;
  line-height: 40px;
  text-decoration: none;
  padding-left: 15px;
  color: #000000;
  position: relative;
}
.cataContainer-cross .category .main a:hover {
  color: #337ab7;
  background-color: #ffffff;
}
.cataContainer-cross .category .main a:hover:after {
  color: #337ab7;
}
.cataContainer-cross .category .main .selected {
  color: #337ab7;
  background-color: #ffffff;
}
.cataContainer-cross .category .main .selected:after {
  color: #337ab7;
}
.cataContainer-cross .category .main .g-loading {
  height: 440px;
}
.cataContainer-cross .pinyin {
  width: 30px;
  float: left;
  background-color: #f2fcff;
}
.cataContainer-cross .pinyin p {
  background-color: #f1fcff;
  color: #337ab7;
  width: 30px;
  height: 24px;
  text-align: center;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
}
.cataContainer-cross .pinyin p a:hover {
  text-decoration: none;
}
.cataContainer-cross .pinyin .letter {
  height: 450px;
  overflow: hidden;
}
.cataContainer-cross .pinyin .letter a {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  color: #337ab7;
  text-align: center;
  height: 25px;
  line-height: 25px;
}
.cataContainer-cross .pinyin .letter a:hover {
  background: url("/images/transport-yuan.png") no-repeat 5px 2px;
  color: #ffffff;
}
.cataContainer-cross .pinyin .letter .selected {
  background: url("/images/transport-yuan.png") no-repeat 5px 2px;
  color: #ffffff;
}
.cataContainer-cross .content {
  width: 668px;
  float: left;
}
.cataContainer-cross .content .cata-search {
  height: 42px;
  position: relative;
}
.cataContainer-cross .content .cata-search .search {
  width: 290px;
  margin-top: 8px;
  margin-bottom: 5px;
  margin: 0 auto;
}
.cataContainer-cross .content .cata-search .search input {
  width: 210px;
  display: inline-block;
}
.cataContainer-cross .content .cata-search .search button {
  vertical-align: top;
  margin-left: 8px;
}
.cataContainer-cross .content .cata-search .ac_results {
  border: 1px solid #999999;
  background: #ffffff;
  position: absolute;
  text-align: left;
  top: 33px !important;
  left: 189px !important;
  width: 210px !important;
  z-index: 9999;
  padding: 10px;
}
.cataContainer-cross .content .cata-search .ac_results .ac_over {
  background: none repeat scroll 0 0 #cbe6f7;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  cursor: pointer;
}
.cataContainer-cross .content .category-container {
  font-size: 14px;
  padding: 5px;
  overflow-y: scroll;
  height: 420px;
  margin: 2px;
}
.cataContainer-cross .content .category-container a {
  height: 20px;
  line-height: 16px;
  margin: 4px 4px;
  padding: 0 4px;
  display: inline-block;
  color: #666666;
}
.cataContainer-cross .content .category-container a:hover {
  color: #337ab7;
  background-color: #35aacd;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}
.cataContainer-cross .content .category-container em {
  color: #e9e9e9;
  font-style: normal;
  padding: 0;
  margin: 0;
}
.cataContainer-cross .content .category-container .g-loading {
  height: 420px;
}
/*--页面loading--*/
.page-loading .logo {
  background: url(/images/h-loading2.gif) center center no-repeat;
}
/*-- 页面计算器 --*/
.carriage-calculator th {
  padding: 0px !important;
  line-height: 45px;
}
.carriage-calculator .rate input {
  margin-top: 12px;
}
/*--  代理页面 --*/
.generalize-page .g-recommend {
  margin-bottom: 40px;
}
.generalize-page .g-recommend .title {
  text-align: right;
  margin-bottom: 10px;
}
.generalize-page .g-recommend h3 {
  font-size: 18px;
  border-left: 4px solid #ddd;
  padding-left: 6px;
  margin: 15px 0px;
}
.generalize-page .g-recommend .type-rigth {
  float: right;
  margin-bottom: 10px;
}
.generalize-page .g-recommend .type-rigth input {
  display: inline-block;
  width: 200px;
}
.generalize-page .g-recommend .type-rigth button {
  vertical-align: inherit;
}
/*-- 活动页面 --*/
.newActivity-main {
  width: 960px;
  margin: 60px auto;
}
/*-- 用户站点设置 --*/
.page-dataCreate {
  width: 960px;
  padding: 20px;
  margin: 0 auto;
}
.page-dataCreate h3 {
  line-height: 38px;
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
  background-color: #00a0e9;
  color: #ffffff;
}
.page-dataCreate .small-width {
  width: 380px;
}
.page-dataCreate .list-loading {
  margin: 20px 0px 30px;
}
.page-dataCreate .list-loading p {
  text-align: center;
  font-size: 20px;
}
.page-dataCreate .next-step {
  margin-top: 35px;
}
.page-dataCreate .next-step a,
.page-dataCreate .next-step button {
  padding: 6px 20px;
}
/*-- 活动列表 --*/
.gonggao_div {
  width: 100%;
  height: 30px;
  background: #e6e6e6;
  min-width: 1000px;
}
.gonggao_content {
  width: 600px;
  height: 30px;
  margin-left: 167px;
  overflow: hidden;
  position: absolute;
}
.gonggao_content .gonggao-can {
  position: absolute;
  top: 0px;
  left: 78px;
  box-shadow: none;
}
.gonggao_content .bx-wrapper {
  margin-left: 100px;
  background: #e6e6e6;
  box-shadow: none;
}
.gonggao_content .bx-wrapper li {
  width: 400px;
  padding-right: 100px;
}
.gonggao_tip {
  background: url(/images/WZ2/gonggao.png) 0px 1px no-repeat;
  text-indent: 20px;
  margin-right: 25px;
  display: inline-block;
  margin-top: 5px;
}
.gonggao_tip a {
  color: #000000;
}
.gonggao_content ul {
  margin-left: 10px;
  line-height: 31px;
}
/*-- 活动 --*/
.activityList {
  width: 1000px;
  margin: 80px auto;
}
.activityList ul li {
  overflow: hidden;
  border-bottom: 1px dashed #ccc;
  height: 30px;
  line-height: 30px;
}
.activityList ul li span {
  float: right;
}
/*-- 运单拆分 --*/
.pack-break-container .title {
  line-height: 44px;
}
.pack-break-container .break-left {
  width: 500px;
  float: left;
}
.pack-break-container .break-right {
  width: 500px;
  margin-left: 50px;
  float: left;
}
.pack-break-container .break-right table {
  margin-bottom: 5px;
}
.pack-break-container .break-right .pack-tariff {
  font-weight: bolder;
  text-align: right;
}
/*-- fba创建 --*/
.fbaTransport-page .create-item,
.fbaTransInf-page .create-item {
  margin-bottom: 60px;
}
.fbaTransport-page .create-item h1,
.fbaTransInf-page .create-item h1 {
  margin-bottom: 25px;
}
.fbaTransInf-page {
  font-size: 14px;
}
.fbaTransInf-page .basic-inf .form-group {
  margin-bottom: 10px;
}
.fbaTransInf-page .tab-pane {
  padding-top: 20px;
}
.fbaTransInf-page .tab-pane .form-group {
  margin-bottom: 10px;
}
/*-- 表格搜索与展示 --*/
.table-striped-list table:nth-of-type(even) {
  background-color: #f9f9f9;
}
table .search-td {
  line-height: 34px !important;
  text-align: center;
}
table .title-header {
  background-color: #f7f7f9;
}
table .title-header th {
  text-align: center;
}
table .green {
  color: #3cb371;
}
table .blue {
  color: #4169e1;
}
table .red {
  color: #ff0000;
}
table .orange {
  color: #ff8800;
}
table .option {
  text-align: right;
}
table .auto-table td {
  table-layout: fixed;
  word-break: break-all;
  overflow: auto;
}
table label {
  margin-bottom: 0px;
}
table div.back-img {
  background: url(/images/noimage.jpg);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}
table div.back-img--big {
  width: 86px;
  height: 86px;
  background-size: 86px 86px;
}
.choose-good-list {
  width: 1020px;
  position: fixed;
  top: 0px;
  background-color: #fff;
  left: 50%;
  margin-left: -440px;
  z-index: 99999;
  border: 1px solid #ddd;
  padding: 5px;
  border-top: none;
}
.choose-good-list ul {
  max-height: 231px;
  overflow-y: auto;
}
.choose-good-list ul li {
  float: left;
  margin-left: 8px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd;
  padding: 5px;
}
.choose-good-list ul li .left {
  float: left;
}
.choose-good-list ul li .right {
  float: right;
  width: 190px;
  height: 60px;
  line-height: 25px;
  padding: 5px 5px 5px 10px;
}
.choose-good-list ul li .back-img {
  background: url(/images/noimage.jpg);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}
.choose-good-list ul li .close {
  position: absolute;
  top: 3px;
  right: 3px;
  cursor: pointer;
  color: #000;
  font-size: 12px;
}
.choose-good-list .option {
  text-align: left;
  margin-top: 14px;
}
.pop-good-list .middle {
  line-height: 33px !important;
}
/*--右侧导航--*/
div.float-tools {
  z-index: 999999999;
}
/*-- 虚拟地址 --*/
.address-group {
  background-size: 100% 100%;
  min-height: 515px;
}
.address-group h3 {
  font-size: 17px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  line-height: 30px;
}
.virtual-address .address-label {
  text-align: right;
  padding-right: 5px;
}
.virtual-address label {
  margin-top: 7px;
  font-weight: 400;
}
.virtual-address .label--note {
  float: right;
  color: #999;
  font-size: 12px;
  line-height: 30px;
}
.virtual-address .must {
  color: #d9534f;
}
.virtual-address .chooseAddress {
  position: relative;
}
.virtual-address .chooseAddress .glyphicon-remove {
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 4px;
  font-size: 22px;
}
.virtual-address select[disabled],
.virtual-address input[disabled] {
  background-color: #ffffff;
}
.virtual-address .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #fff;
  cursor: not-allowed;
}
.virtual-address .form-normal .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eeeeee !important;
}
.virtual-address p.sea-error {
  height: 0px;
}
.address-select2 {
  position: relative;
  width: 100px;
}
.address-select2 .name {
  position: absolute;
  z-index: 999;
  color: #0099cc;
  font-weight: 500;
  background: #ffff;
  width: 160px;
  text-align: right;
  cursor: pointer;
  font-size: 14px;
  height: 34px;
  top: 0px;
  line-height: 34px;
  right: -1px;
  padding-right: 19px;
}
.address-select2 .select2 {
  width: 100px;
  overflow: hidden;
}
.address-select2 .select2-selection {
  border: 0px;
}
.address-select2 .select2-selection__arrow {
  z-index: 99999;
  padding-left: 100px;
}
.address-select2 .select2-selection__arrow b {
  left: 90% !important;
  margin-top: -3px;
}
.address-select-dropdown {
  margin-left: -305px;
  width: 400px !important;
}
/*-- 快递方式选择 --*/
.express-choose .tab-content {
  margin-top: 15px;
}
.express-choose li a {
  padding: 4px 8px;
}
.express-choose li a span {
  background: url(/images/play/express.jpg?v=1) no-repeat;
  background-size: 180px 160px;
  width: 90px;
  height: 40px;
  display: block;
}
.express-choose .choose-USPS span {
  background-position: -90px 5px;
}
.express-choose .choose-SVE span {
  background-position: -90px 5px;
}
.express-choose .choose-UPS span {
  background-position: -90px -30px;
}
.express-choose .choose-SUPER_LABEL_UPS_NEW span {
  background-position: -90px -30px;
}
.express-choose .choose-FEDEX span {
  background-position: -90px -65px;
}
.express-choose .choose-WT span {
  background-position: 0px -65px;
}
.express-choose .choose-DHL span {
  background-position: -90px -95px;
}
.express-choose .active .choose-USPS span {
  background-position: 0px 5px;
}
.express-choose .active .choose-SVE span {
  background-position: 0px 5px;
}
.express-choose .active .choose-UPS span {
  background-position: 0px -30px;
}
.express-choose .active .choose-SUPER_LABEL_UPS_NEW span {
  background-position: 0px -30px;
}
.express-choose .active .choose-FEDEX span {
  background-position: 0px -65px;
}
.express-choose .active .choose-DHL span {
  background-position: 0px -95px;
}
.express-choose2 ul {
  overflow: hidden;
  margin: 15px 0px;
}
.express-choose2 ul li {
  float: left;
  cursor: pointer;
  margin-right: 20px;
}
.express-choose2 ul li span {
  background: url(/images/play/express.jpg?v=1) no-repeat;
  width: 180px;
  height: 80px;
  display: block;
}
.express-choose2 .choose-USPS {
  background-position: -180px 0px;
}
.express-choose2 .choose-USPSDLMK {
  background: url(/images/MK/USPSDL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-SVE {
  background-position: -180px 0px;
}
.express-choose2 .choose-WD {
  background: url(/images/SVE/WD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-KDW_PB {
  background: url(/images/SVE/KDW_PB.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-USPSCOM {
  background: url(/images/SVE/USPSCOM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-WT_USPS {
  background: url(/images/SVE/WTUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-USPS_A {
  background: url(/images/SVE/USPS_A.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-EP {
  background: url(/images/SVE/EP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-ZDA {
  background: url(/images/SVE/ZDA.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-SUPER_LABEL_ZDA {
  background: url(/images/SVE/SUPER_LABEL_ZDA.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-SUPER_LABEL_USPSOFFICIAL {
  background: url(/images/SVE/SUPER_LABEL_USPSOFFICIAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-RDY5_USPS {
  background: url(/images/SVE/RDY5_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-MK_USPS {
  background: url(/images/SVE/MK_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-USPS2020 {
  background: url(/images/SVE/USPS2020.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-USPSOFFICIAL {
  background: url(/images/SVE/USPSOFFICIAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-SUPER_LABEL_HWCSH {
  background: url(/images/SVE/SUPER_LABEL_HWCSH.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY37_USPS {
  background: url(/images/SVE/RDY37_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY23_VITE {
  background: url(/images/SVE/RDY23_VITE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY8_USPS {
  background: url(/images/SVE/RDY8_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-COUSPS {
  background: url(/images/COUSPS/COUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-BTI {
  background: url(/images/BTI/BTI.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTPONY {
  background: url(/images/POSTPONY/POSTPONY.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-XU {
  background: url(/images/XU/XU.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 26px;
}
.express-choose2 .choose-EZFEDEX {
  background: url(/images/EZFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-XUFEDEX {
  background: url(/images/XUFEDEX/XUFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-BBTEX_FEDEX {
  background: url(/images/XUFEDEX/BBTEX_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-NHUPS {
  background: url(/images/XUUPS/NHUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-DN {
  background: url(/images/XUFEDEX/DN.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-XDFEDEX {
  background: url(/images/XUFEDEX/XDFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-RDY72_SHIP {
  background: url(/images/XUFEDEX/RDY72_SHIP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-HL_USPS {
  background: url(/images/XUFEDEX/HL_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-size: 360px 80px;
  background-position: -178px 0;
}
.express-choose2 .choose-HL_FEDEX {
  background: url(/images/XUFEDEX/HL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 11px;
  background-size: 360px 80px;
}
.express-choose2 .choose-DBI {
  background: url(/images/XUFEDEX/DBI.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-XUUPS {
  background: url(/images/XUUPS/XUUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY75_UPS {
  background: url(/images/XUUPS/RDY75_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY83_UPS {
  background: url(/images/XUUPS/RDY83_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY84_UPS {
  background: url(/images/XUUPS/RDY84_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY84_UPS_NEW {
  background: url(/images/XUUPS/RDY84_UPS_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_RDY84_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_RDY84_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY80_UPS {
  background: url(/images/XUUPS/RDY80_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-UPS_NEW {
  background: url(/images/XUUPS/UPS_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY75_FEDEX {
  background: url(/images/XUFEDEX/RDY75_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY58_UPS {
  background: url(/images/XUUPS/RDY58_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-COUPS {
  background: url(/images/XUFEDEX/COUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY74_UPS {
  background: url(/images/XUFEDEX/RDY74_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_COUPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_COUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-UPS_AM {
  background: url(/images/XUUPS/UPS_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_UPS_AM {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY11_UPS {
  background: url(/images/XUUPS/RDY11_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY2_UPS {
  background: url(/images/XUUPS/RDY2_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY4_UPS {
  background: url(/images/XUUPS/RDY4_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-ZDAShIPSAV {
  background: url(/images/XUFEDEX/ZDAShIPSAV.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-ECOMMERCE_UPS {
  background: url(/images/XUUPS/ECOMMERCE_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY3_USPS {
  background: url(/images/XUUPS/RDY3_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -203px 8px;
}
.express-choose2 .choose-RDY55_UPS {
  background: url(/images/XUUPS/RDY55_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -203px 8px;
}
.express-choose2 .choose-DHL_EXPRESS {
  background: url(/images/play/DHL_EXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-MKNUPS {
  background: url(/images/XUUPS/MKNUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-UPS8E2 {
  background: url(/images/XUUPS/UPS8E2.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-ALLTHELINKS {
  background: url(/images/XUUPS/ALLTHELINKS_UPS_Ground.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY6_UPS {
  background: url(/images/XUUPS/RDY6_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SZZR {
  background: url(/images/XUUPS/SZZR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY15_UPS {
  background: url(/images/XUUPS/RDY15_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY7_USPS {
  background: url(/images/XUUPS/RDY7_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTPONY_UPS {
  background: url(/images/XUUPS/POSTPONY_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-KDWUPS {
  background: url(/images/XUUPS/KDWUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-FJUPS {
  background: url(/images/XUUPS/FJUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTX {
  background: url(/images/POSTX/POSTX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTX_MEXICO {
  background: url(/images/POSTX/POSTX_MEXICO.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-COLISSIMO {
  background: url(/images/XUFEDEX/COLISSIMO.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -178px 0px;
}
.express-choose2 .choose-FEDEX_AM {
  background: url(/images/XUFEDEX/FEDEX_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY73_FEDEX {
  background: url(/images/XUFEDEX/RDY73_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY65_FEDEX {
  background: url(/images/XUFEDEX/RDY65_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY67_FEDEX {
  background: url(/images/XUFEDEX/RDY67_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY70_FEDEX {
  background: url(/images/XUFEDEX/RDY70_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY71_WESTPOST {
  background: url(/images/XUFEDEX/RDY71_WESTPOST.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_RDY70_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY70_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_RDY67_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY67_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-HYEUS {
  background: url(/images/XUFEDEX/HYEUS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY63_UPS {
  background: url(/images/XUFEDEX/RDY63_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY68_UPS {
  background: url(/images/XUFEDEX/RDY68_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY87_UPS {
  background: url(/images/XUFEDEX/RDY87_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY98_FEDEX {
  background: url(/images/XUFEDEX/RDY98_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY99_FEDEX {
  background: url(/images/XUFEDEX/RDY99_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY102_FEDEX {
  background: url(/images/XUFEDEX/RDY102_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-YLFEDEX {
  background: url(/images/XUFEDEX/YLFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY108_FEDEX {
  background: url(/images/XUFEDEX/RDY108_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY97_FEDEX {
  background: url(/images/XUFEDEX/RDY97_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY113_FEDEX {
  background: url(/images/XUFEDEX/RDY113_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY114_FEDEX {
  background: url(/images/XUFEDEX/RDY114_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY115_FEDEX {
  background: url(/images/XUFEDEX/RDY115_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY123_FEDEX {
  background: url(/images/XUFEDEX/RDY123_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY124_FEDEX {
  background: url(/images/XUFEDEX/RDY124_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY113_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY113_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_RDY113_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY113_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY110_FEDEX {
  background: url(/images/XUFEDEX/RDY110_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_FEDEX_NEW {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY105_FEDEX {
  background: url(/images/XUFEDEX/RDY105_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY107_FEDEX {
  background: url(/images/XUFEDEX/RDY107_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY86_UPS {
  background: url(/images/XUUPS/RDY86_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY98_UPS {
  background: url(/images/XUUPS/RDY98_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY88_UPS {
  background: url(/images/XUUPS/RDY88_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY106_UPS {
  background: url(/images/XUUPS/RDY106_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY117_UPS {
  background: url(/images/XUUPS/RDY117_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY119_UPS {
  background: url(/images/XUUPS/RDY119_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY123_UPS {
  background: url(/images/XUUPS/RDY123_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-YLUPS {
  background: url(/images/XUUPS/YLUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY100_UPS {
  background: url(/images/XUUPS/RDY100_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY66_UPS {
  background: url(/images/XUFEDEX/RDY66_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY66_UPS_A {
  background: url(/images/XUFEDEX/RDY66_UPS_A.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY10_FEDEX {
  background: url(/images/XUFEDEX/RDY10_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY85_FEDEX {
  background: url(/images/XUFEDEX/RDY85_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY84_FEDEX {
  background: url(/images/XUFEDEX/RDY84_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY89_FEDEX {
  background: url(/images/XUFEDEX/RDY89_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-FEDEX_NEW {
  background: url(/images/XUFEDEX/FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY90_FEDEX {
  background: url(/images/XUFEDEX/RDY90_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY21_FEDEX {
  background: url(/images/XUFEDEX/RDY21_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY56_FEDEX {
  background: url(/images/XUFEDEX/RDY56_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY82_FEDEX {
  background: url(/images/XUFEDEX/RDY82_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY81_FEDEX {
  background: url(/images/XUFEDEX/RDY81_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-GLS_OFFICAL {
  background: url(/images/XUFEDEX/GLS_OFFICAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY122_GLS_OFFICAL {
  background: url(/images/XUFEDEX/RDY122_GLS_OFFICAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY29_FEDEX {
  background: url(/images/XUFEDEX/RDY29_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -186px 20px;
}
.express-choose2 .choose-RDY28_LESTLABEL {
  background: url(/images/XUFEDEX/RDY28_LESTLABEL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -180px 0px;
}
.express-choose2 .choose-DHLPAKET {
  background: url(/images/XUFEDEX/DHLPAKET.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -179px 8px;
}
.express-choose2 .choose-RDY108_DHL {
  background: url(/images/XUFEDEX/RDY108_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -179px 8px;
}
.express-choose2 .choose-RDY113_DHL {
  background: url(/images/XUFEDEX/RDY113_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -179px 8px;
}
.express-choose2 .choose-SHRN_DHL {
  background: url(/images/XUFEDEX/SHRN_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -179px 8px;
}
.express-choose2 .choose-DHLEU {
  background: url(/images/XUFEDEX/DHLEU.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -179px 8px;
}
.express-choose2 .choose-UPS_AM1 {
  background: url(/images/XUFEDEX/UPS_AM1.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY20_UPS {
  background: url(/images/XUFEDEX/RDY20_Eurocom.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY14_USPS {
  background: url(/images/XUFEDEX/RDY14_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_K {
  background: url(/images/XUUPS/SUPER_LABEL_K.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -180px 8px;
}
.express-choose2 .choose-RDY19_UPS {
  background: url(/images/XUFEDEX/RDY19_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-BPOST {
  background: url(/images/XUFEDEX/BPOST.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -178px 3px;
}
.express-choose2 .choose-DEUTSCHE_POST {
  background: url(/images/XUFEDEX/DEUTSCHE_POST.png?v=1) no-repeat;
  width: 190px;
  height: 80px;
  background-position: -280px 1px;
}
.express-choose2 .choose-RDY14_UPS {
  background: url(/images/XUFEDEX/RDY14_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY26_UPS {
  background: url(/images/XUFEDEX/RDY26_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY39_USPS {
  background: url(/images/XUFEDEX/RDY39_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-BSYD {
  background: url(/images/XUFEDEX/BSYD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY53_USPS {
  background: url(/images/XUFEDEX/RDY53_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY64_USPS {
  background: url(/images/XUFEDEX/RDY64_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY68_USPS {
  background: url(/images/XUFEDEX/RDY68_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_UPS_NEW_USPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_NEW_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-UPS_NEW_USPS {
  background: url(/images/XUUPS/UPS_NEW_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY91_USPS {
  background: url(/images/XUFEDEX/RDY91_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY94_USPS {
  background: url(/images/XUFEDEX/RDY94_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-YLUSPS {
  background: url(/images/XUFEDEX/YLUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY94_FEDEX {
  background: url(/images/XUFEDEX/RDY94_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY94_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY94_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY84_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY84_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY96_USPS {
  background: url(/images/XUFEDEX/RDY96_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY111_USPS {
  background: url(/images/XUFEDEX/RDY111_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY116_USPS {
  background: url(/images/XUFEDEX/RDY116_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY112_USPS {
  background: url(/images/XUFEDEX/RDY112_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY108_USPS {
  background: url(/images/XUFEDEX/RDY108_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-USPSV3 {
  background: url(/images/XUFEDEX/USPSV3.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY98_USPS {
  background: url(/images/XUFEDEX/RDY98_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_RDY64_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY64_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-EASYACCESS {
  background: url(/images/XUFEDEX/EASYACCESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-PUROLATOR {
  background: url(/images/XUFEDEX/PUROLATOR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY4_USPS {
  background: url(/images/XUFEDEX/RDY4_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-FURTHERTRY {
  background: url(/images/XUFEDEX/FURTHERTRY.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY38_UPS {
  background: url(/images/XUUPS/RDY38_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY43_UPS {
  background: url(/images/XUUPS/RDY43_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY49_UPS {
  background: url(/images/XUUPS/RDY49_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY27_UPS {
  background: url(/images/XUFEDEX/RDY27_UPS_CWT.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTE_ITALIANE {
  background: url(/images/XUFEDEX/POSTE_ITALIANE.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY14_FEDEX {
  background: url(/images/XUFEDEX/RDY14_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY38_FEDEX {
  background: url(/images/XUFEDEX/RDY38_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY68_FEDEX {
  background: url(/images/XUFEDEX/RDY68_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY69_FEDEX {
  background: url(/images/XUFEDEX/RDY69_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-SUPER_LABEL_RDY68_UPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY68_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-RDY42_FEDEX {
  background: url(/images/XUFEDEX/RDY42_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-SUPER_LABEL_RDY42_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY42_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 17px;
}
.express-choose2 .choose-KDW_SP {
  background: url(/images/XUFEDEX/KDW_SP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-POSTPONY_FEDEX {
  background: url(/images/XUFEDEX/POSTPONY_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-HUALEI_UPS {
  background: url(/images/XUFEDEX/HUALEI_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_FEDEX_V1 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V1.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_FEDEX_V2 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V2.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_FEDEX_V3 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V3.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_TAOMORE {
  background: url(/images/XUFEDEX/SUPER_LABEL_TAOMORE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-GPSUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/GPSUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SPL_FEDEX {
  background: url(/images/XUFEDEX/SPL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 18px;
}
.express-choose2 .choose-WT_FEDEX {
  background: url(/images/XUFEDEX/WT_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 18px;
}
.express-choose2 .choose-BBTEX_UPS {
  background: url(/images/XUUPS/BBTEX_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-XMS_UPS {
  background: url(/images/XUUPS/XMS_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY9_UPS {
  background: url(/images/XUUPS/RDY9_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY32_UPS {
  background: url(/images/XUUPS/RDY32_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY51_REXPRESS {
  background: url(/images/XUUPS/RDY51_REXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-SUPER_LABEL_REXPRESS {
  background: url(/images/XUUPS/SUPER_LABEL_REXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY105_UPS {
  background: url(/images/XUUPS/RDY105_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY42_UPS {
  background: url(/images/XUUPS/RDY42_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-UPS_AM_NEW {
  background: url(/images/XUFEDEX/UPS_AM_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY47_LTL {
  background: url(/images/XUFEDEX/RDY47_LTL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-AU_POST {
  background: url(/images/XUUPS/AU_POST.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -180px 0px;
}
.express-choose2 .choose-STAR_TRACK {
  background: url(/images/XUUPS/STAR_TRACK.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -180px 20px;
}
.express-choose2 .choose-RDY12_UPS {
  background: url(/images/XUUPS/RDY12_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY17_UPS {
  background: url(/images/XUUPS/RDY17_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 8px;
}
.express-choose2 .choose-RDY13_CANPAR {
  background: url(/images/XUUPS/RDY13_CANPAR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -82px 8px;
}
.express-choose2 .choose-SUPER_LABEL_KDW_SP {
  background: url(/images/XUFEDEX/SUPER_LABEL_KDW_SP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -180px 20px;
}
.express-choose2 .choose-PB {
  background: url(/images/XUUPS/PB.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-EZUSPS {
  background: url(/images/XUUPS/EZUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -178px 16px;
}
.express-choose2 .choose-HUODOU {
  background: url(/images/LC.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-SS {
  background: url(/images/SS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-TAOMORE {
  background: url(/images/TAOMORE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-COFEDEX {
  background: url(/images/COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -180px 0px;
}
.express-choose2 .choose-ACOFEDEX {
  background: url(/images/ACOFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 30px;
}
.express-choose2 .choose-HL {
  background: url(/images/HL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-USPSDLHMG {
  background: url(/images/HMG/USPSDL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -170px 0px;
}
.express-choose2 .choose-GFPRP {
  background: url(/images/DBI/GFPRP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -175px -5px;
}
.express-choose2 .choose-UPS {
  background-position: -180px -80px;
}
.express-choose2 .choose-SUPER_LABEL_UPS_NEW {
  background-position: -180px -80px;
}
.express-choose2 .choose-FEDEX {
  background-position: -180px -160px;
}
.express-choose2 .choose-DHL {
  background-position: -180px -240px;
}
.express-choose2 .choose-USPSPRESORT {
  background-position: -178px -305px;
}
.express-choose2 .choose-KCTD {
  background: url(/images/KCTD/KCTD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -175px -5px;
}
.express-choose2 .choose-YC {
  background: url(/images/YC/YC.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -175px -5px;
}
.express-choose2 .choose-XD {
  background: url(/images/YC/XD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -175px -6px;
}
.express-choose2 .choose-K {
  background-position: -180px -80px;
}
.express-choose2 .active .choose-USPSDLMK {
  background: url(/images/MK/USPSDL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-WD {
  background: url(/images/SVE/WD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-KDW_PB {
  background: url(/images/SVE/KDW_PB.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-USPSCOM {
  background: url(/images/SVE/USPSCOM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-WT_USPS {
  background: url(/images/SVE/WTUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-USPS_A {
  background: url(/images/SVE/USPS_A.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-EP {
  background: url(/images/SVE/EP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-ZDA {
  background: url(/images/SVE/ZDA.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-SUPER_LABEL_ZDA {
  background: url(/images/SVE/SUPER_LABEL_ZDA.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-SUPER_LABEL_USPSOFFICIAL {
  background: url(/images/SVE/SUPER_LABEL_USPSOFFICIAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-USPS2020 {
  background: url(/images/SVE/USPS2020.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-USPSOFFICIAL {
  background: url(/images/SVE/USPSOFFICIAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-SUPER_LABEL_HWCSH {
  background: url(/images/SVE/SUPER_LABEL_HWCSH.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-RDY37_USPS {
  background: url(/images/SVE/RDY37_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-RDY23_VITE {
  background: url(/images/SVE/RDY23_VITE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-RDY8_USPS {
  background: url(/images/SVE/RDY8_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-RDY5_USPS {
  background: url(/images/SVE/RDY5_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-COUSPS {
  background: url(/images/COUSPS/COUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-BTI {
  background: url(/images/BTI/BTI.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-POSTPONY {
  background: url(/images/POSTPONY/POSTPONY.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-XU {
  background: url(/images/XU/XU.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 26px;
}
.express-choose2 .active .choose-HL {
  background: url(/images/HL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-EZFEDEX {
  background: url(/images/EZFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-XUFEDEX {
  background: url(/images/XUFEDEX/XUFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-BBTEX_FEDEX {
  background: url(/images/XUFEDEX/BBTEX_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-NHUPS {
  background: url(/images/XUUPS/NHUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-DN {
  background: url(/images/XUFEDEX/DN.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-XDFEDEX {
  background: url(/images/XUFEDEX/XDFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
  background-size: 360px 80px;
}
.express-choose2 .active .choose-RDY72_SHIP {
  background: url(/images/XUFEDEX/RDY72_SHIP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
  background-size: 360px 80px;
}
.express-choose2 .active .choose-HL_USPS {
  background: url(/images/XUFEDEX/HL_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0;
  background-size: 360px 80px;
}
.express-choose2 .active .choose-HL_FEDEX {
  background: url(/images/XUFEDEX/HL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-size: 360px 80px;
}
.express-choose2 .active .choose-DBI {
  background: url(/images/XUFEDEX/DBI.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-XUUPS {
  background: url(/images/XUUPS/XUUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY75_UPS {
  background: url(/images/XUUPS/RDY75_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY83_UPS {
  background: url(/images/XUUPS/RDY83_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY84_UPS {
  background: url(/images/XUUPS/RDY84_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY84_UPS_NEW {
  background: url(/images/XUUPS/RDY84_UPS_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY84_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_RDY84_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY80_UPS {
  background: url(/images/XUUPS/RDY80_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-UPS_NEW {
  background: url(/images/XUUPS/UPS_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY75_FEDEX {
  background: url(/images/XUFEDEX/RDY75_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY58_UPS {
  background: url(/images/XUUPS/RDY58_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-COUPS {
  background: url(/images/XUFEDEX/COUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY74_UPS {
  background: url(/images/XUFEDEX/RDY74_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_COUPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_COUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-UPS_AM {
  background: url(/images/XUUPS/UPS_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_UPS_AM {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY11_UPS {
  background: url(/images/XUUPS/RDY11_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY2_UPS {
  background: url(/images/XUUPS/RDY2_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY4_UPS {
  background: url(/images/XUUPS/RDY4_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-ZDAShIPSAV {
  background: url(/images/XUFEDEX/ZDAShIPSAV.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-ECOMMERCE_UPS {
  background: url(/images/XUUPS/ECOMMERCE_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY3_USPS {
  background: url(/images/XUUPS/RDY3_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -3px 8px;
}
.express-choose2 .active .choose-RDY55_UPS {
  background: url(/images/XUUPS/RDY55_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: -3px 8px;
}
.express-choose2 .active .choose-DHL_EXPRESS {
  background: url(/images/play/DHL_EXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-MKNUPS {
  background: url(/images/XUUPS/MKNUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-UPS8E2 {
  background: url(/images/XUUPS/UPS8E2.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-ALLTHELINKS {
  background: url(/images/XUUPS/ALLTHELINKS_UPS_Ground.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY6_UPS {
  background: url(/images/XUUPS/RDY6_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SZZR {
  background: url(/images/XUUPS/SZZR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY15_UPS {
  background: url(/images/XUUPS/RDY15_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 3px 8px;
}
.express-choose2 .active .choose-RDY7_USPS {
  background: url(/images/XUUPS/RDY7_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-POSTPONY_UPS {
  background: url(/images/XUUPS/POSTPONY_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-KDWUPS {
  background: url(/images/XUUPS/KDWUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-FJUPS {
  background: url(/images/XUUPS/FJUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-POSTX {
  background: url(/images/POSTX/POSTX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-POSTX_MEXICO {
  background: url(/images/POSTX/POSTX_MEXICO.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-COLISSIMO {
  background: url(/images/XUFEDEX/COLISSIMO.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 2px 0px;
}
.express-choose2 .active .choose-FEDEX_AM {
  background: url(/images/XUFEDEX/FEDEX_AM.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY73_FEDEX {
  background: url(/images/XUFEDEX/RDY73_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY65_FEDEX {
  background: url(/images/XUFEDEX/RDY65_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY67_FEDEX {
  background: url(/images/XUFEDEX/RDY67_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY70_FEDEX {
  background: url(/images/XUFEDEX/RDY70_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY71_WESTPOST {
  background: url(/images/XUFEDEX/RDY71_WESTPOST.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY70_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY70_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY67_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY67_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-HYEUS {
  background: url(/images/XUFEDEX/HYEUS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY63_UPS {
  background: url(/images/XUFEDEX/RDY63_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY68_UPS {
  background: url(/images/XUFEDEX/RDY68_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY87_UPS {
  background: url(/images/XUFEDEX/RDY87_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY98_FEDEX {
  background: url(/images/XUFEDEX/RDY98_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY99_FEDEX {
  background: url(/images/XUFEDEX/RDY99_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY102_FEDEX {
  background: url(/images/XUFEDEX/RDY102_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-YLFEDEX {
  background: url(/images/XUFEDEX/YLFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY108_FEDEX {
  background: url(/images/XUFEDEX/RDY108_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY97_FEDEX {
  background: url(/images/XUFEDEX/RDY97_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY113_FEDEX {
  background: url(/images/XUFEDEX/RDY113_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY114_FEDEX {
  background: url(/images/XUFEDEX/RDY114_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY115_FEDEX {
  background: url(/images/XUFEDEX/RDY115_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY123_FEDEX {
  background: url(/images/XUFEDEX/RDY123_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY124_FEDEX {
  background: url(/images/XUFEDEX/RDY124_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY113_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY113_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY113_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY113_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY110_FEDEX {
  background: url(/images/XUFEDEX/RDY110_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_FEDEX_NEW {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY105_FEDEX {
  background: url(/images/XUFEDEX/RDY105_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY107_FEDEX {
  background: url(/images/XUFEDEX/RDY107_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY86_UPS {
  background: url(/images/XUUPS/RDY86_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY98_UPS {
  background: url(/images/XUUPS/RDY98_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY88_UPS {
  background: url(/images/XUUPS/RDY88_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY106_UPS {
  background: url(/images/XUUPS/RDY106_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY117_UPS {
  background: url(/images/XUUPS/RDY117_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY119_UPS {
  background: url(/images/XUUPS/RDY119_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY123_UPS {
  background: url(/images/XUUPS/RDY123_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-YLUPS {
  background: url(/images/XUUPS/YLUPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY100_UPS {
  background: url(/images/XUUPS/RDY100_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY66_UPS {
  background: url(/images/XUFEDEX/RDY66_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY66_UPS_A {
  background: url(/images/XUFEDEX/RDY66_UPS_A.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY10_FEDEX {
  background: url(/images/XUFEDEX/RDY10_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY85_FEDEX {
  background: url(/images/XUFEDEX/RDY85_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY84_FEDEX {
  background: url(/images/XUFEDEX/RDY84_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY89_FEDEX {
  background: url(/images/XUFEDEX/RDY89_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-FEDEX_NEW {
  background: url(/images/XUFEDEX/FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY90_FEDEX {
  background: url(/images/XUFEDEX/RDY90_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY21_FEDEX {
  background: url(/images/XUFEDEX/RDY21_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY56_FEDEX {
  background: url(/images/XUFEDEX/RDY56_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY82_FEDEX {
  background: url(/images/XUFEDEX/RDY82_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY81_FEDEX {
  background: url(/images/XUFEDEX/RDY81_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-GLS_OFFICAL {
  background: url(/images/XUFEDEX/GLS_OFFICAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY122_GLS_OFFICAL {
  background: url(/images/XUFEDEX/RDY122_GLS_OFFICAL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY29_FEDEX {
  background: url(/images/XUFEDEX/RDY29_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY28_LESTLABEL {
  background: url(/images/XUFEDEX/RDY28_LESTLABEL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-DHLPAKET {
  background: url(/images/XUFEDEX/DHLPAKET.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -2px 8px;
}
.express-choose2 .active .choose-RDY108_DHL {
  background: url(/images/XUFEDEX/RDY108_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -2px 8px;
}
.express-choose2 .active .choose-RDY113_DHL {
  background: url(/images/XUFEDEX/RDY113_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -2px 8px;
}
.express-choose2 .active .choose-SHRN_DHL {
  background: url(/images/XUFEDEX/SHRN_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -2px 8px;
}
.express-choose2 .active .choose-DHLEU {
  background: url(/images/XUFEDEX/DHLEU.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: -2px 8px;
}
.express-choose2 .active .choose-UPS_AM1 {
  background: url(/images/XUFEDEX/UPS_AM1.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY20_UPS {
  background: url(/images/XUFEDEX/RDY20_Eurocom.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY14_USPS {
  background: url(/images/XUFEDEX/RDY14_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_K {
  background: url(/images/XUUPS/SUPER_LABEL_K.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 7px 8px;
}
.express-choose2 .active .choose-RDY19_UPS {
  background: url(/images/XUFEDEX/RDY19_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-BPOST {
  background: url(/images/XUFEDEX/BPOST.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 0px 3px;
}
.express-choose2 .active .choose-DEUTSCHE_POST {
  background: url(/images/XUFEDEX/DEUTSCHE_POST.png?v=1) no-repeat;
  width: 190px;
  height: 80px;
  background-position: -29px 1px;
}
.express-choose2 .active .choose-RDY14_UPS {
  background: url(/images/XUFEDEX/RDY14_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY26_UPS {
  background: url(/images/XUFEDEX/RDY26_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY39_USPS {
  background: url(/images/XUFEDEX/RDY39_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-BSYD {
  background: url(/images/XUFEDEX/BSYD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY53_USPS {
  background: url(/images/XUFEDEX/RDY53_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY64_USPS {
  background: url(/images/XUFEDEX/RDY64_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY68_USPS {
  background: url(/images/XUFEDEX/RDY68_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_UPS_NEW_USPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_NEW_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-UPS_NEW_USPS {
  background: url(/images/XUUPS/UPS_NEW_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY91_USPS {
  background: url(/images/XUFEDEX/RDY91_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY94_USPS {
  background: url(/images/XUFEDEX/RDY94_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-YLUSPS {
  background: url(/images/XUFEDEX/YLUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY94_FEDEX {
  background: url(/images/XUFEDEX/RDY94_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY94_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY94_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY84_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY84_FEDEX_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY96_USPS {
  background: url(/images/XUFEDEX/RDY96_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY111_USPS {
  background: url(/images/XUFEDEX/RDY111_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY116_USPS {
  background: url(/images/XUFEDEX/RDY116_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY112_USPS {
  background: url(/images/XUFEDEX/RDY112_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY108_USPS {
  background: url(/images/XUFEDEX/RDY108_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-USPSV3 {
  background: url(/images/XUFEDEX/USPSV3.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY98_USPS {
  background: url(/images/XUFEDEX/RDY98_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY64_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY64_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-EASYACCESS {
  background: url(/images/XUFEDEX/EASYACCESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-PUROLATOR {
  background: url(/images/XUFEDEX/PUROLATOR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY4_USPS {
  background: url(/images/XUFEDEX/RDY4_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-FURTHERTRY {
  background: url(/images/XUFEDEX/FURTHERTRY.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY38_UPS {
  background: url(/images/XUUPS/RDY38_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY43_UPS {
  background: url(/images/XUUPS/RDY43_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY49_UPS {
  background: url(/images/XUUPS/RDY49_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY27_UPS {
  background: url(/images/XUFEDEX/RDY27_UPS_CWT.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-POSTE_ITALIANE {
  background: url(/images/XUFEDEX/POSTE_ITALIANE.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 2px 8px;
}
.express-choose2 .active .choose-RDY14_FEDEX {
  background: url(/images/XUFEDEX/RDY14_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-RDY38_FEDEX {
  background: url(/images/XUFEDEX/RDY38_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-RDY68_FEDEX {
  background: url(/images/XUFEDEX/RDY68_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-RDY69_FEDEX {
  background: url(/images/XUFEDEX/RDY69_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY68_UPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY68_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-RDY42_FEDEX {
  background: url(/images/XUFEDEX/RDY42_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-SUPER_LABEL_RDY42_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY42_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 17px;
}
.express-choose2 .active .choose-KDW_SP {
  background: url(/images/XUFEDEX/KDW_SP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_KDW_SP {
  background: url(/images/XUFEDEX/SUPER_LABEL_KDW_SP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 13px 20px;
}
.express-choose2 .active .choose-POSTPONY_FEDEX {
  background: url(/images/XUFEDEX/POSTPONY_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-HUALEI_UPS {
  background: url(/images/XUFEDEX/HUALEI_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_FEDEX_V1 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V1.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_FEDEX_V2 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V2.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_FEDEX_V3 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V3.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_TAOMORE {
  background: url(/images/XUFEDEX/SUPER_LABEL_TAOMORE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_USPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-GPSUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/GPSUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SPL_FEDEX {
  background: url(/images/XUFEDEX/SPL_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 18px;
}
.express-choose2 .active .choose-WT_FEDEX {
  background: url(/images/XUFEDEX/WT_FEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 18px;
}
.express-choose2 .active .choose-BBTEX_UPS {
  background: url(/images/XUUPS/BBTEX_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-XMS_UPS {
  background: url(/images/XUUPS/XMS_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY9_UPS {
  background: url(/images/XUUPS/RDY9_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY32_UPS {
  background: url(/images/XUUPS/RDY32_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY51_REXPRESS {
  background: url(/images/XUUPS/RDY51_REXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-SUPER_LABEL_REXPRESS {
  background: url(/images/XUUPS/SUPER_LABEL_REXPRESS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY105_UPS {
  background: url(/images/XUUPS/RDY105_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY42_UPS {
  background: url(/images/XUUPS/RDY42_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-UPS_AM_NEW {
  background: url(/images/XUFEDEX/UPS_AM_NEW.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY47_LTL {
  background: url(/images/XUFEDEX/RDY47_LTL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-AU_POST {
  background: url(/images/XUUPS/AU_POST.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-STAR_TRACK {
  background: url(/images/XUUPS/STAR_TRACK.png?v=1) no-repeat;
  background-size: 360px 80px;
  width: 180px;
  height: 80px;
  background-position: 0px 20px;
}
.express-choose2 .active .choose-RDY17_UPS {
  background: url(/images/XUUPS/RDY17_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY12_UPS {
  background: url(/images/XUUPS/RDY12_UPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 8px;
}
.express-choose2 .active .choose-RDY13_CANPAR {
  background: url(/images/XUUPS/RDY13_CANPAR.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 62px 8px;
}
.express-choose2 .active .choose-DE_DPD {
  background: url(/images/XUUPS/DE_DPD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 25px 8px;
}
.express-choose2 .active .choose-PB {
  background: url(/images/XUUPS/PB.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 62px 16px;
}
.express-choose2 .active .choose-EZUSPS {
  background: url(/images/XUUPS/EZUSPS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 16px;
}
.express-choose2 .active .choose-HUODOU {
  background: url(/images/LC.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-SS {
  background: url(/images/SS.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-TAOMORE {
  background: url(/images/TAOMORE.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-COFEDEX {
  background: url(/images/COFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-ACOFEDEX {
  background: url(/images/ACOFEDEX.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 20px 30px;
}
.express-choose2 .active .choose-USPSDLHMG {
  background: url(/images/HMG/USPSDL.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px 0px;
}
.express-choose2 .active .choose-GFPRP {
  background: url(/images/DBI/GFPRP.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px -5px;
}
.express-choose2 .active .choose-USPS {
  background-position: 0px 0px;
}
.express-choose2 .active .choose-SVE {
  background-position: 0px 0px;
}
.express-choose2 .active .choose-UPS {
  background-position: 0px -80px;
}
.express-choose2 .active .choose-SUPER_LABEL_UPS_NEW {
  background-position: 0px -80px;
}
.express-choose2 .active .choose-FEDEX {
  background-position: 0px -160px;
}
.express-choose2 .active .choose-DHL {
  background-position: 0px -240px;
}
.express-choose2 .active .choose-USPSPRESORT {
  background-position: 0px -305px;
}
.express-choose2 .active .choose-KCTD {
  background: url(/images/KCTD/KCTD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px -5px;
}
.express-choose2 .active .choose-YC {
  background: url(/images/YC/YC.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px -5px;
}
.express-choose2 .active .choose-XD {
  background: url(/images/YC/XD.png?v=1) no-repeat;
  width: 180px;
  height: 80px;
  background-position: 0px -5px;
}
.express-choose2 .active .choose-K {
  background-position: 0px -80px;
}
.small-express {
  background: url(/images/play/express.jpg?v=1) no-repeat;
  background-size: 180px 180px;
  width: 90px;
  height: 40px;
  display: block;
}
.small-express-USPS {
  background-position: 0px 4px;
}
.small-express-SVE {
  background-position: 0px 4px;
}
.small-express-HL {
  background: url(/images/HL.png?v=1) no-repeat;
  background-position: 0px -5px;
  background-size: auto 46px;
}
.small-express-USPSDL {
  background-position: 0px 4px;
}
.small-express-UPS {
  background-position: 0px -30px;
}
.small-express-SUPER_LABEL_UPS_NEW {
  background-position: 0px -30px;
}
.small-express-FEDEX {
  background-position: 0px -75px;
}
.small-express-DHL {
  background-position: 0px -108px;
}
.small-express-USPSMY {
  background-position: 0px 4px;
}
.small-express-USPSPRESORT {
  background-position: 0px -125px;
}
.small-express-GFPRP {
  background-position: 0px -30px;
}
.small-express-WT {
  background-position: 0px -65px;
}
.small-express-KKKK {
  background-position: 0px 4px;
}
.small-express-KCTD {
  background: url(/images/KCTD/KCTD.png?v=1) no-repeat;
  background-position: 0px -5px;
  background-size: auto 46px;
}
.small-express-YC {
  background: url(/images/YC/YC.png?v=1) no-repeat;
  background-position: 0px -5px;
  background-size: auto 46px;
}
.small-express-XD {
  background: url(/images/YC/XD.png?v=1) no-repeat;
  background-position: 0px -5px;
  background-size: auto 46px;
}
.small-express-SS {
  background: url(/images/SS.png?v=1) no-repeat;
  background-position: 0px -4px;
  background-size: auto 46px;
}
.small-express-SVE {
  background-position: 0px 4px;
}
.small-express-WD {
  background: url(/images/SVE/WD.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-KDW_PB {
  background: url(/images/SVE/KDW_PB.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-USPSCOM {
  background: url(/images/SVE/USPSCOM.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-WT_USPS {
  background: url(/images/SVE/WTUSPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-USPS_A {
  background: url(/images/SVE/USPS_A.png?v=1) no-repeat;
  background-position: -5px -4px;
  background-size: 180px auto;
}
.small-express-EP {
  background: url(/images/SVE/EP.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-ZDA {
  background: url(/images/SVE/ZDA.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_ZDA {
  background: url(/images/SVE/SUPER_LABEL_ZDA.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_USPSOFFICIAL {
  background: url(/images/SVE/SUPER_LABEL_USPSOFFICIAL.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-MK_USPS {
  background: url(/images/SVE/MKUSPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-USPS2020 {
  background: url(/images/SVE/USPS2020.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-USPSOFFICIAL {
  background: url(/images/SVE/USPSOFFICIAL.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_HWCSH {
  background: url(/images/SVE/SUPER_LABEL_HWCSH.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY37_USPS {
  background: url(/images/SVE/RDY37_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY23_VITE {
  background: url(/images/SVE/RDY23_VITE.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY8_USPS {
  background: url(/images/SVE/RDY8_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY5_USPS {
  background: url(/images/SVE/RDY5_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-K {
  background-position: 0px -30px;
}
.small-express-COUSPS {
  background: url(/images/COUSPS/COUSPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-BTI {
  background: url(/images/BTI/BTIS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-POSTPONY {
  background: url(/images/POSTPONY/POSTPONY.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XU {
  background: url(/images/XU/XU.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XUFEDEX {
  background: url(/images/XUFEDEX/XUFEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XUFEDEX {
  background: url(/images/XUFEDEX/BBTEX_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-NHUPS {
  background: url(/images/XUUPS/NHUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-DN {
  background: url(/images/XUFEDEX/DN.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XDFEDEX {
  background: url(/images/XUFEDEX/XDFEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY72_SHIP {
  background: url(/images/XUFEDEX/RDY72_SHIP.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-HL_USPS {
  background: url(/images/XUFEDEX/HL_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-HL_FEDEX {
  background: url(/images/XUFEDEX/HL_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-DBI {
  background: url(/images/XUFEDEX/DBI.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XUUPS {
  background: url(/images/XUUPS/XUUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY75_UPS {
  background: url(/images/XUUPS/RDY75_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY83_UPS {
  background: url(/images/XUUPS/RDY83_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY84_UPS {
  background: url(/images/XUUPS/RDY84_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY84_UPS_NEW {
  background: url(/images/XUUPS/RDY84_UPS_NEW.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY84_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_RDY84_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY80_UPS {
  background: url(/images/XUUPS/RDY80_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-UPS_NEW {
  background: url(/images/XUUPS/UPS_NEW.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY75_FEDEX {
  background: url(/images/XUFEDEX/RDY75_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY58_UPS {
  background: url(/images/XUUPS/RDY58_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-COUPS {
  background: url(/images/XUFEDEX/COUPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY74_UPS {
  background: url(/images/XUFEDEX/RDY74_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_COUPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_COUPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-UPS_AM {
  background: url(/images/XUUPS/UPS_AM.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_UPS_AM {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_AM.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY11_UPS {
  background: url(/images/XUUPS/RDY11_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY2_UPS {
  background: url(/images/XUUPS/RDY2_UPS.png?v=1) no-repeat;
  background-position: 1px 5px;
  background-size: 180px auto;
}
.small-express-RDY4_UPS {
  background: url(/images/XUUPS/RDY4_UPS.png?v=1) no-repeat;
  background-position: 1px 5px;
  background-size: 180px auto;
}
.small-express-ZDAShIPSAV {
  background: url(/images/XUFEDEX/ZDAShIPSAV.png?v=1) no-repeat;
  background-position: 1px 5px;
  background-size: 180px auto;
}
.small-express-ECOMMERCE_UPS {
  background: url(/images/XUUPS/ECOMMERCE_UPS.png?v=1) no-repeat;
  background-position: 1px 5px;
  background-size: 180px auto;
}
.small-express-RDY3_USPS {
  background: url(/images/XUUPS/RDY3_USPS.png?v=1) no-repeat;
  background-position: 0px 8px;
  background-size: 120px auto;
}
.small-express-RDY55_UPS {
  background: url(/images/XUUPS/RDY55_UPS.png?v=1) no-repeat;
  background-position: 0px 8px;
  background-size: 120px auto;
}
.small-express-DHL_EXPRESS {
  background: url(/images/play/DHL_EXPRESS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-MKNUPS {
  background: url(/images/XUUPS/MKNUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_UPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-UPS8E2 {
  background: url(/images/XUUPS/UPS8E2.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-ALLTHELINKS {
  background: url(/images/XUUPS/ALLTHELINKS_UPS_Ground.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY6_UPS {
  background: url(/images/XUUPS/RDY6_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SZZR {
  background: url(/images/XUUPS/SZZR.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY15_UPS {
  background: url(/images/XUUPS/RDY15_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY7_USPS {
  background: url(/images/XUUPS/RDY7_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-POSTPONY_UPS {
  background: url(/images/XUUPS/POSTPONY_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-KDWUPS {
  background: url(/images/XUUPS/KDWUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-FJUPS {
  background: url(/images/XUUPS/FJUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-POSTX {
  background: url(/images/POSTX/POSTX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-POSTX_MEXICO {
  background: url(/images/POSTX/POSTX_MEXICO.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-COLISSIMO {
  background: url(/images/XUFEDEX/COLISSIMO.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-FEDEX_AM {
  background: url(/images/XUFEDEX/FEDEX_AM.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY73_FEDEX {
  background: url(/images/XUFEDEX/RDY73_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY65_FEDEX {
  background: url(/images/XUFEDEX/RDY65_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY67_FEDEX {
  background: url(/images/XUFEDEX/RDY67_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY70_FEDEX {
  background: url(/images/XUFEDEX/RDY70_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY71_WESTPOST {
  background: url(/images/XUFEDEX/RDY71_WESTPOST.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY70_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY70_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY67_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY67_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-HYEUS {
  background: url(/images/XUFEDEX/HYEUS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY63_UPS {
  background: url(/images/XUFEDEX/RDY63_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY68_UPS {
  background: url(/images/XUFEDEX/RDY68_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY87_UPS {
  background: url(/images/XUFEDEX/RDY87_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY98_FEDEX {
  background: url(/images/XUFEDEX/RDY98_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY99_FEDEX {
  background: url(/images/XUFEDEX/RDY99_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY102_FEDEX {
  background: url(/images/XUFEDEX/RDY102_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-YLFEDEX {
  background: url(/images/XUFEDEX/YLFEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY108_FEDEX {
  background: url(/images/XUFEDEX/RDY108_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY97_FEDEX {
  background: url(/images/XUFEDEX/RDY97_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY113_FEDEX {
  background: url(/images/XUFEDEX/RDY113_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY114_FEDEX {
  background: url(/images/XUFEDEX/RDY114_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY115_FEDEX {
  background: url(/images/XUFEDEX/RDY115_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY123_FEDEX {
  background: url(/images/XUFEDEX/RDY123_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY124_FEDEX {
  background: url(/images/XUFEDEX/RDY124_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY113_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY113_FEDEX_NEW.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY113_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY113_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY110_FEDEX {
  background: url(/images/XUFEDEX/RDY110_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_FEDEX_NEW {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_NEW.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY105_FEDEX {
  background: url(/images/XUFEDEX/RDY105_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY107_FEDEX {
  background: url(/images/XUFEDEX/RDY107_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY86_UPS {
  background: url(/images/XUUPS/RDY86_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY98_UPS {
  background: url(/images/XUUPS/RDY98_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY88_UPS {
  background: url(/images/XUUPS/RDY88_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY106_UPS {
  background: url(/images/XUUPS/RDY106_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY117_UPS {
  background: url(/images/XUUPS/RDY117_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY119_UPS {
  background: url(/images/XUUPS/RDY119_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY123_UPS {
  background: url(/images/XUUPS/RDY123_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-YLUPS {
  background: url(/images/XUUPS/YLUPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY100_UPS {
  background: url(/images/XUUPS/RDY100_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY66_UPS {
  background: url(/images/XUFEDEX/RDY66_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY66_UPS_A {
  background: url(/images/XUFEDEX/RDY66_UPS_A.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY10_FEDEX {
  background: url(/images/XUFEDEX/RDY10_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY85_FEDEX {
  background: url(/images/XUFEDEX/RDY85_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY84_FEDEX {
  background: url(/images/XUFEDEX/RDY84_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY89_FEDEX {
  background: url(/images/XUFEDEX/RDY89_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-FEDEX_NEW {
  background: url(/images/XUFEDEX/FEDEX_NEW.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY90_FEDEX {
  background: url(/images/XUFEDEX/RDY90_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY21_FEDEX {
  background: url(/images/XUFEDEX/RDY21_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY56_FEDEX {
  background: url(/images/XUFEDEX/RDY56_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY82_FEDEX {
  background: url(/images/XUFEDEX/RDY82_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY81_FEDEX {
  background: url(/images/XUFEDEX/RDY81_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-GLS_OFFICAL {
  background: url(/images/XUFEDEX/GLS_OFFICAL.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY122_GLS_OFFICAL {
  background: url(/images/XUFEDEX/RDY122_GLS_OFFICAL.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY29_FEDEX {
  background: url(/images/XUFEDEX/RDY29_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY28_LESTLABEL {
  background: url(/images/XUFEDEX/RDY28_LESTLABEL.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-DHLPAKET {
  background: url(/images/XUFEDEX/DHLPAKET.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: -2px 8px;
  background-size: 180px auto;
}
.small-express-RDY108_DHL {
  background: url(/images/XUFEDEX/RDY108_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: -2px 8px;
  background-size: 180px auto;
}
.small-express-RDY113_DHL {
  background: url(/images/XUFEDEX/RDY113_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: -2px 8px;
  background-size: 180px auto;
}
.small-express-SHRN_DHL {
  background: url(/images/XUFEDEX/SHRN_DHL.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: -2px 8px;
  background-size: 180px auto;
}
.small-express-DHLEU {
  background: url(/images/XUFEDEX/DHLEU.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: -2px 8px;
  background-size: 180px auto;
}
.small-express-UPS_AM1 {
  background: url(/images/XUFEDEX/UPS_AM1.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY20_UPS {
  background: url(/images/XUFEDEX/RDY20_Eurocom.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY14_USPS {
  background: url(/images/XUFEDEX/RDY14_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_K {
  background: url(/images/XUUPS/SUPER_LABEL_K.png?v=1) no-repeat;
  background-position: 1px -1px;
  background-size: 180px auto;
}
.small-express-RDY19_UPS {
  background: url(/images/XUFEDEX/RDY19_UPS.png?v=1) no-repeat;
  background-position: 1px -1px;
  background-size: 180px auto;
}
.small-express-BPOST {
  background: url(/images/XUFEDEX/BPOST.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 1px -1px;
  background-size: 180px auto;
}
.small-express-DEUTSCHE_POST {
  background: url(/images/XUFEDEX/DEUTSCHE_POST.png?v=1) no-repeat;
  background-position: 1px -1px;
  background-size: 180px auto;
}
.small-express-RDY14_UPS {
  background: url(/images/XUFEDEX/RDY14_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY26_UPS {
  background: url(/images/XUFEDEX/RDY26_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY39_USPS {
  background: url(/images/XUFEDEX/RDY39_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-BSYD {
  background: url(/images/XUFEDEX/BSYD.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY53_USPS {
  background: url(/images/XUFEDEX/RDY53_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY64_USPS {
  background: url(/images/XUFEDEX/RDY64_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY68_USPS {
  background: url(/images/XUFEDEX/RDY68_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_UPS_NEW_USPS {
  background: url(/images/XUUPS/SUPER_LABEL_UPS_NEW_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-UPS_NEW_USPS {
  background: url(/images/XUUPS/UPS_NEW_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY91_USPS {
  background: url(/images/XUFEDEX/RDY91_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY94_USPS {
  background: url(/images/XUFEDEX/RDY94_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-YLUSPS {
  background: url(/images/XUFEDEX/YLUSPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY94_FEDEX {
  background: url(/images/XUFEDEX/RDY94_FEDEX.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY94_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY94_FEDEX_NEW.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY84_FEDEX_NEW {
  background: url(/images/XUFEDEX/RDY84_FEDEX_NEW.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY96_USPS {
  background: url(/images/XUFEDEX/RDY96_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY111_USPS {
  background: url(/images/XUFEDEX/RDY111_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY116_USPS {
  background: url(/images/XUFEDEX/RDY116_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY112_USPS {
  background: url(/images/XUFEDEX/RDY112_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY108_USPS {
  background: url(/images/XUFEDEX/RDY108_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-USPSV3 {
  background: url(/images/XUFEDEX/USPSV3.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY98_USPS {
  background: url(/images/XUFEDEX/RDY98_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY64_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY64_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-EASYACCESS {
  background: url(/images/XUFEDEX/EASYACCESS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-PUROLATOR {
  background: url(/images/XUFEDEX/PUROLATOR.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY4_USPS {
  background: url(/images/XUFEDEX/RDY4_USPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-FURTHERTRY {
  background: url(/images/XUFEDEX/FURTHERTRY.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY38_UPS {
  background: url(/images/XUUPS/RDY38_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY43_UPS {
  background: url(/images/XUUPS/RDY43_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY49_UPS {
  background: url(/images/XUUPS/RDY49_UPS.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY27_UPS {
  background: url(/images/XUFEDEX/RDY27_UPS_CWT.png?v=1) no-repeat;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-POSTE_ITALIANE {
  background: url(/images/XUFEDEX/POSTE_ITALIANE.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 1px 3px;
  background-size: 180px auto;
}
.small-express-RDY14_FEDEX {
  background: url(/images/XUFEDEX/RDY14_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY38_FEDEX {
  background: url(/images/XUFEDEX/RDY38_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY68_FEDEX {
  background: url(/images/XUFEDEX/RDY68_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY69_FEDEX {
  background: url(/images/XUFEDEX/RDY69_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY68_UPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY68_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY42_FEDEX {
  background: url(/images/XUFEDEX/RDY42_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_RDY42_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_RDY42_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-RDY13_CANPAR {
  background: url(/images/XUUPS/RDY13_CANPAR.png?v=1) no-repeat;
  background-position: 34px 10px;
  background-size: 83px auto;
}
.small-express-DE_DPD {
  background: url(/images/XUUPS/DE_DPD.png?v=1) no-repeat;
  background-position: 4px 10px;
  background-size: 173px auto;
}
.small-express-KDW_SP {
  background: url(/images/XUFEDEX/KDW_SP.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_KDW_SP {
  background: url(/images/XUFEDEX/SUPER_LABEL_KDW_SP.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-POSTPONY_FEDEX {
  background: url(/images/XUFEDEX/POSTPONY_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-HUALEI_UPS {
  background: url(/images/XUFEDEX/HUALEI_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_FEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_FEDEX_V1 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V1.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_FEDEX_V2 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V2.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_FEDEX_V3 {
  background: url(/images/XUFEDEX/SUPER_LABEL_FEDEX_V3.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_TAOMORE {
  background: url(/images/XUFEDEX/SUPER_LABEL_TAOMORE.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_USPS {
  background: url(/images/XUFEDEX/SUPER_LABEL_USPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/SUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-GPSUPER_LABEL_COFEDEX {
  background: url(/images/XUFEDEX/GPSUPER_LABEL_COFEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-SPL_FEDEX {
  background: url(/images/XUFEDEX/SPL_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-WT_FEDEX {
  background: url(/images/XUFEDEX/WT_FEDEX.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-BBTEX_UPS {
  background: url(/images/XUUPS/BBTEX_UPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-XMS_UPS {
  background: url(/images/XUUPS/XMS_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY9_UPS {
  background: url(/images/XUUPS/RDY9_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY32_UPS {
  background: url(/images/XUUPS/RDY32_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY51_REXPRESS {
  background: url(/images/XUUPS/RDY51_REXPRESS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-SUPER_LABEL_REXPRESS {
  background: url(/images/XUUPS/SUPER_LABEL_REXPRESS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY105_UPS {
  background: url(/images/XUUPS/RDY105_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY42_UPS {
  background: url(/images/XUUPS/RDY42_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-UPS_AM_NEW {
  background: url(/images/XUFEDEX/UPS_AM_NEW.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-RDY47_LTL {
  background: url(/images/XUFEDEX/RDY47_LTL.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-AU_POST {
  background: url(/images/XUUPS/AU_POST.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 0px 0px;
  background-size: 180px auto;
}
.small-express-STAR_TRACK {
  background: url(/images/XUUPS/STAR_TRACK.png?v=1) no-repeat;
  background-size: 360px 80px;
  background-position: 0px 20px;
  background-size: 180px auto;
}
.small-express-RDY17_UPS {
  background: url(/images/XUUPS/RDY17_UPS.png?v=1) no-repeat;
  background-position: 1px 2px;
  background-size: 180px auto;
}
.small-express-PB {
  background: url(/images/XUUPS/PB.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.small-express-EZUSPS {
  background: url(/images/XUUPS/EZUSPS.png?v=1) no-repeat;
  background-position: 1px 10px;
  background-size: 180px auto;
}
.span-payment {
  background: url(/images/payment.jpg) no-repeat;
  background-size: 112px 108px;
  width: 112px;
  height: 35px;
  display: block;
}
.span-payment-weixin {
  background-position: 0px 0px;
}
.span-payment-zhifubao {
  background-position: 0px -35px;
}
.span-payment-paypal {
  background-position: 0px -70px;
}
.span-shop {
  background: url(/images/store-shop.jpg) no-repeat;
  background-size: 150px auto;
  width: 150px;
  height: 60px;
  display: block;
}
.span-shop-amazon {
  background-position: 1px 0px;
}
.span-shop-ebay {
  background-position: -2px -60px;
}
.span-shop-wish {
  background-position: 0px -120px;
}
.span-shop-walmart {
  background-position: 0px -180px;
}
.span-shop-Shopify {
  background-position: 0px -240px;
}
.span-shop--small {
  background-size: 75px auto;
  width: 75px;
  height: 30px;
}
.span-shop--small-amazon {
  background-position: 1px 0px;
}
.span-shop--small-ebay {
  background-position: -2px -30px;
}
.span-shop--small-wish {
  background-position: 0px -60px;
}
.span-shop--small-walmart {
  background-position: 0px -90px;
}
.span-shop--small-Shopify {
  background-position: 0px -120px;
}
/*-- 收发货地址 --*/
.send-receive .choose .main {
  width: 800px;
  margin: 0 auto;
  height: 54px;
  line-height: 54px;
  background: #dddddd;
  margin-bottom: 40px;
  position: relative;
  border-radius: 27px;
  text-align: center;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}
.send-receive .choose .main .warehouseAddress {
  width: 200px;
  height: 54px;
  border-radius: 27px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.send-receive .choose .main .print_send {
  width: 200px;
  height: 54px;
  border-radius: 27px;
  position: absolute;
  top: 0px;
  left: 200px;
}
.send-receive .choose .main .send {
  width: 200px;
  height: 54px;
  border-radius: 27px;
  position: absolute;
  top: 0px;
  right: 200px;
}
.send-receive .choose .main .receive {
  width: 200px;
  height: 54px;
  border-radius: 27px;
  position: absolute;
  top: 0px;
  right: 0px;
}
.send-receive .choose .main .active {
  background-color: #00a0e9;
}
/*-- 404 500 页面 --*/
.error-bg {
  background: url(images/error-01.jpg) #dad9d7 no-repeat center top;
  width: 100%;
  position: absolute;
  height: 600px;
}
.error-bg .error-cont {
  width: 600px;
  margin: 0 auto;
  line-height: 20px;
  text-align: center;
}
.error-bg .error-cont .logo {
  margin-top: 180px;
}
.error-bg .error-cont .remind {
  line-height: 28px;
  color: #999999;
}
/*-- 全局样式改写 --*/
.wTime-container {
  width: 100%;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.wTime-container .close {
  position: absolute;
  top: 11px;
  right: 8px;
  cursor: pointer;
}
.wTime-container .form-wTime {
  width: 100% !important;
}
.small-main .close {
  top: 7px;
  right: 4px;
}
.form-wTime[readonly] {
  background-color: #ffffff;
}
.form-wTime[disabled] {
  background-color: #eeeeee;
}
.swal-overlay {
  z-index: 100001;
}
/*
 *  新页面样式统一开头: np   寓意： 新的页面新的开始
 *  
 *  css 规范 BEM: (https://en.bem.info/) 
 */
/*-- 列表 --*/
.np-list .noData {
  text-align: center;
  padding: 50px;
}
.noData {
  text-align: center;
  padding: 50px;
}
/*-- 详情块 --*/
.np-infItem {
  padding: 5px;
  margin-bottom: 30px;
}
.np-infItem h3 {
  font-size: 20px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
  color: #666666;
  margin-bottom: 12px;
}
.np-infItem p {
  font-size: 14px;
  color: #a6a5ae;
  line-height: 30px;
}
.np-infItem table {
  color: #a6a5ae;
}
.np-infItem p label {
  margin-right: 5px;
}
/*-- 标签头 --*/
.np-pageHeader {
  margin: 15px 0 30px;
  font-size: 34px;
  text-align: center;
}
.np-pageOperate {
  margin-bottom: 30px;
  padding-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.np-pageOperate span:not(:last-child)::after {
  content: "|";
  margin: 0px 6px 0px 10px;
}
/*-- 段落 --*/
.np-title {
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ccc;
  color: #615f5f;
}
/*-- 按钮 --*/
.np-btn--marginBottom {
  margin-bottom: 10px;
}
/*-- 搜索表格 --*/
.np-search--label {
  text-align: center;
  line-height: 36px !important;
}
.np-search--import {
  margin-top: 5px;
}
.np-search .form-control {
  height: 36px;
}
/*-- 表单提交 --*/
.np-from {
  /*-- 统一 --*/
  /*-- 大输入框 --*/
  /*-- 一行表单 --*/
  /*-- 无间隙 --*/
}
.np-from p {
  line-height: 34px;
}
.np-from p.sea-error {
  line-height: 22px;
}
.np-from .np-from__mandatory {
  vertical-align: top;
}
.np-from .radio-inline .checkbox-inline {
  margin-right: 20px;
}
.np-from .radio-inline input[type="radio"],
.np-from .checkbox-inline input[type="checkbox"] {
  position: static;
  margin-right: 4px;
}
.np-from .result {
  background-color: #999999;
  padding: 7px;
  font-weight: bolder;
  font-size: 28px;
  line-height: 36px;
  table-layout: fixed;
  word-break: break-all;
  overflow: auto;
}
.np-from .result-right {
  background-color: #147e3e;
  color: #ffffff;
}
.np-from .result-errot {
  background-color: #a50202;
  color: #ffffff;
}
.np-from .np-from__item {
  position: relative;
}
.np-from .np-from__item .np-from__item__btn--inner {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 28px;
  line-height: 28px;
  padding: 0px 12px;
}
.np-from--big {
  font-size: 14px;
}
.np-from--big p {
  line-height: 46px;
  font-size: 18px;
}
.np-from--big .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}
.np-from--big .np-from__item .np-from__item__btn--inner {
  top: 4px;
  height: 38px;
  line-height: 38px;
  right: 4px;
  font-size: 16px;
  padding: 0px 14px;
}
.np-from--big .np-from__alignment label {
  margin-bottom: 0px;
  line-height: 46px;
}
.np-from--big .np-from__alignmentRow label {
  margin-bottom: 0px;
  line-height: 46px;
}
.np-from--inline .form-inline {
  margin-bottom: 10px;
}
.np-from--inline .form-inline .form-group {
  margin-right: 15px;
}
.np-from--inline .np-from__alignment .form-group {
  margin-right: 0px;
}
.np-from--inline .np-from__alignmentRow .form-group {
  margin-right: 0px;
}
.np-from--noGap .form-inline {
  margin-bottom: 10px;
}
.np-from__alignment label {
  margin-bottom: 0px;
  line-height: 34px;
}
.np-from__alignment .form-control {
  width: 75%;
  float: right;
}
.np-from__alignment .select2-container {
  width: 75% !important;
  float: right;
}
.np-from__alignment .input-group {
  width: 75%;
  float: right;
}
.np-from__alignmentRow .form-title {
  text-align: right;
  padding-right: 0px;
}
.np-from__alignmentRow label {
  margin-bottom: 0px;
  line-height: 34px;
}
.np-from__alignmentRow .form-control {
  width: 100%;
}
/*-- 表格列表 --*/
.np-tableList {
  /*-- 内容居中显示 --*/
  /*-- 内容居中显示 --*/
  /*-- 表格列表颜色区分 --*/
  /*-- 带输入内容的 --*/
  /*-- x轴滑动列表 --*/
  /*-- 自动换行的td --*/
  /*-- table 标题 颜色加深 --*/
  /*-- 操作 --*/
  /*-- 操作间隔 --*/
  /*-- td 颜色 --*/
  /*-- 初始化 --*/
  /*-- addChange --*/
}
.np-tableList th {
  line-height: 23px;
}
.np-tableList td {
  line-height: 22px;
}
.np-tableList--cernter th {
  text-align: center;
}
.np-tableList--cernter td {
  text-align: center;
}
.np-tableList--left th {
  text-align: left;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.np-tableList--left td {
  text-align: left;
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.np-tableList--striped table:nth-of-type(even) {
  background-color: #f9f9f9;
}
.np-tableList--input table tr td {
  padding: 4px;
  line-height: 34px;
}
.np-tableList--scroll {
  overflow-x: auto;
}
.np-tableList__scrollBody {
  min-width: 1800px;
}
.np-tableList__scrollBody_long {
  min-width: 2800px;
}
.np-tableList__autoLine td {
  table-layout: fixed;
  word-break: break-all;
  overflow: auto;
}
.np-tableList__title {
  background-color: #f7f7f9;
}
.np-tableList__title th {
  text-align: center;
}
.np-tableList__title--left {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.np-tableList__title--left th {
  border-right: 1px solid #ddd;
  text-align: left;
}
.np-tableList__title--left th .np-Sort {
  float: right;
}
.np-tableList__title--left th .np-Sort:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.np-tableList__title--left th .np-Sort {
  zoom: 1;
}
.np-tableList__option {
  text-align: right;
  padding: 6px 8px !important;
}
.np-tableList__option--right {
  padding: 7px 8px !important;
}
.np-tableList__option--interval {
  text-align: right;
  font-weight: 500;
}
.np-tableList__option--interval a:after {
  content: " | ";
  color: #000;
}
.np-tableList__option--interval a:last-child:after {
  content: "";
}
.np-tableList td.red {
  color: #cc0000;
}
.np-tableList td.green {
  color: #3bb371;
}
.np-tableList td.blue {
  color: #4169e1;
}
.np-tableList td.orange {
  color: #fb8c5b;
}
.np-tableList td.center {
  text-align: center;
}
.np-tableList input[type="radio"],
.np-tableList input[type="checkbox"] {
  margin: 0px;
}
.np-tableList__addchange .ac-choose {
  width: 78px;
}
.np-tableList__addchange .ac-option {
  width: 130px;
}
/*-- 翻页 --*/
.np-pagination {
  overflow: hidden;
  padding: 10px 0;
}
.np-pagination__left {
  float: left;
}
.np-pagination__right {
  float: right;
  line-height: 34px;
}
.np-pagination__right input {
  display: inline-block;
  width: 70px;
}
/*-- 导入 --*/
.np-excel-upload .content {
  position: relative;
  font-size: 14px;
  height: 34px;
  line-height: 34px;
}
.np-excel-upload .content .content-info .top {
  position: absolute;
  top: -1px;
}
.np-excel-upload .content .content-info .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 22px;
  width: 100%;
  display: inline-block;
}
.np-excel-upload .content:hover .remove {
  display: block;
}
.np-excel-upload .content .remove {
  display: none;
  position: absolute;
  top: 0px;
  right: -4px;
  font-size: 12px;
  color: #999;
  cursor: pointer;
}
.np-excel-upload .content .remove:hover {
  color: #000000;
}
/*-- 页面详情 --*/
.pageInf {
  margin-bottom: 50px;
}
.pageInf__title {
  margin-bottom: 25px;
  font-size: 18px;
}
/*-- 批量导入文件 --*/
.np-batch-file .np-file-list {
  max-height: 266px;
  overflow-y: auto;
}
.np-batch-file .np-file-list li {
  margin-bottom: 8px !important;
  padding-right: 15px;
}
.np-batch-file .np-file-list li .inf {
  float: left;
  width: 512px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  color: #484848;
}
.np-batch-file .np-file-list li .state {
  float: right;
}
.np-batch-file .np-file-list li .error {
  color: #cc3333;
}
.np-batch-file .file-inf {
  font-size: 14px;
  margin-top: 8px;
  text-align: right;
}
.np-Sort i {
  cursor: pointer;
  padding: 4px;
  font-size: 13px;
}
/*-- 列表页面 --*/
.np-panel .title {
  line-height: 40px;
  font-size: 18px;
  font-weight: bolder;
  margin: 10px 0px 10px 0px;
  border-bottom: 1px solid #ededed;
  overflow: hidden;
}
.np-panel .title .btn {
  float: right;
}
.np-panel .title .dropoff {
  margin-left: 10px;
}
.np-panel .title .BatchList {
  margin-left: 10px;
}
.np-panel .search .line-btn {
  line-height: 36px;
}
.np-panel .search .time .interval {
  position: absolute;
  right: -8px;
  top: 0px;
  line-height: 34px;
  width: 16px;
  text-align: center;
}
.np-panel .package__list {
  margin-top: 20px;
}
.np-panel .package__list .operation {
  overflow: hidden;
  margin-bottom: 20px;
}
.np-panel .package__list .operation .interval {
  margin-right: 5px;
}
.np-panel .package__list .operation .right {
  float: right;
}
.np-panel .table > tbody + tbody {
  border-top: none;
}
/*-- 物流追踪记录 --*/
.logistics__record__item {
  overflow: hidden;
}
.logistics__record__item .left {
  width: 144px;
  float: left;
  font-size: 15px;
  color: #575fa3;
  line-height: 21px;
  padding-right: 24px;
  padding-top: 20px;
  text-align: right;
}
.logistics__record__item .right {
  float: left;
  padding: 20px 0 20px 27px;
  border-left: 2px rgba(100, 107, 158, 0.1) solid;
  position: relative;
}
.logistics__record__item .right:before {
  position: absolute;
  width: 14px;
  height: 14px;
  content: "";
  display: block;
  background-color: #444a7c;
  border-radius: 50%;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: solid 3px #ffffff;
  top: 23px;
  left: -8px;
}
.logistics__record__item .right .inf {
  font-size: 15px;
  margin-bottom: 8px;
  margin-left: 16px;
}
.logistics__record__item .right .signIn {
  color: #77b300;
  font-size: 28px;
  position: absolute;
  left: 15px;
  top: 10px;
}
/*-- 自适应 网页 --*/
@media (max-width: 1190px) {
  .h-head-top .h-mian {
    padding: 0px 8px;
  }
  .h-head .h-mian {
    margin: 0px 8px;
  }
  .h-footer .h-mian {
    padding: 0px 8px;
  }
  .operation-page .op-right {
    padding: 10px 10px 50px 10px;
  }
}
/* 吴金根新增样式 */
.h-head-top {
  width: 100%;
  height: 53px;
  border-bottom: 3px solid #074688;
  box-sizing: border-box;
  background: #fff;
}
.h-mian-top-new {
  width: 100%;
  height: 100%;
  position: relative;
  padding-right: 0;
  background: #fff;
}
.h-head-top .h-top-right {
  position: absolute;
  right: 0;
  top: 0;
  clear: both;
  width: auto;
}
.h-head-top .h-top-right .right-nav-list {
  width: 100%;
  height: 100%;
  padding-right: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.h-head-top .h-top-right .right-nav-list dd {
  display: inline-block;
  font: normal 13px/35px "Microsoft YaHei";
  color: #333;
  padding-top: 7px;
  height: 100%;
}
.h-head-top .h-top-right .right-nav-list dd a {
  display: block;
  font: normal 13px/35px "Microsoft YaHei";
  color: #333;
  box-sizing: border-box;
  position: relative;
  padding: 0 8px;
}
.h-head-top .h-top-right .right-nav-list dd a i {
  left: -14px;
  top: 2px;
  color: #3d6696;
  font-size: 16px;
  line-height: 35px;
  position: absolute;
}
.h-head-top .h-top-right .right-nav-list dd.logOut {
  padding: 0 15px;
  color: #3d6696;
  padding-right: 0;
}
.h-head-top .h-top-right .right-nav-list dd.logOut a {
  color: #3d6696;
}
.h-head-top .h-top-right .right-nav-list dd.logOut i {
  font-size: 19px;
  left: -15px;
  top: 0px;
}
.h-head-top .h-top-right .right-nav-list dd.loginoutnew a {
  padding: 0 15px;
}
.h-head-top .h-top-right .right-nav-list dd .user-info {
  color: #3d6696;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 7px;
}
.h-head-top .h-top-right .right-nav-list dd .user-info2 {
  padding-left: 20px;
}
.h-head-top .h-top-right .right-nav-list dd .user-info i {
  left: 0px;
  top: 2px;
  color: #3d6696;
  font-size: 16px;
  line-height: 35px;
  position: absolute;
}
.h-head-top .h-top-right .right-nav-list dd.selecttype select {
  border: 1px solid #ccc;
}
.h-head-top .h-top-left {
  width: calc(100% - 600px);
  height: 100%;
  clear: both;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 1000px;
}
.h-head-top .hd-logo {
  width: 168px;
  height: 45px;
  overflow: hidden;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -23.5px;
}
.h-head-top .hd-logo img {
  width: 100%;
}
.h-head-top .hd-list {
  width: calc(100% - 208px);
  height: 100%;
  position: absolute;
  left: 208px;
  top: 0;
  padding-top: 5px;
}
.h-head-top .hd-list li {
  display: inline-block;
  padding: 0 9px;
}
.h-head-top .hd-list li a {
  text-decoration: none;
  font: normal 14px/35px "Microsoft YaHei";
  display: block;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.h-head-top .hd-list li a:hover,
.h-head-top .hd-list li a.selected {
  border-bottom: 3px solid #285e7a;
  color: #285e7a;
}
.h-head-top .h-top-right .right-nav-list dd.selecttype {
  position: relative;
  width: 30px;
  height: 30px;
}
.language-select {
  width: 25px;
  height: 25px;
  text-indent: -9999px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
}
.language-select.zh {
  background: transparent url(images/zh.png) center center no-repeat;
  background-size: 25px 25px;
}
.language-select.en {
  background: transparent url(images/en.png) center center no-repeat;
  background-size: 25px 25px;
}
/* 吴金根新增样式 */
.h-footer .wechat.clearfix {
  margin-top: 6px;
  margin-bottom: 10px;
  padding: 0 !important;
}
.h-footer {
  padding: 0;
}
.h-footer .wechat ul li.chat-2 {
  display: none;
}
.newfileupload input[type="file"] {
  display: none;
}
.newfileupload .el-form-item__content {
  line-height: 40px;
  position: relative;
  font-size: 14px;
}
.newfileupload .el-date-editor.el-input,
.newfileupload .el-date-editor.el-input__inner {
  width: 100%;
}
.newfileupload button.btn.btn-primary.btn-xs {
  width: 300px;
  height: 150px;
  background-color: #fff;
  color: #ccc;
  border-color: #ccc;
}
.search-list-new .el-select {
  width: 100%;
}
