html,
body {
    height: 100%;
}

body {
    background: #f9f9f9;
    color: #999999;
    font-size: 12px;
    font-family: '宋体', sans-serif;
}

body,
ul,
ol,
dl,
dd,
dt,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
table,
tr,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

ul,
ol,
dl {
    list-style: none;
}

a {
    color: #67A337;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

i,
b,
u {
    font-style: normal;
    font-weight: normal;
}

img,
input,
button {
    display: inline-block;
    border: none;
}

 ::-webkit-input-placeholder {
    color: #D6D6D6;
}

 :-moz-placeholder {
    color: #D6D6D6;
}

 :-ms-input-placeholder {
    color: #D6D6D6;
}

button,
input,
select {
    outline: none;
}

select {
    border: 1px solid #CCCCCC;
    /* white-space: nowrap; */
    overflow: hidden;
    appearance:none;  
    -moz-appearance:none; /* Firefox */  
    -webkit-appearance:none; /* Safari 和 Chrome */
}

select[value=""] {
    color: #D6D6D6;
}

textarea {
    resize: none;
    outline: none;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow: scroll;
    /* border-color: transparent; */
}

/* 快速浮动 */

.fl {
    float: left;
}

.fr {
    float: right;
}


/* 快速对齐 */

.al {
    text-align: left;
}

.ac {
    text-align: center;
}

.ar {
    text-align: right;
}


/* 隐藏显示 */

.hide {
    display: none !important;
}

.show {
    display: block !important;
}


/* 清除浮动 */

.clear,
.clr {
    display: block;
    overflow: hidden;
    clear: both;
    height: 0;
    line-height: 0;
    font-size: 0;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* 快速定位 */
.p_r {
    position: relative;
}

.p_a {
    position: absolute;
}

.p_f {
    position: fixed;
}

/* 拉伸 */
.stretch {
    width: 100%;
    height: 100%;
}

/* 超链接封面 */
.a_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    text-indent: -2000px;
}


/* 超出隐藏 */

.smt {
    overflow: hidden;
}


/* 盒子居中 */

.bc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}


/* 水平居中 */

.hc {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


/* 垂直居中 */

.vc {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


/* Vue解析前隐藏 */

[v-cloak] {
    display: none;
}

/* 弹出框 */
.pupop {
    width: 300px;
    height: 200px;
    background-color: #fff;
}

/* 版心 */
.w1200 {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.input_wrap {
    width: 342px;
    height: 50px;
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 1px #cccccc solid;
    border-radius: 5px;
    padding-left: 60px;
    box-sizing: border-box;
    /* overflow: hidden; */
    position: relative;
}

.input_wrap input,
.input_wrap select {
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.input_wrap select {
    border: 0;
    /* color: #D6D6D6; */
}

.input_wrap > img {
    /* float: left; */
    width: 30px;
    height: 30px;
    margin-left: -45px;
    vertical-align: middle;
}

.slidDown {
    width: 82%;
    background-color: #fff;
    border: 1px solid #CCCCCC;
    position: absolute;
    z-index: 99;
    text-align: left;
    line-height: 1.5;
}

.slidDown >.slidItem {
    cursor: default;
    padding-left: 10px;
}

.slidDown >.slidItem:hover {
    background-color: #68a438;
    color: #fff;
}

@media (max-width: 1366px) {
    .w1200 {
        width: 853px;
    }
    .input_wrap {
        width: 243px;
        height: 35px;
        font-size: 12px;
        margin-bottom: 14px;
        border-radius: 3px;
        padding-left: 42px;
    }
    .input_wrap input,
    .input_wrap select {
        font-size: 12px;
    }
    .input_wrap > img {
		width: 21px;
		height: 21px;
        margin-left: -32px;
    }
}