body {
    font-size: 12px;
    line-height: 20px;
    color: #555;
    text-align: justify;
}

p {
    text-indent: 2em;
}
.wrapper{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom:0;
    overflow: auto;
}

.content{
    margin-top: 1.5rem;
    padding: 1rem 2rem;
}

.content p{
    font-size: 0.8rem;
    line-height: 1.6rem;
}
.h_select {
    margin-top: 0.5rem;
    float: left;
    /*用div的样式代替select的样式*/
    width: 50%;
    height: 40px;
    border-radius: 5px;
    /*//盒子阴影修饰作用,自己随意*/
    position: relative;
    overflow: hidden;
}

.h_select:focus {
    box-shadow: 0 0 5px #ccc;
}

.h_select option {
    display: block;
    text-align: center;
}

.h_select select {
    background: rgb(247, 247, 247);
    /*//清除select的边框样式*/
    border: none;
    /*//清除select聚焦时候的边框颜色*/
    outline: none;
    /*//将select的宽高等于div的宽高*/
    width: 100%;
    /*height: 40px;*/
    height: 100%;
    line-height: 100%;
    /*//隐藏select的下拉图标*/
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-align: center;
    text-align-last: center;
}

/*//使用伪类给select添加自己想用的图标*/
.h_select:after {
    content: "";
    width: 14px;
    height: 8px;
    background: url(arrow.png) no-repeat scroll right center transparent;
    /*//通过定位将图标放在合适的位置*/
    position: absolute;
    right: 10px;
    top: 45%;
    /*//给自定义的图标实现点击下来功能*/
    pointer-events: none;
}
.STYLE4 {
    color: #333333;
    font-size: 14px;
    line-height: 30px;
    font-family: "Microsoft YaHei";
    font-weight: 700;
}