﻿/* 例如给div添加样式 */
div {
    -webkit-user-select: none; /*谷歌 /Chrome*/
    -moz-user-select: none; /*火狐/Firefox*/
    -ms-user-select: none; /*IE 10+*/
    user-select: none;
}

.search-main {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .12);
    left: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 700px;
    /*overflow: hidden;*/
    position: fixed;
    right: 0;
    top: 70px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    padding: 0 5px;
    padding-right: 0px;
    border: 1px solid;
}
.search-main:focus {
    border: 1px solid #4e6ef2;
}

.search-bar {
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    height: 48px;
    padding: 0px;
    width: 100%;
}
.search-bar:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6)
}

.search-input {
    box-shadow: none !important;
    border: none !important;
}
.search-bar-input {
    position: relative;
    width: 100%;
    padding-left: 10px;
    display: flex;
}

.search-select {
    flex: 1;
}
.search-bar-inputitem {
    background-color: #f5f5f5;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    font-weight: 400;
    margin: 0 4px;
    max-width: 200px;
    overflow: hidden;
    padding: 3px 8px;
    text-overflow: ellipsis;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}


.search-bar-btn {
    align-items: center;
    background-image: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: "none";
    color: #333;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 400;
    height: 32px;
    justify-content: center;
    line-height: 1.5715;
    padding: 4px 12px;
    position: relative;
    text-align: center;
    touch-action: manipulation;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    font-size: 14px;
    min-width: 76px;
    background: #333;
    border-color: #333;
    color: #fff;
    height: 100%;
    border-radius: 0 4px 4px 0;
}

.search-btn:hover {
    border-color: #fafafa;
    color: #fafafa;
}

.question-main {
    padding-top: calc(50px);
    overflow: hidden;
    width: 100%;
    max-width: 700px;
    margin: auto;
}
.table-main {
    width:100%;
}
.item-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: blue 1px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(146, 146, 146, .1);
    -moz-box-shadow: 0 2px 5px 0 rgba(146, 146, 146, .1);
    box-shadow: 0 2px 5px 0 rgba(146, 146, 146, .1);
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    margin-bottom: 10px;
}
.item-title {
    font-size: 18px;
}
.option-answer {
    font-size: 15px;
    font-weight: 550;
    color: #3CB371;   
}
.ytzpager > a, .ytzpager > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

