.iconfont {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}
html {
	min-width: 1200px;
}
body {
    font-size: .875rem;
}
input{
    border-style: none;
}
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.125rem;
    -moz-border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    background-color: #ccc;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(359deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(359deg)
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(359deg)
    }
}

a:hover {
    text-decoration: none;
}
.container {
	min-width: 1200px;
	width: 1200px;
	max-width: none !important;
}
@media screen and (max-width: 1200px) { 
	body{ 
		width: 100%; 
	} 
} 
.rotating {
    display: inline-block;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
    -webkit-animation: rotate 1s linear infinite;
    -moz-animation: rotate 1s linear infinite;
    -o-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
}

.router-loading {
    height: 2px;
    position: fixed;
    top: 0;
    left: 0;
    width: 0px;
    background: #0EC5A1;
    z-index: 999999;
    display: none;
}

.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.table thead th {
    border-bottom-width: 1px;
}

.custom-control-label {
    position: relative;
    display: inherit;
}

code,pre {
    white-space: pre-wrap;
}

.text-white code, .text-white pre {
    color: #fff;
}

textarea {
    min-height: 110px;
}

blockquote {
    border-left: 5px solid #f86466;
}

blockquote p {
    margin-bottom: 0;
}

.table-card tr:first-child th, .table-card tr:first-child th {
    border-top: none;
    border-bottom-width: 1px;
}


/*Jump*/
.system-jump-box {
    border: 0.25rem solid #c6e9ff;
    margin: 5rem 0;
}

.system-jump-message>h5>.system-jump-icon {
    font-size: 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.system-jump-right {
    background: #e2ffea;
}

.system-jump-right>h5 {
    color: #59ba74;
}

.system-jump-info {
    background: #F2F9FD;
}

.system-jump-info>h5 {
    color: #888888;
}

.system-jump-error {
    background: #fff0f0;
}

.system-jump-error>h5 {
    color: #d70000;
}

.system-jump-loading {
    background: #e8ecff;
}

.system-jump-loading>h5 {
    color: #36befa;
}

/*footer*/
footer {
    padding: 1.875rem 0 3.75rem 0;
    background: #f9f9f9;
}

/*Dialog*/
html #dialogcss-dialog {
    display: none;
    position: absolute;
    width: 1989px;
}
.dialog-box-shade, .dialog-box {
    position: fixed;
    _position: absolute;
    pointer-events: auto;
}

.dialog-box-shade {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    _height: expression(document.body.offsetHeight+"px");
}

.dialog-box {
    -webkit-overflow-scrolling: touch;
}

.dialog-box {
    top: 150px!important;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: #fff;
    -webkit-background-clip: content;
    border-radius: 2px;
    box-shadow: 1px 1px 50px rgba(0,0,0,.3);
}

.dialog-box-close {
    position: absolute;
}

.dialog-box-content {
    position: relative;
}

.dialog-box-border {
    border: 1px solid #B2B2B2;
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);
}

.dialog-box-load {
    background: url(../images/loading-1.gif) #eee center center no-repeat;
}

.dialog-box-ico {
    background: url(../images/icon.png) no-repeat;
}

.dialog-box-dialog .dialog-box-ico, .dialog-box-setwin a, .dialog-box-btn a {
    display: inline-block;
    *display: inline;
    *zoom:1; vertical-align: top;
}

.dialog-box-move {
    display: none;
    position: fixed;
    *position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    cursor: move;
    opacity: 0;
    filter: alpha(opacity=0);
    background-color: #fff;
    z-index: 2147483647;
}

.dialog-box-resize {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 0;
    bottom: 0;
    cursor: se-resize;
}

/* 动画 */
.dialog-anim {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
}

@-webkit-keyframes dialog-bounceIn {
    /* 默认 */
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes dialog-bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

.dialog-anim-00 {
    -webkit-animation-name: dialog-bounceIn;
    animation-name: dialog-bounceIn
}

@-webkit-keyframes dialog-zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes dialog-zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateY(-2000px);
        -ms-transform: scale(.1) translateY(-2000px);
        transform: scale(.1) translateY(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateY(60px);
        -ms-transform: scale(.475) translateY(60px);
        transform: scale(.475) translateY(60px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.dialog-anim-01 {
    -webkit-animation-name: dialog-zoomInDown;
    animation-name: dialog-zoomInDown
}

@-webkit-keyframes dialog-fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes dialog-fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.dialog-anim-02 {
    -webkit-animation-name: dialog-fadeInUpBig;
    animation-name: dialog-fadeInUpBig
}

@-webkit-keyframes dialog-zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

@keyframes dialog-zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) translateX(-2000px);
        -ms-transform: scale(.1) translateX(-2000px);
        transform: scale(.1) translateX(-2000px);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(.475) translateX(48px);
        -ms-transform: scale(.475) translateX(48px);
        transform: scale(.475) translateX(48px);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
}

.dialog-anim-03 {
    -webkit-animation-name: dialog-zoomInLeft;
    animation-name: dialog-zoomInLeft
}

@-webkit-keyframes dialog-rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

@keyframes dialog-rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

.dialog-anim-04 {
    -webkit-animation-name: dialog-rollIn;
    animation-name: dialog-rollIn
}

@keyframes dialog-fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.dialog-anim-05 {
    -webkit-animation-name: dialog-fadeIn;
    animation-name: dialog-fadeIn
}

@-webkit-keyframes dialog-shake {
    0%,100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes dialog-shake {
    0%,100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.dialog-anim-06 {
    -webkit-animation-name: dialog-shake;
    animation-name: dialog-shake
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/* 标题栏 */
.dialog-box-title {
    padding: 0 80px 0 20px;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: #F8F8F8;
    border-radius: 2px 2px 0 0;
}

.dialog-box-setwin {
    position: absolute;
    right: 15px;
    *right: 0;
    top: 15px;
    font-size: 0;
    line-height: initial;
}

.dialog-box-setwin a {
    position: relative;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    font-size: 12px;
    _overflow: hidden;
}

.dialog-box-setwin .dialog-box-min cite {
    position: absolute;
    width: 14px;
    height: 2px;
    left: 0;
    top: 50%;
    margin-top: -1px;
    background-color: #2E2D3C;
    cursor: pointer;
    _overflow: hidden;
}

.dialog-box-setwin .dialog-box-min:hover cite {
    background-color: #2D93CA;
}

.dialog-box-setwin .dialog-box-max {
    background-position: -32px -40px;
}

.dialog-box-setwin .dialog-box-max:hover {
    background-position: -16px -40px;
}

.dialog-box-setwin .dialog-box-maxmin {
    background-position: -65px -40px;
}

.dialog-box-setwin .dialog-box-maxmin:hover {
    background-position: -49px -40px;
}

.dialog-box-setwin .dialog-box-close1 {
    background-position: 1px -40px;
    cursor: pointer;
}

.dialog-box-setwin .dialog-box-close1:hover {
    opacity: 0.7;
}

.dialog-box-setwin .dialog-box-close2 {
    position: absolute;
    right: -28px;
    top: -28px;
    width: 30px;
    height: 30px;
    margin-left: 0;
    background-position: -149px -31px;
    *right: -18px;
    _display: none;
}

.dialog-box-setwin .dialog-box-close2:hover {
    background-position: -180px -31px;
}

/* 按钮栏 */
.dialog-box-btn {
    text-align: right;
    padding: 0 15px 12px;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
}

.dialog-box-btn a {
    height: 28px;
    line-height: 28px;
    margin: 5px 5px 0;
    padding: 0 15px;
    border: 1px solid #dedede;
    background-color: #fff;
    color: #333;
    border-radius: 2px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

.dialog-box-btn a:hover {
    opacity: 0.9;
    text-decoration: none;
}

.dialog-box-btn a:active {
    opacity: 0.8;
}

.dialog-box-btn .dialog-box-btn0 {
    border-color: #007bff;
    background-color: #007bff;
    color: #fff!important;
}
.dialog-box-btn .dialog-box-btn1 {
    border-color: #007bff;
    background-color: #007bff;
    color: #fff!important;
}

.dialog-box-btn-l {
    text-align: left;
}

.dialog-box-btn-c {
    text-align: center;
}

/* 定制化 */
.dialog-box-dialog {
    min-width: 260px;
}

.dialog-box-dialog .dialog-box-content {
    position: relative;
    padding: 20px;
    line-height: 24px;
    word-break: break-all;
    overflow: hidden;
    font-size: 14px;
    overflow-x: hidden;
    overflow-y: auto;
}

.dialog-box-dialog .dialog-box-content .dialog-box-ico {
    position: absolute;
    top: 16px;
    left: 15px;
    _left: -40px;
    width: 30px;
    height: 30px;
}

.dialog-box-ico1 {
    background-position: -30px 0
}

.dialog-box-ico2 {
    background-position: -60px 0;
}

.dialog-box-ico3 {
    background-position: -90px 0;
}

.dialog-box-ico4 {
    background-position: -120px 0;
}

.dialog-box-ico5 {
    background-position: -150px 0;
}

.dialog-box-ico6 {
    background-position: -180px 0;
}

.dialog-box-rim {
    border: 6px solid #8D8D8D;
    border: 6px solid rgba(0,0,0,.3);
    border-radius: 5px;
    box-shadow: none;
}

.dialog-box-msg {
    min-width: 180px;
    border: 1px solid #D3D4D3;
    box-shadow: none;
}

.dialog-box-hui {
    min-width: 100px;
    background-color: #000;
    filter: alpha(opacity=60);
    background-color: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
}

.dialog-box-hui .dialog-box-content {
    padding: 10px 15px;
    text-align: center;
}

.dialog-box-dialog .dialog-box-padding {
    padding: 20px 20px 20px 55px;
    text-align: left;
}

.dialog-box-page .dialog-box-content {
    position: relative;
    overflow: auto;
}

.dialog-box-page .dialog-box-btn,.dialog-box-iframe .dialog-box-btn {
    padding-top: 10px;
}

.dialog-box-nobg {
    background: none;
}

.dialog-box-iframe iframe {
    display: block;
    width: 100%;
}

.dialog-box-loading {
    border-radius: 100%;
    background: none;
    box-shadow: none;
    border: none;
}

.dialog-box-loading .dialog-box-content {
    width: 60px;
    height: 24px;
    background: url(../images/loading-0.gif) no-repeat;
}

.dialog-box-loading .dialog-box-loading1 {
    width: 37px;
    height: 37px;
    background: url(../images/loading-1.gif) no-repeat;
}

.dialog-box-loading .dialog-box-loading2, .dialog-box-ico16 {
    width: 32px;
    height: 32px;
    background: url(../images/loading-2.gif) no-repeat;
}

.dialog-box-tips {
    background: none;
    box-shadow: none;
    border: none;
}

.dialog-box-tips .dialog-box-content {
    position: relative;
    line-height: 22px;
    min-width: 12px;
    padding: 8px 15px;
    font-size: 12px;
    _float: left;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0,0,0,.2);
    background-color: #000;
    color: #fff;
}

.dialog-box-tips .dialog-box-close {
    right: -2px;
    top: -1px;
}

.dialog-box-tips i.dialog-box-TipsG {
    position: absolute;
    width: 0;
    height: 0;
    border-width: 8px;
    border-color: transparent;
    border-style: dashed;
    *overflow: hidden;
}

.dialog-box-tips i.dialog-box-TipsT, .dialog-box-tips i.dialog-box-TipsB {
    left: 5px;
    border-right-style: solid;
    border-right-color: #000;
}

.dialog-box-tips i.dialog-box-TipsT {
    bottom: -8px;
}

.dialog-box-tips i.dialog-box-TipsB {
    top: -8px;
}

.dialog-box-tips i.dialog-box-TipsR, .dialog-box-tips i.dialog-box-TipsL {
    top: 5px;
    border-bottom-style: solid;
    border-bottom-color: #000;
}

.dialog-box-tips i.dialog-box-TipsR {
    left: -8px;
}

.dialog-box-tips i.dialog-box-TipsL {
    right: -8px;
}

/* skin */
.dialog-box-lan[type="dialog"] {
    min-width: 280px;
}

.dialog-box-lan .dialog-box-title {
    background: #4476A7;
    color: #fff;
    border: none;
}

.dialog-box-lan .dialog-box-btn {
    padding: 5px 10px 10px;
    text-align: right;
    border-top: 1px solid #E9E7E7
}

.dialog-box-lan .dialog-box-btn a {
    background: #fff;
    border-color: #E9E7E7;
    color: #333;
}

.dialog-box-lan .dialog-box-btn .dialog-box-btn1 {
    background: #C9C5C5;
}

.dialog-box-molv .dialog-box-title {
    background: #009f95;
    color: #fff;
    border: none;
}

.dialog-box-molv .dialog-box-btn a {
    background: #009f95;
    border-color: #009f95;
}

.dialog-box-molv .dialog-box-btn .dialog-box-btn1 {
    background: #92B8B1;
}

.dialog-box-iconext {
    background: url(../images/icon-ext.png) no-repeat;
}

/* prompt模式 */
.dialog-box-prompt .dialog-box-input {
    display: block;
    width: 230px;
    height: 36px;
    margin: 0 auto;
    line-height: 30px;
    padding-left: 10px;
    border: 1px solid #e6e6e6;
    color: #333;
}

.dialog-box-prompt textarea.dialog-box-input {
    width: 300px;
    height: 100px;
    line-height: 20px;
    padding: 6px 10px;
}

.dialog-box-prompt .dialog-box-content {
    padding: 20px;
}

.dialog-box-prompt .dialog-box-btn {
    padding-top: 0;
}

/* tab模式 */
.dialog-box-tab {
    box-shadow: 1px 1px 50px rgba(0,0,0,.4);
}

.dialog-box-tab .dialog-box-title {
    padding-left: 0;
    overflow: visible;
}

.dialog-box-tab .dialog-box-title span {
    position: relative;
    float: left;
    min-width: 80px;
    max-width: 260px;
    padding: 0 20px;
    text-align: center;
    cursor: default;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.dialog-box-tab .dialog-box-title span.dialog-this {
    height: 43px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    background-color: #fff;
    z-index: 10;
}

.dialog-box-tab .dialog-box-title span:first-child {
    border-left: none;
}

.dialog-box-tabmain {
    line-height: 24px;
    clear: both;
}

.dialog-box-tabmain .dialog-box-tabli {
    display: none;
}

.dialog-box-tabmain .dialog-box-tabli.dialog-this {
    display: block;
}

.dialog-box-photos {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
}

.dialog-box-photos .dialog-box-content {
    overflow: hidden;
    text-align: center;
}

.dialog-box-photos .dialog-box-phimg img {
    position: relative;
    width: 100%;
    display: inline-block;
    *display: inline;
    *zoom:1; vertical-align: top;
}

.dialog-box-imguide,.dialog-box-imgbar {
    display: none;
}

.dialog-box-imgprev, .dialog-box-imgnext {
    position: absolute;
    top: 50%;
    width: 27px;
    _width: 44px;
    height: 44px;
    margin-top: -22px;
    outline: none;
    blr: expression(this.onFocus=this.blur());
}

.dialog-box-imgprev {
    left: 10px;
    background-position: -5px -5px;
    _background-position: -70px -5px;
}

.dialog-box-imgprev:hover {
    background-position: -33px -5px;
    _background-position: -120px -5px;
}

.dialog-box-imgnext {
    right: 10px;
    _right: 8px;
    background-position: -5px -50px;
    _background-position: -70px -50px;
}

.dialog-box-imgnext:hover {
    background-position: -33px -50px;
    _background-position: -120px -50px;
}

.dialog-box-imgbar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
    line-height: 32px;
    background-color: rgba(0,0,0,.8);
    background-color: #000\9;
    filter: Alpha(opacity=80);
    color: #fff;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0;
}

.dialog-box-imgtit {
    /*position:absolute; left:20px;*/
}

.dialog-box-imgtit * {
    display: inline-block;
    *display: inline;
    *zoom:1; vertical-align: top;
    font-size: 12px;
}

.dialog-box-imgtit a {
    max-width: 65%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
}

.dialog-box-imgtit a:hover {
    color: #fff;
    text-decoration: underline;
}

.dialog-box-imgtit em {
    padding-left: 10px;
    font-style: normal;
}

/* 关闭动画 */
@-webkit-keyframes dialog-bounceOut {
    100% {
        opacity: 0;
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    30% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes dialog-bounceOut {
    100% {
        opacity: 0;
        -webkit-transform: scale(.7);
        -ms-transform: scale(.7);
        transform: scale(.7);
    }

    30% {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.dialog-anim-close {
    -webkit-animation-name: dialog-bounceOut;
    animation-name: dialog-bounceOut;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
}

@media screen and (max-width: 1100px) {
    .dialog-box-iframe {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.dialog-msg-error {
    background-color: rgba(234, 36, 55, 1);
}

.dialog-msg-info {
    background-color: rgba(254, 240, 240, 1);
    color: #f56c6c;
}

.dialog-msg-success {
    background-color: rgba(40, 167, 69, 1);
}

.dialog-msg-loading {
    background-color: rgba(21, 200, 228, 1);
}


/*admin*/
.admin-top {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    width: 100%;
    transition: all 0.4s ease-in-out;
    padding-left: 160px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.admin-top>div>a {
    display: block;
    height: 50px;
    line-height: 50px;
}
.left-bar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 160px;
    background-color: #20222a;
    -webkit-box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
    box-shadow: 2px 0 6px rgba(0, 21, 41, 0.35);
    z-index: 1050
}
.left-bar h5 {text-align: center;line-height: 50px;color: #fff;}
.left-nav>a {
    display: block;
    line-height: 42px;
    height: 42px;
    padding: 0 25px;
    border-left: 3px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all .7s cubic-bezier(0,0,.7,1);
    transition: all .7s cubic-bezier(0,0,.7,1);
}
.left-nav>a:hover {
    border-left: 3px solid #1686ef;
    background: rgba(22, 134, 239, 0.6);
    color: rgba(255, 255, 255, 0.9);
}
.left-nav>a.active {
    border-left: 3px solid #1686ef;
    background: #1686ef;
    color: #fff;
}
.admin-content {
    background: #f2f2f2;
    transition: all 0.4s ease-in-out;
    position: relative;
    margin-left: 160px;
    margin-top: 50px;
    padding-bottom: 20px;
}
.cookie-url-item {
    position: relative;
}
.cookie-url-item .cookie-url-delete {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    line-height: 26px;
    background: #1686ef;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.right {
    display: flex;
    width: 330px;
    padding: 14px 26px 14px 13px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #ebeef5;
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
    transition: opacity .3s,transform .3s,left .3s,right .3s,top .4s,bottom .3s;
    overflow: hidden;
    color: #fff;
    right: 16px;
    margin-top: 15px;
    z-index: 100;
}

.guanbi{
    position: absolute;
    top: 5px;
    right: 15px;
    cursor: pointer;
    color: #909399;
    font-size: 25px;
}
.alerttitle{
    font-weight: 700;
    font-size: 16px;
    color: #303133;
    margin: 0;
}

.group-cont{
    margin-left: 13px;
    margin-right: 8px;
}
.group-cont2{
    font-size: 14px;
    line-height: 21px;
    margin: 6px 0 0;
    color: #606266;
    text-align: justify;
}


.url-box {
    height: 50px;
    width: 850px;
    margin: 0 auto;
}
.url-box input {
    background: none;
    padding: 0 15px;
    margin: 0;
    outline: none;
    width: 730px;
    height: 50px;
    line-height: 50px;
    float: left;
    border: 2px solid #1890ff;
    border-radius:  5px 0 0 5px;
    font-size: 15px;
}
.submit {
    padding: 3px 18px;
    float: left;
    text-align: center;
    cursor: pointer;
    user-select: none;
    font-size: 14px;
    border-radius: 30px;
    opacity: 1;
}
.btn-download{
    float: left;
}
.url-box .submit.disabled {
    background-color: #1890ff;
}
.submit:hover {
    opacity: 1;
}
.navbar-index .navbar-brand {
    color: #fff;
}
.navbar-index .navbar-nav .nav-link {
    color: rgba(255,255,255,.8);
}
.navbar-index .navbar-nav .active>.nav-link, .navbar-index .navbar-nav .nav-link.active, .navbar-index .navbar-nav .nav-link.show, .navbar-index .navbar-nav .show>.nav-link {
    color: #fff;
}
.Clipboard {cursor: pointer;}


    .snail-header {
    height: 64px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
    transition: background .3s,width .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
}
.snail-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 960px;
    margin: auto;
    transition: width .3s;
}
.snail-header .container .logo {
    display: inline-block;
    line-height: 64px;
    padding: 0 20px 0 10px;
}
.snail-header .container .logo span {
    vertical-align: middle;
    margin-left: 20px;
    color: #002140;
    font-weight: 550;
    font-size: 16px;
}
.ant-menu {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-variant: tabular-nums;
    font-feature-settings: "tnum";
    margin-bottom: 0;
    padding-left: 0;
    color: rgba(0,0,0,.65);
    list-style: none;
    background: #fff;
    outline: none;
    transition: background .3s,width .3s cubic-bezier(.2,0,0,1) 0s;
    zoom: 1;
    }
.ant-menu-horizontal {
    line-height: 62px;
    white-space: nowrap;
    border: 0;
    border-bottom: unset;
    box-shadow: none;
}
.ant-menu-horizontal>.ant-menu-item{
    position: relative;
    top: 1px;
    display: inline-block;
    vertical-align: bottom;
    border-bottom: 2px solid transparent;
    margin: 0;
    padding: 0 20px;
    white-space: nowrap;
    cursor: pointer;
    transition: color .3s cubic-bezier(.645,.045,.355,1),border-color .3s cubic-bezier(.645,.045,.355,1),background .3s cubic-bezier(.645,.045,.355,1),padding .15s cubic-bezier(.645,.045,.355,1);
}
.ant-menu-item-selected{
    color: #1890ff;
    border-bottom: 2px solid #1890ff!important;
}
.ant-menu-item:hover{
    color: #1890ff;
    border-bottom: 2px solid #1890ff!important;
}
.ant-menu-item .anticon{
    min-width: 14px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
    transition: font-size .15s cubic-bezier(.215,.61,.355,1),margin .3s cubic-bezier(.645,.045,.355,1);
}
.anticon {
    display: inline-block;
    color: inherit;
    font-style: normal;
    line-height: 0;
    text-align: center;
    text-transform: none;
    vertical-align: -.025em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.snail-background {
    position: absolute;
    width: 100%;
    top: 65px;
    height: calc(100% - -100px);
    background-image: url(../images/BJ2.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .50;
}
.ant-card {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    font-feature-settings: "tnum";
    position: relative;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
    background: hsla(0,0%,100%,.95);
    border: unset;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}
.ant-card-body {
    padding: 24px;
    zoom: 1;
    margin-top: 20px;
}
.ant-breadcrumb {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0,0,0,.65);
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    font-feature-settings: "tnum";
    color: rgba(0,0,0,.45);
    font-size: 14px;
}
.snail-row {
    margin-top: 15px;
}
.snail-row * {
    display: inline-block;
}
.ant-row {
    position: relative;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    zoom: 1;
    display: block;
    box-sizing: border-box;
}
.snail-row .row-key {
    width: 80px;
    font-weight: 550;
}
.snail-row .row-content {
    width: calc(100% - 100px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.ant-btn {
    line-height: 32px;
    position: relative;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    text-align: center;
    background-image: none;
    border: 1px solid transparent;
    box-shadow: 0 2px 0 rgb(0 0 0 / 2%);
    cursor: pointer;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: manipulation;
    height: 32px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 4px;
    color: rgba(0,0,0,.65);
    background-color: #fff;
    border-color: #d9d9d9;
}
.ant-btn-primary {
    color: #fff;
    background-color: #1890ff;
    border-color: #1890ff;
    text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
    box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
}
.container .platform-card{
    margin-top: 10px;
}
.ant-card-body h2{
    text-align: center;
}


.ford {
    width: 100%;
    height: 62px;
    background: #fff;
    -webkit-box-shadow: 0 -1px 0 0 hsl(0deg 0% 71% / 18%);
    box-shadow: 0 -1px 0 0 hsl(0deg 0% 71% / 18%);
    position: fixed;
    left: 0;
    bottom: 0;
}
.ford .ford_nei {
    width: 1203px;
    margin: 0 auto;
    height: 100%;
    position: relative;
}
.ford .ford_nei .goods_name {
    display: inline-block;
    line-height: 62px;
    width: 330px;
}
.ford .ford_nei .goods_name img {
    margin-top: 3px;
    margin-left: 12px;
}
.ford .ford_nei .goods_name img, #purchasing_sp .ford .ford_nei .goods_name span {
    display: inline-block;
    vertical-align: middle;
}
.ford .ford_nei .goods_name span {
    color: #545454;
    font-weight: 700;
    font-size: 14px;
    margin-left: 20px;
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ford .ford_nei .goods_name span {
    display: inline-block;
    vertical-align: middle;
}
.ford .ford_nei .jiage {
    display: inline-block;
    margin-left: 60px;
}
.ford .ford_nei .jiage span:first-child {
    font-size: 12px;
    color: #545454;
    font-weight: 700;
}
.ford .ford_nei .jiage span {
    display: inline-block;
    vertical-align: bottom;
}
.ford .ford_nei .jiage span:nth-child(2) {
    margin-left: 9px;
    font-size: 22px;
    color: #3369ff;
    font-weight: 700;
    height: 28px;
}
.ford .ford_nei .jiage .payment_fee {
    margin-left: 5px;
}
.ford .ford_nei .qued_btn {
    width: 135px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 9px;
    background: #3369ff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: none;
    border-radius: 24px;
}


 .fl_hide {
    width: 1131px;
    margin: 0 auto;
}
 .fl_hide .fl_hide_text {
    display: inline-block;
    vertical-align: middle;
}
 .fl_hide .fl_hide_text img {
    display: inline-block;
    vertical-align: bottom;
}
 .fl_hide .fl_hide_text span {
    margin-bottom: 2px;
    color: #545454;
    font-size: 16px;
    font-weight: 700;
    margin-left: 3px;
}
  .fl_hide .fl_hide_text img{
    display: inline-block;
    vertical-align: bottom;
}
.fl_box_xz {
    width: 1131px;
    margin: 0 auto 25px;
    padding-top: 18px;
    max-height: 255px;
    overflow: auto;
}
.fl_box_xz .fl_box_leng {
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
    min-width: 153px;
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    margin-right: 14px;
    height: 67px;
    padding-right: 20px;
    padding-left: 19px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    margin-bottom: 10px;
}
.fl_box_xz .fl_box_leng div:first-child {
    font-weight: 600;
    font-size: 14px;
    color: #545454;
    margin-top: 8px;
}
.fl_box_xz .fl_box_leng div:first-child {
    font-weight: 600;
    font-size: 14px;
    color: #545454;
    margin-top: 8px;
}
.fl_box_xz .fl_box_leng_xz div:nth-child(2) {
    color: #fff;
}
.fl_box_xz .fl_box_leng div:nth-child(2) {
    opacity: .76;
    color: #999;
    font-size: 14px;
    margin-top: 3px;
}
.fl_box_xz .fl_box_leng_xz img {
    display: block!important;
    position: absolute;
    right: -6px;
    bottom: -19px;
}
.fl_box_xz .fl_box_leng_xz div:first-child, #purchasing_sp .fl_box .fl_box_xz .fl_box_leng_xz div:nth-child(2) {
    color: #fff;
}
.fl_box_xz .fl_box_leng_xz div:nth-child(2) {
    color: #fff;
}
.fl_box_xz .fl_box_leng_xz {
    background: linear-gradient(
-45deg,#3369ff,#3798f7);
    -webkit-box-shadow: 0 7px 10px 0 rgb(54 144 248 / 23%);
    box-shadow: 0 7px 10px 0 rgb(54 144 248 / 23%);
    border: 1px solid #3580fb;
}
.ford .ford_nei .jiage span:nth-child(3) {
    margin-left: 9px;
    font-size: 22px;
    color: #3369ff;
    font-weight: 700;
    height: 28px;
}
.ure_info_hide {
    width: 1131px;
    margin: 0 auto;
}
.ure_info_hide img {
    margin-left: 7px;
}
.ure_info_hide span {
    margin-left: 12px;
    color: #545454;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    top: 0px;
}
.ure_info {
    width: 1131px;
    margin: 0 auto;
    border-bottom: 1px solid #f7f7f7;
}
.user_type_hide {
    margin-left: 22px;
    color: #999;
    font-size: 14px;
    line-height: 40px;
    display: flex;
    font-weight: 700;
}
.user_type_hide p:first-child {
    font-size: 12px;
    color: #fb636b;
    width: 20px;
}
.user_type_hide p:nth-child(2) {
    color: #545454;
    font-size: 14px;
}
.row-content p{
    margin-right: 30px;
}
.row-content p i{
    font-weight: 600;
    color: #1890ff;
}
.row-content p span{
    font-weight: 700;
    color: #1890ff;
}
.user-right{
    list-style: none;
}
.Ad {
    width: 100%;
    box-sizing: border-box;
    margin: 26px 0;
}
.Ad .marg {
    padding: 0 10px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.el-row:after, .el-row:before {
    display: table;
}
.el-row:after {
    clear: both;
}
.profile-box{
    padding-left: 35px;
    line-height: 50px;
    width: 25%;
}
.profile-box span{
    font-weight: 700;
    color: #1890ff;
}
.profile-box i{
    font-weight: 700;
    color: #1890ff;
}
.profile-box-error{
    line-height: 50px;
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    color: red;
    text-align: center;
}
.profile-box-error i{
    font-size: 24px;
    font-weight: 700;
}
.el-pro{
    display:flex;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 15%);
}
.layout_grid_box{
    width: 100%;
    box-sizing: border-box;
}
.layout_grid_box .layout_grid{
    --auto-grid-min-size: 219px;
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(var(--auto-grid-min-size),1fr));
    grid-gap: 15px;
}

.layout_grid_box .layout_grid .layout_grid_item .layout_grid_item_link{
    position: relative;
    height: 40px;
    background-color: #fff;
    box-sizing: border-box;
    border-radius: 5px;
    color: #606266;
    font-size: 14px;
    cursor: pointer;
    padding: 0 8px;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    justify-content: space-between;
}
.layout_grid_box .layout_grid .layout_grid_item .layout_grid_item_link .layout_grid_item_link_span{
    display: flex;
    align-items: center;
    padding-left: 4%;
}
.layout_grid_box .layout_grid .layout_grid_item i {
    color: #dddfe4;
}
.layout_grid_box .layout_grid .layout_grid_item .layout_grid_item_link .layout_grid_item_link_span img{
    border-radius: 5px;
    width: 18px;
}
.layout_grid_item:hover .icon-enterinto_fill{
    position: relative;
    left: 3px;
    color: #5d6068!important;
}
.layout_grid_item:hover .layout_grid_item_link{
    position: relative;
    left:5px;
    border: 1px solid #409eff!important;
}
#accordion .panel-title.collapsed:after {
    transform: rotate(0deg);
}
#accordion .panel-title:after{
    content: "\e6f8";
    font-family: "iconfont" !important;
    font-size: 13px;
    font-weight: 200;
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
    transition: all 0.5s ease 0s;
}
.dropdown-menu{
    min-width: 8rem;
}
.dropdown-menu>li{
    line-height: 30px;
    color: #000;
    border-bottom: 1px solid #ebeef5;
}
.dropdown-menu>li:last-child{
    border-bottom: 0px solid #ebeef5;
}
.dropdown-menu>li>a{
    color: #000;
    font-size: 14px;
}
.dropdown-menu>li>a>i{
    margin-right: 5px;
}
.home_head{
    max-width: 291px;
    margin: 0 auto;
    padding: 2vh 0 2vh 0;
    box-sizing: border-box;
    align-items: center;
    user-seletct: none;
    moz-user-select: -moz-none;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    position: relative;
}
.home_input{
    max-width: 886px;
    margin: 0 auto;
    box-sizing: border-box;
    height: 130px;
}
.home_input .inputbox{
    position: relative;
}
.el-input {
    position: relative;
    font-size: 14px;
    display: inline-block;
    width: 100%;
}
.el-input__inner {
    -webkit-appearance: none;
    background-color: #fff;
    background-image: none;
    border: none!important;
    box-sizing: border-box;
    color: #606266;
    display: inline-block;
    font-size: inherit;
    line-height: 40px;
    outline: 0;
    padding: 0 15px;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    width: 100%;
    height: 50px;
    border-radius: 30px;
    box-shadow: 0 0 10px 3px rgba(0,0,0,.1607843137254902);
    padding-left: 30px;
}
.home_input .inputbox .input_btn{
    width: 50px;
    height: 50px;
    font-size: 46px;
    line-height: 50px;
    color: #015ab9;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
}


.icon-loading{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff0;
    border-top-color: #fff;
    border-right-color: #fff;
    /* -webkit-animation: 1s spin linear infinite; */
    animation: 1s spin linear infinite;
}
.icon-loading1{
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff0;
    border-top-color: #000;
    border-right-color: #000;
    /* -webkit-animation: 1s spin linear infinite; */
    animation: 1s spin linear infinite;
}

-webkit-@keyframes spin {
  -webkit-from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  -webkit-to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.el-disable{
    color: #1890ff!important;
    pointer-events:none;
}
.el-down{
    height: 35px;
    line-height: 35px;
}

.user_list_hide {
    margin-left: 22px;
    color: #357efb;
    font-size: 14px;
    line-height: 40px;
    display: flex;
    font-weight: 700;
}