/* 机构设置页面样式 */
body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.jgsz-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: "Microsoft YaHei", sans-serif;
    overflow: hidden;
}

.jgsz-left-section {
    width: 75%;
    float: left;
}

.jgsz-right-section {
    width: 23%;
    float: right;
}

.jgsz-title {
    background-color: #d40000;
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* 分类导航样式 */
.jgsz-categories {
    position: relative;
    height: 120px;
}
.jgsz-categories img{
    width: 100%;
}
/* 水平红线 */
.jgsz-category-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #d40000;
    top: 30px;
}

.jgsz-category {
    width: 33.33%;
    float: left;
    text-align: center;
    margin-bottom: 10px;

    position: relative;
}

/* 红线下方的下划线 */
.jgsz-category:after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background-color: #d40000;
}

.jgsz-category-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 22px;
    color: #000;
}

.jgsz-category-title strong {
    color: #000;
    font-size: 22px;
    font-weight: bold;
}

/* 红色圆点 */
.jgsz-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d40000;
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* 列表项样式 */
.jgsz-item-list {
    clear: both;
    overflow: hidden;
	margin-bottom: 120px;
}

.jgsz-column {
    width: 33.33%;
    float: left;
}

.jgsz-label {
    display: block;
    margin: 10px;
    /* padding: 12px 10px; */
    text-align: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
    line-height: 37px;
    background: #f7f7f7;
    border: 1px solid #d8d8d8;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500 !important;
}

/* .jgsz-label:hover {
    background-color: #d40000;
    color: white;
} */

/* 面包屑导航 */
.jgsz-breadcrumb {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.jgsz-breadcrumb-item {
    color: #666;
    text-decoration: none;
}

.jgsz-breadcrumb-item.active {
    color: #d40000;
    font-weight: bold;
}

.jgsz-breadcrumb-separator {
    margin: 0 8px;
    color: #666;
}

/* 右侧样式 */
.jgsz-right-section .tip-box {
    border: 1px solid #f0f0f0;
    border-top: none;
}

.jgsz-right-section .trade-title {
    background-color: #d40000;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

.jgsz-right-section .more {
    position: absolute;
    right: 15px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
}

.jgsz-right-section .ul-box {
    padding: 0;
    margin: 0;
    list-style: none;
	background-color: #f8f8f8;
}

.jgsz-right-section .content-item {
    display: flex;
    padding: 15px;
    border-bottom: 1px dashed #d8d8d8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.jgsz-right-section .content-item div {
    width: 50%;
}

.jgsz-right-section .content-item-last {
    border-bottom: none;
}

.jgsz-right-section .content-imag {
    width: 80px;
    height: 100px;
    margin-right: 15px;
}

.jgsz-right-section .content-title {
    font-weight: bold;
    margin-bottom: 10px;
	width: 110% !important;
}

.jgsz-right-section .description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
	width: 110% !important;
}

.jgsz-right-section .brief {
    padding: 15px;
    line-height: 1.6;
    color: #333;
	background-color: #f8f8f8;
}
.jgsz-right-section .brief p{
     display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.jgsz-right-section .content-item a {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    .jgsz-left-section,.jgsz-right-section{
        float: none;
        width: 100%;
    }
    .jgsz-category-title strong{
        font-size: 18px;
    }
    .jgsz-label{
        font-size: 12px;
    }
    .jgsz-right-section .content-title{
        font-size: 22px;
    }
    .jgsz-right-section .brief{
        font-size: 18px;
    }
    .jgsz-breadcrumb{
        width: 95%;
        margin: 20px auto;
    }
        
}