/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Helvetica";
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary: #ff8c00;
    --bgColor: #344050;
    --default: #fedbe6;
    --deep: #f1b6c1;
    --textColor: #414141;
    --textGray: #51647f;
    --active: #ffae4b;
    --vote: #def1fb;
    --vote-deep: #ade0fb;
    --overdue: #eee;
    --overdue-deep: #aaa;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgb(239, 239, 239);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

::-webkit-scrollbar-corner {
    background: #179a16;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.inner {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.clearfix:after {
    clear: both;
    display: block;
    visibility: hidden;
    content: "";
    width: 100%;
}

a {
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    min-width: 320px;
}

input[type=button],
input[type=submit],
button {
    -webkit-appearance: none;
}

/* 组件样式 */
.progress {
    position: relative;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 15px;
    background-color: #f1b6c1;
    padding: 0 20px;
    font-size: 15px;
}

/* .progress.selected{
    border:2px solid var(--primary);
}

.progress.vote{
    background-color: var(--vote);
}

.progress.guess{
    background-color: var(--default);
} */

.progress .text {
    display: flex;
    /*max-width: 70%;*/
    position: relative;
    z-index: 1;
    /*display: -webkit-box;*/
    /*-webkit-box-orient: vertical;*/
    /*-webkit-line-clamp: 2;*/
    /*overflow: hidden;*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.progress .count {
    position: relative;
    z-index: 1;
}

.progress .progress-inner {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--deep);
}

.progress.vote .progress-inner {
    background-color: var(--vote-deep);
}

/* .progress.guess .progress-inner{
    background-color:var(--deep);
} */



/* .vote .progress{
    background: #ccecfd;
} */

/* 头部 */
header {
    width: 100%;
    height: 85px;
    background-color: var(--primary);
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu {
    display: flex;
    align-items: center;
}

header .menu i {
    display: inline-flex;
    margin-right: 12px;
    color: #fff;
    display: none;
    font-size: 20px;
}

header .logo img {
    width: 250px;
    height: 51px;
    display: block;
    object-fit: cover;
}

header .navbar ul {
    display: flex;
    align-items: center;
}

header .navbar ul li {
    color: #fff;
    display: inline-flex;
    position: relative;
}

header .navbar ul li:nth-last-child(n+4):hover:after {
    transform: scaleX(1);
}

header .navbar ul li:nth-last-child(n+4)::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: scaleX(0);
}

header .navbar ul li+li {
    margin-left: 40px;
}

header .navbar ul li a {
    color: inherit;
    font-size: 19px;
    display: flex;
    align-items: center;
}

header .navbar ul li i {
    margin-right: 10px;
    font-size: 25px;
    cursor: pointer;
}

header .navbar .button {
    border: none;
    background-color: var(--bgColor);
    color: #fff;
    outline: none;
    border-radius: 5px;
    font-size: 19px;
    padding: 8px 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

header li .userinfo {
    display: flex;
    align-items: center;
    min-width: 230px;
    max-width: 280px;
}

header li .userinfo .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 10px;
}

header li .userinfo .avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

header li .userinfo .infomation {
    display: flex;
    flex: 1;
    flex-direction: column;
}

header li .userinfo .infomation a {
    font-size: 13px;
    display: inline-block;
    max-width: 140px;
    /*overflow: hidden;*/
    /*text-overflow:ellipsis;*/
    white-space: nowrap;
}

header li .userinfo .infomation a:hover {
    text-decoration: underline;
}

header li .userinfo .basic {
    display: flex;
    justify-content: space-between;
}

header li .userinfo .assets {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

header li .userinfo .assets .coins {
    margin-right: 10px;
    font-size: 13px;
    display: inline-flex;
}

header li .userinfo .assets .coins i {
    font-size: inherit;
    margin-right: 3px;
    cursor: default;
}

header li .userinfo .assets .progress {
    height: 12px;
    border-radius: 6px;
}

header li .userinfo .action {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

/* 搜索 */
.search {
    position: fixed;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    z-index: -1;
    transition: all 0.5s ease;
}

.search.active {
    z-index: 9;
    opacity: 1;
}

.search .inner {
    position: relative;
}

.search .wrapper {
    position: absolute;
    z-index: 1;
    right: 80px;
    top: 90px;
    display: flex;
    background: #fff;
    height: 35px;
    width: 250px;
    border-radius: 4px;
    font-size: 14px;
}

.search .wrapper input {
    display: inline-flex;
    flex: 1;
    background: none;
    outline: none;
    border: none;
    padding: 0 8px;
    color: #666;
}

.search .wrapper button {
    background: none;
    outline: none;
    border: none;
    width: 30px;
    cursor: pointer;
}

.search .tips {
    display: none;
    background: #fff;
    position: absolute;
    z-index: 1;
    border-radius: 5px;
    padding: 10px;
    width: 250px;
    right: 80px;
    top: 130px;
    font-size: 16px;
}

.search .tips li {
    height: 40px;
    display: flex;
    align-items: center;
}

.search .tips li+li {
    border-top: 1px solid #ddd;
}

.search .tips li a {
    line-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--textColor);
}

.search .tips li a:hover {
    text-decoration: underline;
}

.search .tips li a i {
    margin-right: 10px;
    font-size: 18px;
}

.search .search-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

/* 移动端侧边栏 */
.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -80%;
    width: 80%;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background-color: var(--primary);
    color: #fff;
    transition: all 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar>ul {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
}

.sidebar ul li {
    position: relative;
}

.sidebar>ul>li+li {
    border-top: 1px solid #fff;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    flex: 1;
    height: 45px;
    padding: 0 45px 0 8px;
}

.sidebar ul li.active>a {
    background-color: var(--active);
}

.sidebar ul li a i {
    font-size: 18px;
    margin-right: 10px;
}

.sidebar ul li a+i {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    transition: all 0.3s ease;
}

.sidebar ul li a+i.spread {
    transform: rotate(180deg);
}

.sidebar ul ul {
    display: none;
}

.sidebar .userinfo {
    padding: 20px 10px;
    border-top: 1px solid #fff;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.sidebar .userinfo .avatar {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: inline-flex;
    object-fit: contain;
}

.sidebar .userinfo .infomation {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    font-size: 14px;
}

.sidebar .userinfo .infomation span {
    display: inline-flex;
    max-width: 7em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sidebar .userinfo .infomation>div+div {
    margin-top: 10px;
}

.sidebar .userinfo .basic {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.sidebar .userinfo .exprience {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.sidebar .userinfo .exprience span {
    display: inline-flex;
    align-items: center;
}

.sidebar .userinfo .exprience span i {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url(../images/prize.png) no-repeat center center/contain;
}

.sidebar .userinfo .exprience .progress {
    height: 10px;
    background: #fff;
    margin-left: 20px;
    border-radius: 5px;
}

.sidebar .userinfo .exprience .progress-inner {
    background: #71C557;
}

.sidebar .userinfo .action {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar .userinfo .action span {
    display: inline-flex;
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
}

.mask {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.mask.active {
    z-index: 8;
    opacity: 1;
}

/* 移动端头部下面菜单 */
.subnav {
    display: none;
    width: 100%;
    height: 45px;
    background-color: var(--bgColor);
}

.subnav #subnav {
    width: auto;
}

.subnav .swiper-slide {
    color: #fff;
    font-size: 14px;
    height: 100%;
    line-height: 45px;
    width: auto;
    padding: 0 10px;
    position: relative;
}

.subnav .swiper-slide.active:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--primary);
    border-radius: 1px;
}

/* 保持最低高度为一屏 */
body>main {
    min-height: calc(100vh - 219px);
}

/* 返回顶部按钮 */
.affix {
    position: fixed;
    bottom: 150px;
    right: 20px;
    z-index: -1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
    border-radius: 5px;
    font-size: 40px;
    cursor: pointer;
    transition: all 0.5s;
}

.affix.active {
    z-index: 7;
    opacity: 1;
}

/* 分页器 */
.pagination {
    display: flex;
    justify-content: center;
}

.pagination li {
    display: inline-flex;
    margin: 0 8px;
}

.pagination li a {
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 5px;
    line-height: 30px;
    color: #fff;
    padding: 0 10px;
    align-items: center;
    min-width: 30px;
    background-color: var(--default);
    transition: background 0.3s ease;
}

.pagination li.active a,
.pagination li:hover a {
    background-color: var(--primary);
}


/* 文件上传 */
.upload {
    width: 150px;
    height: 150px;
    border: 2px solid #d1d1d1;
    border-radius: 4px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.upload .remove {
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 0 0 0 4px;
    background: #d1d1d1;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
}

.upload .remove i {
    font-size: 12px;
    color: #fff;
}

.upload img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.upload input[type=file] {
    display: none;
}

.upload .addfile {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    cursor: pointer;
}

.upload .addfile i {
    font-size: 25px;
}

.upload.active .addfile {
    display: none;
}

.upload.active .remove {
    display: flex;
}

/* 页脚 */
footer {
    width: 100%;
    background-color: var(--bgColor);
    padding: 30px 0;
}

footer .inner {
    display: flex;
    justify-content: space-between;
}

footer .copyright {
    color: #fff;
}

footer .copyright ul li {
    display: inline-flex;
    font-size: 18px;
}

footer .copyright ul li:not(:last-child) {
    margin-right: 15px;
}

footer .copyright p {
    font-size: 14px;
    margin-top: 25px;
}

footer .follow {
    font-size: 16px;
    color: #fff;
    text-align: right;
}

footer .follow .link {
    font-size: 40px;
    margin-top: 10px;
}

footer .follow .link a {
    margin-left: 15px;
    font-size: inherit;
}

/*  公共部分:页头、页脚结束 */

/* 首页 */
.index .inner {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* 侧边 */
.index .navbar {
    width: 290px;
    background-color: var(--bgColor);
    color: #fff;
    padding: 20px 0;
    overflow-y: auto;
}

.index .navbar ul {
    padding: 0 15px;
}

.index .navbar ul li a {
    font-size: 15px;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
}

.index .navbar ul li a i:first-child {
    margin-right: 15px;
    font-size: 16px;
}

.index .navbar ul li a span {
    display: inline-block;
    padding-right: 25px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index .navbar ul li a i:last-child {
    font-size: 12px;
    position: absolute;
    right: 0;
}

.index .navbar ul li:hover ul {
    opacity: 1;
}

.index .navbar ul li:hover>a {
    color: var(--primary);
}

.index .navbar ul li ul {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.index .navbar ul li ul a {
    font-size: 15px;
}

/* 内容区 */
.index .wrapper {
    margin-left: 30px;
    flex: 1;
}

.index .wrapper .banner {
    width: 100%;
    max-width: 940px;
    height: 535px;
    /*background-color: var(--default);*/
    --swiper-pagination-color: var(--bgColor);
    --swiper-navigation-color: var(--primary);
}

.index .wrapper .banner .swiper-slide {
    padding: 45px;
    display: flex;
    background-color: var(--default);
}

.index .wrapper .banner .legend {
    height: 100%;
    display: inline-flex;
    align-items: center;
    width: 25%;
    margin-right: 5%;
}

.index .wrapper .banner .legend .circle {
    width: 180px;
    height: 180px;
    background-color: var(--bgColor);
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.index .wrapper .banner .legend .pie {
    width: 180px;
    height: 180px;
}

.index .wrapper .banner .content {
    display: flex;
    width: 70%;
    justify-content: center;
    flex-direction: column;
}

.index .wrapper .banner .content .title {
    text-align: justify;
    font-size: 25px;
    color: var(--textColor);
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.index .wrapper .banner .content .title-box {
    display: flex;
    align-items: center;
}

.index .wrapper .banner .content .title:hover {
    color: var(--primary);
    text-decoration: underline;
}

.index .wrapper .banner .content .infomation {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--textColor);
    flex-wrap: wrap;
}

.index .wrapper .banner .content .basic {
    margin-top: 10px;
}
.index .wrapper .banner .content .basic a,
.index .wrapper .banner .content .basic span {
    margin: 0 15px 0 5px;
}

.index .wrapper .banner .content .usercount {
    padding: 0 5px;
    background: var(--deep);
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 15px;
    display: inline-block;
    margin-left: 10px;
    min-width: 55px;
}

.index .wrapper .banner .content .usercount span {
    margin-right: 5px;
    margin-left: 0;
}

.index .wrapper .banner .content .usercount i {
    margin-right: 0;
}

.index .wrapper .banner .content .list {
    margin-top: 45px;
}

.index .wrapper .banner .content .list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index .wrapper .banner .content .list li+li {
    margin-top: 25px;
}

.index .wrapper .banner .content .list .series {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 25px;
    height: 25px;
    background-color: var(--bgColor);
    border-radius: 50%;
    font-size: 18px;
}

.index .wrapper .banner .content .list li:nth-child(2) .series {
    background-color: var(--primary);
}

.index .wrapper .banner .content .list li:nth-child(3) .series {
    background-color: #68af14;
}

.index .wrapper .lists {
    margin-top: 30px;
    width: 100%;
}

.index .wrapper .lists ul {
    display: flex;
    flex-wrap: wrap;
}

.index .wrapper .lists ul li {
    width: 25%;
    padding: 15px;
}

.index .wrapper .lists ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index .wrapper .lists .thumb {
    overflow: hidden;
}

.index .wrapper .lists img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.index .wrapper .lists .title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 25px;
    position: relative;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--bgColor)
}

.index .wrapper .lists .title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 1px;
    background-color: var(--bgColor);
    transform: translateX(-50%);
}

.index .wrapper .lists .descritpion {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
    margin-top: 10px;
}

.index .wrapper .lists li:hover img {
    transform: scale(1.1);
}

.index .wrapper .lists li:hover .title {
    color: var(--primary);
}

.index .wrapper .message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.index .wrapper .handle {
    color: var(--textColor);
}

.index .wrapper .handle span {
    margin-right: 10px;
    cursor: pointer;
}

.index .wrapper .handle span.active {
    color: var(--primary)
}

.index .wrapper .handle span i {
    margin-right: 5px;
}

.index .wrapper .handle a:hover {
    color: var(--primary);
}


.index .wrapper .handle .share {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.index .wrapper .handle .share:hover ul {
    display: block;
}

.index .wrapper .handle .share ul {
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 15px;
    background: #fff;
    border-radius: 4px;
    transform: translateX(-50%);
    border: 1px solid #eee;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.index .wrapper .handle .share ul a {
    color: #666;
    line-height: 30px;
    display: block;
    padding: 0 10px;
}

.index .wrapper .handle .share ul a:hover {
    background: #efefef;
}


.index .wrapper .author {
    display: flex;
    align-items: center;
}

.index .wrapper .author img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-right: 10px;
}

.index .wrapper .author label {
    font-size: 14px;
    color: var(--textColor);
}

.index .wrapper .author span a:hover {
    color: var(--primary);

}

.index .wrapper .blog {
    width: 100%;
}

.index .wrapper .blog h2 {
    margin: 25px 0;
    font-size: 28px;
    font-family: Barlow-Regular;
    text-align: center;
    padding-bottom: 18px;
    position: relative;
    color: var(--bgColor);
    font-weight: normal;
}

.index .wrapper .blog h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    border-radius: 1px;
    background-color: var(--bgColor);
}

.index .wrapper .blog ul {
    display: flex;
    flex-wrap: wrap;
}

.index .wrapper .blog ul li {
    width: 33.33%;
    padding: 15px;
}

.index .wrapper .blog ul li a {
    display: block;
}

.index .wrapper .blog .thumb {
    overflow: hidden;
}

.index .wrapper .blog img {
    width: 100%;
    height: 10vw;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.index .wrapper .blog .title {
    text-align: center;
    font-size: 20px;
    padding-bottom: 10px;
    margin-top: 25px;
    position: relative;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--bgColor)
}

.index .wrapper .blog .more {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #666;
    margin-top: 10px;
    color: var(--primary);
}

.index .wrapper .blog ul li:hover img {
    transform: scale(1.1);
}

.index .wrapper .blog ul li:hover .title {
    color: var(--primary);
}

/* 排行榜、回答 侧边过滤 */
.filters {
    /*flex: 2.5;*/
    width: 25%;
    color: #444;
    margin-right: 5%;
}

.filters .type h3 {
    font-size: 20px;
    font-weight: normal;
    color: var(--textColor)
}

.filters .title {
    position: relative;
}

.filters .type .group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.filters .type .group label {
    display: inline-flex;
    align-items: center;
}

.filters .type .group label:nth-child(2) {
    color: #2f93ed;
}

.filters .type .group label:nth-child(3) {
    color: #e3677c;
}

.filters .type .group input {
    margin-right: 10px;
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.filters .category {
    margin-top: 20px;
}

.filters .category .title h3 {
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
}

.filters .category .title>div {
    font-size: 15px;
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    line-height: 30px;
    padding: 0 10px;
    cursor: pointer;
}

.filters .category .group {
    margin-top: 15px;
}

.filters .category .group li {
    position: relative;
}

.filters .category .group li .drop {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.filters .category .group li .drop.active {
    transform: rotate(180deg);
}

.filters .category .group li ul {
    /* display: none; */
}

.filters .category .group .item {
    display: flex;
    height: 35px;
    align-items: center;
}

.filters .category .group .item p {
    display: flex;
    align-items: center;
    width: calc(100% - 30px);
    max-width: 250px;
}

.filters .category .group .item input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.filters .category .group .item i {
    font-size: 18px;
}

.filters .category .group .item span {
    margin-left: 10px;
}

.filters .category .group .item .title {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.filters .category .group ul ul {
    padding-left: 18px;
}

.filters .status,
.filters .status .group,
.filters .expire,
.filters .expire .group {
    margin-top: 20px;
}

.filters .status .group .item,
.filters .expire .group .item {
    display: flex;
    height: 35px;
    align-items: center;
}

.filters .status .group .item input,
.filters .expire .group .item input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.rank {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.rank ul {
    display: flex;
}

.rank ul li {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.rank ul li:first-child {
    border-left: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
}

.rank ul li:last-child {
    border-radius: 0 5px 5px 0;
}

.rank input[type=radio] {
    display: none;
}

.rank input[type=radio]:checked+label {
    background: var(--primary);
    color: #fff;
}

.rank ul li label {
    padding: 0 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    font-size: 14px;
    cursor: pointer;
}

.rank ul li label i {
    font-size: 12px;
    color: #333;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.rank input[type=radio]:checked+label i {
    transform: rotate(180deg);
    color: #fff;
}

.rank li.desc input[type=radio]:checked+label i {
    transform: rotate(0deg);
}

/* 加载中 */
.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading img {
    width: 100px;
    height: 100px;
    display: block;
}

.loading.active {
    z-index: 9;
    opacity: 1;
}

/* 排行榜  */
.leaderboard .inner {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

.leaderboard .content {
    flex: 7;
}

.leaderboard .content input[type=radio] {
    display: none;
}

.leaderboard .content .type ul {
    display: flex;
}

.leaderboard .content .type ul li {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.leaderboard .content .type ul li:first-child {
    border-radius: 23px 0 0 23px;
}

.leaderboard .content .type ul li:last-child {
    border-radius: 0 23px 23px 0;
}

.leaderboard .content .type ul li label {
    display: flex;
    flex: 1;
    height: 45px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background: var(--default);
}

.leaderboard .content .type input[type=radio]:checked+label {
    background: var(--primary);
    color: #fff;
}



.leaderboard .content .list {
    margin-top: 20px;
}

.leaderboard .content .list ul li {
    display: flex;
    padding: 20px 0
}

.leaderboard .content .list ul li+li {
    margin-top: 20px;
    border-top: 1px solid #ddd;
}

.leaderboard .content .list .avatar {
    position: relative;
    margin-right: 15px;
}

.leaderboard .content .list .avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.leaderboard .content .list .avatar span {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 12px;
    background: url(../images/others.png) no-repeat center top / contain;
}

.leaderboard .content .list ul li:nth-child(1) .avatar span {
    background: url(../images/champion.png) no-repeat center 4px / contain;
}

.leaderboard .content .list ul li:nth-child(2) .avatar span {
    background: url(../images/second.png) no-repeat center 4px / contain;
}

.leaderboard .content .list ul li:nth-child(3) .avatar span {
    background: url(../images/bronze.png) no-repeat center 4px / contain;
}

.leaderboard .content .list .infomation {
    display: flex;
    flex: 1;
}

.leaderboard .content .list .username {
    display: flex;
    flex-direction: column;
    flex: 1;
    font-size: 16px;
    justify-content: space-between;
}

.leaderboard .content .list .username h2 {
    font-weight: normal;
    font-size: 18px;
}

.leaderboard .content .list .username a {
    color: #39A8D9;
    font-size: 14px;
}

.leaderboard .content .list .username a:hover {
    text-decoration: underline;
}

.leaderboard .content .list .userinfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.leaderboard .content .list .userinfo img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.leaderboard .content .list .userinfo span {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: var(--textColor);
}

.leaderboard .content .list .userinfo span.dot {
    width: 8px;
    height: 8px;
    background: var(--textColor);
    border-radius: 50%;
}

.leaderboard .content .list .userinfo span+span {
    margin-left: 20px;
}

.leaderboard .content .list .userinfo span i {
    font-style: normal;
}

/* 问答、详情页 */

.answer .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0;
}

.answer .content {
    /*flex:7;*/
    width: 70%;
}

.answer .content .rank {
    margin-top: 0;
}

.answer .toolbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.answer .toolbar .infomation {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
}

.answer .toolbar .infomation label {
    margin-right: 15px;
    font-size: 16px;
    color: var(--textColor);
}

.answer .toolbar .infomation #spread {
    border: 1px solid var(--primary);
    height: 30px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    padding: 0 15px;
    cursor: pointer;
    font-size: 15px;
}

.answer .toolbar .infomation #spread i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.answer .toolbar .infomation #spread.active i {
    transform: rotate(180deg);
}

.answer .list {
    margin-top: 20px;
}

.answer .list>ul>li.vote {
    --color: var(--vote);
    --deep: var(--vote-deep);
}



.answer .list>ul>li,
.answer .list>ul>li.guess {
    --color: var(--default);
}

.answer .list>ul>li {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* background-color: var(--color); */
    border-radius: 8px;
}

.answer .list>ul>li+li {
    margin-top: 20px;
}

.answer .list>ul>li .title {
    font-size: 22px;
    line-height: 1.5;
    font-weight: normal;
    color: var(--textColor);
    flex: 5;
    /*text-align: justify;*/
    margin-right: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.answer .list>ul>li .title:hover {
    color: var(--primary);
    text-decoration: underline;
}

.answer .list>ul>li .infomation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 5;
}

.answer .list>ul>li .infomation .usercount {
    padding: 0 5px;
    /* background: var(--deep); */
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 15px;
}

.answer .list>ul>li .infomation .usercount i {
    margin-right: 6px;
}

.answer .list>ul>li .infomation .action {
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -20px;
}

.answer .list>ul>li .infomation .action .type {
    display: inline-flex;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin-right: 20px;
    font-size: 20px;
    /* background: var(--deep); */
    border-radius: 0 0 8px 8px;
    color: #fff;
}

.answer .attachment-image {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/* .answer .list>ul>li.vote .infomation .action .type{
    background-color: var(--vote-deep);
} */

.answer .list>ul>li .infomation .action .ellipsis {
    font-size: 20px;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
}

.answer .list>ul>li .infomation .action .ellipsis .tips {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: -10px;
    width: 150px;
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: none;
}

.answer .list>ul>li .infomation .action .ellipsis:hover .tips {
    display: block;
}

.answer .list>ul>li .infomation .action .ellipsis .tips::before {
    content: "";
    width: 14px;
    height: 9px;
    position: absolute;
    top: -8px;
    right: 10px;
    background: url('../images/triangle.png') no-repeat center center / contain;
}

.answer .list>ul>li .infomation .action .ellipsis .tips li+li {
    border-top: 1px solid #eee;
}

.answer .list>ul>li .infomation .action .ellipsis .tips a {
    font-size: 13px;
    display: block;
    padding: 8px;
}

.answer .list>ul>li .infomation .action .ellipsis .tips a:hover {
    color: var(--active);
}

.answer .list>ul>li .infomation .action .spread {
    transform: rotate(90deg);
    display: inline-flex;
    transition: all 0.3s ease;
    cursor: pointer;
}

.answer .list>ul>li .infomation .action .spread i {
    transition: transform 0.3s ease;
}

.answer .list>ul>li .infomation .action .spread.active i {
    transform: rotate(180deg);
}

.answer .list>ul>li .dropdown {
    width: 100%;
    /* display: none; */
}

.answer .list>ul>li .basic {
    font-size: 14px;
    color: var(--textColor);
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.answer .list>ul>li .basic i {
    margin-right: 10px;
}

.answer .list>ul>li .basic i~i {
    margin-left: 15px;
}

.answer .list>ul>li .basic i+i {
    margin-left: 15px;
}

.answer .list .options {
    margin-top: 20px;
}

.answer .list .options .final.guess .progress {
    /* background: #ffebf1; */
}

.answer .list .options .final.guess .progress .progress-inner {
    background-color: #F1B3BE;
}

.answer .list .options .final.guess .odds {
    background: #f1b6c1;
}

.answer .list .options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.answer .list .options li+li {
    margin-top: 25px;
}

.answer .list .options .series {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 25px;
    height: 25px;
    background-color: var(--bgColor);
    border-radius: 50%;
    font-size: 18px;
}

.answer .list .options li:nth-child(2) .series {
    background-color: var(--primary);
}

.answer .list .options li:nth-child(3) .series {
    background-color: #68af14;
}


.answer .list .odds {
    margin-left: 20px;
    background: var(--deep);
    color: #fff;
    height: 35px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
}



.answer .list li.vote .odds {
    background-color: var(--vote-deep);
}

.answer .list .odds p {
    height: 100%;
    line-height: 35px;
    margin-right: 5px;
}

.answer .list .odds span {
    margin-left: 5px;
}

.answer .list .message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.answer .list .handle {
    color: var(--textColor);
}

.answer .list .handle span {
    margin-right: 10px;
    cursor: pointer;
}

.answer .list .handle span.active {
    color: var(--primary)
}

.answer .list .handle span i {
    margin-right: 5px;
}

.answer .list .handle a:hover {
    color: var(--primary);
}


.answer .list .handle .share {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.answer .list .handle .share:hover ul {
    display: block;
}

.answer .list .handle .share ul {
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 15px;
    background: #fff;
    border-radius: 4px;
    transform: translateX(-50%);
    border: 1px solid #eee;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.answer .list .handle .share ul a {
    color: #666;
    line-height: 30px;
    display: block;
    padding: 0 10px;
}

.answer .list .handle .share ul a:hover {
    background: #efefef;
}


.answer .list .author {
    display: flex;
    align-items: center;
}

.answer .list .author img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-right: 10px;
}

.answer .list .author label {
    font-size: 14px;
    color: var(--textColor);
}

.answer .list .author span a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* 详情页评论 */

.detail .inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 0;
}

.detail .chart {
    width: 30%;
    margin-right: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    /*height: 460px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.detail .adaptor {
    width: 100%;
    padding-bottom: 112%;
    position: relative;
}

.detail #chart {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.detail .chart .lock {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--overdue-deep);
}

.detail .chart p {
    margin-top: 10px;
    font-size: 15px;
}

.detail .chart .lock .iconlock {
    font-size: 60px;
    color: #666;
}

.detail .chart .tags {
    width: 100%;
    padding: 15px;
}

.detail .chart .tags ul {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
}

.detail .chart .tags ul li {
    padding: 0 15px;
    line-height: 35px;
    margin-left: 15px;
    margin-top: 15px;
    border-radius: 4px;
    color: #fff;
}

.detail .chart .tags ul li:nth-child(3n+1) {
    background-color: var(--vote-deep);
}

.detail .chart .tags ul li:nth-child(3n+2) {
    background-color: var(--primary);
}

.detail .chart .tags ul li:nth-child(3n) {
    background-color: var(--bgColor, #344050);
}

.detail .content {
    /*flex:7;*/
    width: calc(70% - 30px);
}

.detail .content .wrapper {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* background-color: var(--color); */
    border-radius: 8px;
}

.detail .content .wrapper>.title {
    font-size: 22px;
    line-height: 1.5;
    font-weight: normal;
    color: var(--textColor);
    flex: 5;
    /*text-align: justify;*/
    margin-right: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.detail .content .infomation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 5;
}

.detail .content .infomation .usercount {
    padding: 0 5px;
    /* background: var(--deep); */
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 15px;
}

.detail .content .infomation .usercount i {
    margin-right: 6px;
}

.detail .content .infomation .action {
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: -20px;
}

.detail .content .infomation .action .type {
    display: inline-flex;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin-right: 20px;
    font-size: 20px;
    /* background: var(--deep); */
    border-radius: 0 0 8px 8px;
    color: #fff;
}

.detail .content .infomation .action .ellipsis {
    font-size: 20px;
    margin-right: 20px;
    cursor: pointer;
    position: relative;
}

.detail .content .infomation .action .ellipsis .tips {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: -10px;
    width: 150px;
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: none;
}

.detail .content .infomation .action .ellipsis:hover .tips {
    display: block;
}

.detail .content .infomation .action .ellipsis:hover .tips::before {
    content: "";
    width: 14px;
    height: 9px;
    position: absolute;
    top: -8px;
    right: 10px;
    background: url('../images/triangle.png') no-repeat center center / contain;
}

.detail .content .infomation .action .ellipsis .tips li+li {
    border-top: 1px solid #eee;
}

.detail .content .infomation .action .ellipsis .tips a {
    font-size: 13px;
    display: block;
    padding: 8px;
}

.detail .content .infomation .action .ellipsis .tips a:hover {
    color: var(--active);
}

.detail .content .infomation .action .spread {
    transform: rotate(90deg);
    display: inline-flex;
    transition: all 0.3s ease;
    cursor: pointer;
}

.detail .content .infomation .action .spread i {
    transition: transform 0.3s ease;
}

.detail .content .infomation .action .spread.active i {
    transform: rotate(180deg);
}

.detail .content .basic {
    font-size: 14px;
    color: var(--textColor);
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.detail .content .basic i {
    margin-right: 10px;
}

.detail .content .basic i~i {
    margin-left: 15px;
}

.detail .content .basic i+i {
    margin-left: 15px;
}

.detail .content .options {
    margin-top: 20px;
}

.detail .content .options .final.guess .progress {
    background: #ffebf1;
}

/* .detail .content .options .final.guess .progress .progress-inner{
    background-color: #F1B3BE;
} */

.detail .content .options .final.guess .odds {
    background: #f1b6c1;
}

.detail .content .options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail .content .options li+li {
    margin-top: 25px;
}

.detail .content .options .series {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 25px;
    height: 25px;
    background-color: var(--bgColor);
    border-radius: 50%;
    font-size: 18px;
}

.detail .content .options li:nth-child(2) .series {
    background-color: var(--primary);
}

.detail .content .options li:nth-child(3) .series {
    background-color: #68af14;
}


.detail .content .odds {
    margin-left: 20px;
    background: var(--deep);
    color: #fff;
    height: 35px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    padding: 0 20px;
}



.detail .content .wrapper.vote .odds {
    background-color: var(--vote-deep);
}

.detail .content .odds p {
    height: 100%;
    line-height: 35px;
    margin-right: 5px;
}

.detail .content .odds span {
    margin-left: 5px;
}

.detail .content .message {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.detail .content .handle {
    color: var(--textColor);
}

.detail .content .handle span {
    margin-right: 10px;
    cursor: pointer;
}

.detail .content .handle span.active {
    color: var(--primary)
}

.detail .content .handle span i {
    margin-right: 5px;
}

.detail .content .handle a:hover {
    color: var(--primary);
}

.detail .content .handle .share {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.detail .content .handle .share:hover ul {
    display: block;
}

.detail .content .handle .share ul {
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 15px;
    background: #fff;
    border-radius: 4px;
    transform: translateX(-50%);
    border: 1px solid #eee;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.detail .content .handle .share ul a {
    color: #666;
    line-height: 30px;
    display: block;
    padding: 0 10px;
}

.detail .content .handle .share ul a:hover {
    background: #efefef;
}

.detail .content .author {
    display: flex;
    align-items: center;
}

.detail .content .author img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
    margin-right: 10px;
}

.detail .content .author span {
    font-size: 14px;
    color: var(--textColor);
}

.detail .content .author span a:hover {
    color: var(--primary);
    text-decoration: underline;
}



.detail .inner {
    align-items: flex-start;
}

.detail .prev,
.detail .next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: color 0.3s ease;
}

.detail .prev:hover,
.detail .next:hover {
    color: var(--primary);
}

.detail .prev {
    left: 10px;
}

.detail .next {
    right: 10px;
}

.detail .comments {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}

.detail .comments .title {
    display: flex;
    align-items: center;
    flex: 1 0 100%;
}

.detail .comments .title span {
    font-size: 16px;
    margin-right: 20px;
    line-height: 30px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: var(--textGray);
}

.detail .comments .title span i {
    font-size: 12px;
    transform: scale(0.8);
}

.detail .comments .sort {
    position: relative;
}

.detail .comments .sort:hover .dropdown {
    display: block;
}

.detail .comments .title .dropdown {
    display: none;
    position: absolute;
    z-index: 1;
    top: 25px;
    right: -10px;
    width: 100px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 20%);
}

.detail .comments .title .dropdown li a {
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail .comments .title .dropdown li.active,
.detail .comments .title .dropdown li:hover {
    background-color: #efefef;
}

.detail .comments .title .dropdown li+li {
    border-top: 1px solid #eee;
}

.detail .comments .title .dropdown li span {
    line-height: 20px;
    margin: 0;
}

.detail .comments .title .dropdown li span+i {
    font-size: 12px;
}


.detail .publish {
    width: 100%;
    margin-top: 15px;
}

.detail .publish form {
    display: flex;
}

.detail .publish .avatar {
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.detail .publish .avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.detail .publish input[type=text] {
    flex: 1;
    border: none;
    border-bottom: 1px solid #eee;
    outline: none;
    font-size: 16px;
    color: #666;
    background-color: transparent;
}

.detail .publish input[type=submit] {
    padding: 0 15px;
    margin-left: 15px;
    background-color: var(--deep);
    font-size: 16px;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: 35px;
}

.detail .nodata {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 15px;
    color: var(--textColor);
}

.detail #comment {
    width: 100%;
}

.detail #comment #more {
    display: block;
    color: #409eff;
}

.detail #comment li {
    display: flex;
    padding: 20px 0;
}

.detail #comment li+li {
    border-top: 1px solid #eee;
}

.detail #comment ul li .info {
    margin-left: 10px;
}

.detail #comment .avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
}

.detail #comment li li .avatar {
    width: 28px;
    height: 28px;
}

.detail #comment .avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail #comment .info {
    margin-left: 30px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.detail #comment .base {
    display: flex;
    align-items: center;
}

.detail #comment .username {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.detail #comment .username+time {
    margin-left: 15px;
    color: #999;
    font-size: 15px;
}

.detail #comment .text {
    margin-top: 5px;
    text-align: justify;
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

.detail #comment .praise {
    color: #666;
    font-size: 15px;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.detail #comment .praise a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.detail #comment .praise a i {
    margin-right: 3px;
}

.detail #comment .praise a+a {
    margin-left: 10px;
}

.detail #comment .praise a.actived i {
    color: var(--primary);
}

.detail #comment .praise a:hover {
    color: var(--primary);
}

.detail .reply {
    width: 100%;
    display: flex;
    margin-top: 10px;
}

.detail .reply input {
    width: 100%;
    flex: 1;
    height: 35px;
    border: 1px solid #eee;
    outline: none;
    padding: 0 10px;
    color: #555;
    border-radius: 4px;
}

.detail .reply button {
    padding: 0 15px;
    margin-left: 15px;
    background-color: var(--deep);
    font-size: 16px;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    height: 35px;
}

.detail #comment .more {
    margin-top: 10px;
    color: #409eff;
}

/* 提问 */
.ask .inner {
    padding: 30px 0;
}

.ask ul li {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #eee;
    padding: 10px 0;
}

.ask ul li+li {
    margin-top: 10px;
}

.ask ul li.row {
    flex-direction: row;
}

.ask ul li.row .col {
    flex: 1;
}

.ask ul li.row:nth-last-child(2) .col:last-child {
    flex: 2;
}

.ask ul li .title {
    font-size: 20px;
    color: #333;
    display: inline-flex;
    align-items: center;
}

.ask ul li p span+i {
    color: red;
    font-style: normal;
}

.ask ul li p .iconfont {
    font-size: inherit;
    margin-right: 10px;
}

.ask ul li .col label {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
}

.ask ul li:first-child .col label+label {
    margin-left: 20px;
}

.ask ul li .type {
    display: flex;
    height: 35px;
    margin-top: 10px;
    align-items: center;
}

.ask ul li .col label input {
    margin-left: 10px;
    font-size: 17px;
    display: inline-block;
    width: 18px;
    height: 18px;
}

.ask ul li .col select {
    width: 100%;
    height: 35px;
    border: none;
    background: none;
    font-size: 16px;
    outline: none;
    margin-top: 10px;
}

.ask ul li input[type=text] {
    width: 100%;
    height: 35px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-top: 10px;
    color: #666;
}

.ask ul li .choices-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-top: 10px;
}

.ask ul li .choices-item input {
    margin-left: 10px;
    margin-top: 0;
    padding: 0 10px;
    flex: 1;
    background: none;
}

.ask ul li .add {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.ask ul li:nth-last-child(2) .col {
    padding-right: 20px;

}

.ask ul li:nth-last-child(2) .col+.col {
    border-left: 2px solid #ddd;
    padding-left: 20px;
}

.ask ul li:nth-last-child(2) .col input[type=date],
.ask ul li:nth-last-child(2) .col input[type=time] {
    width: 100%;
    height: 35px;
    font-size: 16px;
    margin-top: 10px;
    padding: 0 10px;
    border: none;
    background: none;
    border-bottom: 1px solid #ccc;
    color: #666;
    outline: none;
}

.ask ul li:nth-last-child(2) .col:last-child {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.ask ul li:nth-last-child(2) .col:last-child label {
    font-size: 16px;
    color: #666;
}

.ask ul li:nth-last-child(2) .col:last-child input {
    margin-right: 10px;
}

.ask ul li button {
    width: 100%;
    height: 35px;
    font-size: 20px;
    color: #fff;
    border: none;
    border-radius: 4px;
    outline: none;
    background: #52647e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

}

.ask ul li button i {
    margin-left: 5px;
}

/* 登陆与注册界面 */
.login .inner {
    padding: 70px 0;
    display: flex;
    justify-content: center;
}

.login .forget {
    padding: 70px 0;
}

.reset-wrapper {
    padding: 0 15px;
    width: 50%;
    margin: 0 auto;
}

.login-wrapper,
.register-wrapper {
    width: 50%;
    padding: 0 50px;
}

.login-wrapper {
    border-right: 1px solid #ddd;
}

.login-wrapper>h1,
.register-wrapper>h1 {
    font-size: 28px;
    font-weight: normal;
    color: var(--textColor);
}

.register-wrapper .email-code {
    display: flex;
}

.register-wrapper .email-code input {
    flex: 1;
    width: 0;
    margin-right: 10px;
}

.register-wrapper .email-code .button {
    display: inline-flex;
    align-items: center;
    background: rgb(82, 100, 126);
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    padding: 0 12px;
    height: 35px;
}

.reset-wrapper .reset-code input {
    margin-right: 10px;
    flex: 1;
    width: 0;
}

.reset-wrapper .reset-code {
    display: flex;
}

.reset-wrapper .reset-code img {
    border-radius: 4px;
    height: 35px;
    display: block;
}

.register-wrapper .email-code input:disabled {
    background: #d1d1d1;
}

.reset-wrapper .success-text {
    font-size: 35px;
    line-height: 35px;
    font-size: 20px;
}

.login form {
    margin-top: 40px;
}

.login ul li {
    display: flex;
    flex-direction: column;
}

.login ul li+li {
    margin-top: 10px;
}

.login label {
    font-size: 16px;
    line-height: 25px;
    color: var(--textColor);
}

.login label i {
    color: red;
    font-style: normal;
}

.login input[type=text],
.login input[type=password],
.login input[type=email] {
    width: 100%;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    color: var(--textColor);
    height: 35px;
    padding: 0 10px;
}

.login button {
    background: rgb(82, 100, 126);
    color: #fff;
    font-size: 21px;
    border-radius: 4px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.login button:disabled {
    background: rgb(82, 100, 126);
    color: #fff;
    cursor: not-allowed;
}

.reset-wrapper a, .login-wrapper a {
    margin-top: 20px;
    display: inline-flex;
    color: var(--textColor);
    align-items: center;
}

.reset-wrapper a:hover, .login-wrapper a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.login-wrapper a i.facebook {
    display: inline-flex;
    width: 15px;
    height: 15px;
    background: url(../images/fb-login.png) no-repeat center center / contain;
    margin-right: 5px;
}

.login-wrapper ul li:nth-last-child(2),
.register-wrapper ul li:nth-child(2) {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.register-wrapper ul li:nth-child(2) .input-wrapper {
    width: 49%;
}

.register-wrapper ul li:nth-last-child(3) {
    flex-direction: row;
    align-items: center;
}

.register-wrapper ul li:nth-last-child(3) label {
    margin-left: 5px;
}

.reset-wrapper ul li>label+.input-wrapper, .register-wrapper ul li>label+.input-wrapper {
    display: flex;
    justify-content: space-between;
}

.reset-wrapper ul li>label+.input-wrapper input, .register-wrapper ul li>label+.input-wrapper input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.reset-wrapper ul li .input-wrapper .showpwd, .register-wrapper ul li .input-wrapper .showpwd {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d1d1d1;
    background: #eee;
    cursor: pointer;
    border-left: none;
    outline: none;
    border-radius: 0 4px 4px 0;
}

.reset-wrapper ul li .input-wrapper .showpwd i, .register-wrapper ul li .input-wrapper .showpwd i {
    color: #666;
}

.reset-wrapper ul li .showpwd i:last-child, .register-wrapper ul li .showpwd i:last-child {
    display: none;
}

.reset-wrapper ul li .showpwd.active i:first-child, .register-wrapper ul li .showpwd.active i:first-child {
    display: none;
}

.reset-wrapper ul li .showpwd.active i:last-child, .register-wrapper ul li .showpwd.active i:last-child {
    display: inline-block;
}

/* 联系我们 */
.contact .inner {
    padding: 50px 0;
}

.contact h1 {
    font-size: 28px;
    font-weight: normal;
    color: var(--textColor);
}

.contact .infomation {
    margin-top: 10px;
}

.contact .infomation ul li {
    color: var(--textColor);
    display: flex;
}

.contact .infomation ul li+li {
    margin-top: 10px;
}

.contact form ul li p,
.contact form ul li a {
    display: block;
    font-size: 17px;
    line-height: 1.5;
    text-align: justify;
}

.contact .infomation ul li i {
    margin-right: 10px;
    font-size: 18px;
}

.contact form {
    margin-top: 30px;
}

.contact form ul li {
    display: flex;
    flex-direction: column;
}

.contact form ul li+li {
    margin-top: 20px;
}

.contact form ul li label {
    font-size: 17px;
}

.contact form ul li label i {
    color: red;
    font-style: normal;
}

.contact form ul li input[type=text],
.contact form ul li input[type=telephone],
.contact form ul li input[type=email],
.contact form ul li textarea {
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    color: var(--textColor);
    height: 35px;
    padding: 0 10px;
}

.contact form ul li textarea {
    min-height: 150px;
    resize: none;
    padding: 10px;
}

.contact form ul li input[type=submit] {
    background: rgb(82, 100, 126);
    color: #fff;
    font-size: 21px;
    border-radius: 4px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

/* 新闻 */
.news .inner {
    padding: 50px 0;
}

.news .navbar {
    display: flex;
    justify-content: space-between;
}

.news .navbar .category {
    display: inline-flex;
}

.news .navbar .category li {
    border-radius: 5px;
    overflow: hidden;
}

.news .navbar .category li+li {
    margin-left: 5px;
}

.news .navbar .category li:hover a,
.news .navbar .category li.active a {
    background: var(--primary);
    color: #fff;
}

.news .navbar .category li a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--textColor);
    background: var(--default);
    font-size: 17px;
    padding: 0 15px;
    line-height: 35px;
}

.news .navbar .searchbox form {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.news .navbar .searchbox input {
    display: inline-flex;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    height: 35px;
    flex: 1;
    outline: none;
    width: 250px;
    padding: 0 15px;
}

.news .navbar .searchbox button {
    width: 40px;
    height: 35px;
    background: var(--primary);
    border: none;
    outline: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    color: #fff;
}

.news .list {
    margin-top: 20px;
}

.news .list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -20px;
}

.news .list ul li {
    width: 33.33%;
    padding: 20px;
}

.news .list ul li .thumb {
    width: 405px;
    height: 265px;
    overflow: hidden;
}

.news .list ul li .wrapper:hover .thumb img {
    transform: scale(1.1);
}

.news .list ul li .thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.news .list ul li .time {
    font-size: 15px;
    color: var(--textColor);
    margin-top: 15px;
}

.news .list ul li .title {
    font-size: 20px;
    margin-top: 10px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news .list ul li .title:hover {
    color: var(--primary);
    text-decoration: underline;
}

.news .list ul li .description {
    font-size: 15px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news .list ul li .more {
    font-size: 17px;
    display: inline-flex;
    margin-top: 15px;
    background: var(--primary);
    line-height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    color: #fff;
}

/* 关于我们、文章详情 */
.about .inner,
.article .inner {
    padding: 50px 0;
}

.about .inner>h1,
.article .inner>h1 {
    font-size: 28px;
    color: var(--textColor);
    font-weight: normal;
    text-align: center;
}

.about .inner>.wrapper {
    width: 100%;
    padding: 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-top: 20px;
}

.article .inner>.wrapper {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.about .inner>.wrapper p,
.article .inner>.wrapper p {
    font-size: 17px;
    line-height: 30px;
    text-align: justify;
    color: var(--textColor);
}

.article .inner>.wrapper img {
    max-width: 100%;
}

.about .inner>.wrapper p:empty,
.article .inner>.wrapper p:empty {
    height: 30px;
}

.article .inner>.action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 15px;
}

.article .inner .action .pubtime {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}

.article .inner .action .pubtime i {
    margin-right: 10px;
}

.article .inner .goback {
    display: inline-flex;
    line-height: 35px;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 0 15px;
    color: var(--textGray);
    transition: all 0.3s ease;
}

.article .inner .goback i {
    font-size: 15px;
    margin-right: 5px;
}

.article .inner .goback:hover {
    background-color: var(--active);
    color: #fff;
    border-color: transparent;
}

/* 问答 */
.qa .inner {
    padding: 50px 0;
}

.qa .inner>h1 {
    font-size: 28px;
    color: var(--textColor);
    font-weight: normal;
}

.qa .inner>.wrapper {
    margin-top: 20px;
}

.qa .inner>.wrapper ol {
    padding-inline-start: 20px;
}

.qa .inner>.wrapper ol h4 {
    font-weight: normal;
    font-size: 18px;
    line-height: 34px;
    font-weight: bold;
    color: var(--textColor);
}

.qa .inner>.wrapper ol h5,
.qa .inner>.wrapper ol p {
    font-size: 17px;
    line-height: 2;
    font-weight: normal;
    color: var(--textColor);
    text-align: justify;
}

.qa .inner>.wrapper ol p:empty {
    height: 34px;
}

.qa .inner>.wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.qa .inner>.wrapper table tr {
    height: 40px;
    border-bottom: 1px solid #ddd;
}

.qa .inner>.wrapper table tr:first-child {
    border-top: 1px solid #ddd;
}

.qa .inner>.wrapper table tr td {
    font-size: 16px;
    color: var(--textColor);
    text-align: center;
}

/* 法律条款 */
.legal .inner {
    padding: 50px 0;
}

.legal .inner>h1 {
    font-size: 28px;
    color: var(--textColor);
    font-weight: normal;
}

.legal .inner>.wrapper {
    margin-top: 20px;
}

.legal .inner>.wrapper ul {
    list-style: disc;
    padding-inline-start: 15px;
}

.legal .inner>.wrapper ul li+li {
    margin-top: 20px;
}

.legal .inner>.wrapper ul li a:hover {
    text-decoration: underline;
    color: var(--primary);
}

.legal .policy,
.legal .conditions,
.legal .disclaimer {
    margin-top: 20px;
    font-size: 17px;
    line-height: 2;
    color: var(--textColor);
    text-align: justify;
}

.legal .policy h4,
.legal .conditions h4,
.legal .disclaimer h4 {
    font-weight: normal;
    font-size: 18px;
    text-decoration: underline;
}

.legal .policy p:empty,
.legal .conditions p:empty,
.legal .disclaimer p:empty {
    height: 30px;
}

.legal .policy ol,
.legal .conditions ol {
    padding-inline-start: 20px;
}

/* 用户中心 */
.user .inner {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.user .aside {
    display: flex;
    flex: 2.5;
    margin-right: 5vw;
}

.user .aside ul {
    flex: 1;
}

.user .aside ul li {
    width: 100%;
    background-color: var(--default);
    border-radius: 4px;
    overflow: hidden;
}

.user .aside ul li:hover a,
.user .aside ul li.active a {
    background-color: var(--deep);
}

.user .aside ul li+li {
    margin-top: 15px
}

.user .aside ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 45px;
    font-size: 16px;
    padding: 0 20px;
    color: #666;
    transition: background 0.3s ease;
}

.user .aside ul li a i {
    margin-right: 10px;
}

.user .aside ul li a span {
    flex: 1;
    overflow: hidden;
}

.user .content {
    flex: 7;
}

.user .content .list .nodata {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 15px;
}

.user .profile .basic {
    display: flex;
    align-items: center;
    height: 250px;
}

.user .profile .info {
    flex: 1;
    display: flex;
    margin-right: 40px;
}

.user .profile .avatar img {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.user .profile .userinfo {
    margin-left: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.user .profile .username {
    font-size: 28px;
    font-weight: normal;
    color: var(--textGray);
}

.user .profile .level {
    font-weight: normal;
    font-size: 22px;
    color: var(--textGray);
    margin-top: 10px;
}

.user .profile .coins {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: var(--textGray);
    margin-top: 10px;
}

.user .profile .coins .iconcoin {
    color: gold;
    margin-right: 10px;
}

.user .profile .progress {
    height: 15px;
    border-radius: 8px;
    background-color: var(--default);
    overflow: hidden;
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
}

.user .profile .progress .progress-inner {
    height: 100%;
    /* background-color: var(--deep); */
}

.user .profile .next,
.user .profile .experience {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    color: var(--textGray);
    margin-top: 10px;
}

.user .profile .chart {
    /*flex:1;*/
    width: 50%;
    height: 250px;
}

.user .profile .summary,
.user .profile .about,
.user .profile .accuracy {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.user .profile .summary>.title,
.user .profile .about>.title,
.user .profile .accuracy>.title {
    border-bottom: 1px solid #ddd;
    width: 100%;
    margin-bottom: 20px;
}

.user .profile .summary .title span,
.user .profile .about .title span,
.user .profile .accuracy .title span {
    border-bottom: 2px solid var(--textGray);
    font-size: 21px;
    line-height: 35px;
    color: var(--textGray);
    font-weight: bold;
    display: inline-flex;
}

.user .profile .summary ul {
    display: flex;
    flex-wrap: wrap;
}

.user .profile .summary ul li {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.user .profile .summary ul li:nth-child(odd) {
    padding-right: 40px;
}

.user .profile .summary ul li:nth-child(even) {
    padding-left: 40px;
    width: 60%;
}

.user .profile .summary .attr {
    font-size: 19px;
    color: var(--textGray);
    font-weight: normal;
    white-space: nowrap;
}

.user .profile .summary .value {
    font-size: 17px;
    color: var(--textGray);
    white-space: nowrap;
}

.user .profile .accuracy .left {
    display: flex;
    /*flex:1;*/
    width: 30%;
}

.user .profile .accuracy .left .filters {
    width: 100%;
    margin-right: 0;
}

.user .profile .accuracy .left .filters .category .group .item>a {
    display: flex;
    align-items: center;
    max-width: calc(100% - 30px);
    align-items: center;
}


.user .profile .accuracy .left .filters {
    margin-right: 40px;
}

.user .profile .about ul li {
    height: 40px;
    display: flex;
    align-items: center;
}

.user .profile .about .attr {
    font-size: 19px;
    color: var(--textGray);
    font-weight: normal;
}

.user .profile .about .value {
    font-size: 16px;
    color: var(--textGray);
    margin-left: 8px;
}

/* 修改密码 */

.user .password ul li {
    display: flex;
    flex-direction: column;
}

.user .password ul li+li {
    margin-top: 20px;
}

.user .password ul li label {
    font-size: 17px;
    color: var(--textGray);
}

.user .password ul li label i {
    color: red;
    font-style: normal;
}

.user .password ul li input[type=password] {
    border: 1px solid #d1d1d1;
    margin-top: 10px;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    color: var(--textColor);
    height: 35px;
    padding: 0 10px;
}

.user .password ul li button {
    background: rgb(82, 100, 126);
    color: #fff;
    font-size: 21px;
    border-radius: 4px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

/* 我的信息 */
.user .information .category {
    background-color: var(--deep);
    height: 45px;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.user .information .category~.category {
    margin-top: 20px;
}

.user .information ul {
    margin-top: 20px;
}

.user .information ul li {
    display: flex;
    flex-wrap: wrap;
}

.user .information ul li+li {
    margin-top: 15px;
}

.user .information ul li.row {
    justify-content: space-between;
}

.user .information ul li.row .col {
    width: 49%;
}

.user .information ul li label {
    width: 100%;
    color: var(--textGray);
}

.user .information ul li label span+i {
    color: red;
    font-style: normal;
}

.user .information input[type=text],
.user .information input[type=email],
.user .information input[type=tel],
.user .information input[type=date],
.user .information input[type=submit],
.user .information select,
.user .information textarea {
    width: 100%;
    height: 35px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: none;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.user .information textarea {
    min-height: 150px;
    resize: none;
    padding: 10px;
}

.user .information button {
    width: 100%;
    height: 35px;
    border-radius: 4px;
    outline: none;
    padding: 0 10px;
    font-size: 16px;
    color: #fff;
    background-color: var(--bgColor);
    cursor: pointer;
    margin-top: 0;
    border: none;
}

.user .information .avatar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.user .information .avatar a {
    display: block;
}

.user .information .avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: block;
    object-fit: contain;
}

.user .information .avatar span {
    display: inline-flex;
    padding: 0 20px;
    line-height: 35px;
    border: 1px solid var(--textGray);
    border-radius: 4px;
    margin-top: 15px;
    color: var(--textGray);
    cursor: pointer;
}

.user .information .upload {
    width: 150px;
    height: 150px;
}

.user .information .upload-wrapper {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
}

/* 经验记录、金币记录 */
.user .experience .category,
.user .coin .category {
    background-color: var(--deep);
    height: 45px;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.user .experience .list,
.user .coin .list {
    overflow-y: auto;
    margin-top: 20px;
}

.user .experience .list table,
.user .coin .list table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.user .experience .list table thead tr,
.user .coin .list table thead tr {
    background-color: var(--default);
    color: var(--textGray);
}

.user .experience table tr,
.user .coin table tr {
    height: 50px;
    border-top: 1px solid #ddd;
    font-weight: normal;
}

.user .experience table tr td,
.user .experience table tr th,
.user .coin table tr td,
.user .coin table tr th {
    font-weight: normal;
    text-align: center;
    font-style: 15px;
}

.user .experience table tbody td,
.user .coin table tbody td {
    color: var(--textGray);
    font-size: 15px;
}

.user .list+.pagination {
    margin-top: 30px;
}

/* 比较 */
.user .comparison .type {
    display: flex;
    justify-content: space-between;
}

.user .comparison .type li {
    width: 48%;
    border-radius: 4px;
    overflow: hidden;
}

.user .comparison .type li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-size: 20px;
    background-color: var(--default);
    color: var(--textGray);
    transition: all 0.3s ease;
}

.user .comparison .type li a i {
    margin-right: 5px;
}

.user .comparison .type li a:hover {
    background-color: var(--deep);
}

.user .comparison .compare {
    margin-top: 20px;
}

.user .comparison .title {
    font-size: 22px;
    color: var(--textGray);
}

.user .comparison .compare ul {
    display: flex;
    margin-top: 20px;
}

.user .comparison .compare ul li {
    width: 33.33%;
    padding: 0 15px;
}

.user .comparison .compare .username {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--textGray);
}

.user .comparison .compare .assets {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    margin-top: 15px;
    overflow: hidden;
}

.user .comparison .compare .assets .iconcoin {
    color: gold;
}

.user .comparison .compare .assets span {
    line-height: 30px;
    margin: 0 5px;
    color: #666;
}

.user .comparison .compare .tip {
    font-size: 18px;
    color: var(--textGray);
    margin-top: 20px;
    text-align: center;
}

.user .comparison .compare .chart {
    width: 100%;
    height: 265px;
}

.user .comparison .compare li>button {
    background: var(--default);
    display: flex;
    margin: auto;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    line-height: 30px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--textGray);
    transition: background 0.3s ease;
}

.user .comparison .compare li>button:hover {
    background: var(--deep);
}

.user .comparison .compare .empty {
    width: 100%;
    height: 100%;
    background-color: #eee;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.user .comparison .compare .empty .searchbox {
    flex: 1;
    display: flex;
    justify-content: center;
}

.user .comparison .compare .empty input {
    height: 35px;
    border: none;
    padding: 0 15px;
    outline: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    flex: 1;
}

.user .comparison .compare .empty button {
    width: 35px;
    height: 35px;
    background: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

.user .comparison .ability {
    margin-top: 20px;
}

.user .comparison .ability .chart {
    width: 100%;
    height: 300px;
    margin-top: 20px;
}

/* 问答记录 */
.user .question .category ul {
    display: flex;
    justify-content: space-between;
}

.user .question .category ul li {
    width: 48%;
    border-radius: 4px;
    overflow: hidden;
}

.user .question .category ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    font-size: 20px;
    background-color: var(--default);
    color: var(--textGray);
    transition: all 0.3s ease;
}

.user .question .category ul li.active a,
.user .question .category ul li a:hover {
    background-color: var(--deep);
}

.user .question .category ul li a i {
    font-size: 20px;
    margin-right: 10px;
}

.user .question .list>ul {
    margin-top: 20px;
}

.user .question .list>ul>li {
    padding: 15px 0;
}

.user .question .list>ul>li+li {
    border-top: 1px solid rgba(0, 0, 0, 0.2)
}

.user .question .list .title {
    font-size: 17px;
    font-weight: normal;
    color: var(--textGray);
}

.user .question .list .title span:hover {
    text-decoration: underline;
    color: var(--primary);
}

.user .question .list .title i {
    color: green;
    margin-right: 8px;
}

.user .question .list .type {
    font-size: 14px;
    color: var(--textGray);
    margin-top: 10px;
    padding-left: 25px;
}

.user .question .list .info {
    margin-top: 15px;
}

.user .question .list .info ul {
    display: flex;
}

.user .question .list .info ul li {
    flex: 1;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 15px;
}

.user .question .list .attr,
.user .question .list .value {
    font-size: 14px;
    color: var(--textGray);
}

.user .question .list .value {
    margin-top: 15px;
}

.user .question .list .info ul li:first-child .value {
    color: green;
    font-size: 14px;
}

.user .question .list .value i::before {
    color: gold;
    margin-right: 10px;
}

/* 评论 */
.user .comment .category {
    background-color: var(--deep);
    height: 45px;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.user .comment .list {
    margin-top: 20px;
}

.user .comment .list li {
    border-radius: 4px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.user .comment .list li+li {
    margin-top: 20px;
}

.user .comment .list li:hover {
    transform: translateY(-3px);
}

.user .comment .list .title {
    background-color: var(--default);
    padding: 10px;
}

.user .comment .list .title .link {
    font-size: 16px;
    color: var(--textGray);
}

.user .comment .list .title .link a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.user .comment .list .type {
    margin-top: 10px;
    color: var(--textGray);
}

.user .comment .list .type a:hover {
    color: var(--primary);
}

.user .comment .list .type a:hover span {
    text-decoration: underline;
}

.user .comment .list .description {
    border-top: none;
    padding: 10px;
    border-radius: 0 0 4px 4px;
}

.user .comment .list .tip {
    font-size: 15px;
    line-height: 1.5;
    color: var(--textGray);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.user .comment .list .action {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--textGray);
}

.user .comment .list .action a:hover {
    color: var(--primary);
}

.user .comment .list .praise {
    display: inline-flex;
    align-items: center;
}

.user .comment .list .praise a+a {
    margin-left: 15px;

}

.user .comment .list .praise a span {
    margin-left: 3px;
}

/* 关注 */
.user .follow .category {
    background-color: var(--deep);
    height: 45px;
    padding: 0 10px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-radius: 4px;
}

.user .follow .category~.category {
    margin-top: 20px;
}

.user .follow .nodata {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    background-color: #f9f9f9;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 15px;
}


/*2021-08-28新增*/
.notify {
    width: 250px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: fixed;
    right: -250px;
    top: 10px;
    z-index: 9;
    padding: 10px;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #eee;
    transition: right 0.3s ease;
}

.notify.show {
    right: 10px;
}

.notify h4 {
    font-size: 16px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.notify p {
    font-size: 14px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.dialog {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-wrapper .iconremove,
.dialog .iconremove {
    position: absolute;
    right: 2vw;
    top: 2vh;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dialog iframe {
    width: 1820px;
    max-width: 95vw;
    height: 700px;
    max-height: 80vh;
    border: none;
    background: #fff;
    border-radius: 4px
}

.confirm {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm .wrapper {
    width: 350px;
    background: #fff;
    border-radius: 4px;
}

.confirm .title {
    font-weight: normal;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    border-bottom: 1px solid #efefef;
    line-height: 40px;
}

.confirm .text {
    font-size: 14px;
    padding: 15px 10px;
    border-bottom: 1px solid #efefef;
}

.confirm input {
    width: 100%;
}

.confirm .buttons {
    padding: 10px;
    text-align: center;
}

.confirm button {
    border: 1px solid var(--primary);
    background: var(--primary);
    font-size: 14px;
    outline: none;
    color: #fff;
    line-height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
}

.confirm button+button {
    margin-left: 10px;
    color: var(--primary);
    background: none;
}

.select_options {
    padding: 10px;
}

.select_options>div {
    line-height: 35px;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
}

.select_options>div+div {
    margin-top: 5px;
}

.select_options .active {
    background-color: var(--primary);
    color: #fff;
}

.confirm-content {
    margin-top: 15px;
    padding: 0 10px;
}

.confirm-content input {
    height: 35px;
    border-radius: 4px;
    outline: none;
    border: 1px solid #ccc;
    padding: 0 10px;
}

.dialog-wrapper {
    /* display: none; */
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9;
}

.dialog-wrapper .dialog-content {
    width: 100%;
    max-width: 90vw;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1vw;
    border-radius: 5px;
    height: 95vh;
    overflow-y: auto;
}

.dialog-wrapper .dialog-content>#close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    color: #444;
}

/* .drop{
    display: inline-block;
    position: relative;
    width: 50%;
    margin-left: 10px;
} */

/* .drop p{
    color: #fff;
    width: 100%;
    margin-left: 20px;
    font-size: 16px;
    background-color: #ff8c00;
    /*background-color: #919191;
border-radius: 5px;
text-align: center;
padding: 5px;
;
}
*/
/* .drop p:hover{
    background-color: #CC7000;
}

.drop:hover span:nth-child(1){
    display: none;
}

.drop p span:nth-child(2){
    display: none;
} */

/* .drop:hover span:nth-child(2){
    display: inline;
} */

/* .drop.auth:hover ul{
    display: block;
    margin: 15px 20px;
} */

/* .drop ul{
    display: none;
    position: absolute;
    min-width: 100%;
    z-index: 9;
    left:0;
    top:15px;
    background-color: #fff;
    border-radius: 4px;
    padding:5px;
} */
/* .drop ul li{
    line-height: 35px;
} */


/* 2023/05/10 */
.index .wrapper .swiper-slide .infomation {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex: 5;
}

.index .wrapper .swiper-slide .infomation .usercount {
    padding: 0 5px;
    /* background: var(--deep); */
    color: #fff;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 15px;
}

.index .wrapper .swiper-slide .infomation .usercount i {
    margin-right: 6px;
}

.index .wrapper .swiper-slide .action {
    display: flex;
    align-self: flex-start;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    right: 45px;
}

.index .wrapper .swiper-slide .action .type {
    display: inline-flex;
    height: 35px;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin-right: 20px;
    font-size: 20px;
    background: #aaa;
    border-radius: 0 0 8px 8px;
    color: #fff;
}

.index .wrapper .swiper-slide .action .ellipsis .tips {
    position: absolute;
    z-index: 1;
    top: 25px;
    right: -10px;
    width: 150px;
    background: #fff;
    border-radius: 8px;
    padding: 5px 0;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    display: none;
}

.index .wrapper .swiper-slide .action .ellipsis {
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.index .wrapper .swiper-slide .action .ellipsis:hover .tips {
    display: block;
}

.index .wrapper .swiper-slide .action .ellipsis .tips::before {
    content: "";
    width: 14px;
    height: 9px;
    position: absolute;
    top: -8px;
    right: 10px;
    background: url('../images/triangle.png') no-repeat center center / contain;
}

.index .wrapper .swiper-slide .action .ellipsis .tips li+li {
    border-top: 1px solid #eee;
}

.index .wrapper .swiper-slide .action .ellipsis .tips a {
    font-size: 13px;
    display: block;
    padding: 8px;
}

.index .wrapper .swiper-slide .action .ellipsis .tips a:hover {
    color: var(--active);
}