body, html {
    background: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:visited {
    color: inherit;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

.v2-container, .subpageContainer {
    width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.subpageContainer {
    min-height: calc(100vh - 470px);
}

/*顶部导航 S*/
.v2-header {
    background: #FFF;
}

.v2-header .v2-topper {
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-image: url("/v2/static/images/header-img.png");
    background-repeat: no-repeat;
    background-position: right 0 top 0;
}

.v2-header .v2-topper .header-img {
    position: absolute;
    right: 0;
    top: 0;
    width: 360px;
    height: 180px; /*180-4*/
}


.v2-header .v2-topper .v2-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.v2-header .v2-topper .v2-logo .img-logo {
    width: 518px;
    height: 100px;
    object-fit: contain;
}

.v2-header .v2-topper .v2-logo .img-menu {
    display: none;
    width: 24px;
    height: 24px;
    object-fit: contain;
    cursor: pointer;
}

.v2-header .v2-topper .v2-search {
    position: relative;
    z-index: 10;
}

.v2-header .v2-topper .v2-search .search-top {
    font-family: Microsoft YaHei, Microsoft YaHei;
    text-align: right;
    font-size: 16px;
    color: #2E57A7;
    line-height: 24px;
    margin-bottom: 16px;
}

.v2-header .v2-topper .v2-search .search-top a {
    color: #2E57A7;
}

.v2-header .v2-topper .v2-search .search-box {
    width: 320px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    border: 1px solid #2E57A7;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.v2-header .v2-topper .v2-search .search-box > input {
    flex: 1;
    height: 40px;
    line-height: 40px;
    padding: 0 12px;
    outline: none;
    border: 0;
    font-size: 14px;
    color: #999;
}

.v2-header .v2-topper .v2-search .search-box .search-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E0EBFB;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    border: none;
}

.v2-header .v2-topper .v2-search .search-box img {
    width: 20px;
    height: 20px;
}

.v2-header .v2-navs-mobile-expand {
    height: 0;
    overflow: hidden;
}

.v2-header .v2-navs {
    background: #2E57A7;
    box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.12);
    height: 50px;
}

.v2-header .v2-navs .navs {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 26px;
    text-align: center;
}

.v2-header .v2-navs li {
    /*padding: 12px 4px;*/
    height: 50px;
    margin-left: 12px;
    min-width: 120px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

.v2-header .v2-navs li > a {
    display: inline-block;
    color: #FFFFFF;
    width: 100%;
    height: 100%;
    line-height: 50px;

}

.v2-header .v2-navs li:first-child {
    margin-left: 0;
}

.v2-header .v2-navs li.active,
.v2-header .v2-navs li:hover {
    height: 54px;
    background: #2763CE;
}

.v2-header .v2-navs li.active .triangle,
.v2-header .v2-navs li:hover .triangle {
    width: 0;
    height: 0;
    border-left: 12px solid transparent; /* 左边边框透明 */
    position: absolute; /* 相对定位 */
    right: 0px;
    top: 4px;
    display: inline-block;
}

.v2-header .v2-navs li.active .triangle::before,
.v2-header .v2-navs li:hover .triangle::before {
    content: ''; /* 伪元素需要内容，即使为空 */
    position: absolute;
    width: 0;
    height: 0;
    border-right: 12px solid transparent; /* 左边边框透明 */
    border-top: 50px solid #0F3C85; /* 顶边边框颜色设置为黑色 */
    left: 0; /* 向左偏移半个三角形宽度 */
    top: 0; /* 顶部对齐 */
}

.v2-header .v2-navs li .sub-navs {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    z-index: 3;
    background-color: #FFFFFF;
    border: 1px solid #2E57A7;
    border-bottom: 4px solid #2E57A7;
    display: none;
}

.v2-header .v2-navs li:hover .sub-navs {
    display: block;
}

.v2-header .v2-navs li .sub-navs a {
    display: block;
    padding: 10px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    text-align: center;
    border-bottom: 1px solid #2763CE;
}

.v2-header .v2-navs li .sub-navs a:last-child {
    border-bottom: unset;
}

.v2-header .v2-navs li .sub-navs a:hover {
    color: #2763CE;
}

/*顶部导航 E*/
/*顶部导航手机版*/
.v2-m-header {
    display: none;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 999;
}

.v2-m-header .v2-topper {
    width: 100%;
    padding: 0 15px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v2-m-header .v2-logo {
    display: block;
}

.v2-m-header .v2-logo img {
    height: 56px;
    width: auto;
}

.v2-m-header .v2-m-menu, .v2-m-header .v2-m-menu img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.v2-m-header .v2-m-expand {
    height: 0;
    transition: height ease .3s;
    background-color: #FFFFFF;
    width: 100%;
    overflow-y: scroll;
}

.v2-m-header .v2-m-expand.expanded {
    height: calc(100vh - 70px);
}

/*底部 S*/
.v2-footer {
    clear: both;
    height: 240px;
    background: #272D36;
}

.v2-footer .v2-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: Microsoft YaHei !important;
    color: #FFFFFF !important;
    box-sizing: border-box;
}

.v2-footer .v2-container .left-box {
    padding: 50px 0;
}

.v2-footer .v2-container .left-box .navs span {
    display: inline-block;
    padding: 0 32px;
    line-height: 24px;
    font-size: 16px;
}

.v2-footer .v2-container .left-box .navs a,
.v2-footer .v2-container .left-box .navs a:hover {
    color: #fff;
}

.v2-footer .v2-container .left-box .copyright {
    margin-top: 50px;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
    background: unset;
    margin-bottom: 0;
}

.v2-footer .v2-container .left-box .beian {
    margin-top: 20px;
    font-size: 14px;
    line-height: 22px;
}

.v2-footer .v2-container .left-box .copyright a:hover,
.v2-footer .v2-container .left-box .beian a:hover {
    text-decoration: underline;
}

.v2-footer .v2-container .right-box {
    width: 120px;
    text-align: center;
    font-size: 16px;
}

.v2-footer .v2-container .right-box > img {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
}

.v2-footer .copyright a,
.v2-footer .beian a {
    color: #fff !important;
}

/*底部 E*/

/*右侧固定栏（返回顶部&公众号）S */
.v2-fixed-rsider {
    display: none;
    position: fixed;
    right: 30px;
    top: 65%;
    transform: translateY(-50%);
    z-index: 30;
}

.v2-fixed-rsider .sider-item {
    width: 64px;
    height: 64px;
    background: #FFFFFF;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    z-index: 30;
}

.v2-fixed-rsider .sider-item img {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}

.v2-fixed-rsider .sider-item .name {
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    color: #CED4DB;
}

.v2-fixed-rsider .sider-item:hover {
    background: #2E57A7;
}

.v2-fixed-rsider .sider-item .hoverbox {
    position: absolute;
    left: -115px;
    top: -18px;
    width: 100px;
    height: 100px;
    z-index: 15;
    background-color: #2E57A7;
    text-align: center;
    padding-top: 5px;
    display: none;
}

.v2-fixed-rsider .sider-item .hoverbox::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: transparent transparent transparent #2E57A7;;
    position: absolute;
    left: 100px;
    top: 40px;
    z-index: 15;
}

.v2-fixed-rsider .sider-item .hoverbox > img {
    width: 90px;
    height: 90px;
}


.v2-fixed-rsider .sider-item.gzh:hover .hoverbox {
    display: block;
}

/*右侧固定栏（返回顶部&公众号）E */

/* 侧栏 start */

.v2-side-box {
    margin-right: 20px;
    width: 300px;
}

.v2-side-title-box {
    box-sizing: border-box;
    width: 100%;
    background-color: #2E57A7;
}

.v2-side-box-title {
    font-weight: bold;
    font-size: 32px;
    color: #FFFFFF
}

.v2-side-box-schedule {
    width: 30px;
    height: 4px;
    background: #FFFFFF;
}

.v2-side-list-box {
    background-color: #F5F7FA;
}

.v2-side-list-box:after {
    content: ' ';
    display: inline-block;
    width: 100%;
    height: 4px;
    background-color: #2E57A7;
}

.v2-side-list-box .list-item-1 {
    position: relative;
    padding: 20px 34px;
}

.v2-side-list-box .list-item-1::before {
    content: ' ';
    position: absolute;
    left: 4px;
    top: 0;
    display: inline-block;
    width: 6px;
    height: 100%;
    background-color: #F5F7FA;
}

.v2-side-list-box .list-title-1 {
    font-size: 18px;
    color: #666666;
}

.v2-side-list-box .icon-pos-1 {
    display: none;
}

.v2-side-list-box .icon-pos-2 {
    display: inline-block;
}

/* 选中列表1 */
.v2-side-list-box .active-item {
    background-color: #2E57A7;
}

.v2-side-list-box .active-item .list-title-1 {
    color: #FFFFFF;
}

.v2-side-list-box .active-item .icon-pos-2 {
    display: none;
}

.v2-side-list-box .active-item .icon-pos-1 {
    display: inline-block;
}

.v2-side-list-box .list-item-2 {
    position: relative;
    padding: 16px 34px;
}

.v2-side-list-box .list-title-2 {
    font-size: 16px;
    color: #666666;
}

/* 侧栏 end */

/* 侧栏 content start */
.v2-content-box {
    padding: 40px 40px 60px;
    outline: 1px solid #E6EBF0;
    border-top: 1px solid #2E57A7;
}

.v2-content-box .title-row {
    padding-bottom: 32px;
    border-bottom: 1px solid #CED4DB;
}

.v2-content-box .new-title {
    font-size: 24px;
    color: #2E57A7;
}

.v2-content-box .new-nav-text {
    font-size: 16px;
    color: #666666;
}

/* 侧栏 content end */

/* 列表样式 */
.v2-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #CED4DB;
    padding: 19px 0;
    box-sizing: border-box;
}

.v2-list-item:hover {
    background-color: #F5F7FA;
}

.v2-list-item .content {
    width: calc(100% - 200px);
    padding-right: 20px;
    padding-left: 3px;
    display: flex;
    align-items: center;
}

.v2-list-item .content .prefix {
    display: inline-block;
    width: 9px;
    height: 9px;
    background-color: #2E57A7;
    transform: rotateZ(45deg);
}

.v2-list-item .content .status {
    display: inline-block;
    width: 54px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
}

.v2-list-item .content .info {
    flex: 1;
    display: inline-block;
    font-size: 18px;
    color: #333333;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.v2-list-item:hover .content .info {
    color: #2E57A7;
}

.v2-list-item .date {
    width: 200px;
    font-size: 18px;
    color: #999999;
    line-height: 26px;
    text-align: right;
}

.v2-list-item:hover .date {
    color: #2E57A7;
}

/* V2菜单 */
.subpageContainer .left {
    background-color: #FFFFFF;
}

.subpageContainer .k-title.sub-title {
    width: 300px;
    height: 120px;
    background-color: #2E57A7;
    padding: 30px;
    background-image: url("/v2/static/images/sy.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 140px 100px;
}

.subpageContainer .k-title.sub-title .l {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 32px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    position: relative;
}

.subpageContainer .k-title.sub-title .l::after {
    position: absolute;
    content: '';
    bottom: -16px;
    left: 0;
    width: 30px;
    height: 4px;
    background-color: #FFFFFF;
}

.subpageContainer .subpage-left-content {
    margin-top: 20px;
    border-bottom: 4px solid #2E57A7;
}

.subpageContainer .detailContent-submenu {
    display: none;
}

.v2-menu {
    background: #F5F7FA;
}

.v2-menu li .li-content {
    width: 100%;
    height: 70px;
    padding: 20px 25px 20px 34px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px solid #EEEEEE;
    display: block;
}

.v2-menu li .li-content::after {
    position: absolute;
    content: '';
    right: 32px;
    top: 27px;
    width: 16px;
    height: 16px;
    background-image: url("/v2/static/images/more-grey.png");
    background-size: cover;
}

.v2-menu li.show-sub-menu .li-content::after {
    transform: rotate(90deg);
}

.v2-menu li .li-content.active::after {
    background-image: url("/v2/static/images/more-white.png");
}

.v2-menu li .label {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.v2-menu li .li-content:hover > .label {
    color: #2E57A7;
    font-weight: bold;
}

.v2-menu a, .v2-menu a:hover, .v2-menu a:focus {
    outline: none;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.v2-menu > li > .li-content.active {
    background: #2E57A7;
}

.v2-menu > li > .li-content.active::before {
    position: absolute;
    content: '';
    left: 4px;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: #FFFFFF;
}

.v2-menu > li > .li-content.active .label {
    color: #FFFFFF;
    font-weight: bold;
}

.v2-menu > li.show-sub-menu .v2-sub-menu {
    height: var(--height);
}

.v2-menu .v2-sub-menu {
    height: 0;
    overflow: hidden;
    transition: height 0.45s;
}

.v2-menu .v2-sub-menu li .li-content {
    height: 48px;
    padding: 12px 12px 12px 60px;
    position: relative;
}

.v2-menu .v2-sub-menu li .li-content::before {
    position: absolute;
    content: '';
    top: 16px;
    left: 36px;
    width: 16px;
    height: 16px;
    background-image: url("/v2/static/images/sub-right.png");
    background-size: cover;
}

.v2-menu .v2-sub-menu li .li-content::after {
    content: none !important;
}

.v2-menu .v2-sub-menu li .li-content .label {
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.v2-menu .v2-sub-menu li .li-content.active .label, .v2-menu .v2-sub-menu li .li-content:hover .label {
    color: #2E57A7;
}


/*大事纪要*/
.v2-DSJY-list {
    margin-top: 0;
    margin-bottom: 0;
}

.v2-DSJY-list .DSJY-title {
    margin-top: 0;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    line-height: 32px;
    text-align: center;
}

.v2-DSJY-list .shortContent {
    padding: 0;
    margin: 0;
}

.v2-DSJY-list .summary {
    padding: 0;
    margin-top: 16px !important;
    text-align: center !important;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-bottom: 40px !important;
}

.v2-DSJY-list .DSJY-item {
    background: #F5F7FA;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    margin-bottom: 20px;
}

.v2-DSJY-list .DSJY-item .DSJY-NO {
    width: 64px;
    height: 64px;
    background: #2E57A7;
    text-align: center;
    line-height: 64px;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}

.v2-DSJY-list .DSJY-item .DSJY-desc {
    flex: 1;
    padding-left: 20px;
    font-size: 16px;
    color: #333333;
    line-height: 32px;
}

.v2-DSJY-list .DSJY-item .DSJY-desc p {
    line-height: 32px;
}

.v2-DSJY-list .DSJY-item .DSJY-desc p span {
    color: #333333 !important;
    line-height: 32px;
}

/*分页*/
.list-view .pager {
    margin-top: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.yiiPager {
    padding-inline: 15px !important;
    text-align: center;
}

ul.yiiPager li {
    display: inline-block !important;
    background: #fff;
    min-width: 40px !important;
    height: 40px !important;
    border: 1px solid #E6EBF0;
    font-size: 16px;
    margin-left: 10px;
    margin-bottom: 5px;
}

ul.yiiPager li:first-child {
    margin-left: 0;
}

ul.yiiPager li.selected {
    border: 1px solid #2e6ab1;
}

ul.yiiPager li a {
    display: inline-block;
    width: 100%;
    min-width: 38px;
    height: 38px !important;
    line-height: 38px !important;
    text-align: center;
    font-size: 16px;
    color: #666666 !important;
    border: unset !important;
    font-weight: 400 !important;
}

.yiiPager > li.selected a {
    color: #fff !important;
}

ul.yiiPager li.first,
ul.yiiPager li.last,
ul.yiiPager li.previous,
ul.yiiPager li.next {
    padding: 0 9px !important;
}

ul.yiiPager a:link, ul.yiiPager a:visited {
    border: unset !important;
    padding: unset !important;
}

.list-view .summary {
    font-size: 16px;
    color: #666 !important;
    line-height: 24px;
    padding-top: 16px;
}

/*理事会成员*/
.LSHCY-list {
    padding-top: 20px;
}

.LSHCY-list .items {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 40px) / 3));
    grid-row-gap: 20px;
    grid-column-gap: 20px;
}

.LSHCY-item {
    float: unset;
    display: inline-grid;
    padding: 0 !important;
    /*width: 325px !important;*/
    height: 56px !important;
    background: #F5F7FA !important;
    border-radius: 0px 0px 0px 0px;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #333333 !important;
    line-height: 56px !important;
    text-align: center;
    font-style: normal;
    text-transform: none;
    list-style-type: none;
    border-bottom: unset !important;
}

.LSHCY-item a {
    color: #333333 !important;
}

.LSHCY-item:hover {
    background: #2E57A7 !important;
}

.LSHCY-item:hover a {
    color: #FFFFFF !important;
}

.LSHCY-MEMBER-item .username {
    margin-right: 20px;
}

.LSHCY-MEMBER-item .nickname {
    color: #2E57A7 !important;
}

.LSHCY-MEMBER-item:hover .nickname {
    color: #FFFFFF !important;
}

/*专家列表*/
.V2-zj-list {
    display: flex;
    column-gap: 40px;
    flex-wrap: wrap;
}

.V2-zj-list > li {
    width: calc((100% - 160px) / 5);
    margin-bottom: 40px;
    box-sizing: border-box;
    padding-bottom: 16px;
}

.V2-zj-list > li .avatar {
    width: 100%;
    height: 288px;
    object-fit: contain;
}

.V2-zj-list > li .name {
    margin-top: 16px;
    font-size: 24px;
    color: #2E57A7;
    line-height: 32px;
    text-align: center;
}

.V2-zj-list > li .title {
    margin-top: 16px;
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    text-align: center;
}

/*招聘列表*/
.V2-ZP-list {
    border-collapse: collapse;
}

.V2-ZP-list thead tr th {
    width: 220px;
    padding: 15px 24px;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    color: #333;
}

.V2-ZP-list tbody tr {
    border-bottom: 1px solid #CED4DB;
    background: #FFFFFF;
}

.V2-ZP-list tbody tr td {
    padding: 12px 24px;
    line-height: 24px;
    font-size: 16px;
}

.content table {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.v2main-wrapper .cjlist li.pid7cid25,
.v2main-wrapper .list-view .items .pid7cid25 {
    width: 698px !important;
}

@media (min-width: 768px) and (max-width: 1439px) {
    .v2-container, .subpageContainer {
        width: 100%;
        padding-inline: 15px;
    }

    .v2-header {
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    }

    .v2-header .v2-navs {
        display: none;
    }

    .v2-header .v2-topper {
        height: auto;
        flex-direction: column;
        padding: 15px 0;
    }

    .v2-header .v2-topper .v2-logo {
        width: 100%;
        justify-content: space-between;
    }

    .v2-header .v2-topper .v2-logo .img-logo {
        width: 518px;
        height: 100px;
    }

    .v2-header .v2-topper .v2-logo .img-menu {
        width: 60px;
        height: 60px;
        display: inline-block;
    }

    .v2-header .v2-topper .v2-search {
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .v2-header .v2-topper .v2-search .search-box {
        margin-left: 0;
    }

    .v2-header .v2-topper .v2-search .search-top {
        margin-bottom: 0;
    }

    .v2-header .v2-navs-mobile-expand.expanded {
        height: calc(100vh - 180px);
    }

    .v2-header .v2-navs-mobile-expand.expanded::-webkit-scrollbar {
        width: 0;
    }

    .subpageContainer .right .detailContent-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .subpageContainer .right .detailContent-title .local {
        margin-top: 15px;
    }

    .V2-zj-list > li {
        width: calc((100% - 160px) / 2);
    }

    .v2main-wrapper .cjlist,
    .v2main-wrapper .list-view .items ul {
        display: flex;
    }

    .v2main-wrapper .cjlist li.header,
    .v2main-wrapper .list-view .items li.star,
    .v2main-wrapper .list-view .items li.hit,
    .v2main-wrapper .list-view .items li.ren,
    .v2main-wrapper .list-view .items li.time,
    .v2main-wrapper .list-view .items li.bt {
        height: auto;
        width: 20% !important;
        padding: 10px 5px;
        line-height: 28px;
    }

    .v2main-wrapper .cjlist li.wname,
    .v2main-wrapper .list-view .items li.wname {
        width: 40% !important;
        padding-left: 15px;
    }

    .subpageContainer .left {
        width: 220px;
    }

    .subpageContainer .k-title.sub-title {
        width: 100%;
        padding: 30px 10px;
    }

    .subpageContainer .k-title.sub-title .l {
        font-size: 30px;
    }

    .subpageContainer .right {
        width: calc(100% - 235px);
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .v2-DSJY-list {
        padding: 20px 5px;
    }

    .v2-DSJY-list .DSJY-item {
        padding: 20px 10px;
    }

    .detailContent{
        padding: 40px 10px;
    }

}

@media (max-width: 767px) {
    .v2-container, .subpageContainer {
        width: 100%;
        padding-inline: 15px;
    }

    .v2-header .m-logout {
        display: none;
    }

    .v2-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    }

    #content {
        margin-top: 135px;
    }

    .v2-header .v2-navs {
        display: none;
    }

    .v2-header .v2-topper {
        height: auto;
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .v2-header .v2-topper .v2-logo {
        width: 100%;
        justify-content: space-between;
    }

    .v2-header .v2-topper .v2-logo .img-logo {
        width: 259px;
        height: 50px;
    }

    .v2-header .v2-topper .v2-logo .img-menu {
        width: 30px;
        height: 30px;
        display: inline-block;
    }

    .v2-header .v2-topper .v2-search {
        margin-top: 15px;
        width: 100%;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }

    .v2-header .v2-topper .v2-search .search-box {
        margin-left: 0;
        width: 166px;
    }

    .v2-header .v2-topper .v2-search .search-box input {
        width: 126px;
        font-size: 12px;
    }

    .v2-header .v2-topper .v2-search .search-top {
        margin-bottom: 0;
    }

    .v2-header .v2-navs-mobile-expand.expanded {
        height: calc(100vh - 135px);
        overflow-y: scroll;
    }

    .v2-header .v2-navs-mobile-expand.expanded::-webkit-scrollbar {
        width: 0;
    }

    .v2-fixed-rsider {
        display: none !important;
        opacity: 0;
    }


    .v2-fixed-rsider .sider-item.gzh {
        display: none;
    }

    .v2-footer {
        height: auto;
    }

    .v2-footer .v2-container {
        flex-wrap: wrap;
        height: auto;
        flex-direction: column-reverse;
    }

    .v2-footer .v2-container .left-box {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .v2-footer .v2-container .left-box .copyright {
        margin-top: 20px;
    }

    .v2-footer .v2-container .left-box .copyright > span:last-child {
        display: block;
        padding: 10px 10px 0 0 !important;
    }

    .v2-footer .v2-container .right-box {
        width: 100%;
        text-align: center;
        padding: 40px 0;
    }

    .subpageContainer {
        padding-top: 15px;
    }

    .subpageContainer .left {
        display: none;
    }

    .subpageContainer .right {
        float: unset;
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .subpageContainer .right .detailContent-title {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .subpageContainer .right .detailContent-title .local {
        margin-top: 15px;
    }

    .subpageContainer .right .detailContent {
        padding: 15px;
    }

    .subpageContainer .right .detailContent * {
        max-width: 100% !important;
    }

    .subpageContainer .right .detailContent img {
        object-fit: contain;
    }

    .subpageContainer .detailContent-submenu {
        display: block;
    }

    .subpageContainer .detailContent-submenu .v2-submenu {
        display: flex;
        border-bottom: 1px solid #E6EBF0;
        padding: 15px;
        flex-wrap: wrap;
    }

    .subpageContainer .detailContent-submenu .v2-submenu .v2-submenu-item {
        padding: 15px;
        font-size: 16px;
        line-height: 30px;
    }

    .subpageContainer .detailContent-submenu .v2-submenu .v2-submenu-item a {
        color: #333333;
    }

    .subpageContainer .detailContent-submenu .v2-submenu .v2-submenu-item a.active {
        color: #2E57A7;
    }

    .list-view .empty,
    .subpageContainer .empty {
        text-align: center !important;
    }

    .v2-list-item {
        display: flex;
        flex-wrap: wrap;
        padding-inline: 15px !important;
    }

    .v2-list-item .content {
        width: 100%;
        padding: 0;
    }

    .v2-list-item .content .status {
        margin-right: 8px !important;
    }

    .v2-list-item .date {
        width: 100%;
        text-align: right;
        margin-top: 10px;
        padding-inline: 10px;
    }

    .LSHCY-list .items {
        padding-inline: 15px !important;
        grid-template-columns: repeat(1, 100%);
    }

    .V2-zj-list {

    }

    .V2-zj-list > li {
        width: 100%;
    }

    .v2-footer .navs {
        text-align: center;
    }

    .list-view .summary {
        text-align: center !important;
    }

    .V2-ZP-list {
        max-width: 100%;
    }

    .V2-ZP-list thead tr th {
        padding: 24px 0 !important;
        font-size: 16px;
        text-align: center;
        width: calc(100% / 6);
    }

    .V2-ZP-list tbody tr td {
        padding: 12px 0;
        width: calc(100% / 6);
        text-align: center;
    }

    .v2main-wrapper .cjlist,
    .v2main-wrapper .list-view .items ul {
        display: flex;
    }

    .v2main-wrapper .cjlist li.header,
    .v2main-wrapper .list-view .items li.star,
    .v2main-wrapper .list-view .items li.hit,
    .v2main-wrapper .list-view .items li.ren,
    .v2main-wrapper .list-view .items li.time,
    .v2main-wrapper .list-view .items li.bt {
        height: auto;
        width: 20% !important;
        padding: 10px 5px;
        text-align: center;
        line-height: 28px;
    }

    .v2main-wrapper .cjlist li.wname,
    .v2main-wrapper .list-view .items li.wname {
        width: 40% !important;
    }

    .v2-DSJY-list .DSJY-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .v2-DSJY-list .DSJY-item .DSJY-desc {
        flex: unset;
        width: 100%;
        padding-left: 0;
        padding-top: 10px;
    }
}