/*common*/

/*清楚内外边距*/
body, html, div, dl, dt, dd, ul, img, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, section {
    padding: 0;
    margin: 0;
    /*手机端上下卡顿慢*/
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

/*设置body和html*/
body, html {
    font-weight: normal;
    touch-action: none;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;

    /*解决移动端iPhone设备点击时出现半透明的灰色背景*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/*去除a标签底部样式*/
body a {
    text-decoration: none;
}

/* 指正在点的链接*/
a:link {
    text-decoration: none;
}

/* 指正常的未被访问过的链接*/

a:visited {
    text-decoration: none;
}

/*指已经访问过的链接*/

a:hover {
    text-decoration: none;
}

/*指鼠标在链接*/

a:active {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*谷歌浏览器消除点击蓝色边框*/
button:focus{
    outline: 0;
}


/*解决input在ios存在重影边框问题*/
input {
    outline: none;
    /* -webkit-appearance: none;*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*清楚ie浏览器自带的删除按钮*/
input::-ms-clear{display:none;}
input::-ms-reveal{display:none;}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #cccccc;
}


/*去除li标签默认点样式*/
body li {
    list-style: none;
}

/*兼容ie8，去掉img默认的蓝色边框*/
body img{
    border: none;
}

/*标签隐藏*/
.hide {
    display: none;
}

/* 去除浮动 */
.clearfix:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    width: 0;
    visibility: hidden;
}
.pt-15{
    padding-top: 15px;
}
.pb-15{
    padding-bottom: 15px;
}
.pb-none{
    padding-bottom: none!important;
}

/* 滚动条美化 */
.beauty-scroll::-webkit-scrollbar-track-piece {
    /*滚动条凹槽的颜色，还可以设置边框属性*/
    background-color:#f8f8f8;
}
.beauty-scroll::-webkit-scrollbar {
    /*滚动条的宽度*/
    width: 2px;
    height: 8px;
}
.beauty-scroll::-webkit-scrollbar-thumb {
    /*滚动条的设置*/
    background-color:#dddddd;
    background-clip:padding-box;
    min-height: 28px;
}
.beauty-scroll::-webkit-scrollbar-thumb:hover {
    background-color:#bbb;
}

/* input初始化样式 */
.input{
    width: 304px;
    height: 44px;
    box-sizing: border-box;
    border-radius: 2px;
    border: solid 1px #d9d9d9;
    padding-left: 10px;
    color: #262626;
    outline: none;
}
.input:hover,.textarea:hover{
    border: 1px solid #2179d9;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    border-radius: 2px;
}

.input-select-time{
    background: #fefefe;
    cursor: pointer;
    padding-left: 40px;
}

.input-select{
    background: #fefefe;
    width: 180px;
    cursor: pointer;
}

.input::placeholder,.textarea::placeholder{
    color: #8c8c8c;
}
.input::-moz-placeholder,.textarea::-moz-placeholder{
    color: #8c8c8c;
}
.input::-webkit-input-placeholder,.textarea::-webkit-input-placeholder{
    color: #8c8c8c;
}
.input::-ms-input-placeholder,.textarea::-ms-input-placeholder{
    color: #8c8c8c;
}

.textarea{
    height: 105px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    outline: none;
    background-color: #ffffff;
    resize: none;
    width: 100%;
    font-size: 14px;
    line-height: 24px;
    color: #262626;
    text-indent: 8px;
    box-sizing: border-box;
    padding: 8px;
}
/* button初始化样式 */
.button{
    display: inline-block;
    padding: 0 12px;
    height: 36px;
    cursor: pointer;
    background-image: linear-gradient(0deg,
    #f9fafb 0%,
    #ffffff 100%);
    border-radius: 2px;
    border: solid 1px #d9d9d9;
    outline: none;
    font-size: 14px;
    color: #262626;
    margin-right: 5px;
}
.button.active{
    color: #ffffff;
    background: #2170d9 !important;
    border: 1px solid #2170d9;
}

/* 搜索内容top */
.main-search-content{
    float: left;
    width: auto;
    padding: 15px 0;
    box-sizing: border-box;
}
.main-item {
    display: inline-block;
    height: 74px;
    height: 100%;
    margin-right: 20px;
}
.main-item:last-of-type{
    margin-right: 0;
}
.main-item>div{
    position: relative;
}
.main-item-time>div>img{
    position: absolute;
    left: 13px;
    top: 50%;
    margin-top: -8px;
}
.main-item-select>div>img{
    position: absolute;
    right: 17px;
    top: 50%;
    margin-top: -3px;
}
.main-item h4{
    height: 30px;
    font-size: 14px;
    color: #262626;
    box-sizing: border-box;
}
.main-item .button{
    height: 44px;
}


/* 遮幕 */
.mask{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 999;
    text-align: center;
}


/* 浮动 */
.fl{
    float: left;
}
.fr{
    float: right;
}

/* 弹窗基本框架 */
.dialog{
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.13);
    position: relative;
    color: #262626;
    text-align: left;
}
.dialog-title{
    height: 54px;
    line-height: 54px;
    text-indent: 24px;
}
.dialog-close{
    float: right;
    outline: none;
    background-color: #ffffff;
    border: none;
    display: block;
    height: 100%;
    width: 54px;
    background: url('../images/dialog_close.png') center no-repeat;
    cursor: pointer;
}
.dialog-close:hover{
    background: url('../images/dialog_close_hover.png') center no-repeat;
}
.dialog-close.active{
    background: url('../images/dialog_close_active.png') center no-repeat;
}
.dialog-operate{
    height: 65px;
    width: 100%;
    text-align: right;
    box-sizing: border-box;
    padding-right: 24px;
    border-top: 1px solid #ebebeb;
    padding-top: 14px;
}
.dialog-operate button{
    margin-right: 16px;
}
.dialog-operate button:last-of-type{
    margin-right: 0;
    color: white;
}

/* 信息确认弹窗样式 */
.dialog-confirm{
    padding: 13px 24px;
    width: 360px;
    box-sizing: border-box;
}
.dialog-confirm-warn{
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* 单列弹窗示例样式 */

.dialog-single-row{
    padding: 13px 24px;
}
.dialog-single-row li{
    margin-bottom: 13px;
}
.dialog-single-row li span{
    padding-right: 10px;
}
.dialog-single-row li:last-of-type{
    margin-bottom: 0;
}

/* 弹窗 多列示例样式 */
.dialog-multiple-columns{
    padding: 13px 24px;
}
.multiple-columns-item{
    margin-bottom: 15px;
    width: 100%;
}
.multiple-columns-item:last-of-type{
    margin-bottom: 0;
}
.dialog-multiple-columns .input-select{
    width: 304px;
}
.multiple-columns-item .w100{
    width: 100%;
}

/* 弹窗 选择接收者弹窗示例样式 */
.select-receiver{
    box-sizing: border-box;
    padding: 13px 24px;
    width: 780px;
}
.select-receiver-search{
    position: relative;
    font-size: 14px;
    color: #262626;
    margin-bottom: 15px;
}
.select-receiver-search input{
    width: 460px;
    padding-left: 47px;
}
.select-receiver-search img{
    position: absolute;
    left: 14px;
    top: 50%;
    margin-top: -8px;
}
.select-receiver-organization{
    width: 256px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #e6e6e6;
    float: left;
    margin-right: 25px;
    overflow-y: auto;
}
.organe-item{
    height: 30px;
    line-height: 30px;
    color: #262626;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}
.organe-item.active,.organe-item:hover{
    background-color: #eff5fc;
}
.organe-item img{
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.organe-item span{
    display: inline-block;
    height: 100%;
}
.organe-control{
    margin-left: 8px;
    margin-right: 2px;
    cursor: pointer;
}
.organe-two-item{
    padding-left: 20px;
}
.organe-three-item{
    padding-left: 42px;
}
.select-receiver-content{
    height: 250px;
    width: 100%;
    margin-bottom: 10px;
}
.select-receiver-radio span{
    position: relative;
    top: 2px;
    margin-right: 30px;
    color: #8c8c8c;
}
.select-receiver-list{
    width: 180px;
    height: 100%;
    border: 1px solid #e6e6e6;
    float: left;
}
.select-receiver-list li{
    height: 30px;
    width: 100%;
    line-height: 30px;
    cursor: pointer;
    font-size: 14px;
    color: #262626;
}
.select-receiver-list li:hover,.select-receiver-list li.active{
    background-color: #eff5fc;
}
.select-receiver-list li img{
    margin-left: 8px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
.select-receiver-oprate{
    float: left;
    width: 87px;
    overflow: hidden;
    text-align: center;
    box-sizing: border-box;
    padding-top: 42px;
}
.select-receiver-oprate button{
    display: inline-block;
    width: 60px;
    height: 36px;
    margin-bottom: 7px;
    outline: none;
    cursor: pointer;
    border: none;
    border: solid 1px #d9d9d9;
    background-color: #fafbfc;
    text-align: center;
}
.select-receiver-oprate button:last-of-type{
    margin-bottom: 0;
}
.select-receiver-oprate button img{
    width: 100%;
    height: 100%;
}
