body, html {
    margin: 0;
    height: 100%;
    width: 100%;
}

body * {
    box-sizing: border-box;
}

body {
    font-family: "PingFangSC-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei", serif;
}

input {
    background-color: transparent;
    border: 0;
}

button {
    margin: 0;
    padding: 0;
    border: 1px solid transparent;
    outline: none;
    background-color: transparent;
}

button:active {
    opacity: 0.6;
}

.van-nav-bar__left:active,
.van-nav-bar__right:active {
    opacity: 1;
}

[class*='van-']::after {
    border-bottom: 0;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.justify-start {
    display: flex;
    justify-content: flex-start;
}

.justify-center {
    display: flex;
    justify-content: center;
}

.justify-end {
    display: flex;
    justify-content: flex-end;
}

.justify-evenly {
    display: flex;
    justify-content: space-evenly;
}

.justify-around {
    display: flex;
    justify-content: space-around;
}

.justify-between {
    display: flex;
    justify-content: space-between;
}

.align-start {
    display: flex;
    align-items: flex-start;
}

.align-center {
    display: flex;
    align-items: center;
}

.align-end {
    display: flex;
    align-items: flex-end;
}

.flex-wrap{
    flex-wrap: wrap;
}

.flex1{
    display: flex;
    flex: 1;
}

.absolute{
    position: absolute;
}
.relative{
    position: relative;
}

.el-image img {
    object-fit: contain;
}

.ellipsis-1-lines {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    white-space: nowrap; /* 确保文本在一行内显示 */
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 使用省略号表示文本溢出 */
}

.ellipsis-2-lines {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ellipsis-3-lines {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ellipsis-4-lines {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.ellipsis-5-lines {
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden; /* 隐藏溢出的内容 */
    text-overflow: ellipsis; /* 使用省略号表示文本溢出 */
}

.hoverItem:hover{
    box-shadow:0 0 15px 5px rgba(0,0,0,0.1);position:relative;top:-10px;
}

.marginTop90{
    margin-top: 9rem;
}
.marginTop40{
    margin-top: 4rem;
}
.marginTop20{
    margin-top: 2rem;
}

.marginBottom40{
    margin-bottom: 4rem;
}
.marginTop120{
    margin-top: 12rem;
}

.padding020{
    padding: 0 2rem;
}

.height100{
    height: 100%;
}
.opacity0{
    opacity: 0;
}

.font14{
    font-size: 1.4rem;
}
.font16{
    font-size: 1.6rem;
}
.font18{
    font-size: 1.8rem;
}
.font20{
    font-size: 2rem;
}
.font30{
    font-size: 3rem;
}
.font32{
    font-size: 3.2rem;
}
.font36{
    font-size: 3.6rem;
}
.font40{
    font-size: 4rem;
}
.font42{
    font-size: 4.2rem;
}
.font54{
    font-size: 5.4rem;
}
.font72{
    font-size: 7.2rem;
}
.colorfff{
    color: #fff;
}
.color333{
    color: #333;
}
.color999{
    color: #999;
}

.font400{
    font-weight: 400;
}
.font700{
    font-weight: 700;
}

.el-image img{
    width: 100%;
    height: 100%;
}

.pagination-lg .page-link,
.page-link{
    color: #BCBCBC;
    border: none;
    background-color: rgba(248, 248, 248, 1);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.7rem;
}
.page-link:hover{
    color: #333;
    background-color: rgba(248, 248, 248, 1);
    border-color: rgba(248, 248, 248, 1);
}
.page-item.disabled .page-link{
    background-color: rgba(248, 248, 248, 1);
    border-color: rgba(248, 248, 248, 1);
    color: #BCBCBC;
    cursor: not-allowed;
}
.page-item.active .page-link{
    background-color: rgba(248, 248, 248, 1);
    border-color: rgba(248, 248, 248, 1);
    color: #333;
}
