/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    /* background: linear-gradient(180deg, #4fd1c5 0%, #38b2ac 100%); */
    background-image: url(/static/imgs/home/bg.png);
    background-repeat: no-repeat;
    background-size:cover;
    color: #fff;
    min-height: 100vh;
    max-width: 750px;
    overflow-x: hidden;

}

.container{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 35px 7px 190px 15px;
    position: relative;
    background-image: url('/static/imgs/home/bottom.png') ;
    background-repeat: no-repeat;
    background-size:contain;
    background-position: bottom;
}

.content{
    padding-top: 20px;
}
.content img{
    margin-bottom: 5px;
    width: 100%;
}