/*css 样式重置 */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    /*所有的元素都采用内减模式*/
    -webkit-box-sizing: border-box;
    /* 兼容webkit内核*/
    box-sizing: border-box;
    /*去除移动端的点击高亮效果*/
    -webkit-tap-highlight-color: transparent;
    /*透明颜色*/
}

body {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

ul,
ol {
    list-style: none;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input {
    border: none;
    outline: none;
    -webkit-appearance: none;
}
html {
    position: relative;
    width: 100%;
    height: 100%;
}

.clearfix:before, .clearfix:after {
    /*清除浮动，最好最标准的写法*/
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}
.clear{ clear:both}
.weath-b{
    width: 100%;
    position: fixed;
    height: 49px;
    line-height: 49px;
    text-align: center;
    padding: 0 15px;
    bottom: 0;
    left: 0;
    background: whitesmoke;
    z-index: 19940924;
}
.weath-b img{
    margin-right: 8%;
    margin-top: 5px;
}
.weath-b :nth-child(1){
    height: 34px;
    width: 34px;
}
.weath-b :nth-child(2){
    width: 34px;
    height: 34px;
}
.weath-b :nth-child(3){
    width: 34px;
    height: 34px;
}
.weath-b :nth-child(4){
    width: 34px;
    height: 34px;
}
.weath-b :nth-child(5){
    width: 34px;
    height: 34px;
    margin-right: 0px;
}
.myfund-h {
    margin: 0 auto;
    width: 92%;
    height: 189px;
    text-align: center;
    background: #FFFFFF;
    padding-top: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: 0 1px 4px 0 #E6E6E6;
}
.hide3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.hide2{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hide1{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}