body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

body {
    background-color: #bf5555
}

div#root {
    max-width: 100vw;
    overflow: hidden
}

.App {
    -webkit-flex-direction: column;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    min-height: 100vh;
    text-align: center
}

.App,
header {
    display: -webkit-flex;
    display: flex
}

header {
    background-color: #000;
    color: #fff;
    -webkit-align-items: center;
    align-items: center
}

header h1 {
    margin-left: 3%;
    font-style: italic;
    font-size: 1.5em;
    justify-self: flex-end
}

.App-logo {
    width: 30vw;
    max-width: 375px;
    min-width: 100px;
    pointer-events: none;
    padding-left: 3%
}

main {
    background-color: #bf5555;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    /*font-size: calc(10px + 2vmin);*/
    color: #fff;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    margin: 0 1rem;
}

#spinContainer {
    position: absolute;
    padding-bottom: 20px
}

#processCube {
    width: 200px;
    height: 200px
}

.VictoryContainer {
    margin-top: -70px
}

#results {
    width: 100%
}

#results p {
    font-weight: 700;
    margin: 8px 0 15px;
    border-bottom: 1px solid;
    display: inline-block
}

#camBlock {
    padding: 0 20px
}

.snippet {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-right: 2%;
    -webkit-flex: 1 1;
    flex: 1 1;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    color: #e79f23;
    text-align: right;
    font-weight: 700
}

.snippet p {
    margin-right: 30px;
    font-size: 12pt
}

.snippet a {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end
}

#tflogo {
    width: 25vw;
    max-width: 140px
}

.App-link {
    color: #e79f23
}

#fpInfo {
    background-color: rgba(0, 0, 0, .9);
    color: #fff;
    border-radius: 15px;
    max-width: 400px;
    padding: 20px;
    font-size: 1.2em;
    border: 2px solid hsla(0, 0%, 100%, .8)
}

#fpInfo h2 {
    border-bottom: 1px solid;
    color: #fff;
    padding-left: 5px
}

#fpInfo h3 {
    color: #fff
}

#fpInfo a {
    color: #e79f23
}

#fpInfo li {
    padding: 0 0 20px
}

.clickTarget {
    cursor: pointer
}

#overDrop {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center
}

#underDrop {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    font-size: .7em;
    /*background-color: rgba(0, 0, 0, .2);*/
    border-radius: 0 0 15px 15px;
    padding: 0 15px
}

#underDrop,
.switchStation {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center
}

.switchStation {
    float: right
}

.switchStation p {
    padding-right: 10px
}

.photo-box {
    padding: 0px;
    border: 5px dashed #f7c8b0;
    border-radius: 0.3rem;
    line-height: 0;
}

.dropped-photo {
    height: 400px;
    max-width: 100%
}

#predictions {
    min-height: 100px;
    margin-bottom: 20px
}

#predictions ul {
    list-style-type: none;
    margin-top: -1%;
    margin-left: -2%
}

#predictions ul li {
    font-size: .8em;
    color: #e79f23
}

footer {
    background: #000;
    bottom: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: .875em;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    width: 100vw
}

.modelPicker,
footer {
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center
}

.modelPicker {
    padding-top: 20px;
    font-size: 1.2em;
    padding-bottom: 50px
}

.modelPicker p {
    font-size: 1.4em;
    padding-right: 7px
}

footer div {
    display: inline-block;
    margin: 15px 30px
}

footer a {
    color: #fff;
    text-decoration: none
}

footer a:hover {
    color: #e79f23
}

@media screen and (max-width:600px) {
    header {
        -webkit-flex-direction: column;
        flex-direction: column
    }
    header h1 {
        font-size: 1.5em
    }
    .snippet {
        visibility: hidden;
        display: none
    }
    .VictoryContainer {
        margin-top: -40px
    }
    #camDescription span {
        display: none
    }
    #camDescription:after {
        content: "Cam"
    }
    #blurDescription span {
        display: none
    }
    #blurDescription:after {
        content: "模糊"
    }
    #switchStation {
        padding-right: 5px
    }
    #topMessage:after {
        content: " - 点击添加图片"
    }
    #predictions {
        padding-top: 10px
    }
}

/*# sourceMappingURL=main.900c9fde.chunk.css.map */