@font-face {
    font-family: 'DingTalk JinBuTi';
    src: url('../fonts/DingTalk JinBuTi.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'DingTalk Sans';
    src: url('../fonts/DingTalk Sans.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Alimama ShuHeiTi';
    src: url('../fonts/阿里妈妈数黑体.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'TCloud Number';
    src: url('../fonts/TCloudNumber-Regular.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    width: 100%;
    background: #fff;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix::after {
    content: '';
    clear: both;
    display: block;
}
.container {
    width: 1200px;
    margin: 0 auto;
}
.ellipsis1 {
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
}
.ellipsis2 {
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.ellipsis3 {
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
}

/* 头部样式 */
.header{
    height: 80px;
    background: #00AAFF;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.header .logo_box {
    width: 60px;
    height: 60px;
}
.header .logo_box .logo{
    width: 100%;
    height: 100%;
}
.header .web_title {
    margin-right: 70px;
    font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
    font-weight: bold;
    font-size: 30px;
    color: #FFEE99;
}
.header .nav {
    width: 50%;
}
.header .nav ul {
    display: flex;
}
.header .nav ul li {
    align-items: center;
    justify-content: center;
    list-style-type: none;
    margin: 0 15px;
}
.header .nav ul li a {
    font-family: PingFang SC, PingFang SC;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    display: inline;
    padding-bottom: 6px;
}
.header .nav ul li .active {
    font-size: 18px;
    font-weight: 900;
}
.header .nav ul li .active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px; /* 指定下划线的宽度 */
    height: 3px; /* 指定下划线的高度 */
    background-color: #fff; /* 下划线的颜色 */
    left: 50%; /* 使下划线居中 */
    transform: translateX(-50%); /* 使下划线水平居中 */
}
.header .nav ul li a:hover {
    font-size: 18px;
    font-weight: 900;
}
.header .nav ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 30px; /* 指定下划线的宽度 */
    height: 3px; /* 指定下划线的高度 */
    background-color: #fff; /* 下划线的颜色 */
    left: 50%; /* 使下划线居中 */
    transform: translateX(-50%); /* 使下划线水平居中 */
}
/* 登录注册按钮样式 */
.header .login_box .btns {
    width: 100px;
    border: 1px solid #FFFFFF;
    color: #fff;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    padding: 6px 20px;
    border-radius: 4px;
    cursor: pointer;
}
.header .login_box .btns:first-child {
    margin-right: 20px;
}
/* 登录成功 用户信息样式 */
.header .login_info_box {
    position: relative;
}
.header .login_info_box .login_info {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;    /* 垂直居中 */
}
.header .login_info_box .login_info .msg {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 40px;
    cursor: pointer;
}
.header .login_info_box .login_info .msg .msg_image {
    width: 100%;
    height: 100%;
}
.header .login_info_box .login_info .msg .msg_num {
    position: absolute;
    top: -8px;
    right: -8px;
    color: #fff;
    background-color: red;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 10px;
    line-height: 22px;
    text-align: center;
}
.header .login_info_box .login_info .userinfo {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;    /* 垂直居中 */
    cursor: pointer;
}
.header .login_info_box .login_info .userinfo .avatar_box  {
    position: relative;
    text-align: center;
    margin-right: 16px;
}
.header .login_info_box .login_info .userinfo .avatar_box .avatar{
    width: 48px;
    height: 48px;
    border-radius: 50%;
}
.header .login_info_box .login_info .userinfo .avatar_box .vip_image{
    position: absolute;
    bottom: 0px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}
.header .login_info_box .login_info .userinfo .username{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    margin-right: 8px;
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    max-width: 100px;
}
.header .login_info_box .login_info .userinfo .arrow-down-filling{
    width: 15px;
    height: 15px;
}
.header .userinfo_box {
    position: absolute;
    top: 62px;
    z-index: 200;
    background: #fff;
    width: 280px;
    box-shadow: 0px 3px 12px 1px rgba(0,0,0,0.08);
    border-radius: 8px;
    display: none;
}
.header .userinfo_box .userinfo {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center;    /* 垂直居中 */
    margin-top: 16px;
}
.header .userinfo_box .userinfo .avatar_box{
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.header .userinfo_box .userinfo .avatar_box img{
    width: 100%;
    height: 100%;
}
.header .userinfo_box .userinfo .username_box .username{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    max-width: 150px;
}
.header .userinfo_box .userinfo .username_box .other{
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
    margin-top: 6px;
}
.header .userinfo_box .userinfo .username_box .other .account{
    color: #333333;
    margin-left: 15px;
    cursor: pointer;
}
.header .userinfo_box .vip_box {
    background: linear-gradient( 146deg, #FEEDBD 0%, #FEE295 100%);
    border-radius: 8px;
    margin: 16px;
    display: flex;
    justify-content:space-between; /* 水平居中 */
    align-items: center;
    padding: 14px 12px;
}
.header .userinfo_box .vip_box .vip_info {
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 14px;
    color: #624923;
}
.header .userinfo_box .vip_box .vip_info .vip_cont {
    max-width: 120px;
    word-break: break-all;
    display:-webkit-box;
    overflow: hidden;
    text-overflow:ellipsis;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
}
.header .userinfo_box .vip_box .vip_info .vip_time {
    font-weight: 400;
    font-size: 12px;
    margin-top: 12px;
}
.header .userinfo_box .vip_box .vip_btn .btn{
    background: #624923;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FEE8AA;
    cursor: pointer;
}
.header .userinfo_box .user_btns{
    display: flex;
    justify-content:center; /* 水平居中 */
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    padding-bottom: 16px;
}
.header .userinfo_box .user_btns .line {
    margin: 0 10px;
}
.header .userinfo_box .user_btns .btn {
    cursor: pointer;
}

/* 底部样式 */
footer {
    background: #202020;
    height: 308px;
}
.footer_box {
    padding-top: 40px;
    padding-bottom: 20px;
}
.footer_box .up {
    display: flex;
    justify-content: center; /* 水平居中 */
}
.footer_box .up .zuo {
    margin-right: 70px;
}
.footer_box .up .zuo .title {
    font-family: "Alimama ShuHeiTi";
    font-weight: bold;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 32px;
}
.footer_box .up .zuo .desc {
    font-family: "Alimama ShuHeiTi";
    font-weight: bold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
}
.footer_box .up .zhong {
    display: flex;
    justify-content: center; /* 水平居中 */
}
.footer_box .up .zhong .items {
    width: 150px;
    text-align: center;
}
.footer_box .up .zhong .items .title {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}
.footer_box .up .zhong .items .item {
    margin-top: 18px;
}
.footer_box .up .zhong .items .cont {
    margin-top: 10px;
}
.footer_box .up .zhong .items .cont a {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    text-decoration: none;
}
.footer_box .up .you {
    text-align: center;
    margin-top: -15px;
    margin-left: 30px;
}
.footer_box .up .you .kefu{
    width: 80px;
    height: 80px;
}
.footer_box .up .you .phone{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
}
.footer_box .down {
    text-align: center;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 40px;
}
.footer_box .down .beian {
    margin-right: 10px;
}
.footer_box .down .beian a {
    color: #FFFFFF;
    text-decoration: none;
}

/* 分页 */
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #409EFF;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #409EFF;
    border-color: #409EFF;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* 自定义样式 */
.page {
    text-align: center;
    margin: 20px 0;
}
.none_data_box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
}