/*! normalize.css */
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}
pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

button,
input { /* 1 */
    overflow: visible;
}


button,
select { /* 1 */
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}


[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}

/*flex*/
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-no {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.flex-justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.flex-justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.flex-justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.flex-align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.flex-align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flex-align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.flex-align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.flex-align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.flex-align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.flex-align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.flex-align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

.flex-align-self-auto {
    -ms-flex-item-align: auto;
    align-self: auto;
}

.flex-align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.flex-align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.flex-align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.flex-align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.flex-align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-none {
    /* flex:0 0 auto*/
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
}

.flex-auto {
    /* flex:1 1 auto */
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.width0 {
    width: 0;
}

.height0 {
    height: 0;
}

/* 常用类 */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*spacing*/
.p0 {
    padding: 0px;
}

.pv0 {
    padding-top: 0px;
    padding-bottom: 0px;
}

.ph0 {
    padding-left: 0px;
    padding-right: 0px;
}

.pt0 {
    padding-top: 0px;
}

.pb0 {
    padding-bottom: 0px;
}

.pl0 {
    padding-left: 0px;
}

.pr0 {
    padding-right: 0px;
}

.m0 {
    margin: 0px;
}

.mv0 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.mh0 {
    margin-left: 0px;
    margin-right: 0px;
}

.mt0 {
    margin-top: 0px;
}

.mb0 {
    margin-bottom: 0px;
}

.ml0 {
    margin-left: 0px;
}

.mr0 {
    margin-right: 0px;
}

.p5 {
    padding: 5px;
}

.pv5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ph5 {
    padding-left: 5px;
    padding-right: 5px;
}

.pt5 {
    padding-top: 5px;
}

.pb5 {
    padding-bottom: 5px;
}

.pl5 {
    padding-left: 5px;
}

.pr5 {
    padding-right: 5px;
}

.m5 {
    margin: 5px;
}

.mv5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.mh5 {
    margin-left: 5px;
    margin-right: 5px;
}

.mt5 {
    margin-top: 5px;
}

.mb5 {
    margin-bottom: 5px;
}

.ml5 {
    margin-left: 5px;
}

.mr5 {
    margin-right: 5px;
}

.p10 {
    padding: 10px;
}

.pv10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.ph10 {
    padding-left: 10px;
    padding-right: 10px;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.m10 {
    margin: 10px;
}

.mv10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mh10 {
    margin-left: 10px;
    margin-right: 10px;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.p15 {
    padding: 15px;
}

.pv15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.ph15 {
    padding-left: 15px;
    padding-right: 15px;
}

.pt15 {
    padding-top: 15px;
}

.pb15 {
    padding-bottom: 15px;
}

.pl15 {
    padding-left: 15px;
}

.pr15 {
    padding-right: 15px;
}

.m15 {
    margin: 15px;
}

.mv15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.mh15 {
    margin-left: 15px;
    margin-right: 15px;
}

.mt15 {
    margin-top: 15px;
}

.mb15 {
    margin-bottom: 15px;
}

.ml15 {
    margin-left: 15px;
}

.mr15 {
    margin-right: 15px;
}

.p20 {
    padding: 20px;
}

.pv20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.ph20 {
    padding-left: 20px;
    padding-right: 20px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pr20 {
    padding-right: 20px;
}

.m20 {
    margin: 20px;
}

.mv20 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.mh20 {
    margin-left: 20px;
    margin-right: 20px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml20 {
    margin-left: 20px;
}

.mr20 {
    margin-right: 20px;
}

/*穿梭框样式*/
.biz-transfer {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

.biz-transfer-left,
.biz-transfer-right {
    border: 1px solid #dddddd;
    box-sizing: border-box;
    overflow: auto;
    width: 100%;
    height: 100%;
}

.biz-transfer-center {
    width: 80px;
    text-align: center;
}

.biz-transfer-btn {
    line-height: 1.5;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
    cursor: pointer;
    -webkit-transition: all .3s cubic-bezier(.645, .045, .355, 1);
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    height: 32px;
    width: 60px;
    font-size: 14px;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.65);
    background-color: #fff;
    border-color: #d9d9d9;
    margin-bottom: 10px;
}
.biz-transfer-btn:hover{
    background: #2290FE;
    color: #fff;
}
.biz-transfer-title{
    text-align: center;
    font-weight: 600;
}
.biz-transfer-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.biz-transfer-list li {
    padding: 0 15px;
    line-height: 35px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
}

.biz-transfer-list li label>span{
    margin-left: 10px;
}
.biz-transfer-list li label:last-child>span{
    margin-right: 10px;
}
.biz-transfer-list li input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

.attach-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.attach-list-item {
    list-style: none;
    padding: 0 10px;
    margin: 0 0 15px 0;
}

.attach-name {
    margin-right: 10px;
}

.attach-remove {
    cursor: pointer;
}

.attach-remove:hover {
    opacity: .8;
}