/* line 3, ../sass/tmp.scss */
* {
    box-sizing: border-box;
}

/* line 8, ../sass/tmp.scss 
html, body {
  margin: 0 0;
  padding: 0;
  height: 100%;
}

/* line 15, ../sass/tmp.scss 
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #212121;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
*/

/* line 27, ../sass/tmp.scss */
.donut {
    position: fixed;
    right: 60px;
    bottom: 60px;
    height: 64px;
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all 0.5s ease;
    display: none;
}

.donut-on {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

/* line 33, ../sass/tmp.scss */
.donut__copy {
    text-align: center;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    top: 0;
    left: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* line 43, ../sass/tmp.scss */
.donut__title, .donut__secondary {
    display: block;
    margin: 0;
    padding: 0;
}

/* line 50, ../sass/tmp.scss */
.donut__title, .donut__spic {
    color: #191F25;
    font-family: Avenir;
    font-weight: 600;
}

/* line 56, ../sass/tmp.scss */
.donut__title {
    font-size: 24px;
    position: relative;
    animation: donutTitleFadeLeft 800ms 200ms cubic-bezier(0.99, 0.01, 0.22, 0.94) forwards;
    opacity: 0;
    transform: translateX(0);
}

/* line 64, ../sass/tmp.scss */
.donut__spic {
    position: absolute;
    top: 2px;
    margin-left: -1px;
    font-size: 8px;
    line-height: 1em;
    content: "%";
    animation: donutTitleFadeRight 800ms 200ms cubic-bezier(0.99, 0.01, 0.22, 0.94) forwards;
    opacity: 0;
    transform: translateY(-20px);
}

@keyframes donutTitleFadeLeft {
    from {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(-10px);
    }

}

@keyframes donutTitleFadeRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/* line 101, ../sass/tmp.scss */
.donut__svg {
    transform: rotate(-90deg);
    border-radius: 50%;
    background: #fff;
    box-shadow: -2px 0px 12px rgba(25, 31, 37, 0.3);
}

/* line 105, ../sass/tmp.scss */
.donut__svg__circle--one {
    stroke-dasharray: 182.21237;
    stroke-dashoffset: 182.21237;
    transition: stroke-dashoffset 1200ms cubic-bezier(0.99, 0.01, 0.62, 0.94);
}

/* line 113, ../sass/tmp.scss */
.info {
    font-size: 14px;
    color: #999;
    position: absolute;
    flex: 1;
    bottom: 40px;
    width: 100%;
    left: 0;
    text-align: center;
}

/* line 123, ../sass/tmp.scss */
.info a {
    color: #999;
}

.downtext {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 64px;
    background: linear-gradient(120deg, #00B4FF, #008AFF);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    display: none;
}

.export-layer-close {
    position: absolute;
    top: -10px;
    right: -12px;
    font-size: 9px;
    color: #A9A9A9;
    padding: 5px;
    cursor: pointer;
}

/* in-box */
.export-clear-record {
    position: absolute;
    top: 18px;
    right: 60px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(25, 31, 37, 0.72);
    display: inline-block;
    cursor: pointer;
}

.export-clear-record:hover {
    color: #1A73E8;
}

.export-list {
    height: calc(100% + 20px);
    overflow: auto;
    margin: 0 -20px;
}

.export-list-box {
    border-bottom: 10px solid #EFEFEF;
    padding: 0 20px 20px;
}

.export-list-box:last-of-type {
    border-bottom: none;
}

.export-list-box .export-list-date {
    font-size: 14px;
    font-weight: 400;
    color: #6E6E6E;
    line-height: 1;
    margin: 20px 0;
}

.export-list-box .export-list-record {
}

.export-list-box .export-list-record .export-record-box {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    line-height: 1;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
}

.export-list-box .export-list-record .export-record-box:last-of-type {
    margin-bottom: 0;
}

.export-record-box .export-record-header {
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}

.export-record-box .export-record-header .record-title {
    font-size: 14px;
    font-weight: 500;
    color: #1A73E8;
}

.export-record-box .export-record-header .record-state {
    font-size: 14px;
    font-weight: 500;
    color: rgba(25, 31, 37, 0.56);
}

.export-record-box .export-record-header .exporting {
    /*color: #1A73E8;*/
}

.export-record-box .export-record-data-calc {
    font-size: 13px;
    font-weight: 400;
    color: rgba(25, 31, 37, 0.72);
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}

.export-record-box .export-record-data-calc .record-countdown {
    color: #ef5300;
}

.export-record-box .export-record-rate-progress {
    margin-bottom: 14px;
}

.export-record-box .export-record-rate-progress .export-rp-bg {
    height: 6px;
    border-radius: 50px;
    background: #DFDFDF;
    overflow: hidden;
    box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.5);
}

.export-record-box .export-record-rate-progress .export-rp-bg .export-rp-live {
    height: 100%;
    border-radius: 50px;
    /*background: #1A73E9 linear-gradient(to right, #1A73E9, #27D1C7);*/
    background: #3296FA linear-gradient(to right, #3296FA, #54B3F7);
    box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.export-record-box .export-record-btn {
}

.export-record-box .export-record-btn button {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 15px;
    min-width: 64px;
    outline: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 50px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #3296FA;
    color: #3296FA;
    margin-right: 10px;
    outline: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    outline-width: 0;
    position: relative;
    user-select: none;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.44, 0.9, 0.6, 0.94);
    transition-property: background, color, box-shadow;
}

.export-record-box .export-record-btn button:hover {
    color: #1A73E8;
    outline: none;
    border: 1px solid #1A73E8;
    background: #FFF;  /*border: 1px solid rgba(210,227,252,1);*/
    background: rgba(66, 133, 244, 0.04);
    box-shadow: 0 1px 2px 0 rgba(200, 200, 200, .3), 0 1px 3px 1px rgba(200, 200, 200, .15);
}

.export-record-box .export-record-btn .blue {
    color: #fff;
    border: 1px solid #3296FA;
    background: #3296FA;
}

.export-record-box .export-record-btn .blue:hover {
    color: #fff;
    border: 1px solid #0171c2;
    background: #0171c2;
    box-shadow: 0 1px 2px 0 rgba(66, 133, 244, .3), 0 1px 3px 1px rgba(66, 133, 244, .15);
}

.export-record-box .export-record-btn .green {
    color: #fff;
    border: 1px solid #0BB853;
    background: #0BB853;
}

.export-record-box .export-record-btn .green:hover {
    color: #fff;
    border: 1px solid #088f40;
    background: #088f40;
    box-shadow: 0 1px 2px 0 rgba(8, 143, 64, .3), 0 1px 3px 1px rgba(8, 143, 64, .15);
}

.export-record-box .export-record-btn .record-btn-delete {
    color: #FF6262;
    border: 1px solid #FF6262;
    background: #FFF;
}

.export-record-box .export-record-btn .record-btn-delete:hover {
    color: #D74646;
    border: 1px solid #D74646;
    background: #FFF;
}

.export-record-box .export-record-btn .grey-w {
    color: #a6a6a6;
    border: 1px solid #e6e6e6;
}

.export-record-box .export-record-btn .grey-w:hover {
    color: #a6a6a6;
    border: 1px solid #e6e6e6;
    background: #ffffff;
    box-shadow: none;
    cursor: default;
}

.export-record-box .export-record-btn .grey {
    color: #fff;
    border: 1px solid #0BB853;
    background: #0BB853;
    opacity: 0.4;
}

.export-record-box .export-record-btn .grey:hover {
    color: #fff;
    border: 1px solid #0BB853;
    background: #0BB853;
    box-shadow: none;
    cursor: default;
}

.export-data-nothing {
    position: absolute;
    width: 100%;
    height: calc(100% - 51px);
    margin: 1px -20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: #fff;
    z-index: 1;
}

.export-data-nothing span {
    font-size: 14px;
    color: #C6C6C6;
    display: block;
}

.export-data-nothing .iconnothing {
    height: 90px;
    font-size: 80px;
    color: #000;
    opacity: 0.15;
    display: flex;
    align-items: center;
    margin-top: -30px;
}

.fuchuceng.importexport {
    width: 600px !important;
    height: calc(100% - 300px) !important;
}

.fuchuceng.importexport .handmove {
    background-color: #F7F7F7;
}

@media (max-width:450px) {
    .fuchuceng.importexport {
        width: calc(100% - 40px) !important;
        height: calc(100% - 300px) !important;
    }

}