@charset "utf-8";

body {
    background-color: #f5f5f5;
}

.zlzt-index * {
    box-sizing: border-box;
}

a:hover {
    text-decoration: none;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex_center {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex_align_items {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex_space_around {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
}

.flex_start {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: justify;
    justify-content: flex-start;
}

.flex_wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex_1 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.flex_space_between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex_last_end {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: justify;
    justify-content: flex-end;
}

.limit {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.limit2 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.limit3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.section-inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 导航头部个人信息 start */
.yes_login_2021 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    /*display: none;*/
}

.header_top_2021 {
    display: flex;
    justify-content: space-between;
}

.header_logo_2021 img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.header_logo_right_2021 {
    color: #333;
}

.header_logo_info_2021 p a.usename_href_2021 {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    display: inline-block;
    max-width: 120px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.header_logo_info_2021>p:nth-child(1) {
    display: flex;
    justify-content: flex-start;
}

.header_logo_info_2021>p:nth-child(1) img {
    width: 20px;
    height: 19px;
    margin-left: 5px;
}

.no_login_2021 {
    display: show;
}

.yes_login_2021_more {
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    display: none;
}

.yes_login_2021_more_box {
    display: none;
    width: 300px;
    position: absolute;
    top: 60px;
    box-sizing: border-box;
    left: -112px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
}

.yes_login_2021_more:hover .yes_login_2021_more_box {
    display: block;
}

.yes_login_2021_more_box a {
    text-decoration: none;
}

.person_2021 {
    font-size: 14px;
    color: #999;
    padding: 5px 0px;
    line-height: 24px;
    border-bottom: 1px solid #f2f2f2;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.header_VIP_2021 {
    padding-bottom: 20px;
    border-bottom: 1px solid #f2f2f2;
}

.header_VIP_2021>div:nth-child(1) {
    display: flex;
    justify-content: space-between;
    padding: 12px 0px;
}

.header_VIP_2021>div:nth-child(1) p {
    font-size: 12px;
    line-height: 25px;
}

.header_VIP_2021>div:nth-child(1) a {
    width: 80px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    opacity: 1;
    background: #d00000;
    border-radius: 13px;
}

.header_bottom_2021>div {
    padding-top: 20px;
}

.header_bottom_2021>div a {
    font-size: 14px;
    margin-right: 50px;
    color: #333;
}

.header_bottom_2021>div a:hover {
    color: #d00000;
}

/* 导航头部个人信息 end */