/*
     滚动条
*/
::-webkit-scrollbar {
		width:10px;
}
::-webkit-scrollbar-button    {
		background-color:#edeff2;
}
::-webkit-scrollbar-track     {
		background:#FF66D5;
}
::-webkit-scrollbar-track-piece {
		background:#edeff2;
}
::-webkit-scrollbar-thumb{
		background:#ccd9ff;
}
::-webkit-scrollbar-corner {
		background:#82AFFF;
}
::-webkit-scrollbar-resizer  {
		background:#FF0BEE;
}

/*
	输入框
*/

.per-input {
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    line-height: 40px;
}


/*文本域*/

.per-textarea {
    height: 80px;
    resize: none;
}


/*获得焦点外发光*/

.per-input[type=text]:focus,
.per-input[type=password]:focus,
.per-textarea:focus {
    border: 1px solid #3461eb;
    box-shadow: 0 0 3px #bbcbfa;
}


/*表单校验*/
.per-input-error{
		border: 1px solid #ea0707;
    box-shadow: 0 0 3px #ffc2c2;
}


/*禁用*/

.per-input[disabled],
.per-input:disabled {
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #e5ecff;
    background-color: #eff3ff;
    font-size: 14px;
    color: #54575f;
    line-height: 40px;
}
.per-check[disabled],.per-check:disabled{
		cursor: pointer;
}

/*placeholder样式*/

.per-input::-webkit-input-placeholder,
.per-textarea::-webkit-input-placeholder {
    color: #999;
}

.per-input:-moz-placeholder,
.per-textarea:-moz-placeholder {
    color: #999;
}

.per-input::-moz-placeholder,
.per-textarea::-moz-placeholder {
    color: #999;
}

.per-input:-ms-input-placeholder,
.per-textarea:-ms-input-placeholder {
    color: #999;
}


/*备注*/

.per-re-div {
    font-size: 12px;
    padding-left: 20px;
    margin-top: 10px;
}

.per-re-title {
    color: #ea0707;
}

.per-remark {
    color: #999;
}


/*
	搜索框
*/

.per-input-search-title {
    color: #555;
    font-size: 14px;
    margin-right: 10px;
}

.per-search-btn {
    margin-left: 20px;
}

.per-input-search-sm {
		width: 360px !important;
		min-width: 150px;
}

.per-input-search {
		width: 494px !important;
		min-width: 150px;
}


/*
	表单
*/

.per-form-group {
    margin-top: 5px;
}

.per-form-title {
    font-size: 14px;
    color: #333;
    line-height: 40px;
    display: inline-block;
    width: 60%;
    min-width: 494px;
}

.per-form-input {
    min-width: 494px;
    width: 60%;
}

.per-file{
	width: 354px;
}


/*不可编辑的输入框组*/

.per-form-disabled {
    /* 2018年1月6日16:54:57新增  待确定要不要添加此属性 */
    word-wrap: break-word;
    height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #e5ecff;
    background-color: #eff3ff;
    font-size: 14px;
    color: #54575f;
    line-height: 40px;
}


/*表单输入框中的文字按钮*/

.per-form-a {
    color: #3461eb;
    font-size: 14px;
    cursor: pointer;
    float: right;
}

.per-form-a:hover {
    color: #4070ff;
}


/*表格中的文字按钮*/

.per-table-a {
    color: #3461eb;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
}

.per-table-a:hover {
    color: #4070ff;
}


/*表单中的单选框组*/

.per-form-radiogroup {
    padding: 5px 0 8px 0;
    width: 60%;
    min-width: 494px;
    padding-left: 20px;
}

.per-form-radiogroup-border {
    height: 30px;
    border-bottom: 1px solid #99b3ff;
}

.per-check-after {
    margin-right: 40px;
}

.iradio_flat+label {
    cursor: pointer;
}


/*
	按钮
*/

.per-btn {
    height: 40px;
    font-size: 14px;
    line-height: 15px;
    border-radius: 0px;
}

.per-btn:hover {
    background-color: #4070ff;
    border: 1px solid #4070ff;
    color: #fff;
}

.btn-sm {
    width: 140px;
}

.btn-md {
    width: 160px;
}

.btn-lg {
    width: 220px;
}


/*页头按钮*/

.per-head-btn {
    width: 100px;
    background-color: #3461eb;
    color: #fff;
    border: none;
}


/*弱化按钮*/

.per-weak-btn {
    background-color: #fff;
    color: #818aa6;
    border: 1px solid #a6adbf;
}


/*普通按钮*/

.per-info-btn {
    background-color: #3461eb;
    color: #fff;
    border: none;
}


/*白色按钮*/

.per-white-btn {
    background-color: #fff;
    color: #3461eb;
    border: 1px solid #3461eb;
}


/*禁用的按钮*/

.per-disabled-btn {
    height: 40px;
    font-size: 14px;
    line-height: 15px;
    border-radius: 0px;
    background-color: #a6adbf;
    color: #fff;
    border: none;
}


/*有备注的按钮*/

.per-form-btn {
    width: 180px;
    background-color: #3461eb;
    color: #fff;
    border: none;
}


/*商城普通按钮*/

.per-sell-btn {
    background-color: #fff;
    color: #ff401a;
    border: 1px solid #ff401a;
}

.per-sell-btn:hover {
    background-color: #ff401a;
    color: #fff;
    border: none;
}

.per-sell-btn:active {
    background-color: #fff;
    color: #ff401a;
    border: 1px solid #ff401a;
}


/*商城支付按钮*/

.per-pay-btn {
    background-color: #ff401a;
    color: #fff;
    border: none;
}

.per-pay-btn:hover {
    background-color: #ff5533;
    color: #fff;
    border: none;
}

.per-pay-btn:active {
    background-color: #fff;
    color: #ff401a;
    border: 1px solid #ff401a;
}


/*
	单选/多选
*/


/*文字*/

.per-check-label {
    font-weight: normal !important;
    margin-left: 6px;
    margin-bottom: 0 !important;
}


/*
	分页
*/

.per-pagination {
    width: 100%;
}

.per-pagination-block {
    height: 85px;
    position: relative;
    margin-bottom: 30px;
}

.per-page {
    border-radius: 0;
    margin-left: auto;
    margin-right: auto;
}

.per-page>li>a,
.per-page>li>span {
    color: #3461eb;
    padding: 6px 15px;
    height: 40px;
    line-height: 27px;
    text-align: center;
}

.per-page>li>a:hover,
.per-page>li>span:hover {
    background-color: #4070ff;
    border-color: #4070ff;
    color: #fff;
}

.per-page>li:first-child>a,
.per-page>li:first-child>span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.prev,
.next {
    width: 80px !important;
}

.per-page>li:last-child>a,
.per-page>li:last-child>span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.per-page>.active>a,
.per-page>.active>a:focus,
.per-page>.active>a:hover,
.per-page>.active>span,
.per-page>.active>span:focus,
.per-page>.active>span:hover {
    background-color: #3461eb;
    border-color: #3461eb;
}

.per-pageinfo {
    color: #555;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #ddd;
    float: right;
    display: inline;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    display: none;
    background-color: #fff;
}

.per-page-info {
    color: #3461eb;
}


/*表格暂无数据*/

.per-nodata {
    width: 100%;
    height: 330px;
    padding-top: 80px;
    text-align: center;
}

.per-nodata-img {
    width: 260px;
    height: 250px;
    margin: 0 auto;
    background-image: url('../images/user/nodata.png');
    background-repeat: no-repeat;
}


/*
	表格页panel
*/


/*表格区域*/

.per-panel {
    width: 100%;
}

.per-panel-head {
    border-top: 1px solid #3461eb;
    border-bottom: 1px solid #ddd;
    background-color: #ebf0ff;
    height: 40px;
    line-height: 40px;
}


/*带背景的表格文字 l：浅色；d：深色*/

.per-bg-td-l {
    background: #b2c6ff;
    padding: 3px 7px;
    color: #fff;
    border-radius: 20px;
}

.per-bg-td-d {
    background: #3366ff;
    padding: 3px 7px;
    color: #fff;
    border-radius: 20px;
}


/*
	表单Panel
*/

.per-form-panel {
    width: 100%;
    font-size: 14px;
}

.per-form-panel-head {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #3461eb;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-weight: bold;
    padding-left: 120px;
    background-color: #ebf0ff;
}

.per-form-panel-headgrey {
    font-size: 13px;
    color: #999;
    font-weight: normal;
}

.per-form-panel-body {
    padding: 0 0 10px 150px;
}

.per-first-td {
    padding-left: 80px !important;
}

/*校验*/
.per-form-panel-error{
		color: #ff3333;
		float: right;
}



/* 更改颜色 mashaobo  2018年1月6日11:37:34 新增*/

.per-panel-color>.per-form-panel-head {
    /* #FFF4EB */
    border-top: 1px solid #FF5B3B;
    background-color: #FFF4EB;
}


/* 其他颜色的禁用输入框样式 */

.per-panel-color .per-form-disabled {
    /* #FFF4EB */
    background-color: #FFF4EB;
}


/*
	个别元素
*/


/*价格文字*/

.per-price {
    color: #ff401a !important;
}

/*select2位置偏移*/
.select2-container{
	margin-top: -3px;
	width: 494px;
}

/*modal背景*/
.modal-backdrop.in{
	opacity: 0;
}

/*面包屑中的链接*/

.per-bread-a {
    color: #3461eb;
    cursor: pointer;
}

.per-bread-a:hover {
    color: #4070ff !important;
    text-decoration: underline;
}

/*搜索条件校验*/
.per-input-search-group-error{
	height: 40px;
	width: auto;
	background-color: #ff3333;
	box-shadow: 0 0 3px #ffc2c2;
	float: left;
	margin-top: 128px;
	position: relative;
	line-height: 40px;
	padding-left: 14px;
	padding-right: 14px;
	color: #fff;
	display: none;
	z-index: 2200;
}
.per-input-search-group-error:before {
  content:"";
  position: absolute;
  left: 40px;
  top: -7px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #ff3333;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}

/*表单必填项红星*/

.per-redstar {
    display: inline-block;
    width: 15px;
    height: 8px;
    margin-left: 10px;
    background-image: url('../images/user/redstar.png');
    background-repeat: no-repeat;
}

a.per-btn {
    text-align: center;
    display: block;
    line-height: 40px;
    border: 1px;
}

a.per-btn:hover {
    text-decoration: none;
}

a.per-btn:focus {
    color: #fff;
    text-decoration: none;
}


/*支付*/

.per-pay {
    width: 135px;
    height: 48px;
    display: inline-block;
    cursor: pointer;
}

.per-wechat-pay {
    background-image: url('../images/user/wechat_pay.png');
    background-repeat: no-repeat;
}

.per-wechat-pay:hover,
.per-wechat-pay:active {
    background-image: url('../images/user/wechat_pay_hover.png');
    background-repeat: no-repeat;
}

.per-ali-pay {
    background-image: url('../images/user/ali_pay.png');
    background-repeat: no-repeat;
}

.per-ali-pay:hover,
.per-ali-pay:active {
    background-image: url('../images/user/ali_pay_hover.png');
    background-repeat: no-repeat;
}

.per-form-pay-border {
    width: 60%;
    min-width: 494px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #99b3ff;
}


/*微信支付modal*/

.per-wechat-pay-modal-body {
    text-align: center;
}

.per-wechat-pay-qr {
    margin-top: 10px;
    margin-bottom: 10px;
}

.per-wechat-pay-info {
    font-size: 12px;
    color: #555;
}

.per-wechat-pay-longinfo {
    font-size: 14px;
    color: #555;
    line-height: 35px;
}
