body,
html {
    width: 100%;
    background: #F4F4F4;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Microsoft YaHei UI";
}

.vi-common-color-green {
    color: #00A659;
}

.vi-common-bg-color-green {
    background: #00A659;
}

.common-style {
    min-width: 1200px;
    margin: 0 auto;
}

.mr-16px {
    margin-right: 16px;
}

.ml-16px {
    margin-left: 16px;
}

.el-display-block {
    display: block;
}

/*公共顶部  nav*/
.fix-nav-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 100;
}

.fix-nav-header .nav-content {
    margin: 0 auto;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    max-width: 1200px;
    min-width: 600px;
}

@media screen and (max-width: 1200px) {
    .fix-nav-header .nav-content {
        padding: 8px 14px !important;
    }
}

.fix-nav-header .common-nav-opera {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.fix-nav-header .common-nav-opera .common-nav-opera-btn {
    cursor: pointer;
    padding: 0 16px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    height: 40px;
    line-height: 40px;
    color: #FFF;
    text-align: center;
    border-radius: 4px;
    background: var(--light-Primary--, linear-gradient(275deg, #00943B 1.23%, #059D40 11.52%, #10B44C 100%));
}

.fix-nav-header .nav-content .free-trial-box {
    position: relative;

}

.fix-nav-header .nav-content .free-trial-box .free-trial-QrCode {
    position: absolute;
    display: none;
    padding: 16px;
    right: 0;
    top: 56px;
    width: 182px;
    height: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: linear-gradient(173deg, #EEFEF9 0.76%, #FFF 23.64%);
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.30);
}

.fix-nav-header .nav-content .free-trial-box .free-trial-QrCode img.close-free-trial-QrCode {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: -12px;
    right: -12px;
    cursor: pointer;
}

.fix-nav-header .nav-content .free-trial-box .free-trial-QrCode img {
    width: 100%;
    height: auto;
}

/*公共侧边栏*/
.fix-side-bar {
    position: fixed;
    z-index: 100;
    right: 40px;
    width: 48px;
    bottom: 160px;
}

.side-bar-content {
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.fix-side-bar .side-bar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    height: 48px;
    padding: 8px 0 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: rgba(10, 17, 20, 0.60);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}


.fix-side-bar .side-bar-item:last-child {
    border-bottom: none;
}

.fix-side-bar .side-bar-item:hover {
    background: #00A659;
    color: #fff;
}

.fix-side-bar #side-bar-back-top {
    display: none;
}

.fix-side-bar #side-bar-back-top.active {
    display: flex;
}

.fix-side-bar .side-bar-item span.side-bar-icon {
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
}

.fix-side-bar .side-bar-item span.side-bar-icon.side-bar-kf {
    background-image: url('../images/icon/icon-kf.svg');
}

.fix-side-bar .side-bar-item:hover span.side-bar-icon.side-bar-kf {
    background-image: url('../images/icon/icon-kf-white.svg');
}

.fix-side-bar .side-bar-item span.side-bar-icon.side-bar-wechat {
    background-image: url('../images/icon/icon-wechat.svg');
}

.fix-side-bar .side-bar-item:hover span.side-bar-icon.side-bar-wechat {
    background-image: url('../images/icon/icon-wechat-white.svg');
}

.fix-side-bar .side-bar-item span.side-bar-icon.side-bar-back-top {
    background-image: url('../images/icon/icon-back-top.svg');
}

.fix-side-bar .side-bar-item:hover span.side-bar-icon.side-bar-back-top {
    background-image: url('../images/icon/icon-back-top-white.svg');
}

.fix-side-bar .side-bar-item p {
    text-align: center;
    font-family: "Microsoft YaHei UI";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.fix-side-bar .side-hover-content {
    position: absolute;
    top: 0;
    right: 48px;
    padding-right:8px;
    cursor: pointer;
}
.fix-side-bar .side-hover-content > div{
    display: none;
    padding: 16px;
    width: 182px;
    height: auto;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: linear-gradient(173deg, #EEFEF9 0.76%, #FFF 23.64%);
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.30);
    
}
.fix-side-bar .side-hover-content > div img{
    width: 100%;
    height: auto;
}
/**正文*/
.main-body{
    flex: 1;
}

/* 公共底部 */
.footer-copyrights-content {
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #EDEDED;
    cursor: default;
}

.footer-copyrights-content .copyrights-main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(10, 17, 20, 0.85);
    text-align: center;
    font-family: "Microsoft YaHei";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.footer-copyrights-content .copyrights-main a {
    color: rgba(10, 17, 20, 0.85);
}

.footer-copyrights-content .appeal-content {
    position: relative;
    color: #01AD4B;
    font-size: 12px;
    font-weight: 400;
    text-decoration-line: underline;
    cursor: pointer;
}

.footer-copyrights-content .appeal-popUp {
    display: none;
    position: absolute;
    width: 228px;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 12px 12px;
    background: #fff;
    top: -286px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
    border: 1px solid #FFF;
    background: linear-gradient(173deg, #EEFEF9 0.76%, #FFF 23.64%);
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.30);
}

.footer-copyrights-content .appeal-popUp.active {
    display: flex;
}

.footer-copyrights-content .appeal-popUp img {
    margin-bottom: 12px;
    width: 150px;
    height: 150px;
}

.footer-copyrights-content .appeal-popUp .appeal_content_disc {
    color: #0a111499;
    line-height: 18px;
    color: rgba(10, 17, 20, 0.60);
    text-align: justify;
    font-family: "Microsoft YaHei UI";
    font-style: normal;
}

/*面包屑*/
.breadcrumb-content {
    width: 1200px;
    padding-top: 106px;
    padding-bottom: 13px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    color: rgba(10, 17, 20, 0.85);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    cursor: default;
}

.breadcrumb-content a {
    color: rgba(10, 17, 20, 0.85);
}

.breadcrumb-content a:hover {
    color: #01AD4B;
}

.breadcrumb-content .breadcrumb-icon {
    width: 14px;
    height: 14px;
    background: url('../images/icon/icon-breadcrumb-jt-right.svg') no-repeat center 100%;
}

/*分页器*/
.page-pagination {
    padding: 14px 0 36px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.page-pagination .consultation-list-page,
.page-pagination .consultation-list-page ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.page-pagination .consultation-list-page .consultation-list-page-opera {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}

.page-pagination .consultation-list-page .consultation-list-page-prev {
    background-image: url('../images/icon/icon-pagination-prev.svg');
}

.page-pagination .consultation-list-page .consultation-list-page-next {
    background-image: url('../images/icon/icon-pagination-next.svg');
}

.page-pagination .consultation-list-page .consultation-list-page-item {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    color: var(---666, #666);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    cursor: pointer;
    gap: 4px;
}

.page-pagination .consultation-list-page .consultation-list-page-item:hover {
    background: var(--light-normal-hover, rgba(114, 163, 163, 0.20));
}

.page-pagination .consultation-list-page .consultation-list-page-item.active {
    background: rgba(52, 219, 94, 0.24);
}

.page-pagination .consultation-list-page-omit {
    color: #666;
    cursor: default;
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 24px;
}

.page-pagination .statistics-num {
    color: rgba(10, 17, 20, 0.85);
    text-align: right;
    font-family: "Microsoft YaHei UI";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: default;
}

/* alert提示 */
#common-alert-tip {
    position: fixed;
    padding: 12px 24px;
    border-radius: 4px;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 14px;
}

#common-alert-tip.showActive {
    opacity: 1;
    top: 40px;
}

#common-alert-tip.error {
    background: linear-gradient(0deg, #fe6854 0%, #fe6854 100%), #fff;
     color: #ffffff !important;
}

#common-alert-tip.success {
    background: linear-gradient(0deg, #01ad4b 0%, #01ad4b 100%), #fff;
    color: #ffffff !important;
}

#common-alert-tip.warning {
    background: linear-gradient(0deg, #ff9500 0%, #ff9500 100%), #fff;
     color: #ffffff !important;
}