/*重新定义Bootstrap容器*/
html {
    font-size: 16px;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-1360, /*新增的屏幕宽度断点*/
.container-1430, /*新增的屏幕宽度断点*/
.container-1700 /*新增的屏幕宽度断点*/
{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/*保持不变*/
@media (min-width: 576px) {
    .container, .container-sm {
        max-width: 540px;
    }
}

/*保持不变*/
@media (min-width: 768px) {
    .container, .container-sm, .container-md {
        max-width: 720px;
    }
}

/*保持不变*/
@media (min-width: 992px) {
    .container, .container-sm, .container-md, .container-lg {
        max-width: 960px;
    }
}

/*保持不变*/
@media (min-width: 1200px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl {
        max-width: 1140px;
    }
}

/*!* 新增屏幕宽度断点1360：笔记本一般为1366x768，所以在 1366 的笔记本上使用下面的任意一种容器，屏幕宽度占比为 1360/1366=0.995  *!*/
@media (min-width: 1360px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-1360 {
        max-width: 1360px;
    }
}

/*!* 新增屏幕宽度断点1430：老台式机的屏幕有一种为1440x900，所以在 1440屏幕上使用下面的任意一种容器，屏幕宽度占比为 1430/1440=0.993 *!*/
@media (min-width: 1430px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-1360, .container-1430 {
        max-width: 1430px;
    }
}

/* 新增屏幕宽度断点1700：全高清屏幕为1920x1080，2k屏幕为2650x2160, 4k屏幕更宽，为3480x???，
所以在这些屏幕上使用下面的任意一种容器，可使用的有效屏幕宽度最大为 1700， 全高清屏幕宽度占比为 1700/1920=0.885
*/
@media (min-width: 1700px) {
    .container, .container-sm, .container-md, .container-lg, .container-xl, .container-1360, .container-1430, .container-1700 {
        max-width: 1700px;
    }
}


/*修改一下轮播图下边沿指示器的颜色: 把白色改为黑色 */
.carousel-indicators li {
    background-color: #0a001f;
}

/* 自定义字号与字体大小 */
.fsize-10px {
    font-size: 10px;
!important;
}

.fsize-11px {
    font-size: 11px;
!important;
}

.fsize-12px {
    font-size: 12px;
!important;
}

.fsize-13px {
    font-size: 13px;
!important;
}

.fsize-14px {
    font-size: 14px;
!important;
}

.fsize-15px {
    font-size: 15px;
!important;
}

.fsize-16px {
    font-size: 16px;
!important;
}

.fsize-17px {
    font-size: 17px;
!important;
}

.fsize-18px {
    font-size: 18px;
!important;
}

.fsize-19px {
    font-size: 19px;
!important;
}

.fsize-20px {
    font-size: 20px;
!important;
}

.fsize-21px {
    font-size: 21px;
!important;
}

.fsize-22px {
    font-size: 22px;
!important;
}

.fsize-23px {
    font-size: 23px;
!important;
}

.fsize-24px {
    font-size: 24px;
!important;
}

.fsize-25px {
    font-size: 25px;
!important;
}

.fsize-26px {
    font-size: 26px;
!important;
}

.fsize-27px {
    font-size: 27px;
!important;
}

.fsize-28px {
    font-size: 28px;
!important;
}

.font-fantasy {
    font-family: fantasy;
!important;
}

.font-script {
    font-family: "Segoe Script";
!important;
}

.font-math {
    font-family: "Cambria Math";
!important;
}

.font-symbol {
    font-family: Symbol; !important;
}

.btn-border-light {
    border: 1px solid #ced4da; !important;
}

.img-hover-bigest:hover {
    -webkit-transform: scale(2.5);
    -moz-transform: scale(2.5);
    -ms-transform: scale(2.5);
    -o-transform: scale(2.5);
    transform: scale(2.5);
    transition: all 0.5s;
}

.img-hover-biger:hover {
    -webkit-transform: scale(1.7);
    -moz-transform: scale(1.7);
    -ms-transform: scale(1.7);
    -o-transform: scale(1.7);
    transform: scale(1.7);
    transition: all 0.5s;
}

.img-hover-big:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    transition: all 1.0s;
}

.img-hover-mid:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    transition: all 1.0s;
}

.img-hover-bigerx4:hover {
    -webkit-transform: scale(5);
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    -o-transform: scale(5);
    transform: scale(5);
    transition: all 0.6s;
    z-index: 9999999;
    height: 100%;
!important;
}

/*收藏夹 模态复选框 滑动调节*/
#keep-modal-dialog .form-check-input {
    margin-top: 0.05rem;
    margin-bottom: 0.0rem;
    zoom: 130%;
}
#keep-modal-dialog .form-check-label {
    width: 100%;
    font-size: 1rem;
    border-bottom:  1px solid transparent;
}
#keep-modal-dialog .form-check-label span {
    margin-left: -0.2rem;
}
#keep-modal-dialog .form-check-label:hover {
    color: blue;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 1px solid salmon;
}

/*使用href页面内导航时偏离顶部的距离，保持5rem不要改！可到单独页面独立修改*/
:target {
    scroll-margin-top: 5rem;
}

/*鼠标形状类*/
.cursor-pointer {
    cursor: pointer;
    white-space: nowrap;
}
.button2a {
    color: #007bff;
    border: 0;
    /*text-decoration: none;*/
    background-color: transparent;
    border: none;
    outline: none;
    margin-top: -2px;
}
.button2a:hover {
    text-decoration: none;
    background-color: transparent;
}
.rounded-top-big {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

/*颜色类*/
.color-9a69dd {
    color: #9a69dd;
}

.text-green {
    color: #00c400;
}

.text-red {
    color: red;
}

.text-darkblue {
    color: #313bcd;
}

.text-blue {
    color: blue;
}

.text-blue-dark {
    color: #313bcd;
}

.text-blue-light {
    color: #2d66e4;
}

.text-link {
    color: #007bff;
}

.text-linked {
    color: #4c59b2;
}

.text-sky {
    color: #45b6f0;
}

.text-black {
    color: #000000;
}

.text-black-80 {
    color: #696369;
}

.text-black-60 {
    color: #918b91;
}

.color-0a0313 {
    color: #0a0313;
}

.text-gray {
    color: grey;
}

.text-gray-50 {
    color: #a99daa;
}

.text-gray-30, .text-afafaf {
    color: #afafaf;
}

.text-gray-10, .text-d8d8d8 {
    color: #d8d8d8;
}

/*悬停变色类*/
.hover-color:hover {
    color: rebeccapurple;
}

/*字体类*/
.font-bold {
    font-weight: bold;
}

.font-bolder {
    font-weight: bolder;
}

.font-lighter {
    font-weight: lighter;
}

.font-fangsong {
    font-family: fangsong;
}

.font-math {
    font-family: "Cambria Math";
}

.font-kaiti {
    font-family: KaiTi, STXingKai;
}

.font-yahei-many {
    font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif
}

.font-yahei {
    font-family: "Microsoft YaHei"
}

.font-impact {
    font-family: "Impact"
}


/*自定义分页器*/
/* aigo-style 分页器*/
.aigo-paging-pagelist {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: STXihei;
    font-size: 18px;
!important;
    white-space: nowrap;
    height: 45px;
    line-height: 45px;
}

.aigo-current-page {
    color: #4852ff;
    margin-right: 0.4rem;
    /*border: 0.1rem solid silver;*/
    padding: 0.03rem 1rem 0.03rem 1rem;
    background-color: rgba(232, 227, 224, 0.67);
    white-space: nowrap;
}

.aigo-other-page {
    margin-right: 0.4rem;
    color: #7a7a86;
    /*border: 0.1rem solid silver;*/
    padding: 0.03rem 1rem 0.03rem 1rem;
    background-color: rgba(232, 227, 224, 0.35);
    white-space: nowrap;
}

.aigo-other-page:hover {
    color: #4852ff;
    background-color: rgba(186, 180, 162, 0.66);
}

.aigo-prev-page {
    color: #7a7a86;
    background-color: rgba(232, 227, 224, 0.35);
    padding: 0.03rem 0.6rem 0.03rem 0.6rem;
    margin-right: 0.5rem;
    white-space: nowrap;
}

.aigo-next-page {
    color: #7a7a86;
    background-color: rgba(232, 227, 224, 0.35);
    padding: 0.03rem 0.6rem 0.03rem 0.6rem;
    white-space: nowrap;
}

.aigo-next-page:hover, .aigo-prev-page:hover {
    color: #4852ff;
    background-color: rgba(186, 180, 162, 0.66);
}

/*文字输入框聚焦*/
.focus-no-border:focus {
    border-color: #ced4da;
!important;
    webkit-box-shadow: none;
!important;
    box-shadow: none;
!important;
}

.focus-light-border:focus {
    border-color: #6d9ae4;
!important;
    webkit-box-shadow: none;
!important;
    box-shadow: none;
!important;
}

#btn-submit-comment:hover {
    color: blue;
}


/*标签类*/
.ai-taxo-1 {
    padding: 0.16rem 0.25rem;
    background-color: #801a0099;
    color: lightyellow;
    /*margin-right: 1rem;*/
    font-size: 1rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.ai-taxo-1:hover {
    text-decoration: none;
    color: #6effa9;
    cursor: pointer;
}

.tag-yellow-light {
    padding: 0.12rem 0.25rem;
    background-color: rgba(218, 191, 60, 0.92);
    color: #fbf6ff;
    /*margin-right: 1rem;*/
    font-size: 1rem;
    border-radius: 0.2rem;
    white-space: nowrap;
}

.tag-yellow-light:hover {
    text-decoration: none;
    color: #ff4b43;
    cursor: pointer;
}

.tag-gray-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #797979;
}
.tag-gray-nobold:hover {
    text-decoration: none;
    background-color: rgba(239, 235, 236, 0.92);
    color: #3f12e2;
    cursor: pointer;
}

.tag-primary {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #2196f3;
}

.tag-secondary {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #222;
    background-color: #f0f0f0;
}

.tag-success {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #28B62C;
}

.tag-info {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #75CAEB;
}

.tag-warning {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #FF851B;
}

.tag-danger {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #FF4136;
}

.tag-primary-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #1a78c3;
}

.tag-secondary-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 100%;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #6a6a6a;
    background-color: #f0f0f0;
}

.tag-success-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #8ce28d;
}

.tag-info-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #5fa4bf;
}

.tag-warning-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #c86616;
}

.tag-danger-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #d7382e;
}

.tag-white-nobold {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #fcfcfc;
    background-color: rgba(195, 198, 208, 0.76);
}

.tag-simp-suj {
    color: #d15b5e;
}

.tag-simp-dom {
    color: #a566d1;
}

.tag-simp-dir {
    color: #bc4e4e;
}

.tag-simp-free {
    color: #20a46b;
}

.tag-gray-light {
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #534a4a;
    background-color: #efefef;
}

.blog-tag-suj {
    color: #d15b5e;
}

.blog-tag-dom {
    color: #a566d1;
}

.blog-tag-dir {
    color: #bc4e4e;
}

.blog-tag-free {
    color: #20a46b;
}

.blog-tags-item {
    font-size: 21px;
    margin-right: 8px;
    margin-bottom: 5px;
    color: black;
    white-space: nowrap;
    padding: 2px 4px 2px 4px;
    font-family: KaiTi, STXingKai;
    border-radius: 5px;
    text-decoration: none;
}

.blog-tags-item:hover {
    background-color: #68c08a;
    color: white;
    text-decoration: none;
}

.blog-tags-active {
    color: white;
    background-color: #68c08a;
}

/* 博客博文样式 */
/* blog-css-overall.css */

.blog-article-content {
    font-size: 1.23rem;
    line-height: 160%;
    padding-top: 15px;
    padding-bottom: 15px;
    /*width: 100%;*/
}

.blog-index-catul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.blog-index-catli {
    width: 10rem;
    text-align: center;
    border: none;
    border-bottom: 0.15rem solid transparent;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.03rem;
    margin: 0.4rem 0 0.4rem 0;
}

.blog-index-catli:hover {
    border-bottom: 0.15rem solid #3bc078;
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.blog-index-hair {
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    background-color: rgba(212, 208, 208, 0.24);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.blog-index-hair-jinju {
    font-family: KaiTi;
    font-size: 1.3rem;
    margin-right: 15%;
    color: #302e34;
}

.master-care-active {
    background-color: #aed5fe;
}

.blog-dashed-item {
    border-bottom: silver dashed 0.1rem;
    border-right: 0rem;
    border-left: 0rem;
    border-top: 0rem
}

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

/* others stylelint-disable selector-list-comma-newline-after */

.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}

.nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.nav-scroller .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: .875rem;
}

/* 滑动图像波浪抖动样式 */
.box_img_item {
    width: 12rem;
    height: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 3rem;
    justify-content: space-between;
    border-radius: 1rem;
    transition: all 400ms;
    padding: 1rem;
    box-shadow: 0px 0px 30px rgba(194, 194, 194, 0.22);
    position: relative;
}
.box_img_item:hover {
    box-shadow: 0px 0px 30px rgba(135, 119, 242, 0.73);
}
.box_img_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.box_img_link {
    margin-top: 0rem;
}
.box_img_link img {
    width: 9rem;
    height: 9rem;
    border-radius: 1.3rem;
    /* padding: 0.3rem 1rem 0.3rem 1rem; */
    transition: all 300ms;
}
.box_img_link img:hover {
    -webkit-transform: scale(1.12,1.12);
    -moz-transform: scale(1.12,1.12);
    -ms-transform: scale(1.12,1.12);
    -o-transform: scale(1.12,1.12);
    transform: scale(1.12,1.12);
    border-radius: 6rem;
}
.box_img_name {
    font-size: 1.1rem;
    color: #4f3daa;
    margin-top: 1.1rem;
}
.box_img_name:hover {
    color: #4f3daa;
    text-decoration: none;
}


/* 开发者样式 */
/* devp-css-overall.css */

/* 大轮播图 bootstrap*/
.develop-slides {

}

.develop-slides .carousel-inner {
    height: 380px;
}

.develop-slides .carousel-item {
    height: 380px;
}

/*轮播图结束*/

/*开发首页 大轮播图 poposlides*/
.devp-indbox-scroll {
    width: 100%;
}

.devp-indbox-scroll .slides-box {
    width: 100%;
    height: 22rem;
}

.devp-indbox-li {

}

.devp-indbox-divx {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
}

.devp-scroll-itme-plabelx {
    font-size: 2.8rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.devp-scroll-item-pabox {
    /*display: flex;*/
    display: none;
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 0.6rem;
}

.devp-scroll-itme-linky {
    margin-top: 1rem;
    font-size: 25px;
    color: black;
    text-decoration: none;
}

.devp-scroll-itme-linky:hover {
    color: red;
    text-decoration: none;
}

.devp-scroll-item-linkx {
    font-size: 23px;
    color: rgba(153, 153, 155, 0.72);
    padding: 0.8rem;
    border-radius: 0.2rem;
    /*background-color: rgba(93,93,255,0.72);*/
    border: 0.1rem solid rgba(93, 93, 255, 0.72);
}

.devp-scroll-item-linkx:hover {
    text-decoration: none;
    color: blue;
    border: 0.1rem solid blue;
}

/*轮播图结束*/

.devp-index-user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    margin-right: 5px;
}

.devp-y-link {
    font-size: 18px;
    text-decoration: none;
    color: #5c53ef;
    font-family: "Helvetica Neue";
}

.devp-y-link:hover {
    color: #c72a8d;
    text-decoration: none;
}

.devp-x-link {
    font-size: 18px;
    text-decoration: none;
    color: #5c53ef;
    font-family: "monospace";
    font-weight: 500;
}

.devp-x-link:hover {
    color: #c72a8d;
    text-decoration: none;
}

.devp-ind-mavta {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    border: 0.2px solid transparent;
}

.devp-ind-mavta:hover {
    border: 0.2px solid rgba(149, 143, 149, 0.75);
}

/*.devp-quest-title {*/
/*    color: #515151;*/
/*    font-size: 18px;*/
/*    font-weight: bold;*/
/*    text-decoration: none;*/
/*    letter-spacing: 1px;*/
/*    !*word-spacing: 1px;*!*/
/*}*/
/*.devp-quest-title:hover {*/
/*    color: red;*/
/*    text-decoration: none;*/
/*}*/
.devp-class-select {
    white-space: nowrap;
    text-decoration: none;
    margin: 0 2px 0 2px;
    padding: 5px;
    border-radius: 2px;
}

.devp-class-select:hover {
    background-color: rgba(201, 123, 255, 0.4);
    color: #0e64ed;
    text-decoration: none;
}

.devp-class-select-hover {
    background-color: rgba(201, 123, 255, 0.4);
    color: #0e64ed;
    text-decoration: none;
}

.devp-provider-item {
    white-space: nowrap;
    text-decoration: none;
    margin: 0 2px 0 2px;
    padding: 5px;
    border-radius: 2px;
    cursor: pointer;
}

.devp-provider-item:hover {
    background-color: rgba(201, 123, 255, 0.4);
    color: #0e64ed;
    text-decoration: none;
}

.devp-provider-item-hover {
    background-color: rgba(201, 123, 255, 0.4);
    color: #0e64ed;
    text-decoration: none;
}

.form-control:focus {
    border: 1px solid #ced4da; !important;
    box-shadow: transparent;
}




/*meeting翻转效果开始*/
.met_memb_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.met_mbm_link {

}

.met_mbm_link img {
    /*width: 100%;*/
    height: 100%;
    border-radius: 13px;
    /*通过圆角可控制方圆转换效果*/
    border: 0.1rem solid #f1f1f1;
}

.met_back_box {
    display: block;
    background-color: rgba(167, 163, 167, 0.31);
    border-radius: 13px;
    /*通过圆角可控制方圆转换效果*/
}

.met_back_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.met_back_box p {
    font-size: 17px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
    flex-wrap: nowrap;
}

.met_back_box p span {
    letter-spacing: 0.1rem;
    white-space: nowrap;
}

.met_mbm_name {
    font-size: 17px;
    margin-bottom: auto;
    color: #4852ff;
    margin-top: 16px;
    width: 100%;
    white-space: normal;
    overflow: hidden;
    text-align: center;
}

.met_mbm_name:hover {
    color: #4852ff;
}

.met_mbm_arts {
    margin-top: 11px;
}

.met_mbm_word {
    margin-top: 0rem;
}

.met_mbm_shew {
    margin-top: 0rem;
}

/* entire container, keeps perspective */
.met_flip-container {
    /*perspective: 1000;*/
}

/* flip the pane when hovered */
.met_flip-container:hover .met_flipper, .met_flip-container.hover .met_flipper {
    transform: rotateY(180deg);
}

.met_flip-container, .met_front, .met_back {
    /*width: 200px;*/
    height: 200px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    /*border: 0.1rem solid silver;*/
}

/* flip speed goes here */
.met_flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */
.met_front, .met_back {
    backface-visibility: hidden;
    position: absolute;
    top: -2px;
    left: -11px;
    /*left: -100px;*/
}

/* front pane, placed above back */
.met_front {
    z-index: 2;
}

/* back, initially hidden pane */
.met_back {
    transform: rotateY(180deg);
}

/*meeting翻转效果结束*/


/* 问题详情页评论框样式 */
.quest-comment-reply-box {
    display: block;
}

.quest-comment-reply-box .comment-state-isno {
    display: none;
!important;
}

pre .hljs {
    background-color: #f8f8f8;
!important;
}

/*zhjm question 样式*/
.devp-questions {
    border-style: none none solid none;
}

.devp-questions .pagination {
    margin: 0;
}

.devp-questions .user {
    width: 25px;
    border-radius: 3px;
}

.devp-questions .asked {
    color: #aaaaaa;
    font-size: .8em;
}

.devp-questions .username {
    margin-left: .3em;
    font-weight: 500;
    font-size: 0.8em;
}

.devp-questions .panel-body:hover {
    background-color: #f5f8fa;
    cursor: pointer;
}

.devp-questions .question-user {
    margin-bottom: .6em;
}

.devp-options {
    text-align: center;

}

.devp-options i {
    display: block;
    font-size: 1.2em;
}

.devp-options i.favorite {
    font-size: 2em;
    margin-top: .4em;
}

.devp-options i.vote {
    font-size: 2em;
    color: #ddd;
}

.devp-options i.vote:hover {
    cursor: pointer;
    color: #428bca;
}

.devp-options i.voted {
    color: #ffa700;
}

.devp-options i.accept {
    font-size: 2.6em;
    color: #dddddd;
    margin-top: .2em;
}

.devp-options i.accept:hover {
    cursor: pointer;
    color: #5cb85c;
}

.devp-options i.accepted {
    color: #5cb85c;
}

.devp-answer {
    margin-top: 1em;
}

.devp-answer .answer-user, .question .question-user {
    margin-bottom: .6em;
}

.devp-answer .answer-user .user, .question .question-user .user {
    width: 40px;
    border-radius: 5px;
}

.devp-answer .answer-user .username, .question .question-user .username {
    margin-left: .4em;
}

.devp-answer .answered, .question .asked {
    color: #aaaaaa;
    margin-left: .6em;
}

.hover-active:hover {
    font-weight: bolder;
    color: red;
}

.refer-item {

}
.refer-item:hover {
    background-color: ivory;
    border-radius: 8px; /* 可选：添加圆角效果 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* 添加底部阴影 */
}

/*.favorite {*/
/*    cursor: pointer;*/
/*}*/

/*.favorite:hover {*/
/*    color: #f0ad4e;*/
/*}*/

/*.favorited {*/
/*    color: #f0ad4e;*/
/*}*/

/*.question-info {*/
/*    text-align: center;*/
/*    float: left;*/
/*    padding: 0 1em;*/
/*}*/

/*.question-title {*/
/*    margin-top: 10px;*/
/*}*/

/*.question-info h5 {*/
/*    margin: 0;*/
/*    margin-bottom: .2em;*/
/*}*/

/*.question-info .info:first-child {*/
/*    margin-bottom: 1.2em;*/
/*}*/

/*.question-info .info:nth-child(2) {*/
/*    margin-bottom: 1.2em;*/
/*}*/


/*  课程样式 教程中心样式  */
/* course-css-overall.css */

.course-banner-label {
    font-family: 'KaiTi';
    font-size: 21px;
    white-space: nowrap;
}

.course-banner-xbel {
    font-size: 18px;
    white-space: nowrap;
}

.course-tags-item {
    font-size: 18px;
    margin-right: 8px;
    margin-bottom: 5px;
    color: black;
    white-space: nowrap;
    padding: 2px 4px 2px 4px;
    font-family: fantasy;
    border-radius: 5px;
    text-decoration: none;
}

.course-tags-item:hover {
    background-color: #68c08a;
    color: white;
    text-decoration: none;
}

.course-tags-active {
    color: white;
    background-color: #68c08a;
}

.course-lesson-focus {
    color: #524d4d;
    font-size: 18px;
    text-decoration: none;
}

.course-lesson-focus:hover {
    color: #5957ff;
    /*text-decoration: none;*/
}

.course-chapter-title {
    margin: 0;
    background-color: rgba(211, 211, 211, 0.24);
    border-radius: 5px;
    border: 1px rgb(227, 227, 227) solid;
    align-items: center;
}

.course-chapter-link {
    width: 100%;
    padding: 6px 0px 6px 10px;
    font-weight: 500;
    color: #242222;
}

.course-chapter-title:hover {
    background-color: rgba(211, 211, 211, 0.24);
    color: #474a51;
    border: 1px #69b793 solid;
}

/*课程轮播图*/
.carousel-left-navi {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: -ms-flexbox;
    /* display: flex; */
    -ms-flex-align: center;
    /* align-items: center; */
    -ms-flex-pack: center;
    /* justify-content: center; */
    width: 15%;
    color: #fff;
    /* text-align: center; */
    opacity: 0.6;
    background-color: rgba(177, 168, 169, 0.3);
    border-radius: 1rem;
    /*transition: opacity 0.15s ease;*/
}

.carleft-navi-ul {
    /* width: 13rem;
    display: flex;
    flex-direction: column;
    margin-bottom: 0rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0rem;
    background-color: rgba(0, 0, 0, 0.63);
    padding: 0.2rem 0rem 0.2rem 0rem;
    border-bottom-left-radius: 0.5rem;
    border-top-left-radius: 0.5rem; */
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0rem;
    bottom: 0;
    display: flex;
    flex-direction: column;
    width: 13rem;
    /*padding: 1rem;*/
    margin-bottom: 0rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0rem;
    background-color: rgba(0, 0, 0, 0.63);
    height: 100%;
    overflow: hidden;
}

.carleft-navi-item {
    font-size: 1.2rem;
    padding: 0.36rem;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    color: rgb(249, 249, 249);
}

.carleft-navi-item:hover {
    text-decoration: none;
    background-color: rgba(255, 64, 105, 0.65);
    color: #25ff69;
}

.carleft-navi-item-hover {
    font-size: 1.2rem;
    padding: 0.36rem;
    white-space: nowrap;
    text-align: center;
    text-decoration: none;
    background-color: rgba(255, 64, 105, 0.65);
    color: #25ff69;
}

.carleft-navi-card {
    display: none;
    position: absolute;
    top: 0;
    left: 13rem;
    bottom: 0;
    width: 40rem;
    z-index: 2;
    padding: 1rem;
    margin-bottom: 0rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0rem;
    background-color: rgba(0, 0, 0, 0.78);
}

.carleft-card-ul {
    margin-bottom: 0rem;
    margin-block-start: 0em;
    margin-block-end: 0em;
    padding-inline-start: 0rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding-left: 1rem;
    padding-right: 0.5rem;
    height: 4rem;
}

.carleft-card-course {
    margin-top: 0rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.carleft-card-direct {
    margin-left: 0.8rem;
    font-size: 1.1rem;
    border-bottom: 0.13rem solid #46a0a0;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.3rem;
}

.carleft-card-class {
    margin-left: 0.8rem;
    font-size: 1.1rem;
    margin-top: 9rem;
    margin-bottom: 0.5rem;
    border-bottom: 0.13rem solid #46a0a0;
    padding-bottom: 0.3rem;
}

.carleft-card-ittx {
    margin-right: 1.2rem;
    white-space: nowrap;
    font-size: 1rem;
    color: white;
}

.carleft-card-ittz {
    font-size: 1rem;
    color: white;
}

.carleft-card-ittz:hover, .carleft-card-ittx:hover {
    color: wheat;
}

.carousel-control-prev-icon {
    display: none;
}

.course-ckeditor-content {
    font-size: 1.23rem;
    line-height: 160%;
    padding-top: 15px;
    padding-bottom: 15px;
}

.course-mdeditor-content .markdown-body > p {
    font-size: 1px;
}

/* 课程评论回复框样式 */
.course-comment-reply-box {
    display: block;
}

.course-comment-reply-box .comment-state-isno {
    display: none;
!important;
}


/* 学术样式 */
/* research-css-overall.css */

/*学术首页 轮播图 bootstrap*/
.resech-big-slides {

}

/*大轮播图结束*/

/*学术首页 大轮播图 poposlides*/
.resech-indbox-scroll {
    width: 100%;
}

.resech-indbox-scroll .slides-box {
    width: 100%;
    height: 22rem;
}

.resech-indbox-li {

}

.resech-indbox-divx {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10rem;
}

.resech-scroll-itme-plabelx {
    font-size: 2.8rem;
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.resech-scroll-item-pabox {
    /*display: flex;*/
    display: none;
    width: 80%;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 0.6rem;
}

.resech-scroll-itme-linky {
    margin-top: 1rem;
    font-size: 25px;
    color: black;
    text-decoration: none;
}

.resech-scroll-itme-linky:hover {
    color: red;
    text-decoration: none;
}

.resech-scroll-item-linkx {
    font-size: 23px;
    color: rgba(153, 153, 155, 0.72);
    padding: 0.8rem;
    border-radius: 0.2rem;
    /*background-color: rgba(93,93,255,0.72);*/
    border: 0.1rem solid rgba(93, 93, 255, 0.72);
}

.resech-scroll-item-linkx:hover {
    text-decoration: none;
    color: blue;
    border: 0.1rem solid blue;
}

/*大轮播图结束*/


/*筛选标签的高亮配色*/
.domain-activate {
    color: black;
    background-color: rgba(147, 53, 255, 0.22);
    border-radius: 2px;
}
.freetag-active1 {
    color: black;
    background-color: rgba(147, 53, 255, 0.22);
    border-radius: 2px;
}

.confj-activate {
    color: black;
    background-color: rgba(255, 153, 51, 0.33);
    border-radius: 2px;
}

.ptype-activate {
    color: black;
    background-color: rgba(32, 255, 87, 0.33);
    border-radius: 2px;
}

.pubdate-activate {
    color: black;
    background-color: rgba(255, 162, 196, 0.34);
    border-radius: 2px;
}

.paper-confjour {
    color: #cf5757;
    margin-right: 5px;
}

.paper-title {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-family: "Helvetica Neue";
    display: block;
}

.paper-title-cn {
    color: black;
    text-decoration: none;
    font-size: 20px;
    font-family: "楷体";
    display: block;
}

.paper-domain {
    color: #15b880;
    font-size: 16px;
}

.paper-direct {
    color: rgba(116, 73, 186, 0.85);
    font-size: 16px;
}

.paper-freetag {
    color: rgba(4, 23, 222, 0.85);
    font-size: 16px;
}

.paper-domain-active {
    color: rgba(236, 12, 64, 0.85);
!important;
    font-size: 16px;
}

.paper-direct-active {
    color: rgba(236, 12, 64, 0.85);
!important;
    font-size: 16px;
}

.paper-freetag-active {
    color: rgba(236, 12, 64, 0.85);
!important;
    font-size: 16px;
}

.paper-code {
    color: red;
    font-size: 16px;
}

.paper-totop {
    color: #c72f78;
    font-size: 15px;
}

.paper-institut {
    font-size: 16px;
    color: grey;
}

.paper-read {
    font-size: 16px;
    color: grey;
}

.paper-comment {
    font-size: 16px;
    color: grey;
}

.fa-mark-tip {
    color: #4cc58e;
}

.cj-index-search {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 1rem;
}

.cj-insea-form {
    width: 100%;
    max-width: 70rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 2.5rem;
    line-height: 2.5rem;
}

.cj-insea-input {
    width: 90%;
    height: 100%;
    border: 0.2rem solid #7363c0;
    border-radius: 0.5rem;
}

.cj-insea-input:focus {
    outline: -webkit-focus-ring-color auto 0;
}

.cj-insea-smt {
    cursor: pointer;
    width: 2.8rem;
    line-height: 1.6rem;
    font-size: 18px;
    /*color: #2d2d2d;*/
    /*background-color: rgba(183, 184, 191, 0.51);*/
    background: url('../../imgs/search_job.png') no-repeat center top;
    margin-left: -1.5rem;
    margin-bottom: -0.5rem;
    border: none;
}

.cj-insea-smt:focus {
    border: none;
}

.cj-insea-confdiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.cj-insea-conftip {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cj-insea-confimg {
    margin-top: 0rem;
    height: 5.5rem;
    display: none;
}

.cj-insea-tip {
    font-size: 1.1rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    white-space: nowrap;
    color: #0057b0;
}

.cj-insea-confdot {
    margin-top: 0rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cj-insea-dip {
    font-size: 1.1rem;
    margin-right: 3rem;
    white-space: nowrap;
    color: #b000b0;
}

.confjour-date-time {
    color: grey;
}


.paper-retrive-choose {
    font-size: 18px;
    margin-right: 8px;
    padding: 1px 3px 1px 3px;
    border-radius: 2px;
}

.paper-retrive-choose input {
    display: none;
}

.paper-retrive-choose label {
    margin-left: -3.5px;
}

.paper-retrive-choose:hover {
    background-color: rgba(141, 142, 255, 0.32);
}

.paper-retrive-domdir {
    font-size: 18px;
    margin-right: 18px;
    margin-bottom: 4px;
    padding: 1px 3px 1px 3px;
    border-radius: 2px;
}

.paper-retrive-domdir input {

}

.paper-retrive-domdir label {
    margin-left: -3.5px;
}

.paper-retrive-domdir:hover {
    background-color: rgba(187, 187, 187, 0.67);
}

.dataset-card {
    border: 0.1rem solid transparent;
    width: 100%;
    border-radius: 0.6rem
}
.dataset-card:hover {
    border: 0.1rem solid transparent;
    box-shadow: 0 0 12px rgba(168, 168, 169, 0.81);
}
.dataset-card .dataset-avatar {
    width: 100%;
    height: 10rem;
    border: 1px #d9d9d9 solid;
    border-bottom: 0 !important;
    border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem
}
.dataset-card .dataset-info {
    color: #6d1c1c;
    background-color: aliceblue;
    border-top: 0.1rem solid #dcdcdc;
}
.dataset-card .dataset-fretag {
    padding: 0.1rem;
    color: #7f5555;
    border-radius: 0.2rem;
    margin: 2px;
    white-space: nowrap
}

.star-num-active {
    color: #4cc58e;
}

.star-num-dactive {
    color: rgba(80, 80, 80, 0.83);
}


/* 招聘样式 工作样式 */
/* job-css-overall.css */

/*招聘者列表 头像遮罩闪动*/
.jobs-hr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 100ms;
    border-radius: 0.5rem;
    margin: 0 5px 0 5px;
}

.jobs-hr-item:hover {
    /*box-shadow: 0px 0px 50px rgba(135, 119, 242, 0.73);*/
}

.jobs-hr-link-index {
    width: 200px;
    height: 220px;
    position: relative;
}

.jobs-hr-link-index img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    position: absolute;
}

.jobs-hr-zhezhao {
    position: absolute;
    width: 200px;
    height: 0px;
    top: 110px;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.51);
    display: none;
}

.jobs-hr-zhezhao_hover {

}

.jobs-hr-zheinfo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: whitesmoke;
}

.jobs-hr-zheinfo .hrname {
    font-size: 18px;
    margin-bottom: 33px;
    margin-top: 30px;
    color: white;
}

.jobs-hr-zheinfo .info {
    font-size: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
    flex-wrap: nowrap;
}

.jobs-hr-zheinfo .info span {
    white-space: nowrap;
}

.jobs-hr-name {
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-align: center;
    /*text-decoration: underline;*/
    padding-top: 0.4rem;
    /*background-color: grey;*/
    color: royalblue;
}

.jobs-hr-name .fa {
    color: silver;
}


/*公司翻转效果开始*/
.job_comp_memb_list {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.job_comp_mbm_link {

}

.job_comp_mbm_link img {
    width: 100%;
    height: 100%;
    border-radius: 13px;
    /*通过圆角可控制方圆转换效果*/
    border: 0.1rem solid #f1f1f1;
}

.job_comp_back_box {
    display: block;
    background-color: rgba(167, 163, 167, 0.31);
    border-radius: 13px;
    /*通过圆角可控制方圆转换效果*/
}

.job_comp_back_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.job_comp_back_box p {
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 50%;
    flex-wrap: nowrap;
}

.job_comp_back_box p span {
    letter-spacing: 0.1rem;
    white-space: nowrap;
}

.job_comp_mbm_name {
    font-size: 22px;
    margin-bottom: auto;
    color: #4852ff;
    margin-top: 11px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-align: center;
}

.job_comp_mbm_name:hover {
    color: #4852ff;
}

.job_comp_mbm_arts {
    margin-top: 11px;
}

.job_comp_mbm_word {
    margin-top: 0rem;
}

.job_comp_mbm_shew {
    margin-top: 0rem;
}

/* entire container, keeps perspective */
.job_comp_flip-container {
    /*perspective: 1000;*/
}

/* flip the pane when hovered */
.job_comp_flip-container:hover .job_comp_flipper, .job_comp_flip-container.hover .job_comp_flipper {
    transform: rotateY(180deg);
}

.job_comp_flip-container, .job_comp_front, .job_comp_back {
    width: 200px;
    height: 200px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    /*border: 0.1rem solid silver;*/
}

/* flip speed goes here */
.job_comp_flipper {
    transition: 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

/* hide back of pane during swap */
.job_comp_front, .job_comp_back {
    backface-visibility: hidden;
    position: absolute;
    top: -2px;
    left: -11px;
}

/* front pane, placed above back */
.job_comp_front {
    z-index: 2;
}

/* back, initially hidden pane */
.job_comp_back {
    transform: rotateY(180deg);
}

/*公司翻转效果结束*/


/* 聊天Chats样式 */
.chat-user-list {
    height: 83vh;
    overflow-y: auto;
}

.chat-status {
    text-align: center;
    vertical-align: middle;
}

.chat-message-list {
    margin: 0;
    padding: 0;
    height: 78vh;
    overflow-y: auto;
}

.chat-message-list li {
    list-style: none;
    padding: .6em 0;
}

.chat-message-list li h5 {
    margin: 0;
    margin-bottom: .2em;
}

.chat-message-list li div {
    margin-left: 60px;
}

.chat-message-list .picture {
    border-radius: 5px;
    float: left;
}

.chat-message-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
}


/* 论文侧边目录样式 */
.header-toc-div {
    background-color: #d4a5a5de;
}
.header-toc-div ul {
    background-color: linen;
    overflow-x: scroll;
    max-height: 80vh;
    padding: 0rem 0 0.6rem 0.001rem;
}
.header-toc-div .header-item:hover {
    background-color: #e0afea;
}
.header-toc-div .header-item-hover {
    background-color: #9adfa1;
}
.flyme-button:hover {
    background-color: #9adfa1;
}

/* 论文图表盒子滑动条样式，该盒子为div元素，且类名为kmxscrolldiv */
/* 自定义 kmxscrolldiv 类元素的滚动条样式 */
.kmxscrolldiv::-webkit-scrollbar {
  width: 6px; /* 调窄垂直滚动条宽度 */
  height: 6px; /* 调窄水平滚动条高度 */
}
/* 滚动条轨道 */
.kmxscrolldiv::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.2); /* 浅色半透明背景 */
}
/* 滚动条滑块 */
.kmxscrolldiv::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.2); /* 浅色半透明滑块 */
  border-radius: 2px; /* 使滑块边缘更圆润 */
}
/* 滑块在悬停状态下的样式 */
.kmxscrolldiv::-webkit-scrollbar-thumb:hover {
  background: rgba(120, 120, 120, 0.9); /* 悬停时颜色稍深 */
  cursor:pointer;
}
/* 为了确保只影响指定的 div，添加额外的作用域限制 */
div.kmxscrolldiv::-webkit-scrollbar {
  /* 这里的样式会覆盖上面的设置，如果需要的话 */
}

.paper-refer {
    margin-top : 0.7rem;
}
.paper-refer .ordernum {
    color: gray;
}
.paper-refer .title {
    color: darkblue;
    margin-left: 0.4rem;
}
.paper-refer .pubinfo {
    color: #463d3d;
    margin-left: 0.4rem;
}
.paper-refer .author {
    color: gray;
    margin-left: 0.4rem;
}
.paper-qanda-card-official .comment-content img {
    display: block;
    max-width: 50rem !important;
    max-height: 25rem !important;
}
.paper-qanda-card-user .comment-content img {
    display: block;
    max-width: 50rem !important;
    max-height: 25rem !important;
}
#paper-qanda-tocshow .tocshow-item:hover {
    background-color: #e0afea;
}
#paper-qanda-tocshow .tocshow-item-hover {
    background-color: #9adfa1;
}

.xpm_indx_item {
    width: 22rem;
    height: 28rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0rem;
    margin-right: 0rem;
    margin-bottom: 3rem;
    justify-content: space-between;
    border-radius: 1rem;
    transition: all 400ms;
    padding: 1rem;
    box-shadow: 0px 0px 30px rgba(194, 194, 194, 0.22);
    position: relative;
}
.xpm_indx_item:hover {
    box-shadow: 0px 0px 30px rgba(135, 119, 242, 0.73);
}
.xpm_indx_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.xpm_indx_link {
    margin-top: 0rem;
}
.xpm_indx_link img {
    width: 14rem;
    height: 14rem;
    border-radius: 1.3rem;
    /* padding: 0.3rem 1rem 0.3rem 1rem; */
    transition: all 300ms;
}
.xpm_indx_link img:hover {
    -webkit-transform: scale(1.12,1.12);
    -moz-transform: scale(1.12,1.12);
    -ms-transform: scale(1.12,1.12);
    -o-transform: scale(1.12,1.12);
    transform: scale(1.12,1.12);
    border-radius: 6rem;
}
.xpm_indx_name {
    font-size: 1.33rem;
    color: #4f3daa;
    margin-top: 1.1rem;
}
.xpm_indx_name:hover {
    color: #4f3daa;
    text-decoration: none;
}
.xpm_indx_intro {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}
.xpm_indx_tags {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.xpm_indx_tags  span {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    /*background-color: rgba(213, 206, 183, 0.29);*/
    color: rgba(110, 109, 110, 0.79);
    padding: 0.1rem 0.3rem 0.1rem 0.3rem;
    border-radius: 0.2rem;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}
.xpm_indx_tags  span .fa {
    color: rgba(131, 130, 131, 0.79);
    margin-right: 0.1rem;
}
.xpm_index_zwrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.xpm_index_intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 93%;
    margin-top: 1.5rem;
    font-size: 1.56rem;
    color: #ffffff;
}
.xpm_index_intro .dirintro {
    /*display: none;*/
}
.xpm_index_intro .intcontent {
    line-height: 2rem;
    font-family: 微软雅黑;
    margin-top: 0.7rem;
    /*word-wrap : break-word;*/
    /*word-break : break-all;*/
    word-break: keep-all;
    word-wrap: break-word; /* 只对英文起作用，以单词作为换行依据。*/
    white-space: pre-wrap;  /* 只对中文起作用，强制换行。*/
    text-align:center;  /* css英文语句的两端对齐：*/
    text-justify:inter-ideograph;
}
.xpm_index_intro .descript {
    line-height: 2rem;
    font-family: 微软雅黑;
}
.goto-top:hover {
    background-color: '#9adfa1';
}























/*****************************************************************************************************/
/* EditorMD CherryMD WangEditor CKEditor   各种编辑器样式 */
/*****************************************************************************************************/

/************************************************/
/*        EditorMD EditorMD 编辑器样式           */
/************************************************/

.form-editor-modal label {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.div-editormd-wrapper {
    background: #ffffff !important;
    color: #000000 !important;
}

.div-editormd-wrapper ul {
    margin-left: 0px !important;
}

.div-editormd-wrapper ul li {
    list-style: disc !important;
}

.div-editormd-wrapper ul ul li {
    list-style: circle !important;
}

.div-editormd-wrapper h2, h3, h4 {
    padding: 0px !important;
}

.div-editormd-wrapper h5 {
    letter-spacing: 0px !important;
    text-transform: none !important;
    font-size: 1em !important;
}

.div-editormd-wrapper h6 {
    font-size: 1em !important;
    color: #777 !important;
}

/* 该编辑器内写作区和预览区的标题样式 */
.div-editormd-wrapper .cm-header-1 {
    font-size: 1.33rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper .cm-header-2 {
    font-size: 1.15rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper .cm-header-3 {
    font-size: 1.07rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper .cm-header-4 {
    font-size: 1.03rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper [id^= "h1-"] {
    font-size: 1.33rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper [id^= "h2-"] {
    font-size: 1.15rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper [id^= "h3-"] {
    font-size: 1.07rem;
    color: #0202FFFF !important;
}
.div-editormd-wrapper [id^= "h4-"] {
    font-size: 1.03rem;
    color: #0202FFFF !important;
}

/* 该编辑器内的文章目录样式 */
.editormd-header-button {
  height: 2rem;
  line-height: 1rem;
  background-color: #f8f8f8e1;
  color: #323232;
  font-size: 1.2rem;
  letter-spacing: 1.1rem;
}
#editormd-header-container {
    background-color: linen;
    overflow-x: scroll;
    max-height: 80vh;
    padding: 0.3rem 0 0.6rem 0;
}
#editormd-header-container li {
    white-space: nowrap;
}
#editormd-header-container .markdown-toc-list {
    padding-left: 0.5rem;
}
#editormd-header-container .markdown-toc-list .toc-level-1 {
    font-size: 1rem;
}

.editormd {
    margin-top: -1px !important;
}

.editormd-toolbar {
    border-top: 2px solid rgba(52, 159, 115, 0.75);
    border-bottom: 1px solid #b5b3b3 !important;
}

.editormd-toolbar-container .editormd-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.cls-ml-auto {
    color: red;
}

.editormd-toolbar-container .editormd-menu li:nth-child(39) {
    margin-left: auto !important; /*全窗口预览*/
}

.editormd-toolbar-container .editormd-menu li:nth-child(43) {
    margin-left: -0.9rem !important; /*自动开关*/
    margin-right: 0.5rem !important; /*自动开关*/
}

/****************************************************/
/*        WangEditor WangEditor 编辑器样式           */
/****************************************************/

.wang-editor-content {
    font-size: 1.1rem;
    line-height: 160%
}

.wang-editor-content img {
    max-width: 100% !important;
}

.weditor-comment-content {

}

.weditor-comment-content img {
    object-fit: contain;
    max-height: 20rem;
}
/* 博文编辑器 侧边目录 */
#weditor-header-container {
    list-style-type: none;
    padding-left: 2px;
}

#weditor-header-container li {
    color: #333;
    cursor: pointer;
}

#weditor-header-container li:hover {
    text-decoration: underline;
}

#weditor-header-container li[type="header1"] {
    font-size: 24px;
    font-weight: bold;
    margin-top: 7px;
    white-space: nowrap;
    /*color: #08235c;*/
}

#weditor-header-container li[type="header2"] {
    font-size: 20px;
    padding-left: 25px;
    font-weight: bold;
    margin-top: 6px;
    white-space: nowrap;
    /*color: #5c082e;*/
}

#weditor-header-container li[type="header3"] {
    font-size: 18px;
    padding-left: 45px;
    font-weight: bold;
    margin-top: 6px;
    white-space: nowrap;
}

#weditor-header-container li[type="header4"] {
    font-size: 16px;
    padding-left: 65px;
    font-weight: 500;
    margin-top: 6px;
    white-space: nowrap;
}

#weditor-header-container li[type="header5"] {
    font-size: 15px;
    padding-left: 85px;
    margin-top: 5px;
    white-space: nowrap;
}



/******************************************************/
/*        CherryMD CherryMarkDOwn 编辑器样式          */
/******************************************************/

.cherry-flex-toc {
    position: fixed;
}




/*****************************************************************************************************/
/* EditorMD CherryMD WangEditor CKEditor   各种编辑器样式 */
/*****************************************************************************************************/










