/* variables + mixin + reset + flexbox + util */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
body {
  font-family: "Microsoft Yahei", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-size: 14px;
  line-height: 1;
  background-color: #fff;
  position: static !important;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  -webkit-user-drag: none;
  -webkit-text-size-adjust: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,
ol {
  list-style-type: none;
}
b,
strong {
  font-weight: bold;
}
img {
  border: 0;
}
button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 2 */
  margin: 0; /* 3 */
}
input,
textarea {
  -webkit-appearance: none; /* 消除输入框和按钮的原生外观 */
/*透明度设置为0，去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android)*/
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
  -webkit-appearance: none;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
table,
th,
td {
  border: 0;
}
th,
td {
  padding: 0;
  vertical-align: top;
}
th {
  font-weight: bold;
  text-align: left;
}
thead th {
  white-space: nowrap;
}
a {
  text-decoration: none;
  cursor: pointer;
}
a:active,
a:hover {
  outline: 0;
}
.t-FBH,
.t-FBV {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
.t-FBV {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.t-FBAS {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.t-FBAC {
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.t-FBAE {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.t-FBJS {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.t-FBJC {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.t-FBJE {
  -webkit-box-pack: end /*待验证 是否要删除*/;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.t-FBJ {
  -webkit-box-pack: justify /*待验证 是否要删除*/;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.t-FBH > .t-FB1,
.t-FBH > .t-FB2,
.t-FBH > .t-FB3 {
  width: 0;
}
.t-FB1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.t-FB2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  flex: 2;
}
.t-FB3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  flex: 3;
}
.t-CL:after,
.t-clear:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.t-FL {
  float: left;
}
.t-FR {
  float: right;
}
.t-R3 {
  -webkit-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.t-R4 {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.t-R5 {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.t-R6 {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  overflow: hidden;
}
.t-RT3 {
  -webkit-border-top-left-radius: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  overflow: hidden;
}
.t-RR3 {
  -webkit-border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}
.t-RB3 {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}
.t-RL3 {
  -webkit-border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}
.t-RT4 {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
}
.t-RR4 {
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
}
.t-RB4 {
  -webkit-border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.t-RL4 {
  -webkit-border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.t-RT5 {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.t-RR5 {
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  overflow: hidden;
}
.t-RB5 {
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.t-RL5 {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
}
.t-RT6 {
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  overflow: hidden;
}
.t-RR6 {
  -webkit-border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
}
.t-RB6 {
  -webkit-border-bottom-right-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  overflow: hidden;
}
.t-RL6 {
  -webkit-border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  overflow: hidden;
}
.t-P0 {
  padding: 0;
}
.t-P2 {
  padding: 2px;
}
.t-P4 {
  padding: 4px;
}
.t-P6 {
  padding: 6px;
}
.t-P8 {
  padding: 8px;
}
.t-P10 {
  padding: 10px;
}
.t-P12 {
  padding: 12px;
}
.t-P14 {
  padding: 14px;
}
.t-P16 {
  padding: 16px;
}
.t-P18 {
  padding: 18px;
}
.t-P20 {
  padding: 20px;
}
.t-P22 {
  padding: 22px;
}
.t-P24 {
  padding: 24px;
}
.t-P26 {
  padding: 26px;
}
.t-P28 {
  padding: 28px;
}
.t-P30 {
  padding: 30px;
}
.t-PT0 {
  padding-top: 0;
}
.t-PR0 {
  padding-right: 0;
}
.t-PB0 {
  padding-bottom: 0;
}
.t-PL0 {
  padding-left: 0;
}
.t-PT2 {
  padding-top: 2px;
}
.t-PR2 {
  padding-right: 2px;
}
.t-PB2 {
  padding-bottom: 2px;
}
.t-PL2 {
  padding-left: 2px;
}
.t-PT4 {
  padding-top: 4px;
}
.t-PR4 {
  padding-right: 4px;
}
.t-PB4 {
  padding-bottom: 4px;
}
.t-PL4 {
  padding-left: 4px;
}
.t-PT6 {
  padding-top: 6px;
}
.t-PR6 {
  padding-right: 6px;
}
.t-PB6 {
  padding-bottom: 6px;
}
.t-PL6 {
  padding-left: 6px;
}
.t-PT8 {
  padding-top: 8px;
}
.t-PR8 {
  padding-right: 8px;
}
.t-PB8 {
  padding-bottom: 8px;
}
.t-PL8 {
  padding-left: 8px;
}
.t-PT10 {
  padding-top: 10px;
}
.t-PR10 {
  padding-right: 10px;
}
.t-PB10 {
  padding-bottom: 10px;
}
.t-PL10 {
  padding-left: 10px;
}
.t-PT12 {
  padding-top: 12px;
}
.t-PR12 {
  padding-right: 12px;
}
.t-PB12 {
  padding-bottom: 12px;
}
.t-PL12 {
  padding-left: 12px;
}
.t-PT14 {
  padding-top: 14px;
}
.t-PR14 {
  padding-right: 14px;
}
.t-PB14 {
  padding-bottom: 14px;
}
.t-PL14 {
  padding-left: 14px;
}
.t-PT16 {
  padding-top: 16px;
}
.t-PR16 {
  padding-right: 16px;
}
.t-PB16 {
  padding-bottom: 16px;
}
.t-PL16 {
  padding-left: 16px;
}
.t-PT18 {
  padding-top: 18px;
}
.t-PR18 {
  padding-right: 18px;
}
.t-PB18 {
  padding-bottom: 18px;
}
.t-PL18 {
  padding-left: 18px;
}
.t-PT20 {
  padding-top: 20px;
}
.t-PR20 {
  padding-right: 20px;
}
.t-PB20 {
  padding-bottom: 20px;
}
.t-PL20 {
  padding-left: 20px;
}
.t-PT22 {
  padding-top: 22px;
}
.t-PR22 {
  padding-right: 22px;
}
.t-PB22 {
  padding-bottom: 22px;
}
.t-PL22 {
  padding-left: 22px;
}
.t-PT24 {
  padding-top: 24px;
}
.t-PR24 {
  padding-right: 24px;
}
.t-PB24 {
  padding-bottom: 24px;
}
.t-PL24 {
  padding-left: 24px;
}
.t-PT26 {
  padding-top: 26px;
}
.t-PR26 {
  padding-right: 26px;
}
.t-PB26 {
  padding-bottom: 26px;
}
.t-PL26 {
  padding-left: 26px;
}
.t-PT28 {
  padding-top: 28px;
}
.t-PR28 {
  padding-right: 28px;
}
.t-PB28 {
  padding-bottom: 28px;
}
.t-PL28 {
  padding-left: 28px;
}
.t-PT30 {
  padding-top: 30px;
}
.t-PR30 {
  padding-right: 30px;
}
.t-PB30 {
  padding-bottom: 30px;
}
.t-PL30 {
  padding-left: 30px;
}
.t-M0 {
  margin: 0;
}
.t-M2 {
  margin: 2px;
}
.t-M4 {
  margin: 4px;
}
.t-M6 {
  margin: 6px;
}
.t-M8 {
  margin: 8px;
}
.t-M10 {
  margin: 10px;
}
.t-M12 {
  margin: 12px;
}
.t-M14 {
  margin: 14px;
}
.t-M16 {
  margin: 16px;
}
.t-M18 {
  margin: 18px;
}
.t-M20 {
  margin: 20px;
}
.t-M22 {
  margin: 22px;
}
.t-M24 {
  margin: 24px;
}
.t-M26 {
  margin: 26px;
}
.t-M28 {
  margin: 28px;
}
.t-M30 {
  margin: 30px;
}
.t-MT0 {
  margin-top: 0;
}
.t-MR0 {
  margin-right: 0;
}
.t-MB0 {
  margin-bottom: 0;
}
.t-ML0 {
  margin-left: 0;
}
.t-MT2 {
  margin-top: 2px;
}
.t-MR2 {
  margin-right: 2px;
}
.t-MB2 {
  margin-bottom: 2px;
}
.t-ML2 {
  margin-left: 2px;
}
.t-MT4 {
  margin-top: 4px;
}
.t-MR4 {
  margin-right: 4px;
}
.t-MB4 {
  margin-bottom: 4px;
}
.t-ML4 {
  margin-left: 4px;
}
.t-MT6 {
  margin-top: 6px;
}
.t-MR6 {
  margin-right: 6px;
}
.t-MB6 {
  margin-bottom: 6px;
}
.t-ML6 {
  margin-left: 6px;
}
.t-MT8 {
  margin-top: 8px;
}
.t-MR8 {
  margin-right: 8px;
}
.t-MB8 {
  margin-bottom: 8px;
}
.t-ML8 {
  margin-left: 8px;
}
.t-MT10 {
  margin-top: 10px;
}
.t-MR10 {
  margin-right: 10px;
}
.t-MB10 {
  margin-bottom: 10px;
}
.t-ML10 {
  margin-left: 10px;
}
.t-MT12 {
  margin-top: 12px;
}
.t-MR12 {
  margin-right: 12px;
}
.t-MB12 {
  margin-bottom: 12px;
}
.t-ML12 {
  margin-left: 12px;
}
.t-MT14 {
  margin-top: 14px;
}
.t-MR14 {
  margin-right: 14px;
}
.t-MB14 {
  margin-bottom: 14px;
}
.t-ML14 {
  margin-left: 14px;
}
.t-MT16 {
  margin-top: 16px;
}
.t-MR16 {
  margin-right: 16px;
}
.t-MB16 {
  margin-bottom: 16px;
}
.t-ML16 {
  margin-left: 16px;
}
.t-MT18 {
  margin-top: 18px;
}
.t-MR18 {
  margin-right: 18px;
}
.t-MB18 {
  margin-bottom: 18px;
}
.t-ML18 {
  margin-left: 18px;
}
.t-MT20 {
  margin-top: 20px;
}
.t-MR20 {
  margin-right: 20px;
}
.t-MB20 {
  margin-bottom: 20px;
}
.t-ML20 {
  margin-left: 20px;
}
.t-MT22 {
  margin-top: 22px;
}
.t-MR22 {
  margin-right: 22px;
}
.t-MB22 {
  margin-bottom: 22px;
}
.t-ML22 {
  margin-left: 22px;
}
.t-MT24 {
  margin-top: 24px;
}
.t-MR24 {
  margin-right: 24px;
}
.t-MB24 {
  margin-bottom: 24px;
}
.t-ML24 {
  margin-left: 24px;
}
.t-MT26 {
  margin-top: 26px;
}
.t-MR26 {
  margin-right: 26px;
}
.t-MB26 {
  margin-bottom: 26px;
}
.t-ML26 {
  margin-left: 26px;
}
.t-MT28 {
  margin-top: 28px;
}
.t-MR28 {
  margin-right: 28px;
}
.t-MB28 {
  margin-bottom: 28px;
}
.t-ML28 {
  margin-left: 28px;
}
.t-MT30 {
  margin-top: 30px;
}
.t-MR30 {
  margin-right: 30px;
}
.t-MB30 {
  margin-bottom: 30px;
}
.t-ML30 {
  margin-left: 30px;
}
.t-PR {
  position: relative;
}
.t-PF {
  position: fixed;
}
.t-PA {
  position: absolute;
}
.t-DN,
.t-hide {
  display: none !important;
}
.t-DB {
  display: block !important;
}
.t-DIB {
  display: inline-block !important;
}
.t-omit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.t-omit2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.t-omit3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.t-LH1 {
  line-height: 1;
}
.t-LH2 {
  line-height: 2;
}
.t-LH30 {
  line-height: 30px;
}
.t-LH44 {
  line-height: 44px;
}
.t-LH1_3 {
  line-height: 1.3;
}
.t-LH1_4 {
  line-height: 1.4;
}
.t-LH1_5 {
  line-height: 1.5;
}
.t-LH1_6 {
  line-height: 1.6;
}
.t-LH1_7 {
  line-height: 1.7;
}
.t-LH1_8 {
  line-height: 1.8;
}
.t-LH1_9 {
  line-height: 1.9;
}
.t-W0 {
  width: 0;
}
.t-H0 {
  height: 0;
}
.t-W16 {
  width: 16px;
}
.t-H16 {
  height: 16px;
}
.t-W32 {
  width: 32px;
}
.t-H32 {
  height: 32px;
}
.t-W64 {
  width: 64px;
}
.t-H64 {
  height: 64px;
}
.t-W128 {
  width: 128px;
}
.t-H128 {
  height: 128px;
}
.t-W30 {
  width: 30px;
}
.t-H30 {
  height: 30px;
}
.t-W44 {
  width: 44px;
}
.t-H44 {
  height: 44px;
}
.t-WH0 {
  width: 0;
  height: 0;
}
.t-WH16 {
  width: 16px;
  height: 16px;
}
.t-WH32 {
  width: 32px;
  height: 32px;
}
.t-WH64 {
  width: 64px;
  height: 64px;
}
.t-WH128 {
  width: 128px;
  height: 128px;
}
.t-WH30 {
  width: 30px;
  height: 30px;
}
.t-WH44 {
  width: 44px;
  height: 44px;
}
.t-FS0 {
  font-size: 0;
}
.t-FS12 {
  font-size: 12px;
}
.t-FS14 {
  font-size: 14px;
}
.t-FS16 {
  font-size: 16px;
}
.t-FS18 {
  font-size: 18px;
}
.t-FS20 {
  font-size: 20px;
}
.t-FS22 {
  font-size: 22px;
}
.t-FS24 {
  font-size: 24px;
}
.t-FS26 {
  font-size: 26px;
}
.t-FS28 {
  font-size: 28px;
}
.t-FS30 {
  font-size: 30px;
}
.t-FC0 {
  color: #000;
}
.t-FC3 {
  color: #333;
}
.t-FC4 {
  color: #444;
}
.t-FC5 {
  color: #555;
}
.t-FC6 {
  color: #666;
}
.t-FC7 {
  color: #777;
}
.t-FC8 {
  color: #888;
}
.t-FC9 {
  color: #999;
}
.t-FCa {
  color: #aaa;
}
.t-FCb {
  color: #bbb;
}
.t-FCc {
  color: #ccc;
}
.t-FCd {
  color: #ddd;
}
.t-FCe {
  color: #eee;
}
.t-FCf {
  color: #fff;
}
.t-FAL {
  text-align: left;
}
.t-FAC {
  text-align: center;
}
.t-FAR {
  text-align: right;
}
.t-BC0 {
  background-color: #000;
}
.t-BC3 {
  background-color: #333;
}
.t-BC4 {
  background-color: #444;
}
.t-BC5 {
  background-color: #555;
}
.t-BC6 {
  background-color: #666;
}
.t-BC7 {
  background-color: #777;
}
.t-BC8 {
  background-color: #888;
}
.t-BC9 {
  background-color: #999;
}
.t-BCa {
  background-color: #aaa;
}
.t-BCb {
  background-color: #bbb;
}
.t-BCc {
  background-color: #ccc;
}
.t-BCd {
  background-color: #ddd;
}
.t-BCe {
  background-color: #eee;
}
.t-BCf {
  background-color: #fff;
}
.t-opacity0 {
  opacity: 0;
}
.t-opacity10 {
  opacity: 0.1;
}
.t-opacity30 {
  opacity: 0.3;
}
.t-opacity50 {
  opacity: 0.5;
}
.t-opacity80 {
  opacity: 0.8;
}
.t-opacity100 {
  opacity: 1;
}
.t-3D {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.t-BT1 {
  border-top: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-BT1 {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-BT1 {
  border-top: 0.013333333333333rem solid #ccc;
}
.t-BB1 {
  border-bottom: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-BB1 {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-BB1 {
  border-bottom: 0.013333333333333rem solid #ccc;
}
/* components style */
.t-avatar {
  -webkit-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.t-button {
  white-space: nowrap;
  border: none;
  outline: none;
  height: 40px;
  font-size: 16px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.t-button.disabled,
.t-button[disabled] {
  color: #ccc;
  background: #e8e8e8;
  border: 1px solid #dbdbdb;
  pointer-events: none;
}
.hairline.dpr2 .t-button.disabled,
.hairline.dpr2 .t-button[disabled] {
  border: 0.5px solid #c5c5c5;
}
.hairline.dpr3 .t-button.disabled,
.hairline.dpr3 .t-button[disabled] {
  border: 0.013333333333333rem solid #c5c5c5;
}
.t-button-small,
.t-button-small[disabled] {
  height: 24px;
  font-size: 12px;
}
.t-button-large,
.t-button-large[disabled] {
  height: 44px;
  font-size: 18px;
}
.t-button-primary {
  background: #f70;
  color: #fff;
}
.t-button-primary:active {
  background: #f27100;
  color: #fff;
}
.t-button-secondary {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-button-secondary {
  border: 0.5px solid #ccc;
}
.hairline.dpr3 .t-button-secondary {
  border: 0.013333333333333rem solid #ccc;
}
.t-button-secondary:active {
  background: #e8e8e8;
  color: #666;
  border-color: #d6d6d6;
}
.t-button-minor {
  background: #fff;
  color: #f70;
  border: 1px solid #f70;
}
.hairline.dpr2 .t-button-minor {
  border: 0.5px solid #e66b00;
}
.hairline.dpr3 .t-button-minor {
  border: 0.013333333333333rem solid #e66b00;
}
.t-button-minor:active {
  background: #ffead8;
  color: #f70;
  border-color: #f27100;
}
.t-button-danger {
  background: #f04631;
  color: #fff;
}
.t-button-danger:active {
  background: #ca230f;
  color: #fff;
}
.t-button-text {
  background: transparent;
  color: #45a8e6;
}
.t-button-text:active {
  color: #a2d3f2;
}
.t-button-text.disabled,
.t-button-text.disabled:hover {
  background: transparent;
  color: #ccc;
  border-color: #dbdbdb;
}
.t-calendar-container {
  width: 100%;
  height: 100%;
}
.t-calendar {
  -webkit-user-select: none;
  user-select: none;
  font-size: 14px;
  font-family: "Microsoft Yahei", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  background: #fff;
  overflow: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.t-calendar .t-tool {
  border-top: 1px solid #d5d5d5;
  border-bottom: 1px solid #d5d5d5;
  height: 50px;
  font-size: 16px;
  background: #fff;
  color: #666;
}
.t-calendar .t-tool .t-btn {
  width: 40px;
  height: 40px;
}
.t-calendar .t-tool .t-prev-month {
  width: 80px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #f60;
}
.t-calendar .t-tool .t-next-month {
  width: 80px;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #f60;
}
.t-calendar .t-tool .t-text {
  margin: 0 8px;
}
.t-calendar .t-week {
  background: #e6e6e6;
  padding: 10px 0;
  text-align: center;
  color: #666;
  font-size: 12px;
}
.t-calendar .t-month {
  background: #fff;
  color: #7b7b7b;
}
.t-calendar .t-month > div > div {
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}
.t-calendar .t-month .t-date-point {
  height: 26px;
  line-height: 26px;
  border-radius: 50%;
  width: 26px;
  margin: 0 auto;
}
.t-calendar .t-month .t-day-tip {
  height: 14px;
  line-height: 14px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  line-height: 1;
  font-size: 12px;
  color: #fff;
}
.t-calendar .t-month .t-gray .t-date-point {
  background: #cdcccc;
  color: #fff;
}
.t-calendar .t-month .t-selected .t-date-point {
  color: #fff;
  background: #fb8c00;
}
.t-calendar .t-month .t-selected.t-PM .t-date-point {
  background: #d94cfc;
  color: #fff;
}
.t-calendar .t-half-wrap {
  padding: 0 20px;
  border-top: 1px solid #e2e2e2;
  height: 60px;
  background: #fff;
}
.t-calendar .t-half-wrap .t-day {
  display: inline-block;
  width: 48px;
  text-align: center;
  height: 48px;
  line-height: 30px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  background: #cdcccc;
  color: #fff;
  border: 7px solid #fff;
}
.t-calendar .t-half-wrap .t-day span {
  line-height: 34px;
  display: block;
  font-size: 12px;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.t-calendar .t-half-wrap .now.t-morning {
  background: #30dbfa;
}
.t-calendar .t-half-wrap .now.t-afternoon {
  background: #d94cfc;
}
.t-calendar .t-half-wrap .now.t-full-day {
  background: #fb8c00;
}
.t-calendar .t-operate {
  border-top: 1px solid #e2e2e2;
  text-align: center;
  background: #ddd;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.t-calendar .t-operate span {
  font-size: 17px;
  display: inline-block;
  height: 44px;
  line-height: 44px;
  width: 33.33%;
}
.t-calendar .t-operate .t-confirm {
  background: #fb8c00;
  color: #fff;
}
.t-calendar .t-operate .t-confirm.t-gray {
  opacity: 0.5;
}
.t-calendar .t-operate .t-reset {
  background: #ffd1b3;
  color: #fb8c00;
}
.t-calendar .t-operate .t-cancel {
  background: #f8f8f8;
  color: #222;
}
.t-calendar .t-top-panel {
  height: 44px;
  background: #e6e6e6;
}
.t-calendar .t-top-panel span {
  display: inline-block;
  line-height: 18px;
  padding: 13px;
}
.t-calendar .t-top-panel .t-top-panel-title {
  width: 100%;
  color: #666;
  font-size: 16px;
  text-align: center;
}
.t-calendar .t-top-panel .t-top-panel-confirm {
  color: #ff6602;
  position: absolute;
  font-size: 14px;
  right: 0;
}
.t-calendar .t-top-panel .t-top-panel-cancel {
  color: #666;
  font-size: 14px;
  position: absolute;
  left: 0;
}
.t-calendar .t-tap.t-op.active {
  opacity: 0.5;
}
.t-calendar .t-tap.t-op.disabled {
  color: #ccc;
  background: #e8e8e8;
  pointer-events: none;
}
.t-calendar .t-month-list .t-month-list-item {
  display: inline-block;
  width: 33.33%;
  text-align: center;
  line-height: 44px;
  border: 1px solid #dbdbdb;
  border-top: none;
  border-left: none;
  color: #757575;
}
.t-calendar .t-month-list .t-month-list-item.active {
  background: #fb8c00;
  color: #fff;
}
.t-calendar .t-year-list .t-year-list-item {
  display: inline-block;
  width: 33.33%;
  text-align: center;
  line-height: 44px;
  border: 1px solid #dbdbdb;
  border-top: none;
  border-left: none;
  color: #757575;
}
.t-calendar .t-year-list .t-year-list-item.active {
  background: #fb8c00;
  color: #fff;
}
.t-calendar .t-month .t-weekend {
  color: #fb8c00;
}
.t-calendar .t-month .t-prev-month {
  background: #f2f2f2;
}
.t-calendar .t-month .t-next-month {
  color: #ccc;
}
.t-calendar .t-month .t-selected {
  background: #fb8c00;
}
.t-calendar .t-month .t-AM {
  background: #30dbfa;
}
.t-calendar .t-month .t-PM {
  background: #d94cfc;
}
.t-calendar.t-default .t-month .t-selected .t-date-point {
  opacity: 0.7;
}
.t-calendar.t-circle .t-month .t-now .t-date-point {
  border-radius: 13px;
  border: 1px solid #979797;
  width: 26px;
  margin: 0 auto;
  background: #fff;
  color: #7b7b7b;
}
.t-calendar .t-month .t-selected.t-AM .t-date-point,
.t-calendar .t-month .t-blue .t-date-point {
  background: #30dbfa;
  color: #fff;
}
@media screen and (min-width: 320px) and (max-width: 359px) {
  body .t-calendar .t-month .t-date-point {
    height: 24px;
    line-height: 24px;
  }
  body .t-calendar .t-month .t-day-tip {
    height: 12px;
    line-height: 12px;
  }
  body .t-calendar .t-month .t-now .t-date-point,
  body .t-calendar .t-month .t-selected .t-date-point {
    border-radius: 12px;
    width: 24px;
  }
}
.t-cascade-select-field-value > * {
  vertical-align: middle;
}
.t-cascade-select-field-icon svg {
  fill: #ccc;
}
.t-cascade-select-field-placeholder {
  max-width: 100%;
  height: 24px;
  line-height: 24px;
  color: #ccc;
}
.t-cascade-select-field-readonly {
  color: #ccc;
}
.t-select-layer-header {
  background-color: #f7f7f7;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  border-style: solid none;
  height: 40px;
  font-size: 14px;
  color: #666;
}
.hairline.dpr2 .t-select-layer-header {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-select-layer-header {
  border-top: 0.013333333333333rem solid #ccc;
}
.hairline.dpr2 .t-select-layer-header {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-select-layer-header {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-select-layer-cancel {
  margin-left: 15px;
}
.t-select-layer-confirm {
  margin-right: 15px;
}
.t-select-layer-cancel,
.t-select-layer-confirm {
  min-width: 29px;
  line-height: 40px;
  white-space: nowrap;
}
.t-select-layer-confirm {
  color: #f70;
}
.t-select-layer-title {
  color: #222;
}
.t-checkbox-field-icon {
  align-self: center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  background-color: #fff;
}
.t-checkbox-field-icon.noChecked {
  border: 1px solid #ccc;
}
.t-checkbox-field-icon.disable {
  background-color: #ccc;
}
.t-select-layer-body {
  overflow: hidden;
  height: 200px;
  background-color: #fff;
  font-size: 14px;
  color: #222;
}
.t-select-layer-body .select-list {
  padding: 10px 20px 10px 15px;
}
.t-select-layer-body li {
  margin: 10px 0;
}
.t-select-layer-body li .checked svg {
  fill: #f37327;
}
.t-select-layer-body li .disable svg {
  fill: #ccc;
}
.t-select-layer-body li .item-text {
  margin-left: 10px;
}
.t-checkbox-field {
  display: block;
}
.t-checkbox-field > .t-field-box {
  align-items: flex-start;
}
.t-checkbox-field-value-wrap {
  padding: 12px 0;
}
.t-checkbox-field-readonly {
  color: #ccc;
  background-color: #f9f9f9;
}
.t-checkbox-field-readonly img {
  opacity: 0.6;
}
.t-checkbox-field-readonly .t-checkbox-field-row {
  background-color: transparent;
}
.t-checkbox-field-readonly > .t-group-list {
  background-color: #f9f9f9;
}
.t-checkbox-field-icon-div {
  width: 26px;
  min-width: 26px;
  min-height: 44px;
  vertical-align: middle;
}
.t-checkbox-field-placeholder {
  max-width: 100%;
  height: 20px;
  line-height: 20px;
  text-align: right;
  color: #ccc;
}
.t-checkbox-field-icon-slot {
  margin-top: 10px;
}
.t-checkbox-field-icon-slot svg {
  fill: #ccc;
}
.t-checkbox-field-icon-list {
  width: 26px;
  height: 26px;
  background-color: #f70;
  border-radius: 50%;
  fill: #fff;
  vertical-align: middle;
}
.t-checkbox-field-icon-list.noChecked {
  border: 1px solid #ccc;
  background-color: #fff;
}
.t-checkbox-field-icon-list.noChecked.disable {
  background-color: #ccc;
}
.t-checkbox-field-icon-list > svg {
  border-radius: 11px;
}
.t-checkbox-field-icon[name="check"] > svg {
  border: 1px solid #f70;
}
.t-checkbox-field-icon.checked > svg {
  fill: #f70;
  background-color: #fff;
  border: none;
}
.t-checkbox-field-icon.noChecked > svg {
  fill: #000;
  border: 1px solid #ccc;
  background-color: #fff;
}
.t-checkbox-field-icon.disable > svg {
  background-color: #fff;
  border: none;
  fill: #ccc;
}
.t-checkbox-field-text {
  min-width: 0;
  min-height: 44px;
  padding-left: 18px;
  vertical-align: middle;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-checkbox-field-row {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  background-color: #fff;
}
.t-checkbox-label {
  line-height: 20px;
  padding: 10px 15px;
  background-color: #f7f7f7;
  font-size: 100%;
  color: #222;
}
.t-field-layout-label-required {
  display: inline;
}
.t-field-layout-label-required svg {
  vertical-align: middle;
}
.t-crumb {
  width: 100%;
  overflow: hidden;
}
.t-crumb-scroll {
  white-space: nowrap;
}
.t-crumb-item {
  color: #45a8e6;
  line-height: 1.8;
}
.t-crumb-item.disabled {
  color: #999;
}
.t-crumb-nav-icon {
  color: #ccc;
  line-height: 1.8;
  padding: 0 10px;
}
.t-datetime-field-value > * {
  vertical-align: middle;
}
.t-datetime-field-icon svg {
  fill: #ccc;
}
.t-datetime-field-placeholder {
  max-width: 100%;
  height: 24px;
  line-height: 24px;
  color: #ccc;
}
.t-datetime-field-readonly {
  color: #ccc;
}
.t-dialog {
  padding-top: 13px;
  background: #fff;
  border-radius: 5px;
  width: 260px;
  margin: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.t-dialog-title {
  color: #222;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 13px;
  padding-top: 7px;
  text-align: center;
}
.t-dialog-content {
  padding: 0 15px 13px;
  line-height: 22px;
  font-size: 12px;
  margin: 0 auto;
  color: #666;
}
.t-dialog-operation {
  border-top: 1px solid #e3e3e3;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  text-align: center;
}
.hairline.dpr2 .t-dialog-operation {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-dialog-operation {
  border-top: 0.013333333333333rem solid #ccc;
}
.t-dialog-operation .t-dialog-button {
  border-left: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-dialog-operation .t-dialog-button {
  border-left: 0.5px solid #ccc;
}
.hairline.dpr3 .t-dialog-operation .t-dialog-button {
  border-left: 0.013333333333333rem solid #ccc;
}
.t-dialog-operation .t-dialog-button.hover {
  background: rgba(238,238,238,0.4);
}
.t-dialog-operation .t-dialog-button:first-child {
  border-left: 0;
}
.t-dialog-brbl5 {
  border-bottom-left-radius: 5px;
}
.t-dialog-brbr5 {
  border-bottom-right-radius: 5px;
}
.t-dialog-primary {
  color: #f70;
}
.t-dialog-secondary {
  color: #999;
}
.t-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.t-dialog-overlay > .t-dialog-overlay-inner {
  flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
}
.t-dialog-fade-appear {
  opacity: 0.01;
}
.t-dialog-fade-appear .t-dialog {
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
  opacity: 0.01;
}
.t-dialog-fade-appear.t-dialog-fade-appear-active {
  opacity: 1;
  transition: opacity 0.1s ease-in;
}
.t-dialog-fade-appear.t-dialog-fade-appear-active .t-dialog {
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}
.t-dialog-fade-enter {
  opacity: 0.01;
}
.t-dialog-fade-enter .t-dialog {
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
  opacity: 0.01;
}
.t-dialog-fade-enter.t-dialog-fade-enter-active {
  opacity: 1;
  transition: opacity 0.1s ease;
}
.t-dialog-fade-enter.t-dialog-fade-enter-active .t-dialog {
  transform: scale(1);
  -webkit-transform: scale(1);
  opacity: 1;
  transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
}
.t-dialog-fade-leave {
  opacity: 1;
}
.t-dialog-fade-leave.t-dialog-fade-leave-active {
  opacity: 0.01;
  transition: opacity 0.2s ease-in;
}
.t-field {
  font-size: 14px;
  color: #222;
}
.t-field-icon {
  margin: 0 6px;
}
.t-field-box {
  min-height: 44px;
  line-height: 20px;
  padding-left: 15px;
}
.t-field-layout-h-label {
  padding: 12px 0;
  width: 100px;
  line-height: 20px;
}
.t-field-box.loose .t-field-layout-h-label {
  width: auto;
  max-width: 50%;
}
.t-field-box.vertical .t-field-layout-h-label {
  width: auto;
  padding: 4px 0;
}
.t-field-layout-v-label {
  border-bottom: 1px solid #e3e3e3;
  line-height: 20px;
  padding: 10px 15px;
  background-color: #f7f7f7;
}
.hairline.dpr2 .t-field-layout-v-label {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-field-layout-v-label {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-field-multi {
  padding: 12px 0;
}
.t-field-layout-label-required {
  display: inline;
}
.t-field-layout-label-required svg {
  vertical-align: middle;
}
.t-gallery .t-slide-nav {
  -webkit-box-pack: end /*待验证 是否要删除*/;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 10px;
}
.t-gallery .t-slide-nav {
  bottom: 7px;
}
.t-gallery-item {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end /*待验证 是否要删除*/;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.t-gallery-item .t-gallery-item-name {
  color: #fff;
  background: rgba(0,0,0,0.5);
  height: 24px;
  line-height: 24px;
  padding-left: 10px;
  padding-right: 120px;
  font-size: 14px;
  display: block;
}
.t-group-head {
  background-color: #f7f7f7;
  color: #999;
  font-size: 12px;
  line-height: 18px;
}
.t-group-list {
  background-color: #fff;
  border-bottom: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-group-list {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-group-list {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-group-list + .t-group-list {
  border-top: none !important;
}
.t-group-list-item {
  position: relative;
}
.t-group-list-item:after {
  z-index: 1;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-group-list-item:after {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-group-list-item:after {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-group-list-item:last-child:after {
  border-bottom: 0 !important;
}
.t-grid-cell-full {
  width: 100%;
  height: 100%;
}
.t-grid {
  border-top: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-grid {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-grid {
  border-top: 0.013333333333333rem solid #ccc;
}
.t-grid-row {
  border-bottom: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-grid-row {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-grid-row {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-grid-item + .t-grid-item {
  border-left: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-grid-item + .t-grid-item {
  border-left: 0.5px solid #ccc;
}
.hairline.dpr3 .t-grid-item + .t-grid-item {
  border-left: 0.013333333333333rem solid #ccc;
}
.t-grid.t-no-line {
  border-top: none !important;
}
.t-grid.t-no-line .t-grid-item + .t-grid-item {
  border-left: none !important;
}
.t-grid.t-no-line .t-grid-row {
  border-bottom: none !important;
}
.t-grid-touchable .t-grid-item:active {
  background-color: #f0f0f0;
  border-color: #e3e3e3;
}
.t-icon {
  position: relative;
}
.t-icon-svg {
  vertical-align: middle;
  background: transparent;
}
.t-icon-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.t-layer {
  position: fixed;
}
.t-list-wrap {
  position: relative;
  padding: 12px 10px;
  background: #fff;
  z-index: 1;
  transition-duration: 0.5s;
}
.t-list-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-right: 10px;
  margin-left: 5px;
}
.t-list-text-content {
  margin-right: 10px;
}
.t-list-title {
  color: #222;
  font-size: 16px;
  line-height: 22px;
}
.t-list-title-date {
  float: right;
  color: #999;
  font-size: 12px;
}
.t-list-text {
  color: #999;
  font-size: 12px;
  line-height: 18px;
}
.t-list-img-right {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.t-list-behind {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.t-list-delete-btn {
  color: #fff;
  background: #ff5943;
  width: 80px;
  text-align: center;
  height: 100%;
  float: right;
  font-size: 17px;
  padding: 0.7em 1em;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  display: table;
}
.t-list-delete-btn-text {
  display: table-cell;
  vertical-align: middle;
}
.t-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  opacity: 0;
  z-index: 100;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}
.t-mask.visible {
  display: block;
}
.t-nav-bar {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #f70;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}
.t-nav-bar-left {
  display: inline-block;
  font-size: 14px;
}
.t-nav-bar-left-option {
  float: left;
}
.t-nav-bar-arrow-left {
  fill: #fff;
  margin-top: 8px;
  margin-left: 5px;
  margin-right: -8px;
  float: left;
}
.t-nav-bar-close {
  display: inline-block;
  margin-left: 15px;
}
.t-nav-bar-center {
  font-size: 16px;
  width: 110px;
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  margin-left: -55px;
}
.t-nav-bar-right {
  display: inline-block;
  font-size: 14px;
  float: right;
}
.t-nav-bar-right-text {
  padding-right: 16px;
  display: inline-block;
}
.t-note {
  position: relative;
  background-color: #f70;
  padding: 0 10px;
  color: #fff;
  min-height: 32px;
}
.t-note-message,
.t-note-close {
  font-size: 14px;
  line-height: 20px;
  padding-left: 10px;
}
.t-note svg {
  fill: #fff;
  margin-right: -2px;
}
.t-photo-item {
  padding: 10px 20px 0 0;
}
.t-photo-item img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
.t-photo-field {
  overflow: hidden;
}
.t-photo-field .t-field-box {
  min-height: 44px;
  line-height: 20px;
  padding-left: 15px;
}
.t-photo-field .t-field-layout-h-label {
  padding: 12px 0;
  width: 100px;
  line-height: 20px;
}
.t-photo-field .t-select-field-placeholder {
  color: #ccc;
}
.t-photo-icon {
  margin-right: 12px;
}
.t-photo-list {
  padding: 0 15px 30px 15px;
  width: 100%;
  overflow: hidden;
}
.t-photo-delete {
  background: url("//img.alicdn.com/tps/TB1pAbyKpXXXXbuXFXXXXXXXXXX-32-32.png") no-repeat;
  background-size: 16px 16px;
  width: 16px;
  height: 16px;
  top: 2px;
  right: 12px;
  z-index: 2;
}
.t-field-layout-label-required {
  display: inline;
}
.t-field-layout-label-required svg {
  vertical-align: middle;
}
.t-radio-field {
  display: block;
}
.t-radio-field-icon-div {
  width: 30px;
  min-width: 20px;
  min-height: 44px;
}
.t-radio-field-icon {
  vertical-align: middle;
}
.t-radio-field-icon.checked > svg {
  fill: #f70;
}
.t-radio-field-icon.noChecked > svg {
  visibility: hidden;
}
.t-radio-field-icon.disable > svg {
  fill: #ccc;
}
.t-radio-field-text {
  vertical-align: middle;
  font-size: 14px;
  min-width: 0;
  min-height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-radio-field-text.disable {
  color: #ccc;
}
.t-radio-field-row {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  background-color: #fff;
}
.t-checkbox-label {
  line-height: 20px;
  padding: 10px 15px;
  background-color: #f7f7f7;
}
.t-rate-item {
  width: 30px;
  height: 30px;
  text-align: center;
  overflow: hidden;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.t-rate-item:first-child {
  padding-left: 0 !important;
}
.t-rate-item:last-child {
  padding-right: 0 !important;
}
.t-rate-item svg {
  width: 100%;
  height: 100%;
  fill: #dbdbdb;
}
.t-rate-item.active svg {
  fill: #f70;
}
.t-search-bar {
  display: block;
}
.t-search-bar-wrapper {
  position: relative;
  background: #fff;
  padding: 10px;
  height: 46px;
  overflow-x: hidden;
  box-shadow: 0 1px 0 0 #ededed;
}
.t-search-bar-box {
  position: relative;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
}
.t-search-bar-holder-wrapper {
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  color: #bcbcbc;
  background: #e8e8e8;
  height: 26px;
  line-height: 26px;
  border-radius: 4px;
}
.t-search-bar-holder {
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.t-search-bar-btn,
.t-search-bar-input {
  height: 26px;
}
.t-search-bar-btn {
  color: #f70;
  position: absolute;
  top: 10px;
  right: -50px;
  width: 50px;
  line-height: 26px;
  font-size: 15px;
  text-align: right;
  padding-right: 10px;
  background: transparent;
  z-index: 99;
}
.t-search-bar-input[type="search"] {
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  background: #e8e8e8;
  border-radius: 4px;
  border: none;
  outline: none;
  color: #222;
  -webkit-appearance: none;
  box-sizing: border-box;
  line-height: 18px;
}
.t-search-bar-icon-cross,
.t-search-bar-icon-search {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.t-search-bar-icon-cross svg,
.t-search-bar-icon-search svg {
  vertical-align: middle;
}
.t-search-bar-icon-search {
  left: 6px;
}
.t-search-bar-icon-cross {
  right: 6px;
  -webkit-transform: scale(0) translateY(-50%);
  transform: scale(0) translateY(-50%);
  transform-origin: center top;
}
.t-search-bar-icon-cross.active {
  -webkit-transform: scale(1) translateY(-50%);
  transform: scale(1) translateY(-50%);
}
.t-search-bar.active .t-search-bar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding-right: 50px;
}
.t-search-bar.active .t-search-bar-btn {
  right: 0;
}
.t-search-bar-list {
  position: fixed;
  top: 46px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #f5f5f5;
  -webkit-overflow-scrolling: touch;
}
.t-search-bar-result {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}
.t-search-bar-result.active {
  display: block;
}
.t-search-bar-wrapper,
.t-search-bar-btn,
.t-search-bar-icon-cross {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.t-search-bar-history {
  display: none;
}
.t-search-bar-history.active {
  display: block;
}
.t-search-bar-history-list {
  margin: 5px 0;
}
.t-search-bar-history-list > li > span {
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  padding: 8px 10px;
  border-radius: 1em;
  color: #666;
}
.t-search-bar-history-header {
  font-size: 12px;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  color: #999;
}
.t-search-bar-history-action {
  float: right;
  padding-left: 20px;
  color: #45a8e6;
  letter-spacing: 1px;
}
.t-search-bar.en_US .t-search-bar-btn {
  right: -68px;
  width: 68px;
}
.t-search-bar.en_US.active .t-search-bar-btn {
  right: 0;
}
.t-search-bar.en_US.active .t-search-bar-wrapper {
  padding-right: 68px;
}
.t-select-field-value > * {
  vertical-align: middle;
}
.t-select-field-icon svg {
  fill: #ccc;
}
.t-select-field-placeholder {
  max-width: 100%;
  height: 24px;
  line-height: 24px;
  color: #ccc;
}
.t-select-field-readonly {
  color: #ccc;
}
.t-scroller {
  overflow: hidden;
}
.t-scroll-list {
  overflow: hidden;
  margin: 0;
  width: 100%;
  height: 100%;
  flex: 1;
}
.t-scroll-list .pullword {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #999;
}
.t-scroll-list .loading-container {
  width: 100%;
  text-align: center;
  color: #999;
}
.t-scroll-list .loading-container .loading {
  width: 30px;
  height: 14px;
  background: url("https://img.alicdn.com/tps/TB1fPYRMXXXXXcdXFXXXXXXXXXX-480-238.svg") center no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.t-scroll-list .loading-container .loading-word {
  display: inline-block;
  line-height: 14px;
  padding-left: 0;
}
.t-scroll-list .loading-container .icon {
  display: inline-block;
}
.t-scroll-list .loading-container .icon svg {
  margin-top: -4px;
}
.t-scroll-list .empty-icon {
  background-position: center center;
  background-color: transparent;
  -webkit-background-size: contain;
  background-size: contain;
  background-repeat: no-repeat;
  height: 230px;
  margin: 0 auto 10px;
}
.t-scroll-list-inner {
  min-height: 101%;
}
.t-scroll-list .loading-container.pull-loader {
  padding-bottom: 30px;
  padding-top: 10px;
}
.t-scroll-list .loading-container.push-loader {
  padding-top: 30px;
  padding-bottom: 10px;
}
.vc-scrolldemo {
  color: #000;
  padding: 30px 10px;
  text-align: center;
  background: #a9c8f4;
}
.t-slide-nav {
  position: absolute;
  bottom: 5px;
  width: 100%;
}
.t-slide-nav .t-slide-nav-item {
  width: 4px;
  height: 8px;
  height: 4px;
  width: 8px;
  opacity: 0.3;
  background-color: #fff;
}
.t-slide-nav .t-slide-nav-item.active {
  opacity: 1;
}
.t-slide {
  position: relative;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  overflow: hidden;
}
.t-slide-view {
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.t-slide-item {
/*不能在这里设置transition time 否则初始化的时候就有动画*/
  top: 0;
  left: -10000px;
  position: absolute;
  width: 100%;
  height: 100%;
}
.t-slide-item > div {
  height: 100%;
}
.t-slide-img-contain .t-slide-item {
  -webkit-background-size: contain;
  background-size: contain;
}
.t-slide-img-cover .t-slide-item {
  -webkit-background-size: cover;
  background-size: cover;
}
.t-slide-item.ready {
  left: 0;
}
.t-slide-item img {
  -webkit-user-drag: none;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.t-slide-next,
.t-slide-prev {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background-color: rgba(0,0,0,0.2);
  top: 75px;
  color: #fff;
  z-index: 2;
  text-align: center;
  margin: auto;
  cursor: pointer;
}
.t-slide-next {
  right: 4px;
}
.t-slide-prev {
  left: 4px;
}
.t-slide-title {
  font-size: 14px;
  color: #fff;
  background-color: rgba(0,0,0,0.2);
  padding: 6px;
  text-align: left;
  pointer-events: none;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.t-slide-status-dot {
  text-align: center;
  height: 30px;
  font-size: 0;
}
.t-slide-status-dot b {
  display: inline-block;
  margin: 11px 2px;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(144,144,144,0.8);
  box-shadow: inset 0 1px 1px 0 rgba(0,0,0,0.5);
}
.t-slide-status-dot b.current {
  background-color: #f44447;
}
.t-slot-header {
  background-color: #f7f7f7;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  border-style: solid none;
  height: 40px;
  font-size: 14px;
  color: #666;
}
.hairline.dpr2 .t-slot-header {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-slot-header {
  border-top: 0.013333333333333rem solid #ccc;
}
.hairline.dpr2 .t-slot-header {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-slot-header {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-slot-columns {
  background-color: #f7f7f7;
  border-bottom: 1px solid #e3e3e3;
  height: 26px;
  line-height: 26px;
  font-size: 14px;
  color: #666;
}
.hairline.dpr2 .t-slot-columns {
  border-bottom: 0.5px solid #ccc;
}
.hairline.dpr3 .t-slot-columns {
  border-bottom: 0.013333333333333rem solid #ccc;
}
.t-slot-cancel {
  margin-left: 15px;
}
.t-slot-confirm {
  margin-right: 15px;
}
.t-slot-cancel,
.t-slot-confirm {
  min-width: 29px;
  line-height: 40px;
  white-space: nowrap;
}
.t-slot-confirm.enable {
  color: #f70;
}
.t-slot-title {
  color: #222;
}
.t-slot-body {
  height: 200px;
  overflow: hidden;
  background-color: #fff;
  font-size: 14px;
  color: #222;
}
.t-slot-body > .t-scroller > .t-DIB {
  width: 100%;
}
.t-slot-body > div {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(40%, #000), color-stop(60%, #000), color-stop(100%, rgba(0,0,0,0)));
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0, #000 40%, #000 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0, #000 40%, #000 60%, rgba(0,0,0,0) 100%);
}
.t-slot-body li {
  height: 40px;
  overflow: hidden;
  line-height: 40px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.t-slot-body:before,
.t-slot-body:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 80px;
  left: 0;
  height: 0;
  width: 100%;
  border-top: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-slot-body:before,
.hairline.dpr2 .t-slot-body:after {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-slot-body:before,
.hairline.dpr3 .t-slot-body:after {
  border-top: 0.013333333333333rem solid #ccc;
}
.t-slot-body:after {
  top: 120px;
}
.t-switch {
  display: inline-block;
  pointer-events: auto;
  position: relative;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  overflow: hidden;
}
.t-switch-back {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  border-radius: 40px;
  border: solid 2px #e6e6e6;
  box-sizing: border-box;
  content: ' ';
  cursor: pointer;
  display: inline-block;
  height: 30px;
  pointer-events: none;
  width: 50px;
  -webkit-background-clip: padding-box;
}
.t-switch-radius {
  -webkit-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  -o-transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  transition: 0.3s cubic-bezier(0, 1.1, 1, 1.1);
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 0 5px rgba(0,0,0,0.35), 0 1px 1px rgba(0,0,0,0.15);
  display: block;
  height: 26px;
  left: 2px;
  position: absolute;
  top: 2px;
  width: 26px;
}
.t-switch-radius:before {
  content: " ";
  left: -21.5px;
  padding: 18.5px 34px;
  position: absolute;
  top: -4px;
}
.t-switch.active .t-switch-back {
  border-color: #44db5e;
  background-color: #44db5e;
}
.t-switch.active .t-switch-radius {
  -webkit-transform: translate3d(20px, 0, 0);
  transform: translate3d(20px, 0, 0);
  background-color: #fff;
}
.t-switch.readOnly > .t-switch-back {
  opacity: 0.6;
}
.t-switch-field .t-switch {
  height: 30px;
  margin-right: 15px;
}
.t-tab {
  overflow: hidden;
  position: relative;
}
.t-tab [role="pendant"] {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 46px;
  line-height: 46px;
  z-index: 2;
  background-color: #fff;
}
.t-tab-head {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  height: 47px;
  border-bottom: 1px solid #e3e3e3;
}
.t-tab-head-scroll {
  white-space: nowrap;
}
.t-tab-head-container {
  height: 100%;
}
.t-tab-head-item {
  padding: 0 12px;
  height: 46px;
  line-height: 46px;
  overflow: hidden;
  cursor: pointer;
  color: #666;
  font-size: 14px;
}
.t-tab-head-item.active {
  color: #f70;
  border-bottom: 2px solid #f70;
}
.hairline .t-tab-head {
  border-bottom-width: 0.5px;
}
.brick .t-tab-head {
  padding: 8px 0;
  border: 0;
}
.brick .t-tab-head-container {
  background-color: #fff;
  padding: 0 12px;
  margin: 0 auto;
}
.brick .t-tab-head-item {
  color: #f70;
  font-size: 13px;
  line-height: 18px;
  height: 30px;
  padding: 0;
  padding-top: 5px;
  border-top: 1px solid #f70;
  border-bottom: 1px solid #f70;
  border-left: 1px solid #ffbb80;
  border-right: none;
}
.brick .t-tab-head-item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-left: 1px solid #f70;
}
.brick .t-tab-head-item:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-right: 1px solid #f70;
}
.brick .t-tab-head-item.active {
  background: #f70;
  color: #fff;
  border-left: 1px solid #f70;
}
.brick .t-tab-head-item.active + .t-tab-head-item {
  border-left: 1px solid #f70;
}
.fixed-top .t-tab-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.fixed-top > .t-tab-body {
  margin-top: 47px;
}
.fixed-bottom .t-tab-head {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.fixed-bottom > .t-tab-body {
  margin-bottom: 47px;
}
.t-tab-bar {
  display: block;
}
.t-tab-bar-contents {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 50px;
}
.t-tab-bar-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  display: none;
}
.t-tab-bar-content.active {
  display: block;
}
.t-tab-bar-items {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #fafafa;
  height: 50px;
  border-top: 1px solid #e3e3e3;
}
.hairline.dpr2 .t-tab-bar-items {
  border-top: 0.5px solid #ccc;
}
.hairline.dpr3 .t-tab-bar-items {
  border-top: 0.013333333333333rem solid #ccc;
}
.t-tab-bar-item {
  position: relative;
  text-align: center;
  color: #919191;
}
.t-tab-bar-item.active {
  color: #f70;
}
.t-tab-bar-item-label {
  display: block;
  font-size: 10px;
  line-height: 12px;
}
.t-tab-bar-item-img-icon {
  display: block;
  margin: 0 auto;
  width: 25px;
  height: 25px;
}
.t-tab-bar-item-icon {
  display: inline-block;
  position: relative;
}
.t-tab-bar-item-tingle-icon svg {
  fill: #919191;
}
.active > .t-tab-bar-item-icon svg {
  fill: #f70;
}
.t-tab-bar-item-badge {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: -8px;
  display: inline-block;
  padding: 0 3px;
  min-width: 16px;
  line-height: 16px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background: #f04631;
  border-radius: 8px;
  z-index: 1;
}
.t-tab-bar-item-badge.point {
  min-width: 10px;
  height: 10px;
  border-radius: 10px/2;
}
.t-text-field-input {
  padding: 0;
  border: none;
  outline: none;
  color: #222;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  background-color: transparent;
  z-index: 2;
  position: relative;
}
.t-text-field-placeholder {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 100%;
  height: 20px;
  line-height: 20px;
  color: #ccc;
  z-index: 0;
}
.readonly .t-text-field-input {
  color: #ccc;
}
.t-textarea-field-content {
  position: relative;
  padding: 0 18px 0 0;
  border: none;
  outline: none;
  width: 100%;
  background-color: transparent;
  z-index: 2;
  resize: none;
}
.t-textarea-field-content::-webkit-scrollbar-track {
  background-color: transparent;
}
.t-textarea-field-content::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}
.t-textarea-field-content::-webkit-scrollbar-thumb {
  background-color: #ddd;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.t-textarea-field-content::-webkit-input-placeholder {
  color: #ccc;
}
.readonly .t-textarea-field-content {
  color: #ccc;
}
.t-toast {
  background-color: rgba(50,54,66,0.9);
  padding: 10px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.t-toast-icon + .t-toast-content {
  margin-top: 4px;
}
.t-toast-icon.toast-loading {
  -webkit-animation: rot 0.9s infinite linear;
  animation: rot 0.9s infinite linear;
}
.t-toast-content {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 6px;
}
.t-toast-icon-loading {
  width: 36px;
  height: 36px;
  background: url("//aliwork.alicdn.com/tps/TB1LV66MXXXXXbQXpXXXXXXXXXX-48-24.gif") center no-repeat;
  background-image: url("//aliwork.alicdn.com/tps/TB1fPYRMXXXXXcdXFXXXXXXXXXX-480-238.svg"), none;
  background-size: contain;
}
@-moz-keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes rot {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
