@charset "utf-8";
.noren{
    text-align: center;
}
.over{
    width: 200px;
    height: 200px;
    display: inline-block;
    overflow: hidden;
    margin: 10px 8px 10px 16px;
    position: relative;
}
.over .caption{
    font-size: 100%;
    text-align: left;
    padding-top: 50px;
    padding-left: 5px;
    padding-right: 5px;
    color: snow;
}
.over .mask{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.over:hover .mask{
    opacity: 1;
}
.captxt{
    float: left;
    font-size:25px;
    padding-left: 10px;
}
.image{
    float: left;
}

.resultBtn{
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    text-align: center;
    color: white;
    border-radius: 10px;
    background-color: rgba(0, 0, 122);
    background-image: linear-gradient(to top left,
                                        rgba(0, 0, 0, .2)
                                        rgba(0, 0, 0, .2) 30%
                                        rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
                inset -2px -2px 3px rgba(0, 0, 0, -6);
}

span {
    font-size: 30px;
    text-underline-position: above;
}

.resultTitle{
    font-size: 40px;
}

.resultCount{
    font-size: 35px;
}

.textBox{
    width: 500px;
    margin: 5px;
    float: left;
    font-size: 18px;
}

.left{
    float: left;
}

.cleard{
    clear: left;
}