/*
*@Description: 基本布局
*@Author:      Hanli
*@Update:      Hanli(2020-04-01)
*/

@charset "utf-8";

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: #333333;
    background: #fff;
}

/* 始终不显示滚动条 */
body {
    overflow-x: hidden; /*隐藏水平滚动条*/
    overflow-y: hidden; /*隐藏垂直滚动条*/
}

/* Webkit内核滚动条样式定义 */
/*::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-thumb:vertical{
    background-color:#A5A5A5;
    outline:2px solid #F6F6F6;
    outline-offset:-2px;
	border: 2px solid #F6F6F6;
	-webkit-border-radius:6px;
}
::-webkit-scrollbar-thumb:hover{
    background-color:#bcbcbc;
}*/
/* 内外边距重置 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section ,*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

body, button, input, select, textarea {
    font-family: 'Hiragino Sans GB', 'Hiragino Sans GB W3', 'Microsoft Yahei', '微软雅黑', Tahoma, Arial, Helvetica, STHeiti;
    font-size: 14px;
    word-wrap: break-word;
    color: #333333;
}

input, select, textarea {
    font-size: 100%;
}

div:focus {
    outline: none;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

/* 去除默认边框 */
fieldset, img {
    border: 0;
}

/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}

/* 去掉 firefox 下此元素的边框 */
abbr, acronym {
    border: 0;
    font-variant: normal;
}

/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: 500;
}

/* 去掉列表前的标识, li 会继承 */
ol, ul, li {
    list-style: none;
}

/* 左对齐排版 */
caption, th {
    text-align: left;
}

/* 让标题都自定义 */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 500;
}

q:before, q:after {
    content: '';
}

/* 统一上标和下标 */
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* 让链接在 hover 状态下不显示下划线 */
a{
    color: inherit;
}
a:hover {
    text-decoration: none;
}

a:visited {
    color: inherit;
}

/* 默认不显示下划线 */
ins, a {
    text-decoration: none;
}

/* button的cursor属性 */
button, a {
    outline: none;
    cursor: pointer;
}

/*hr统一样式*/
hr {
    height: 1px;
    border: none;
    border-top: 1px solid #CCCCCC;
}
/* Button */
.btn {
    display:inline-block;
    padding: 0 24px;
    height: 45px;
    line-height: 45px;
    border-radius:4px;
    text-align: center;
    cursor: pointer;
}

.btn:hover{
    opacity: .95;
}

.btn_primary,
.btn_primary:active {
    color: white;
    background:#009FEB;
}
.btn_primary:visited{
    color: #ffffff;
}

.btn_purple,
.btn_purple:active {
    color: white;
    background:#CC6097;
}
.btn_purple:visited{
    color: #ffffff;
}

.btn_grey,
.btn_grey:active {
  background-color: #BDBCBF;
  cursor: default;
}
.btn_grey:visited{
    color: #ffffff;
}

.btn_disabled ,
button[disabled] {
    color: rgba(0,0,0,.38);
    background-color: rgba(0,0,0,.12);
    cursor: default;
}

button{
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: 0;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* Button END */


/*form*/
.input, .textarea,.select{
    height: 45px;
    line-height: 1.3;
    line-height: 45px\9;
    border-width: 1px;
    border-style: solid;
    border-color: #C7CFD8;
    background-color: #fff;
    border-radius: 4px;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input:focus, .textarea:focus, .select:focus{
    border-color: #009FEB;
}

.input:focus, .textarea:focus, .select:focus{
    border-color: #009FEB;
}

.input, .textarea{
    display: block;
    width: 100%;
    padding-left: 10px;
}

.form_item{
    position: relative;
    margin-bottom: 15px;
}

.inputBox{
    position: relative;
}
/*error*/
.inputBox.error input{
    border-color: #ff3366;
}
.inputBox .inputError{
    display: none;
}
.inputBox.error .inputError {
    display: block;
    color: #ff3366;
    font-size: 12px;
    margin: 0;
    line-height: 12px;
    position: absolute;
    right: 0;
    bottom: -16px;
}
/*form END*/

/*-----------------------*/
/*  页面布局  */
.clearB {
    clear: both;
}

.pointer {
    cursor: pointer;
}

.fll {
    float: left;
}

.flr {
    float: right;
}

.mgl10 {
    margin-left: 10px;
}

.mgt5 {
    margin-top: 5px;
}

.mgl5 {
    margin-left: 5px;
}

.mgr5 {
    margin-right: 5px;
}

.padl10 {
    padding-left: 10px;
}

.label_bold {
    color: #848484;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75);
}

.show {
    display: block;
}

.hide {
    display: none;
}

.flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
[v-cloak]{
    display: none;
}

.menu-title{
    width: 133px;
    display: inline-block;
    white-space: initial;
    line-height: 18px;
}
.fee_title{
    width: 235px;
    height: 48px;
}