@font-face {
    font-family: '思源宋体';
    src: url('/static/css/SourceHanSerifCN-Regular.mini.ttf') format('truetype');
    font-weight: 600;font-style: normal;
}

html {
    font-size: 14px;
    font-family: "Microsoft YaHei",'思源宋体';
    background: #F3FAFF;
    /*font-size: 13pt;*/
    /*font-family: "SerifCN";*/
    /*line-height: 1.5;*/
}

body,
ul,
p {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    /* display: block; */
    /* color: rgba(103, 111, 137, 0.8); */
    text-decoration: none;
}

div,
input,
li {
    box-sizing: border-box;
}

input::-webkit-input-placeholder {
    color: rgba(103, 111, 137, 0.502);
}

.search-wrap input::-webkit-input-placeholder {
    color: rgba(103, 111, 137, 0.502);
    font-size: 16px;
}

.search-wrap input {
    font-size: 16px;
    color: rgba(103, 111, 137, 0.502);
}



.search-wrap2 input {
    box-shadow: rgba(90, 121, 197, 0.12) 0px 0px 16px 3px inset;
    border: none;
    height: 44px;
    width: 427px;
    border-radius: 3px;
    padding: 0 50px 0 20px;
}

.search-wrap2 button {
    box-shadow: 0px 0px 12px 0px rgba(255, 183, 91, 0.6);
    width: 44px;
    height: 44px;
    border: none;
    position: relative;
    left: -48px;
    top: 2px;
    border-radius: 0px 3px 3px 0px;
}











button {
    cursor: pointer;
}

input:focus,
button:focus,
select:focus {
    outline: none;
}

input:-webkit-autofill {
    /**通过边框阴影遮挡住背景*/
    box-shadow: 0 0 0px 1000px white inset;
}

.safe-width {
    width: 1400px;
    height: 100%;
    margin: auto;
}

.line-alignment {
    display: flex;
    align-items: center;
}


/* 主题颜色 */

.red-theme {
    color: #BF241F !important;
}

.red-tab::after {
    background: #BF241F !important;
}

.red-tab-common:after {
    background: #BF241F !important;
}

.red-tab-common:hover:after {
    background: #BF241F !important;
}

.red-theme-menu-background {
    background: url('../images/red-theme-bk.png') !important;
    background-size: 100% 100% !important;
    color: #ffffff !important;
}

.red-theme-background {
    box-shadow: none !important;
    background: url('../images/red-theme-bk.png') !important;
    color: #ffffff !important;
}

.menu-label:hover {
    background: linear-gradient(-90deg, #4CA4F3, #3265E3)!important;
    color: #ffffff !important;
}

.red-menu-label:hover {
    background: url('../images/red-theme-bk.png') !important;
    background-size: 100% 100% !important;
    color: #ffffff !important;
}

.red-theme-label:hover {
    box-shadow: none !important;
    background: url('../images/red-theme-bk.png') !important;
    color: #ffffff !important;
}


/* 颜色 */

.blue {
    color: #3265e3;
}

.red {
    color: red;
}

.white {
    color: #ffffff;
}

.light-grey {
    opacity: 0.6;
    color: #313543;
}

.grey {
    color: #676F89;
}


/* 单行显示省略号 */

.line-space-nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}


/*
   多行显示省略号
    -webkit-line-clamp: 2;  控制第几行显示
 */

.multiline-space-nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}


/* 标记 */

.sign-box {
    display: inline-block;
    border-radius: 3px;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
}

.sign-recommend {
    background: linear-gradient(-90deg, #F3354A, #F65D39);
    color: #FFDBDE;
}

.sign-topping {
    background: linear-gradient(-90deg, #4CA4F3, #3265E3);
    color: #D8EBFE;
}


/*对齐方式*/

.alignCenter {
    text-align: center;
}


/* 渐变背景色 */

.background-color-orange {
    background-image: linear-gradient( 180deg, rgb(255, 183, 91) 0%, rgb(255, 203, 91) 100%);
}

.background-color-blue {
    background: linear-gradient(-90deg, #4CA4F3, #3265E3);
}

.background-color-red {
    background: linear-gradient( 180deg, rgb(243, 53, 74) 0%, rgb(246, 93, 57) 100%);
}


/* 分割线 */

.divider-line {
    width: 100%;
    height: 1px;
    background: #000000;
    opacity: 0.06;
    margin-top: 17px;
}


/* 边框阴影 */

.box-shadow {
    box-shadow: 0px 0px 20px 0px rgba(65, 112, 227, 0.24);
    /*background-color: rgb(255, 255, 255);*/
    margin-bottom: 24px;
}


/* 滚动条 */

.scrollbar::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px;
    /*高宽分别对应横竖滚动条的尺寸*/
}

.scrollbar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: rgb(187, 192, 199);
}

.scrollbar::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    border-radius: 10px;
    background-color: rgba(187, 192, 199, 0.3);
}

.scrollbar::-webkit-scrollbar-button {
    /*滚动条两端的按钮。可以用display:none让其不显示，也可以添加背景图片，颜色改变显示效果。*/
    background: transparent;
    display: none;
}


/* 头部 */

.header-container {
    margin: 0;
}

.header-wel {
    color: rgb(103, 111, 137);
    padding-top: 18px;
    text-align: right;
}

.header-wel button {
    border: none;
    background: transparent;
}

.header-logo {
    height: 60px;
    line-height: 60px;
    margin: 22px auto;
    text-align: center;
}




/* 导航栏 */

.navbar-container {
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 58px;
    background: linear-gradient(0deg, #438AFF, #1F73FF);
    box-shadow: 0px 0px 24px 0px rgba(31,115,255,0.24);
    color: #fff;
    line-height: 58px;
    overflow: hidden;
}


.navbar-container-ul {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: auto;
    text-align: center;
    cursor: pointer;
}
.navbar-container-ul li{
    width: 200px;
    text-align: center;
}

.navbar-container-ul li.is-active {
    /*border: none;*/
    /*position: relative;*/
    background: #488dff;
}

/*.navbar-container li.is-active::after {*/
/*    opacity: 1 !important;*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 26px !important;*/
/*    height: 4px;*/
/*    background: #FFB75B;*/
/*    left: 30% !important;*/
/*    bottom: 0;*/
/*}*/

/*.navbar-container li {*/
/*    position: relative;*/
/*    cursor: pointer;*/
/*}*/

/*.navbar-container .navbar-li::after {*/
/*    opacity: 0;*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 0px;*/
/*    height: 4px;*/
/*    background: #FFB75B;*/
/*    left: 50%;*/
/*    bottom: 0;*/
/*    transition: .3s all;*/
/*}*/

/*.navbar-container .navbar-li:hover:after {*/
/*    opacity: 1;*/
/*    width: 26px;*/
/*    left: 30%;*/
/*}*/

/*.navbar-container li:first-child:hover:after {*/
/*    left: 9% !important;*/
/*}*/

/*.navbar-container li.is-active .tab-title {*/
/*    color: rgba(103, 111, 137, 1) !important;*/
/*}*/

/*.navbar-container li .tab-title {*/
/*    color: rgba(103, 111, 137, 0.8) !important;*/
/*}*/

/*.navbar-container li:first-child.is-active::after {*/
/*    left: 9% !important;*/
/*}*/


/* 二级导航 友情链接 */

.navbar-links {
    position: relative;
}

.navbar-links img {
    vertical-align: middle;
    margin: 0 5px;
    position: absolute;
    top: 30px;
    /* left: 36px; */
    right: -16px;
}

.navbar-links:hover .navbar-menu {
    display: block;
}

.navbar-menu {
    display: none;
    width: auto;
    position: absolute;
    left: -14px;
    top: 55px;
    line-height: 48px;
    font-size: 14px;
    z-index: 2;
}

.navbar-menu li {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
}

.navbar-menu li:hover {
    background-color: rgb(237, 242, 250);
}

.navbar-menu .a-url {
    display: inline-block;
    color: rgba(103, 111, 137, 0.8);
    width: 100%;
    height: 48px;
    padding: 0 14px;
}


/* 底部 footer */

.footer-container {
    margin-top: 50px;
    height: 140px;
    background: #E3F2FB;
    color: #313543;
}

.footer-wrap {
    background: url('/static/images/footer-icon-01.png') no-repeat;
    background-position-x: right;
}

.footer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 17px;
}


.footer-links-list {
    width: 450px;
    display: flex;
    flex-wrap: wrap;
    line-height: 20px;
    float: right;
    color: #313543;
}

 .footer-links-list span {
    margin-right: 10px;
}

 .footer-links-list a {
    margin-top: 5px;
 font-family: Microsoft YaHei;
 font-weight: bold;
 font-size: 16px;
 color: #313543;
 line-height: 24px;
}

.footer-head li:nth-child(2) .footer-phone {
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #313543;
    font-size: 24px;
    line-height: 33px;

}


.align-bottom {
    vertical-align: bottom;

}

.font-14 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #313543;
}

/*.footer-head li:nth-child(2) .footer-phone span{*/
/*    width: 166px;*/
/*    height: 13px;*/
/*    font-family: Microsoft YaHei;*/
/*    font-weight: 400;*/
/*    font-size: 14px;*/
/*    color: #313543;*/
/*    line-height: 24px;*/
/*}*/

.qr-div {
    display: flex;
}

.qr-div .qr-image{
    width: 64px;
}

.qr-div .content{
    margin-top: 13px;
    margin-left: 10px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #313543;
}

.margin-top-8 {
    margin-top: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 38px;
    font-size: 12px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #313543;
    line-height: 24px;
    opacity: 0.6;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.239);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 12px;
    color: #313543;
    line-height: 24px;
    opacity: 0.6;
}


/* 侧边栏 sidebar */

@media screen and (max-width: 1400px) {
    .sidebar-container {
        display: none;
    }
}

.sidebar-container {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 9999;
}

.sidebar-container li {
    margin: 12px 0;
    cursor: pointer;
}

.sidebar-code-wrap:hover .sidebar-code {
    display: block;
}

.sidebar-code {
    background-image: linear-gradient( -90deg, rgb(248, 248, 254) 0%, rgb(255, 255, 255) 100%);
    box-shadow: 0px 0px 20px 0px rgba(65, 112, 227, 0.24);
    border-radius: 3px;
    font-size: 12px;
    color: rgb(59, 66, 104);
    text-align: center;
    position: absolute;
    top: -10px;
    right: 53px;
    padding: 9px;
    display: none;
}


/* 分页 */

.TS-content-container #Pagination {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
}

._page_container {
    font-size: 14px;
    line-height: 36px;
    display: flex;
    justify-content: center;
    color: #3b4268;
}

._page_container ._pages li {
    border: 1px solid rgba(65, 112, 227, 0.24);
    border-radius: 3px;
    background-color: rgb(251, 251, 255);
    display: inline-block;
    margin: 0 6px;
    padding: 0 12px;
    cursor: pointer;
}

._page_container ._disabled_c {
    background-color: rgb(240, 240, 247) !important;
    color: rgb(59, 66, 104, 0.5) !important;
}

._page_container ._active_1 {
    background-image: -moz-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%) !important;
    background-image: -webkit-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%) !important;
    background-image: -ms-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%) !important;
    color: rgb(255, 255, 255);
}

._page_container ._jumper ._count {
    margin: 0 6px;
}

._page_container ._jumper ._jumper_input {
    border: 1px solid rgba(65, 112, 227, 0.24);
    border-radius: 3px;
    background-color: rgb(251, 251, 255);
    width: 69px;
    height: 36px;
    margin: 0 7px;
    text-align: center;
}

._page_container input::-webkit-outer-spin-button,
._page_container input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

._page_container input[type="number"] {
    -moz-appearance: textfield;
}


/* 搜索框 */

.search-container .sort_check {
    color: #3265e3 !important;
}

.search-container .sort_uncheck {
    border-radius: 5px;
    padding: 6px 14px;
}

.search-container .sort_check_border {
    color: #3265e3 !important;
    font-size: 14px;
    font-weight: bold;
    background: #f1f1f9;
    border-radius: 5px;
    padding: 6px 14px;
}

.search-container .select_button {
    padding: 10px 15px;
    background-color: #FFFFFF;
    cursor: pointer;
    border: 1px solid transparent;
}

.search-container .select_button_check {
    background-color: rgb(251, 251, 255);
    border: 1px solid #CDE;
}

.search-tabs-wrap {
    padding: 10px 20px 16px 20px;
}

.search-tabs-wrap p {
    margin: 0 30px;
    color: #676f89;
    cursor: pointer;
}

.search-wrap {
    width: 794px;
    height: 58px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0px 0px 36px 0px rgba(31, 115, 255, 0.28), 0px 0px 28px 0px rgba(31, 115, 255, 0.3);
    border-radius: 8px;
    /*border: 1px solid #E5F1FE;*/
    text-align: center;
    margin: 40px auto;
    display: flex
}

.search-wrap input {
     border: none;
    width: 647px;
    background: transparent;
    line-height: 30px;
    padding: 10px;
}

.search-wrap button {
    width: 148px;
    height: 58px;
    background: rgba(31, 115, 255, 0.9);
    border-radius: 0px 8px 8px 0px;
    border: 1px solid #1D6BED;
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 27px;
    letter-spacing: 2px;
    border: none;
}

.join_button {
    background: linear-gradient(-90deg, #4CA4F3, #3265E3);
    border-radius: 3px;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
}


/* 搜索框筛选展开 */

.search-collapse {
    height: 0px;
    overflow: hidden;
}

.search-collapse-tabs-line {
    padding: 5px 30px;
    display: flex;
}

.tabs-line-label {
    width: 80px;
    margin: 10px 0;
}

.tabs-line-contet {
    flex-wrap: wrap;
    width: 1260px;
}

.tabs-line-contet-check-show {
    padding-top: 9px;
    cursor: pointer;
    color: #4B6DC1;
}

.tabs-line-contet p {
    margin: 5px 15px;
    cursor: pointer;
    padding: 5px;
    border: 1px solid transparent;
}

.tabs_check_box {
    color: #3265E3;
    background: #FBFBFF;
    border: 1px solid rgba(65, 112, 227, 0.24) !important;
    border-radius: 3px;
}


/* 面包屑导航 */

.breadcrumb-wrap {
    color: rgb(164, 167, 180);
    line-height: 1.714;
    vertical-align: top;
    margin: 24px 0;
}

.breadcrumb-wrap a {
    display: inline-block;
}


/* 相关推荐 */

.related-recommend-container {
    display: inline-block;
    vertical-align: top;
}

.related-recommend-container .related-recommend-wrap {
    width: 410px;
}

.related-recommend-container .related-recommend-wrap .title {
    background: linear-gradient(90deg, #F0F0FF, #FFFFFF);
    font-weight: bold;
    font-size: 18px;
    color: #676F89;
    text-indent: 12px;
    margin-bottom: 14px;
    line-height: 48px;
}

.related-recommend-list li {
    background: #FBFBFF;
    border: 1px solid #F5F5FB;
    margin-bottom: 12px;
    padding: 18px 18px 18px 16px;
    cursor: pointer;
}

.related-recommend-list li:hover {
    background: #FFFFFF;
    box-shadow: 0px 0px 20px 0px rgba(65, 112, 227, 0.24);
}

.related-recommend-list li p {
    color: #676F89;
    line-height: 1.714;
}

.related-recommend-list li p.list-title {
    font-size: 16px;
    color: rgb(59, 66, 104);
    font-weight: bold;
    line-height: 1.5;
}

.related-recommend-list li p .blue {
    font-weight: bold;
}

.related-recommend-list li .light-grey {
    margin-right: 10px;
    min-width: 54px;
    display: inline-block;
}


/* 模块 banner */

.module-banner-wrap {
    background: url('../../static/images/banner-bg.png') no-repeat;
    background-size: cover;
    height: 154px;
    text-align: center;
    padding: 15px 0;
}

.module-banner-wrap p:nth-child(1) {
    font-size: 30px;
    color: #000;
    line-height: 80px;
}

.module-banner-wrap p:nth-child(2) {
    color: #666;
    font-size: 16px;
    margin-top: -1px;
}

.module-banner-wrap p:nth-child(2) span{
    color: #3581ff;;
    font-weight: bold;
}


/* 模块 容器 */

.module-container {
    min-height: 400px;
    position: relative;
    /*top: -45px;*/
}


/* 模块 搜索 */

.search-module input {
    width: 305px;
}

.search-module button {
    box-shadow: none;
    background: transparent;
}


/* 模块 标题、时间、简介 的样式 */

.module-content .title {
    font-size: 20px;
    font-weight: bold;
    color: rgb(59, 66, 104);
    line-height: 1.1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.module-content .time {
    color: rgb(158, 162, 177);
    line-height: 3;
}

.module-content .brief {
    color: rgb(103, 111, 137);
    line-height: 1.714;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


/* 模块  tabs */

.module-tabs-list li {
    color: rgb(103, 111, 137);
    line-height: 1.714;
    line-height: 44px;
    padding: 0 30px;
    display: inline-block;
    cursor: pointer;
}

.module-tabs-list li.is-active {
    border-radius: 3px;
    color: #81461f;
    background-image: -moz-linear-gradient( 0deg, rgb(255, 183, 91) 0%, rgb(255, 203, 91) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255, 183, 91) 0%, rgb(255, 203, 91) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255, 183, 91) 0%, rgb(255, 203, 91) 100%);
}


/* 弹出框最外层 */

.msg__wrap {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10;
    transition: all .3s;
    transform: translate(-50%, -50%) scale(0, 0);
    width: 562px;
    height: 550px;
    background: #fff;
    display: none;
}


/* 弹出框头部 */

.msg__wrap .msg-header {
    padding: 20px 22px 0 22px;
    font-size: 18px;
    color: #676f89;
    font-weight: bold;
}

.msg__wrap .msg-header .msg-header-close-button {
    float: right;
    cursor: pointer;
    font-size: 20px;
    color: #ccc;
    margin-top: -5px;
}


/* 弹出框中部 */

.msg__wrap .msg-body {
    margin-top: 50px;
    width: 100%;
}

.msg__wrap .msg-body .msg-tab {
    border-bottom: 1px solid rgb(220, 228, 236);
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.msg__wrap .msg-body .msg-tab p {
    color: #676f89;
    font-size: 16px;
    padding-bottom: 12px;
    margin: 0 45px;
    position: relative;
    cursor: pointer;
}

.msg__wrap .msg-body .msg-tab .is-active::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 4px;
    background: linear-gradient( 90deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%);
    left: 30%;
    bottom: 0;
}


/* 图标 */

.msg__wrap .msg-body .msg-body-icon {
    width: 80px;
}

.msg__wrap .msg-body .msg-body-icon div {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    line-height: 45px;
    color: #fff;
    border-radius: 50% 50%;
    font-size: 2em;
}


/* 遮罩层 */

.msg__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, .4);
    transition: all .3s;
    opacity: 0;
    display: none;
}


/* 提示框 */

.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    position: absolute;
    width: 250px;
    top: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 999;
    transition: opacity .3s, transform .4s, top .4s;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}


/* 详情tab */

.detail-wrap {
    margin-top: 25px;
    /* width: 1200px; */
    box-shadow: 0px 0px 20px 0px rgba(65, 112, 227, 0.24);
}

.detail-wrap .tab {
    /* height: 51px; */
    width: 960px;
    background: #ffffff;
    border-bottom: 1px solid rgb(235, 239, 246);
    display: flex;
    top: 0;
}

.detail-wrap .tab p {
    font-size: 16px;
    margin: 0 30px;
    color: #676f89;
    padding: 15px 0 17px 0;
    cursor: pointer;
    position: relative;
}

.detail-wrap .tab .is-active::after {
    position: absolute;
    bottom: 0;
    left: 30%;
    content: '';
    background-image: -moz-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%);
    background-image: -webkit-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%);
    background-image: -ms-linear-gradient( 180deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%);
    width: 28px;
    height: 4px;
    border-radius: 2px;
}

.detail-wrap .content {
    padding: 25px;
    overflow-y: auto;
}

.detail-wrap .content::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 7px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.detail-wrap .content::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ccc;
}

.detail-wrap .content::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    background: #ffffff;
}

.detail-wrap .content .detail {
    padding: 12px 15px;
    margin: 5px 12px;
    border-left: 2px dotted #D1D5DD;
    display: inline-block;
    font-size: 15pt;
    line-height: 1.5;
    font-family: '幼圆'
}

.detail-wrap .content .detail .tel {
    padding: 20px 30px 20px 16px;
    margin: 0px 12px;
    background: #FBFBFF;
    color: #676F89;
}

.detail-wrap .content .detail .tel .label {
    display: inline-block;
    width: 70px;
    color: #9EA2B1;
    margin: 7px 0px;
}

.detail-wrap .content .detail .tel .tip {
    color: #676F89;
    font-size: 16px;
    font-weight: bold;
    margin: 7px 0px;
}

.detail-wrap .content .detail .tel .tip span {
    width: 5px;
    height: 12px;
    background: linear-gradient(0deg, #4CA4F3, #3265E3);
    display: inline-block;
    margin-right: 7px;
    border-radius: 2px;
}

.detail-wrap .content .detail .tel .right {
    margin-left: 100px;
}

.detail-wrap .content .detail .tag {
    display: flex;
    flex-wrap: wrap;
}

.detail-wrap .content .detail .tag p {
    margin: 0px 15px 15px 0px;
    text-align: center;
    padding: 5px;
    background: #FBFBFF;
    border: 1px solid rgba(65, 112, 227, 0.24);
    border-radius: 3px;
    color: #3265E3;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-wrap .content .title {
    color: #676f89;
    font-size: 16px;
    font-weight: bold;
    margin-left: 5px;
}

.detail-content-box {
    /* display: flex; */
    margin-top: 20px;
    word-break: break-all;
}

.detail-content-box img {
    max-width: 100% !important;
}

.detail-content-box a {
    text-decoration: underline !important;
}

.detail-content-box p {
    font-family: '思源宋体' !important;
    font-size: 13pt !important;
    background: transparent  !important;
    background-color: transparent  !important;
}

.detail-content-box div {
    font-family: '思源宋体' !important;
    font-size: 13pt !important;
    background: transparent  !important;
    background-color: transparent  !important;
}

.detail-content-box>span {
    font-family: '思源宋体' !important;
    font-size: 13pt !important;
    background: transparent  !important;
    background-color: transparent  !important;
}

.detail-content-box span {
    font-family: '思源宋体' !important;
    font-size: 13pt !important;
    background: transparent  !important;
    background-color: transparent  !important;
}

.detail-content-box ul {
    background: transparent  !important;
    background-color: transparent  !important;
}


.detail-content-box td {
    background: transparent  !important;
    background-color: transparent  !important;
}

/* .detail-content-box p,span {
    font-family: 幼圆;
    font-size: 15pt;
    line-height: 1.5;
} */


/* 联系我们 - 弹窗 */

.dialog-contact-container {
    height: auto;
    padding-bottom: 10px;
}

.dialog-contact-wrap .left {
    width: 380px;
}

.dialog-contact-wrap .left,
.dialog-contact-wrap .img-box {
    display: inline-block;
    vertical-align: top;
}

.dialog-contact-wrap {
    padding: 30px;
    margin-top: 10px;
}

.dialog-contact-wrap p {
    line-height: 25px;
}

.dialog-contact-wrap .title {
    font-size: 16px;
    font-weight: bold;
    color: #676F89;
    position: relative;
    text-indent: 10px;
}

.dialog-contact-container .title::before {
    content: '';
    width: 4px;
    height: 12px;
    background: linear-gradient(0deg, #4CA4F3, #3265E3);
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 5px;
}

.dialog-contact-wrap .light-grey {
    display: inline-block;
    width: 60px;
    margin-right: 17px;
}


/* 相关推荐 */

.recommend-title {
    color: #676F89;
    font-size: 18px;
    font-weight: bold;
    padding: 15px;
    background: linear-gradient(90deg, #F0F0FF, #FFFFFF);
    width: 100%;
}

.recommend-content {
    border: 1px solid rgb(245, 245, 251);
    border-radius: 3px;
    width: 100%;
    padding: 16px;
    margin-top: 15px;
    cursor: pointer;
    /* box-shadow: 0px 0px 20px 0px rgb(65 112 227 / 24%); */
    position: relative;
}

.recommend-content:hover {
    box-shadow: 0px 0px 20px 0px rgb(65 112 227 / 24%);
}

.recommend-content .content-title {
    width: 375px;
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
}

.recommend-content .content-line .label {
    color: #9EA2B1;
}

.recommend-content .content-line {
    color: #676F89;
    font-size: 18px;
    margin-top: 10px;
}

.recommend-content .txt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.content-time {
    margin: 10px 0px;
    color: #9EA2B1;
    font-size: 15px;
}

.content-marker {
    display: inline-block;
    line-height: 30px;
}

.content-marker p {
    background: rgb(216, 236, 255);
    padding: 4px;
    border-radius: 3px;
    margin: 0 4px 0 0;
    color: #4B6DC1;
    font-size: 16px !important;
    line-height: 12px !important;
    display: inline-block;
}

.retrieval-button {
    position: absolute;
    right: 0 !important;
    top: -42px !important;
    left: 191px !important;
    bottom: 0 !important;
}

.html-width {
    width: 924px;
}


/* 手机端搜索样式 */

.mobile-search {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.mobile-container-line {
    padding-top: 48px;
}

.logo-img {
    width: 30px;
    height: 30px;
    margin-right: 3%;
}

.user-img {
    width: 17px;
    height: 17px;
    margin-left: 3%;
}

.mobile-search-wrap {
    position: relative;
    /* width: 100%; */
    flex: 1
}

.mobile-search-wrap input {
    background: rgb(247, 247, 247);
    border: none;
    height: 28px;
    width: 100%;
    border-radius: 6px;
    padding: 0 50px 0 10px;
    font-size: 12px;
}

.mobile-search-wrap button {
    box-shadow: 0px 0px 12px 0px rgba(255, 183, 91, 0.6);
    width: 30px;
    height: 27px;
    border: none;
    position: absolute;
    right: 5px;
    bottom: 0px;
    border-radius: 0px 3px 3px 0px;
}

.mobile-search-wrap button img {
    width: 15px;
    height: 15px;
}

.mobile-search-module input {
    width: 100%;
}

.mobile-search-module button {
    box-shadow: none;
    background: transparent;
}

.mobile-header {
    box-shadow: 0px 0px 20px 0px rgb(65 112 227 / 24%);
    background-color: rgb(255, 255, 255);
    margin-bottom: 5px;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.mobile-tab {
    position: relative;
    padding-right: 8px;
}

.mobile-tab::before {
    content: '';
    position: absolute;
    right: 1px;
    width: 26px;
    height: 100%;
    background: #fff;
    z-index: 1;
    filter: blur(7px);
}

.van-toast .van-icon {
    font-size: 24px;
}

.van-tab {
    color: rgba(103, 111, 137, 0.8);
    font-weight: bold;
    font-size: 14px;
}

.van-tab--active {
    color: rgba(103, 111, 137, 0.8);
    font-weight: bold;
    font-size: 14px;
}

.van-tabs__line {
    background-color: rgb(255, 183, 91);
    height: 5px;
    width: 18px;
    border-radius: 0;
}

.van-tabs--line .van-tabs__wrap {
    height: 50px;
}


/* 手机端tab分类 */

.mobile-container {
    padding-top: 100px;
}

.mobile-tabs-list {
    padding: 5px 10px;
    background: #FAFAFA;
    width: 100%;
    position: fixed;
    z-index: 99;
}

.mobile-tabs-list .tab-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(103, 111, 137, 0.6);
    margin: 0.4rem 1%;
    padding: 6px 4px;
    display: inline-block;
    text-align: center;
    font-size: 12px;
    min-width: 23%;
    line-height: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-tabs-list .tab-label-active {
    background-image: linear-gradient( -90deg, rgb(76, 164, 243) 0%, rgb(50, 101, 227) 100%);
    box-shadow: 0px 0px 12px 0px rgba(65, 112, 227, 0.12);
    border-radius: 2px;
    color: #fff;
}

.left-arrow {
    width: 16px;
    height: 14px;
}

.van-nav-bar__title {
    color: #676F89;
    font-weight: bold;
}

.van-nav-bar__content {
    height: 48px;
}

.van-nav-bar {
    box-shadow: 0px 0px 36px 0px rgba(65, 112, 227, 0.24);
}


/* 手机端下拉分类 */

.mobile-select-list {
    display: flex;
    justify-content: space-between;
    padding: 0 7%;
    width: 100%;
    background: #FAFAFA;
    position: fixed;
    z-index: 999;
}

.van-dropdown-menu__bar {
    box-shadow: none;
    background: rgb(247, 247, 247);
}

.van-ellipsis {
    font-size: 14px;
    color: #676F89;
}

.mobile-classify {
    background: linear-gradient(90deg, #FFB75B, #FFCB5B);
    font-size: 10px;
    font-weight: bold;
    color: #7D431D;
    line-height: 14px;
    padding: 3px 6px;
    border-radius: 1.5px;
    display: inline-block;
}

.mobile-territory {
    font-size: 12px;
    font-weight: 500;
    color: #676F89;
    background: #E5EAF4;
    border-radius: 2px;
    padding: 3px;
    margin: 0 7px 7px 0;
    line-height: normal;
    display: inline-block;
}

.mobile-detail-tabs-wrap .tabs {
    line-height: 50px;
    background: #F1F1F1;
}

.mobile-detail-tabs-wrap .tabs span {
    font-size: 14px;
    font-weight: bold;
    color: rgba(103, 111, 137, 0.8);
    padding: 0 10px;
}

.mobile-detail-tabs-wrap .tabs span.is-active {
    color: #3265E3;
}

.mobile-detail-tabs-wrap .content-wrap .title,
.overlay-box .title {
    font-size: 14px;
    font-weight: bold;
    color: #676F89;
    margin: 12px 0 16px;
    position: relative;
    text-indent: 11px;
}

.mobile-detail-tabs-wrap .content-wrap .title::before,
.overlay-box .title::before {
    content: '';
    width: 4px;
    height: 9px;
    background: #3265E3;
    position: absolute;
    left: 0;
    top: 3px;
}

.mobile-detail-tabs-wrap .content-wrap .content {
    padding: 0 20px;
}

.mobile-line-wrap .name {
    font-size: 14px;
    font-weight: bold;
    color: #676F89;
    line-height: 24px;
}

.mobile-line-wrap .line-alignment {
    font-size: 12px;
    color: #676F89;
    line-height: 25px;
    align-items: flex-start;
}

.mobile-detail-tabs-wrap .mobile-line-wrap .line-alignment {
    font-size: 14px;
}

.mobile-line-wrap .line-alignment .label {
    opacity: 0.7;
    min-width: 54px;
    margin-right: 15px;
}

.mobile-line-wrap .line-alignment p:nth-child(2) {
    vertical-align: top;
    flex: 1;
}


/* 手机弹窗样式 */

.van-dialog__confirm,
.van-dialog__confirm:active {
    color: #416fe4;
}

.mobile-html {
    transform: scale(0.6);
    transform-origin: 0 0;
    width: 165% !important;
    font-size: 23px !important;
    font-family: 'Fang SC' !important;
    font-weight: 400 !important;
    color: #676F89 !important;
    line-height: 48px !important;
}

.mobile-html table {
    margin: 0px !important;
    width: 100% !important;
    display: block !important;
    height: auto !important;
    overflow-x: scroll;
}

.mobile-html span, .mobile-html p, .mobile-html div {
    font-size: 23px !important;
    font-family: 'Fang SC' !important;
    font-weight: 400 !important;
    color: #676F89 !important;
    line-height: 48px !important;
    background: #ffffff !important;
}

.mobile-html img {
    max-width: 100% !important;
    height: auto !important;
    margin: 10px !important;
}

.mobile-html a {
    font-size: 23px !important;
    font-family: 'Fang SC' !important;
    font-weight: 400 !important;
    line-height: 48px !important;
    background: #ffffff !important;
    word-wrap: break-word !important;
}

.content-line {
    font-weight: bold;
    color: #676F89;
    font-size: 14px;
}

.content-line span {
    /* font-size: 14px !important;
    color: #676F89 !important;
    line-height: 20px !important;
    font-family: '' !important; */
    background: #ffffff !important;
}

.content-line p {
    /* font-size: 14px !important;*/
    /* color: #676F89 !important; */
    font-weight: bold;
    /* line-height: 20px !important; */
    font-family: '' !important;
}

.content-line div {
    /* font-size: 14px !important;*/
    /* color: #676F89 !important; */
    font-weight: bold;
    /*line-height: 20px !important;*/
    /*font-family: '' !important; */
    background: #ffffff !important;
}

.content-line a {
    word-wrap: break-word !important;
}

.el-rate {
    display: flex;
    align-items: center;
}

.el-rate__icon {
    margin-right: -1px;
    font-size: 16px;
}

.el-rate__item {
    padding-left: 0 !important;
}

.align-container {
    line-height: 1; /* 清除行高影响 */
    font-size: 0;   /* 消除空隙 */
}

.align-container .title-container{
    font-size: 39px;
    padding-right: 5px;
}

.align-container span {
    vertical-align: bottom; /* 关键属性 */
    font-size: 30px; /* 重置字号（会被内联样式覆盖） */
}

.filter-select {
    color: #3B4268 !important;
}


.filter-select .el-input__inner::placeholder {
    color: #3B4268 !important;
}

.filter-select .el-input__inner::-webkit-input-placeholder {
    color: #333 !important;
}

.filter-select .el-input__inner::-moz-placeholder {
    color: #333 !important;
}

.filter-select .el-input__inner:-ms-input-placeholder {
    color: #333 !important;
}


/* 移除el-select弹出框的小三角 */
.filter-select .el-select-dropdown .popper__arrow {
    display: none !important;
}

/* 移除弹出框与输入框之间的间距 */
.filter-select .el-select-dropdown {
    margin-top: 0 !important;
    border-top: none !important;
}

/* 确保弹出框紧贴输入框 */
.filter-select .el-popper[x-placement^="bottom"] {
    margin-top: 0 !important;
}

/* 调整弹出框的边框，使其与输入框无缝连接 */
.filter-select .el-select-dropdown__item {
    border-top: 1px solid #dcdfe6;
}

/* 第一个选项不需要上边框 */
.filter-select .el-select-dropdown__item:first-child {
    border-top: none;
}

/* 更强制性的样式覆盖 */
.el-select-dropdown .popper__arrow,
.el-select-dropdown .popper__arrow::before {
    display: none !important;
}

/* 确保弹出框紧贴 */
.el-select-dropdown {
    margin-top: 1px !important;
    transition: none !important;
}


.el-select-dropdown__item {
    transition: background-color 0.1s ease !important;
}

/* 确保弹出框稳定显示 */
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
    background-color: #f0f9ff;
}

/* 自动填充的影响 */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: #333;
    transition: background-color 5000s ease-in-out 0s;
}

.el-input__inner:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #f5f7fa inset !important;
}
