html,
body,
div,
p,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
header,
main,
nav,
footer {
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

html{
    width: 100%;
    height: 100%;
    font-size: 10px;
    max-width: 750px;
    margin: auto;
}

body {
    width: 100%;
    height: 100%;
    font-size: 16px;
    max-width: 750px;
}

#app {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 750px;
}



/* 头部--------------------- */

header{
    width: 100%;
    padding: 1.5rem 1.5rem;
    box-sizing: border-box;
}

.header-title{
    width: 100%;
    position: relative;
    padding-left: 2rem;
    box-sizing: border-box;
}

.header-title>span{
    position: absolute;
    left:0;
    /* top: 0.3rem; */
    font-weight: 700;
}
.header-title>p{
    width: 100%;
    text-overflow: ellipsis;
    /* 将文本溢出显示... */
    overflow: hidden;
    /* 超出隐藏 */
    white-space: nowrap;
    /* 强制一行显示 */
}

.search{
    width: 100%;
    margin-top:0.5rem;
    position: relative;
}
.search>input{
    width: 100%;
    height: 3.8rem;
    padding-left: 0.5rem;
    box-sizing: border-box;
    border-radius: 5px;
    border: none;
}


.search>ul{
    display: none;
    width: 100%;
    height: 0;
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: 40px;
    opacity: 0;
    border-radius: 10px;
    transition: all .3s linear;
}
.search>.search-ul{
    display: block;
    opacity: 1;
    height: 20rem;
}


.search>ul>li{
    width: 100%;
    padding: 7px 0;
    text-indent: 20px;
    flex-shrink: 0;
}


/* 中间日期选择部分  css */
.date-box{
    width: 100%;
    margin: 2rem 0;
}

.date-box>ul{
    width: 100%;
    margin: 2rem 0;
    display: flex;
    overflow-x: auto;
}

.date-item{
    margin: 8px;
    cursor: pointer;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 9.6rem;
    min-width: 9.6rem;
    height: 7.5rem;
    border-radius: 8px;
    text-align: center;
    padding: 8px 0;
    box-sizing: border-box;
}
.date-top{
    font-size: 12px;
    font-weight: 400;
}
.date-bottom{
    margin-top: 3px;
}
.date-bottom>span:nth-child(1){
    font-size: 24px;
    font-weight: 700;
}
.date-bottom>span:nth-child(2){
    margin-left: 5px;
    font-size: 12.8px;
    font-weight: 700;
}





/* 下方会场部分 */

.main-content{
    width: 100%;
    height: 73%;
}

.main-content>ul{
    width: 100%;  
    height: 100%;
    overflow-y: auto;
    padding: 0 10px;
    box-sizing: border-box;  
}

.content-item{
    width: 100%;
    display: flex;
    margin-bottom: 7px;
    flex-shrink: 0;
}

.content-item>div{
    width: auto;
}
.content-item>div>span{
    display: flex;
    align-items: center;
    width: 8rem;
    height: 12rem;
    border-radius: 7px;
    padding: 10px 6px 10px;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
}

.content-item>ul{
    width: 80%;
    display: flex;
    overflow-x: auto;
    margin-left: 15px;
}

.content-item>ul>li:not(:first-child){
    margin-left: 1rem;
}

.title-item{
    margin-bottom: 5px;
    cursor: pointer;
    flex-shrink: 0;
    width: 19rem;
    height: 12rem;
    border-radius: 8px;
}
.title-item>a{
    display: block;
    width: 100%;
    height: 100%;
}

.item-top{
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    padding: 3.2px;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}


.item-bottom{
    border-radius: 0 0 8px 8px;
    margin: 5px;
    font-size: 12.8px;
    font-weight: 400;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}




