@charset "UTF-8";

* {
    /*box-sizing: inherit;*/
}

.big-container {
    width: 98%;
    margin: 0 auto;
    min-height: 570px;
    z-index:10;
    position: relative;
    border-radius: 10px;
    border-width: 3px;
    border-color: rgba(0, 0, 0, 0.616);
    border-style: dashed;
    background-color: rgb(255, 255, 255);
}

.headpic{
    width:100%;
    height:540px;
    position: fixed;
    z-index: -1;
}

.headpic-cover{
    width: 100%;
    height: 540px;
}
.article {
    width: 1152px;
    margin: 60px auto 10px auto;
    display: block;
    overflow: hidden;
}

.result-box {
    width: 755px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 5px;
}

.info-container {
    float: left;
    width: 362px;
    color: #666666;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    margin: 15px 5px 0 5px;
    box-sizing: border-box;
    overflow: hidden;
    padding-bottom: 10px;
    transition: ease-in-out 0.3s;
}

.info-container:hover {
    box-shadow: 0 0 10px #7e8795;
    -moz-box-shadow: 0 0 10px #7e8795;
    color: #3aa4ff;
}

.gradient-text {
    background-image: -webkit-linear-gradient(bottom, #007aff, #3aa4ff, #00b7ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.person-intro-title {
    height: 40px;
    line-height: 40px;
    width: 82%;
    margin: 10px 9%;
    color: #292929;
}

.person-intro-detail {
    /*height: 30px;*/
    line-height: 30px;
    width: 82%;
    margin: 8px 9%;
    padding: 0;
    color: #666666;
}

.person-intro-detail a {
    color: #0e90d2;
    text-decoration: underline #0e90d2;
}

.person-img-li {
    position: relative;
    margin: 15px 9%;
    height: 90px;
    width: 82%;
}

#person-img {
    max-height: 90px;
    max-width: 90px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: -webkit-transform 2s ease-out;
    -moz-transition: -moz-transform 2s ease-out;
    -o-transition: -o-transform 2s ease-out;
    -ms-transition: -ms-transform 2s ease-out;
}

#person-img:hover {
    -webkit-transform: rotateZ(360deg);
    -moz-transform: rotateZ(360deg);
    -o-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
}

.left-holder {
    width: 755px;
    float: left;
    margin: 0;
    overflow: visible;
    padding-bottom: 5px;
}

.right-holder {
    width: 372px;
    float: left;
    margin-left: 15px;
    margin-bottom: 10px;
    overflow: visible;
}

.article-box {
    float: left;
    width: 745px;
    height: auto;
    margin-left: 10px;
    margin-top: 20px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    overflow: hidden;
    transition: all 0.6s;
}

.choosen-box {
    width:25px;
    height:32px;
    background-color:rgb(180, 180, 180);
    margin: 0 auto;
    float:left;
    text-align:center;
    font-size:20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    overflow: hidden;
    transition: all 0.6s;
}

.article-box:hover {
    box-shadow: 0 0 10px #767676;
    transform: scale(1.02);
}

.choosen-box:hover {
    box-shadow: 0 0 10px #767676;
    transform: scale(1.15); 
}

.ab-content {
    width: 100%;
    margin: auto 0;
    overflow: hidden;
}

.ab-content .empty-box {
    height: 100%;
    width: 250px;
    margin: 0 auto;
}

.empty-box .svg-box {
    height: 150px;
    width: 100%;
    margin-top: 20px;
}

.empty-box .tip {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin-top: 10px;
    color: #666666;
}

.ab-content svg {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
}

.article-title {
    width: 390px;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    margin-left: 20px;
    float: left;
}

.article-title a {
    width: 100%;
    height: 100%;
    font-size: 20px;
    color: #292929;
    font-weight: normal;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    overflow: hidden; /*超出部分隐藏*/
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    white-space: nowrap; /*规定段落中的文本不进行换行 */
}

.article-title a:hover {
    color: #007aff;
}

.article-img-box {
    float: left;
    width: 320px;
    height: 180px;
    margin: 0;
    overflow: hidden;
    display: block;
    /*border-radius: 10px;*/
}

.article-img-box .article-img {
    display: inline-block;
    /*height: auto;*/
    width: 100%;
    transition: all 0.6s;
}

.article-img-box img:hover {
    /*鼠标移入图片放大*/
    transform: scale(1.1);
    -webkit-transform: scale(1.1); /*Safari 和 Chrome*/
    -moz-transform: scale(1.1); /*Firefox*/
    -ms-transform: scale(1.1); /*IE9*/
    -o-transform: scale(1.1); /*Opera*/
}

.article-detail-box {
    float: left;
    height: 60px;
    width: 390px;
    margin-top: 5px;
    margin-left: 20px;
    line-height: 30px;
    font-size: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    -o-text-overflow: ellipsis; /* 支持 Opera */
    text-overflow: ellipsis; /* 支持 IE */
    overflow: hidden;
}


.article-tail-box {
    float: left;
    height: 30px;
    width: 400px;
    margin-top: 2px;
    margin-left: 20px;
    line-height: 30px;
}

.article-tail-box i {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: inline-block;
    margin: 5px 3px;
}

.article-tail-box .comment-number {
    height: 100%;
    line-height: 30px;
}

.article-tail-box .read-number {
    height: 100%;
    line-height: 30px;
    margin-right: 5px;
}

.article-date {
    float: right;
    height: 100%;
    font-size: 16px;
    margin-right: 10px;
}

.article-author {
    float: right;
    height: 100%;
    font-size: 16px;
    margin-right: 20px;
    max-width: 100px;
}

.column-container {
    float: left;
    width: 362px;
    margin-left: 5px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    transition: ease-in-out 0.3s;
    border-radius: 10px;
}

.column-container:hover {
    box-shadow: 0 0 10px #7e8795;
    -moz-box-shadow: 0 0 10px #7e8795;
}

.column-container-wider {
    float: left;
    width: 724px;
    margin-left: 5px;
    margin-top: 20px;
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    transition: ease-in-out 0.3s;
    border-radius: 10px;
}

.column-container-wider:hover {
    box-shadow: 0 0 10px #7e8795;
    -moz-box-shadow: 0 0 10px #7e8795;
}
.column_box {
    width: 100%;
    padding: 12px 24px;
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

.column_box .column-title {
    width: 86%;
    height: 40px;
    line-height: 40px;
    padding: 0 7%;
    font-size: 16px;
    font-weight: 600;
}

.column-title .at-sort {
    height: 41px;
    width: 100%;
}

.column-title .at-sort-comment-a {
    height: 40px;
    padding: 0 2px;
    text-align: left;
    border-bottom: #3aa4ff solid 2px;
    font-weight: bold;
}

.column_box .column-category {
    height: 55px;
    line-height: 55px;
    font-size: 15px;
    /*    !*单行文本溢出显示省略号*!
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;*/
}

.column_box .column-category a {
    width: 86%;
    padding: 0 7%;
    height: 100%;
    float: left;
    color: #666666;
    transition: border-left-width 0.3s ease-in-out;
    /*单行文本溢出显示省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.column_box .column-category a:hover {
    color: #007aff;
    border-left: #3aa4ff solid 3px;
    background-color: #fafafa;
}

#a-active {
    color: #007aff;
    border-left: #3aa4ff solid 3px;
}

#pagination {
    margin-top: 15px;
    margin-left: 1%;
    margin-right: 1%;
    width: 98%;
}

.article-cate {
    width: 390px;
    height: 25px;
    line-height: 15px;
    margin: 2px 0 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
}

.article-cate a {
    font-size: 13px;
    color: #444555;
    padding: 5px 10px;
    height: 15px;
    background-color: #f0f0f0;
    border-radius: 10px;
    /*font-weight: 900;*/
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.article-cate a:hover {
    background-color: #e2e3e3;
}

/*@media (min-height: 1200px) {
    .swiper-container {
        width: 98%;
        max-height: 420px;
        float: left;
        margin: 5px 5px;
        background-color: rgb(179, 189, 196);
        transition: ease-in-out background-color 0.5s;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
        -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }
}*/


/*响应式尺寸*/

/*@media (min-height: 1200px) {*/

/*}*/

.col-1-of-3 .card {
    -webkit-perspective: 150rem;
    perspective: 150rem;
    -moz-perspective: 150rem;
    position: relative;
    height: 13.5rem;
}

.card__side {
    height: 13rem;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 4px 4px 4px 4px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 10px rgba(184, 197, 214, .5);
    -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
}

.card__side:hover {
    box-shadow: 0 0 10px #7e8795;
    -moz-box-shadow: 0 0 10px #7e8795;
}

.card__side--front {background-color: #fff;}
.card__side--front-1 {background: linear-gradient(-45deg, #f403d1, #64b5f6);}
.card__side--front-2 {background: linear-gradient(-45deg, #f321d7, #ffec61);}
.card__side--front-3 {background: linear-gradient(-45deg, #24ff72, #9a4eff);}
.card__side--front-4 {background: linear-gradient(-45deg, #171925, #325fb1);}
.card__side--front-5 {background: #fff;}
.card__side--front-6 {background-size: 100% auto;}
.card__side--back {-webkit-transform: rotateY(180deg);transform: rotateY(180deg);}
.card__side--back-1 {background: linear-gradient(-45deg, #64b5f6, #f403d1);}
.card__side--back-2 {background: linear-gradient(-45deg, #ffec61, #f321d7);}
.card__side--back-3 {background: linear-gradient(-45deg, #9a4eff, #24ff72);}
.card__side--back-4 {background: linear-gradient(-45deg, #325fb1, #171925);}
.card__side--back-5 {background: #fff;}
.card__side--back-6 {background: #fff;}
.card:hover .card__side--front-1,
.card:hover .card__side--front-2,
.card:hover .card__side--front-3,
.card:hover .card__side--front-4,
.card:hover .card__side--front-5,
.card:hover .card__side--front-6{-webkit-transform: rotateY(-180deg);transform: rotateY(-180deg);}
.card:hover .card__side--back {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}

.row {
    /* max-width: 114rem; */
    margin: 0 auto;
}

.row::after {
    content: "";
    display: table;
    clear: both;
}

.row [class^="col-"] {
    float: left;
}

.col-1-of-3 {
    width: 47%;
    padding-right: 5px;
}

@media screen and (max-width: 1200px) {
    .col-1-of-3 {
    width: 100%;
    }
    .card__side {
    height: 13rem;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
    }
}

@media screen and (max-width: 1200px) {
    .article {
        width: 100%;
        margin: 0 auto;
        padding-top: 60px;
        padding-bottom: 10px;
    }

    .headpic {
        display: none;
    }

    .headpic-cover {
        display: none;
    }
    .left-holder {
        width: 96%;
        margin: 0 2%;
        clear: both;
    }

    .result-box {
        width: 96%;
        margin: 0 2%;
        clear: both;
    }

    .right-holder {
        width: 96%;
        margin: 0 2%;
        clear: both;
    }

    #article-holder {
        width: 100%;
    }

    .button-prev {
        top: 50%;
        left: 15px;
    }

    .button-next {
        top: 50%;
        right: 15px;
    }

    .article-box {
        width: 98%;
        height: auto;
        margin: 8px 1%;
    }
    .choosen-box {
        width:25px;
        height:32px;
        background-color:rgb(180, 180, 180);
        margin: 0 auto;
        float:left;
        text-align:center;
        font-size:20px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(184, 197, 214, .5);
        -moz-box-shadow: 0 0 10px rgba(184, 197, 214, .5);
        overflow: hidden;
        transition: all 0.6s;
    }
    .choosen-box:hover {
        box-shadow: 0 0 10px #767676;
        transform: scale(1.15); 
    }

    .ab-content {
        width: 100%;
        margin: 0;
        padding-bottom: 10px;
    }

    .article-title {
        width: 94%;
        height: 40px;
        line-height: 40px;
        margin-left: 3%;
    }

    .article-title a {
        width: 100%;
        float: left;
        font-size: 18px;
    }

    .article-cate {
        width: 96%;
        margin: 2px 2%;
    }

    .article-cate a {
        font-size: 13px;
    }

    .article-img-box {
        display: none;
        /* float: left;
        width: 100%;
        height: auto;
        margin: 10px 0 0 2%;
        overflow: hidden; */
    }

    .article-detail-box {
        display: none;
        /* width: 94%;
        height: 75px;
        margin: 8px 3%;
        line-height: 25px;
        -webkit-line-clamp: 3; */
    }

    .article-tail-box {
        float: left;
        height: 30px;
        width: 98%;
        line-height: 30px;
        margin: 5px 1%;
    }

    .column-container {
        width: 98%;
        margin: 6px 1%;
        font-size: 14px;
    }

    .column-container a {
        font-size: 14px;
    }

    .column-container-wider {
        width: 98%;
        margin: 6px 1%;
        font-size: 14px;
    }

    .column-container-wider a {
        font-size: 14px;
    }

    .column_box .column-title {
        height: 45px;
        line-height: 45px;
    }

    .column_box .column-category {
        height: 45px;
        line-height: 45px;
    }

    #pagination {
        text-align: center;
    }
}

/*@media (max-width: 768px) {*/

/*}*/

/*@media (max-width: 576px) {*/

/*}*/












[data-theme="dark"] .big-container {
width: 98%;
    margin: 0 auto;
    min-height: 570px;
    z-index:10;
    position: relative;
    border-radius: 10px;
    border-width: 3px;
    border-color: rgba(0, 0, 0, 0.616);
    border-style: dashed;
    background-color: var(--bg-primary);
}

[data-theme="dark"] .info-container {
float: left;
    width: 362px;
    color: #c0c0c0;
    background-color: var(--bg-card);
    box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    -moz-box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    margin: 15px 5px 0 5px;
    box-sizing: border-box;
    overflow: hidden;
    padding-bottom: 10px;
    transition: ease-in-out 0.3s;
}

[data-theme="dark"] .info-container:hover {
box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    -moz-box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    color: var(--text-link-hover);
}

[data-theme="dark"] .person-intro-title {
height: 40px;
    line-height: 40px;
    width: 82%;
    margin: 10px 9%;
    color: azure;
}

[data-theme="dark"] .person-intro-detail {
/*height: 30px;*/
    line-height: 30px;
    width: 82%;
    margin: 8px 9%;
    color: #c0c0c0;
}

[data-theme="dark"] .choosen-box {
width:35px;
        height:32px;
        background-color:var(--bg-body);
        margin: 0 auto;
        padding-right: 5px;
        padding-left: 5px;
        float:left;
        text-align:center;
        font-size:20px;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(115, 115, 115, .5);
        -moz-box-shadow: 0 0 10px rgba(115, 115, 115, .5);
        overflow: hidden;
        transition: all 0.6s;
}

[data-theme="dark"] .article-box:hover {
box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    transform: scale(1.02);
}

[data-theme="dark"] .choosen-box:hover {
box-shadow: 0 0 10px rgba(115, 115, 115, .5);
        transform: scale(1.15);
}

[data-theme="dark"] .empty-box .tip {
width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin-top: 10px;
    color: #c0c0c0;
}

[data-theme="dark"] .column-container:hover {
box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    -moz-box-shadow: 0 0 10px rgba(115, 115, 115, .5);
}

[data-theme="dark"] .column-container-wider:hover {
box-shadow: 0 0 10px rgba(115, 115, 115, .5);
    -moz-box-shadow: 0 0 10px rgba(115, 115, 115, .5);
}

[data-theme="dark"] .column_box {
width: 100%;
    padding: 12px 16px;
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
}

[data-theme="dark"] .column_box .column-category a {
width: 86%;
    padding: 0 7%;
    height: 100%;
    float: left;
    color: #c0c0c0;
    transition: border-left-width 0.3s ease-in-out;
    /*单行文本溢出显示省略号*/
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

[data-theme="dark"] .column_box .column-category a:hover {
color: var(--text-link);
    border-left: var(--text-link-hover) solid 3px;
    background-color: var(--bg-card);
}

[data-theme="dark"] .card__side--back-6 {
background: #222;
}



/* === Modern Article Cards === */
.article-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  margin: 12px 0;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-light);
  transition: all 0.25s ease;
  cursor: pointer;
}
.article-card:hover {
  box-shadow: var(--shadow-card);
  border-color: transparent;
  transform: translateY(-2px);
}
.article-card-img {
  width: 160px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary);
}
.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.article-card-title a {
  color: var(--text-primary);
  text-decoration: none;
}
.article-card-title a:hover {
  color: var(--text-link);
}
.article-card-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  align-items: center;
}
.article-card-meta span {
  white-space: nowrap;
}

/* === Modern Pagination === */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 24px 0 12px 0;
  flex-wrap: wrap;
}
.pagination-info {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 12px;
  background: var(--bg-card);
  border-radius: 20px;
  margin-right: 12px;
}
.pagination-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pagination-btn:hover {
  background: var(--text-link);
  color: #fff;
  border-color: var(--text-link);
}
.pagination-btn.active {
  background: var(--text-link);
  color: #fff;
  border-color: var(--text-link);
  font-weight: bold;
}

@media (max-width: 768px) {
  .article-card-img {
    width: 100px;
    height: 70px;
  }
  .article-card {
    padding: 12px;
    gap: 12px;
  }
  .article-card-title {
    font-size: 14px;
  }
}



.person-intro-detail h1,.person-intro-detail h2,.person-intro-detail h3,.person-intro-detail h4,.person-intro-detail h5,.person-intro-detail h6,.person-intro-detail p,.person-intro-detail span,.person-intro-detail div { margin:6px 0; padding:0; text-indent:0; font-size:inherit; font-weight:inherit; }

.person-intro-detail.gradient-text h2 { font-family: "Times New Roman", Times, serif; }
