@charset "UTF-8";
:root {
    --color-primary: #82111f;
    --color-secondary: #4a607a;
}
#loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: #fff;
}

html {
    min-width: 320px;
    font-size: 100px;
}

body.hide {
    overflow: hidden;
}
.h-400 {
    height: 400px;
}
.p-10 {
    padding: 10px;
}
.pt-30 {
    padding-top: 30px;
}
.pb-30 {
    padding-bottom: 30px;
}
.bl-1 {
    border-left: 1px dashed #dddddd;
}
.br-1 {
    border-right: 1px dashed #dddddd;
}
.bt-1 {
    border-top: 1px dashed #dddddd;
}
.bb-1 {
    border-bottom: 1px dashed #dddddd;
}
.fs-18 {
    font-size: 0.18rem!important;   
}
.container {
    width: 85%;
    max-width: 1440px;
    margin: 0 auto;
    font-size: .16rem;
}

.header {
    position: relative;
    z-index: 200;
    padding: 0 0 .23rem 0;
    background: var(--color-primary);
}

.header .logo {
    /*max-width: calc(100% - 3rem);*/
}

.header .logo a {
    display: inline-block;
    outline: none;
}

.header .logo img {
    max-width: 100%;
    height: 80px;
    vertical-align: middle;
}
.top-link-header {
    background: #650f1a;
    padding-right: 20px;
}
.top-link {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.32rem;
    color: #fff;
    text-align: right;
    vertical-align: top;
}

.top-link a {
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.top-link a:hover {
    text-decoration: underline !important;
}

.top-link span {
    margin: 0 8px;
}

.top-link span:last-child {
    margin-right: 5px;
}

.search {
    display: inline-block;
    font-size: 0;
    padding: 0 5px 0 .15rem;
    border-radius: 4px;
    border: 1px solid #d06767;
    border-radius: .35rem;
    vertical-align: top;
}

.search .input {
    width: 1.8rem;
    height: .35rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.35rem;
    color: #fff;
    text-align: left;
    vertical-align: top;
}

.search .input::placeholder {
    color: #daa4a4;
}

.search .submit {
    width: .35rem;
    height: .35rem;
    vertical-align: top;
    background-image: url(../images/j_icon1.png);
    background-repeat: no-repeat;
    background-position: 50% 40%;
    background-color: transparent;
    background-size: auto;
}

.search form {
    white-space: nowrap;
}

.nav {
    position: relative;
    z-index: 2;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav li {
    position: relative;
    float: left;
}

.nav li a {
    display: block;
    font-size: 0.18rem;
    font-weight: 500;
    line-height: 0.5rem;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.nav li > a {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.nav li:last-child::after {
    display: none;
}

.nav li:hover > a {
    color: #fff;
    background: var(--color-primary);
}

.nav li:hover .lv2 {
    display: block;
    animation: flipInY .8s;
    -ms-animation: flipInY .8s;
}

.nav .lv2 {
    display: none;
    position: absolute;
    right: auto;
    bottom: auto;
    left: calc(50% - .75rem);
    z-index: 1;
    width: 100%;
    padding: .08rem 0 .12rem;
    background: #fff;
    transform-origin: 50% 10%;
    -ms-transform-origin: 50% 10%;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}

.nav .lv2 a {
    padding: .1rem 5px;
    font-size: .16rem;
    line-height: .2rem;
    color: #333;
}

.nav .lv2 a:hover {
    color: #fff;
    background: var(--color-primary);
}

.nav .lv2 .tri {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 0%;
    z-index: 1;
    width: 100%;
    height: 12px;
    overflow: hidden;
}

.nav .lv2 .tri::after {
    display: block;
    content: "";
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    background: #fff;
    -webkit-transform: translate(0px, 6px) rotate(45deg);
    -moz-transform: translate(0px, 6px) rotate(45deg);
    -ms-transform: translate(0px, 6px) rotate(45deg);
    -o-transform: translate(0px, 6px) rotate(45deg);
    transform: translate(0px, 6px) rotate(45deg);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}

.banner {
    position: relative;
    z-index: 1;
    font-size: 0;
    width: 100%;
    overflow: hidden;
}

.banner .img {
    display: block;
    position: relative;
    padding: 25% 0 0;
}

.banner .img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .slick-arrow {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 7px;
    left: auto;
    z-index: 1;
    width: .28rem;
    height: .28rem;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
    background-image: url(../images/left-angel.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.banner .slick-arrow.slick-prev {
    left: calc(50% - .7rem);
}

.banner .slick-arrow.slick-next {
    right: calc(50% - .7rem);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.banner .slick-dots {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0.15rem;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.banner .slick-dots li {
    display: inline-block;
    width: 13px;
    height: 13px;
    margin: 0 7px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.banner .slick-dots li.slick-active {
    background: var(--color-primary);
}

.tt1 {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tt2 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tt3 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.tt4 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.tt5 {
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.img-scale {
    display: block;
    overflow: hidden;
}

.img-scale img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: transform 0.4s linear 0s;
    -moz-transition: transform 0.4s linear 0s;
    -ms-transition: transform 0.4s linear 0s;
    -o-transition: transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s;
}

.img-scale .img-frame {
    overflow: hidden;
}

.img-scale .img { /*背景图替换img*/
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: cover;
    -webkit-transition: transform 0.4s linear 0s;
    -moz-transition: transform 0.4s linear 0s;
    -ms-transition: transform 0.4s linear 0s;
    -o-transition: transform 0.4s linear 0s;
    transition: transform 0.4s linear 0s;
}

.img-scale .img img {
    min-height: 100%;
}

.img-scale:hover img {
    min-height: 100%;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.img-scale:hover .img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.column {
    margin: .25rem 0 0.15rem 0;
    border-bottom: 1px solid #ddd;
}

.column h3 {
    display: inline-block;
    margin: 0 0 -1px;
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.36rem;
    color: var(--color-primary);
    text-align: left;
    border-bottom: 5px solid var(--color-primary);
}

.more {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.45rem;
    color: #999;
    text-align: left;
    letter-spacing: 1px;
}

.more:hover {
    font-size: .15rem;
    color: var(--color-primary);
}

.title {
    font-size: 14px;
    font-weight: bold;
    line-height: 0.32rem;
    color: #333333;
    text-align: justify;
}

.title:hover {
    color: var(--color-primary);
}

.date {
    display: inline-block;
    width: 65px;
    padding: 6px 0 9px;
    font-size: .14rem;
    color: var(--color-primary);
    line-height: 20px;
    text-align: center;
    transition: all .3s;
    -ms-transition: all .3s;
}

.date p:first-child {
    font-size: 14px;
}

.date2 {
    font-size: 0.15rem;
    font-weight: 500;
    line-height: 0.3rem;
    color: var(--color-primary);
    text-align: left;
}

.info {
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.24rem;
    color: #666;
    text-align: justify;
}

.news-slick {
    font-size: 0;
    width: 49%;
    float: left;
}

.news-slick .img-scale {
    position: relative;
}

.news-slick .img {
    padding: 2.8rem 0 0;
}

.news-slick .title {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    padding: 0 120px 0 .16rem;
    font-size: 0.15rem;
    font-weight: bold;
    line-height: 42px;
    color: #fff;
    background: var(--color-primary);
}

.news-slick .title p {
    -webkit-transition: all 0.3s linear 0.4s;
    -moz-transition: all 0.3s linear 0.4s;
    -ms-transition: all 0.3s linear 0.4s;
    -o-transition: all 0.3s linear 0.4s;
    transition: all 0.3s linear 0.4s;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.news-slick .slick-active .title p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.news-slick .slick-dots {
    position: absolute;
    top: auto;
    right: 0.2rem;
    bottom: 0.15rem;
    left: auto;
    z-index: 1;
    text-align: center;
}

.news-slick .slick-dots li {
    display: inline-block;
    width: 11px;
    height: 11px;
    margin: 0 3px;
    border-radius: 50%;
    border: 1px solid #fff;
    vertical-align: middle;
    cursor: pointer;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.news-slick .slick-dots li.slick-active {
    background: #fff;
}

.news-date {
    position: absolute;
    width: 100px;
    height: 30px;
    line-height: 30px;
    bottom: 50px;
    right: 0;
    color: #ffffff;
    background: var(--color-primary);
    font-size: 0.15rem;
    text-align: center;
    font-weight: bold;
    border-radius: 2px;
}

.tpxw {
    width: 66.66666666%;
}

.bmzs {
    width: 33.33333333%;
}

.gztz, .jzcm {
    width: 33.33333333%;
}
.list1 li {
    position: relative;
    margin: .15rem 0 0;
    padding: 0;
    font-size: 0;
    transition: all .4s;
    -ms-transition: all .4s;
}

.list1 li::after {
    display: block;
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0%;
    z-index: 1;
    width: 0%;
    height: 2px;
    background:var(--color-primary);
}

.list1 li:hover {
    box-shadow: 0 0 16px 0 #ccc;
}

.list1 li:hover::after {
    left: 0;
    width: 100%;
    -webkit-transition: all 0.5s linear 0s;
    -moz-transition: all 0.5s linear 0s;
    -ms-transition: all 0.5s linear 0s;
    -o-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}

.list1 li:hover .title {
    font-weight: normal;
}

.list1 li:hover .date {
    color: #fff;
    background: #a12519;
}

.list1 .date {
    background: #fff6f6;
    padding: 6px 0;
}
.list1 .date p:last-child {
    font-size: 0.16rem;
    font-weight: bold;
    margin: 3px 0;
}
.list1 .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 65px);
    padding: 0 0 0 14px;
}

.list1 .text .title {
    font-size: 14px;
    font-weight: normal;
    line-height: 0.27rem;
    color: #333333;
    text-align: justify;
    word-wrap: break-word;
}

.list2 li {
    padding: .08rem 0;
    font-size: 0;
    transition: all .35s;
    -ms-transition: all .35s;
    border-bottom: 1px dashed #ddd;
}

.list2 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list2 li:first-child {
    padding-top: 0;
}

.list2 li:last-child {
    border: none;
}

.list2 .text {
    font-weight: normal;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 100px);
}

.list2 .text .title {
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
}
.list2 .text .title:hover {
    color: var(--color-primary);
}
.list2 .text .title p {
    line-height: 32px;
    display: inline-block;
}

.list2 .date {
    position: relative;
    color: var(--color-primary);
    padding: 0 5px;
    width: 100px;
    height: 0.32rem;
    line-height: 0.32rem;
    text-align: right;
}

/*.list2 .date::before {*/
/*    display: block;*/
/*    content: "";*/
/*    box-sizing: border-box;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: auto;*/
/*    bottom: auto;*/
/*    left: 0;*/
/*    z-index: 1;*/
/*    width: 0;*/
/*    height: 0;*/
/*    border: .1rem solid transparent;*/
/*    border-top-color: #d8554b;*/
/*    border-left-color: #d8554b;*/
/*}*/

.list3 li {
    padding: .2rem 0;
    font-size: 0;
    transition: all .35s;
    -ms-transition: all .35s;
    border-bottom: 1px dashed #ddd;
}

.list3 li:hover {
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
    -ms-transform: translateX(4px);
    -o-transform: translateX(4px);
    transform: translateX(4px);
}

.list3 li:first-child {
    padding-top: 0;
}

.list3 li:last-child {
    border: none;
}

.list3 .date {
    padding: 0;
    line-height: 23px;
    background: var(--color-primary);
    color: #fff;
    border: 1px solid #e6d8d8;
}

.list3 .date p:first-child {
    line-height: 30px;
    color: var(--color-primary);
    font-weight: 400;
    background: #fff;
    border-bottom: 1px solid #e6d8d8;
}

.list3 .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 65px);
    padding: 0 0 0 14px;
}

.list3 .text .title {
    vertical-align: middle;
    height: 55px;
    line-height: 55px;
}

.list3 .text .title p {
    line-height: 27px;
    display: inline-block;
}

.pic-list1 {
    margin: .2rem 0 0;
}

.pic-list1 li {
    padding: .2rem 0;
    font-size: 0;
    border-bottom: 1px dashed #ddd;
}

.pic-list1 li:first-child {
    padding-top: .1rem;
}

.pic-list1 li:last-child {
    background: none;
}

.pic-list1 li:hover .date {
    background: var(--color-primary);
    color: #fff;
}

.pic-list1 li:hover .title {
    font-weight: 700;
    color: var(--color-primary);
}

.pic-list1 .img-scale {
    display: inline-block;
    vertical-align: top;
    width: 1.6rem;
}

.pic-list1 .img-scale .img {
    padding: 66.66% 0 0;
}

.pic-list1 .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 1.6rem - 65px);
    padding: 0 .22rem;
}

.pic-list1 .title {
    line-height: 42px;
    font-weight: 700;
}

.pic-list1 .info {
    height: .5rem;
}

.pic-list1 .date {
    display: inline-block;
    vertical-align: top;
    width: 65px;
    margin: .12rem 0 0;
    padding: 6px 0 8px;
    color: var(--color-primary);
    line-height: 22px;
    background: #f8eeee;
    text-align: center;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.pic-list1 .date p:first-child {
    font-size: 24px;
    line-height: 32px;
}

.pic-list1 .date2 {
    display: none;
}

.footer {
    background: var(--color-primary);
}

.yqlj {
    padding: .12rem 0;
}

.yqlj .tips {
    display: inline-block;
    vertical-align: top;
    font-size: 0.2rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #fff;
    text-align: left;
}

.yqlj .box {
    width: calc(100% - 100px);
}

.yqlj a {
    display: inline-block;
    margin: 0 .2rem 0 .07rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.36rem;
    color: #fff;
    text-align: left;
    white-space: nowrap;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.yqlj a:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    text-decoration: underline !important;
}

.copy {
    padding: .2rem .1rem;
    background: var(--color-primary);
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.28rem;
    color: #fff;
    text-align: center;
}

.copy a {
    color: #fff;
}

.btn {
    display: none;
    align-items: center;
}

.btn .search-btn {
    display: inline-block;
    width: 36px;
    height: 34px;
    background-image: url(../images/j_icon1_2.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: #fff;
    background-size: auto;
    vertical-align: top;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn .nav-btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    font-size: 0;
    padding: 8px 0 0;
    margin: 0 0 0 .2rem;
    border-radius: 4px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    background: url(../images/menu.png) no-repeat center center;
    background-size: 20px 20px;
}

.btn .nav-btn.close {
    display: inline-block;
    width: 36px;
    height: 36px;
    font-size: 0;
    padding: 8px 0 0;
    margin: 0 0 0 .2rem;
    border-radius: 4px;
    text-align: center;
    vertical-align: top;
    cursor: pointer;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
    background: url(../images/close-menu.png) no-repeat center center;
    background-size: 20px 20px;
}


.mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background: rgba(0, 0, 0, 0.75);
}

.mask.show .search {
    top: 38%;
    opacity: 1;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.mask .close {
    position: absolute;
    top: calc(68px + 5%);
    right: 12%;
    bottom: auto;
    left: auto;
    z-index: 1;
    cursor: pointer;
    width: 80px;
    height: 80px;
}

.mask .close i {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
}

.mask .close i:nth-child(1) {
    -webkit-transform: translate(0, 41px) rotate(45deg);
    -moz-transform: translate(0, 41px) rotate(45deg);
    -ms-transform: translate(0, 41px) rotate(45deg);
    -o-transform: translate(0, 41px) rotate(45deg);
    transform: translate(0, 41px) rotate(45deg);
}

.mask .close i:nth-child(2) {
    -webkit-transform: translate(0, 39px) rotate(-45deg);
    -moz-transform: translate(0, 39px) rotate(-45deg);
    -ms-transform: translate(0, 39px) rotate(-45deg);
    -o-transform: translate(0, 39px) rotate(-45deg);
    transform: translate(0, 39px) rotate(-45deg);
}

.decoration {
    position: relative;
    z-index: 1;
    max-height: 2rem;
    overflow: hidden;
    background: var(--color-primary);
}

.decoration img {
    width: 100%;
    vertical-align: top;
}

.section {
    position: relative;
    z-index: 1;
}

.sidebar {
    width: 2.35rem;
    margin: -.7rem 0 0;
}

.sidebar h1 {
    font-size: 0.26rem;
    font-weight: bold;
    line-height: 0.7rem;
    color: #fff;
    text-align: center;
    background: var(--color-primary);
}

.sidebar h1 i {
    display: block;
    margin: 0 auto;
}

.sidebar .lv2-nav li {
    position: relative;
}

.sidebar .lv2-nav a {
    display: block;
    border-left: 5px solid #f4f4f4;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.55rem;
    color: #000;
    text-align: center;
}

.sidebar .lv2-nav a:hover {
    border-left: 5px solid var(--color-primary);
    background-color: #ffffff;
    color: var(--color-primary);
}

.sidebar .lv2-nav li:hover, .sidebar .lv2-nav li.cur {
    background: #f2f2f2;
}

.sidebar .lv2-nav li.cur > a {
    color: var(--color-primary);
    font-size: .18rem;
    font-weight: 700;
    border-color: var(--color-primary);
    border-left: 5px solid var(--color-primary);
}

.main {
    width: calc(100% - 2.85rem);
    min-height: 4rem;
    margin: .25rem 0 .4rem;
}

.main .list1 li {
    margin: .26rem 0 0;
}

.main .list2, .main .list3 {
    margin: .25rem 0 0;
}

.main .list2 .title, .main .list3 .title {
    height: auto;
    line-height: 32px;
}

.main .list2 .info, .main .list3 .info {
    line-height: 32px;
}

.main .list3 .title {
    line-height: 28px;
}

.main .list3 .info {
    line-height: 26px;
}

.position {
    margin-top: 0;
    border-bottom: 1px solid #ddd;
}

.position h3 {
    display: inline-block;
    margin: 0 0 -1px;
    font-size: 0.24rem;
    font-weight: bold;
    line-height: 0.45rem;
    color: var(--color-primary);
    text-align: left;
    border-bottom: 5px solid var(--color-primary);
}

.place {
    padding: 0 0 0 .25rem;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.45rem;
    color: #999;
    text-align: left;
}

.place a {
    color: #999;
}

.place a:hover {
    color: var(--color-primary);
}

.article {
    padding: .3rem 4% 0;
}

.article .title {
    margin: 0 0 .1rem;
    font-size: 0.24rem;
    font-weight: bold;
    line-height: 0.3rem;
    color: var(--color-primary);
    text-align: center;
}

.article .sub {
    margin: .2rem 0 .3rem;
    padding: .13rem 0;
    font-size: 0.14rem;
    font-weight: 500;
    line-height: 0.22rem;
    color: #999;
    text-align: center;
    border-bottom: 1px dashed #ccc;
    border-top: 1px dashed #ccc;
}

.article .sub span {
    margin: 0 6px;
}

.article .content {
    padding: 0 0 .4rem;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.4rem;
    color: #000;
    text-align: left;
}

.article .content p {
    text-indent: 2em;
    text-align: justify;
}

.article .content img, .article .content video {
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: .2rem auto;
}

.article .content table {
    width: 100%;
    margin: .2rem auto;
}

.article .content table p {
    text-indent: 0;
}

.article .content iframe {
    max-width: 100%;
    margin: .2rem auto;
}

.article .cont-page {
    padding: .25rem 0 0;
    border-top: 1px dashed #ccc;
}

.article .cont-page a {
    display: block;
    padding: 4px 0;
    font-size: 0.16rem;
    font-weight: 500;
    line-height: 0.27rem;
    color: #494949;
    text-align: left;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}

.article .cont-page a span {
    color: var(--color-primary);
}

.article .cont-page a:hover {
    color: var(--color-primary);
    -webkit-transform: translateX(6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(6px);
    -o-transform: translateX(6px);
    transform: translateX(6px);
}

.article.about {
    padding-left: 0;
    padding-right: 0;
}

.article.about .title {
    font-size: .28rem;
    margin: .1rem 0 .2rem;
}

#browser-modal {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10000;
    width: 100%;
    height: 100%;
    color: #303233;
    text-align: center;
}

#browser-modal .browser-modal-cover {
    position: fixed;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    background-color: #111;
}

#browser-modal .browser-content {
    width: 700px;
    margin: 120px auto 0;
    padding: 50px 0 80px;
    background-color: #fff;
    border-radius: 5px;
}

#browser-modal .browser-content .browser-dpc-logo img {
    height: 42px;
    margin: 45px auto 40px;
}

#browser-modal .browser-content .browser-text-title {
    font-size: 24px;
    text-transform: uppercase;
}

#browser-modal .browser-content .browser-text-desc {
    margin: 30px 0 20px;
    font-size: 14px;
}

#browser-modal .browser-content .browser-list {
    width: 600px;
    height: 130px;
    margin: 20px auto;
}

#browser-modal .browser-content .browser-item {
    float: left;
    width: 150px;
    margin: 0 auto;
    padding: 20px 0;
}

#browser-modal .browser-content .browser-item .iconfont {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    font-size: 80px;
    line-height: 80px;
}

#browser-modal .browser-content .browser-item .iconchrome {
    background: url(../images/bro.png) no-repeat 0 0;
}

#browser-modal .browser-content .browser-item .iconfirefox {
    background: url(../images/bro.png) no-repeat 0 -100px;
}

#browser-modal .browser-content .browser-item .iconopera {
    background: url(../images/bro.png) no-repeat 0 -200px;
}

#browser-modal .browser-content .browser-item .iconEdge {
    background: url(../images/bro.png) no-repeat 0 -300px;
}

#browser-modal .browser-content .browser-item a {
    display: block;
    cursor: pointer;
}

#browser-modal .browser-content .browser-item a:hover {
    text-decoration: underline !important;
}

#browser-modal .browser-content .browser-item a img {
    display: block;
    max-width: 100px;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

#browser-modal .browser-content .browser-item a h4 {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

@media screen and (max-width: 1300px) {
    .column {
        margin: .2rem 0;
    }

    .tpxw {
        width: 66.666666666%;
    }

    .gztz {
        width: 33.33333333%;
    }
}

@media screen and (max-width: 992px) {
    html {
        font-size: 95px;
    }

    .container {
        width: 90%;
    }

    .header {
        /*padding: .1rem 0;*/
    }
    .top-link-header {
        display: none;
    }
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .container::after, .header .container::before {
        display: none;
    }

    .header .container .logo {
        float: none;
        max-width: none;
        padding: 0 .3rem 0 0;
    }

    .header .container .logo img {
        max-height: 50px;
    }

    .header .container > .fr {
        display: flex;
        float: none;
        margin: 0;
    }

    .top-link {
        margin: 0 .2rem 0 0;
    }

    .btn {
        display: flex;
    }

    .search {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 40%;
        right: auto;
        bottom: auto;
        left: calc(50% - 210px);
        z-index: 200;
        padding: 10px 15px !important;
        background: #fff;
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
        transform: scale(0.7);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -ms-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .search .input {
        width: 350px !important;
        height: 40px;
        padding: 0 8px !important;
        line-height: 40px;
        color: #333;
        border: 1px solid #eee !important;
        border-radius: 0 !important;
    }

    .search .input::placeholder {
        color: #888;
    }

    .search .submit {
        width: 50px;
        height: 40px;
        background-image: url(../images/j_icon1_2.png);
        background-position: 50% 50% !important;
    }

    .search.show {
        border: none;
        border-radius: 0;
        visibility: visible;
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .nav {
        position: fixed;
        top: 68px;
        right: 0;
        bottom: 0;
        left: 100%;
        z-index: 8;
        width: auto;
        height: calc(100vh - 68px);
        margin: 0;
        padding: .2rem 5%;
        overflow-x: hidden;
        background: #fff;
        visibility: hidden;
        -webkit-transition: all 0.45s linear 0s;
        -moz-transition: all 0.45s linear 0s;
        -ms-transition: all 0.45s linear 0s;
        -o-transition: all 0.45s linear 0s;
        transition: all 0.45s linear 0s;
    }

    .nav ul {
        width: 100%;
    }

    .nav li {
        display: block;
        width: 100%;
        max-width: 100%;
        border-bottom: 1px dashed #ddd;
    }

    .nav li:first-child {
        border-top: none;
    }

    .nav li a {
        padding: 0 8px;
        font-size: 17px;
        width: auto;
        line-height: .6rem;
        text-align: left;
        color: #494949 !important;
        background: transparent !important;
        white-space: nowrap;
    }

    .nav li a .icon {
        display: none !important;
    }

    .nav li .tri {
        display: none !important;
    }

    .nav li .down {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .6rem;
        height: .6rem;
        background-image: url("../images/j_icon2_2.png");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: 36%;
        cursor: pointer;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -ms-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .nav li .down.close {
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
    }

    .nav li .lv2 {
        display: none;
        position: static;
        visibility: visible;
        opacity: 1;
        width: 100%;
        padding-left: 30px;
        padding-top: 0;
        border: none;
        background: none;
        box-shadow: none;
        animation: none !important;
    }

    .nav li .lv2 a {
        color: #333 !important;
    }

    .nav li .lv2 .tri {
        display: none;
    }

    .nav li:hover .lv2 {
        display: none;
        animation: none;
        box-shadow: none;
    }

    .nav li::after {
        display: none;
    }

    .nav.show {
        visibility: visible;
        left: 0;
    }

    .banner .slick-arrow {
        display: none !important;
    }

    .banner .img {
        padding: 35% 0 0;
    }

    .column h3 {
        font-size: .22rem;
    }

    .tpxw, .bmzs {
        width: 100%;
    }
    .news-slick {
        margin: 0 -.1rem;
        width: 100%;
    }
    .tzgg {
        width: 100%!important;
        margin-top: 30px;
    }
    .gztz, .jzcm {
        width: 100%;
    }

    .news-slick .img {
        padding: 66.557% 0 0;
    }

    .sidebar {
        width: 100%;
        margin: .2rem 0 0;
    }

    .sidebar h1 {
        position: relative;
        padding: 0 .2rem;
        line-height: .5rem;
        font-size: .22rem;
        text-align: left;
    }

    .sidebar h1 i {
        position: absolute;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        z-index: 1;
        width: .5rem;
        height: .5rem;
        background-image: url(../images/down2.png);
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-color: transparent;
        background-size: auto;
        cursor: pointer;
        -webkit-transform: rotate(-90deg);
        -moz-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        -o-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transition: all 0.3s linear 0s;
        -moz-transition: all 0.3s linear 0s;
        -ms-transition: all 0.3s linear 0s;
        -o-transition: all 0.3s linear 0s;
        transition: all 0.3s linear 0s;
    }

    .sidebar h1 i.down {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    .sidebar .lv2-nav {
        display: none;
    }

    .sidebar .lv2-nav a {
        text-align: left;
        padding-left: .3rem;
        line-height: .45rem;
    }

    .main {
        width: 100%;
        max-width: 100%;
        margin: .15rem 0 .3rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        width: 92%;
    }

    .top-link {
        display: none;
    }

    .column {
        margin: .15rem 0;
    }

    .position {
        text-align: left;
        margin: 0 0 .2rem;
    }

    .position h3 {
        display: block;
        border: none;
        margin: 0 0 -1px;
        text-align: center;
    }

    .position h3::after {
        display: block;
        content: "";
        width: .5rem;
        height: 3px;
        margin: .1rem auto -1px;
        background: var(--color-primary);
    }

    .place {
        float: none;
        display: inline-block;
        line-height: .3rem;
        text-align: center;
    }

    .place .icon {
        height: .3rem;
    }

    .article {
        padding-top: .1rem;
        padding-left: 0;
        padding-right: 0;
        min-height: 3.8rem;
    }

    .article .title {
        font-size: .2rem;
    }

    .main .list1 li {
        margin: .15rem 0 0;
    }
}

@media screen and (max-width: 600px) {
    .pic-list1 li {
        padding: .1rem 0;
    }

    .pic-list1 .img-scale {
        width: 100%;
    }

    .pic-list1 .text {
        width: 100%;
        padding: 0;
        margin: .1rem 0;
    }

    .pic-list1 .date {
        display: none;
    }

    .pic-list1 .date2 {
        display: block;
    }
}

@media screen and (max-width: 520px) {
    html {
        font-size: 90px;
    }

    .search {
        width: 80%;
        left: 10%;
    }

    .search .input {
        width: calc(100% - 50px) !important;
    }
}

/*# sourceMappingURL=style.css.map */
#list-page {
    font-family: Arial;
    text-align: center;
    margin: 25px 0 30px !important;
}

#list-page .p_pages a, #list-page span, #list-page .p_goto a {
    font-size: 14px;
    width: auto;
    height: auto;
    margin-top: 5px;
}

#list-page .p_pages a, #list-page .p_no_d, #list-page .p_fun_d, #list-page .p_goto a {
    padding: 8px 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    color: #428bca;
}

#list-page .p_pages .p_no_d, #list-page a:hover, #list-page .p_goto a {
    background: var(--color-primary);
    font-weight: bold;
    color: #fff;
    border-color: var(--color-primary);
}

#list-page .p_t {
    padding: 0 2px 0 0;
    color: #777;
}

#list-page .p_first, #list-page .p_first_d, #list-page .p_last, #list-page .p_last_d {
    display: inline-block;
}

#list-page .p_pages span {
    color: #aaa;
}

#list-page .p_goto input {
    font-family: 'Arial';
    color: #333;
    border-radius: 2px;
    width: 40px;
    height: 30px;
    line-height: 30px;
    vertical-align: bottom;
}

.bszn-link {
    font-size: 0;
    margin: 0 -0.17rem;
}

.bszn-link > li {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 0 0.17rem;
}

.bszn-link li {
    margin: 0 0 .35rem;
}

.bszn-link a {
    display: table;
    width: 100%;
    height: 1.28rem;
    padding: 5px;
    background: #eee;
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.22rem;
    color: var(--color-primary);
    text-align: center;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -o-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
}

.bszn-link a i {
    display: block;
    width: .7rem;
    height: .7rem;
    margin: 0.1rem auto .11rem;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: transparent;
    background-size: 100%;
}

.bszn-link a:hover {
    background: var(--color-primary);
    color: #fff;
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    -o-transform: translateY(-6px);
    transform: translateY(-6px);
    box-shadow: 0 0 0.15rem 0 rgba(0, 0, 0, 0.35);
}

.bszn-link a.a1 i {
    background-image: url(../images/dzxx.png);
}

.bszn-link a.a1:hover i {
    background-image: url(../images/dzxx-hover.png);
}

.bszn-link a.a2 i {
    background-image: url(../images/txgc.png);
}

.bszn-link a.a2:hover i {
    background-image: url(../images/txgc-hover.png);
}

.bszn-link a.a3 i {
    background-image: url(../images/jsj.png);
}

.bszn-link a.a3:hover i {
    background-image: url(../images/jsj-hover.png);
}

.bszn-link a.a4 i {
    background-image: url(../images/rgzn.png);
}

.bszn-link a.a4:hover i {
    background-image: url(../images/rgzn-hover.png);
}

.bszn-link a.a5 i {
    background-image: url(../images/jxzz.png);
}

.bszn-link a.a5:hover i {
    background-image: url(../images/jxzz-hover.png);
}

.bszn-link a.a6 i {
    background-image: url(../images/gfzcl.png);
}

.bszn-link a.a6:hover i {
    background-image: url(../images/gfzcl-hover.png);
}

.bszn-link a.a7 i {
    background-image: url(../images/txgc.png);
}

.bszn-link a.a7:hover i {
    background-image: url(../images/txgc-hover.png);
}

.bszn-link a.a8 i {
    background-image: url(../images/tmgc.png);
}

.bszn-link a.a8:hover i {
    background-image: url(../images/tmgc-hover.png);
}
@media screen and (max-width: 1300px) {
    .nav li a {
        font-size: .18rem;
    }

    .nav .lv2 {
        width: 100%;
        left: 0%;
    }

    .nav .lv2 a {
        font-size: .15rem;
    }

    .news-slick {
        margin: 0 -.1rem;
    }

    .news-slick .slick-slide {
        padding: 0 .1rem;
    }

    .news-slick .slick-arrow.slick-prev {
        left: -.4rem;
    }

    .news-slick .slick-arrow.slick-next {
        right: -.4rem;
    }

    .bszn-link, .list1 {
        margin: 0 -.1rem;
    }

    .bszn-link > li, .list1 > li {
        padding: 0 .1rem;
    }

    .bszn-link a {
        font-size: .14rem;
    }
}

@media screen and (max-width: 900px) {
    html {
        font-size: 90px;
    }
    .list1 {
        margin: 0;
    }

    .list1 > li {
        width: 100%;
        padding: 0;
        margin: 0 0 .15rem;
    }

    .bszn .column {
        margin-top: .15rem;
    }

    .bszn-link {
        text-align: center;
    }

    .bszn-link > li {
        width: 50%;
        margin: 0 0 .15rem;
    }

    .pic-list2 li {
        padding: .2rem 0;
    }

    .pic-list2 .img-scale {
        width: 100%;
    }

    .pic-list2 .text {
        width: 100%;
        padding: 0;
        margin: .1rem 0 0;
    }

    .pic-list2 .date {
        top: .2rem;
        left: 0;
        right: auto;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }

    .pic-list3 .img-scale {
        display: block;
        margin: 0 auto 0.1rem;
    }

    .pic-list3 .text {
        width: 100%;
        padding: 0;
        text-align: center;
    }

    .search {
        left: calc(50% - 170px);
    }

    .search .input {
        width: 260px !important;
    }
    .tzgg {
        width: 100%!important;
    }
}
.more {
    background-image: url("../images/more.png");
    background-size: 25px 45px;
}
.more div {
    width: 25px;
    height: 45px;
}
.more:hover {
    transform: translateY(-3px);
    transition: all 0.1s linear 0s;
}
.pagination {
    text-align: center;
    font-size: 0;
    padding-top: 40px;
}

.pagination .p_fun, .pagination .p_fun_d, .pagination .p_no, .pagination .p_no_d {
    display: inline-block;
    border: 1px solid #dcdcdc;
    padding: 0 0.12rem;
    height: 0.35rem;
    font-size: 0.18rem;
    font-weight: bold;
    line-height: 0.35rem;
    text-align: center;
    color: #666;
    margin: 0 7px;
}
.p_no a, .p_fun a {
    color: var(--color-primary);
}
.tzgg {
    float: right;
    width: 49%;
}
.top-header  {
    width: 1440px;
    margin: 0 auto;
}
.lv2 li {
    width:100%;
}
td {
    padding:10px
}
.mega-menu {
    background-color:#82111f;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.menu-level-1 {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-level-1 > li {
    position: relative;
}

.menu-level-1 > li > a {
    display: block;
    padding: 0 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-level-1 > li > a:hover {
    background-color: #ffffff;
    color: #82111f;
}

/* 二级菜单 Second-level menu */
.menu-level-2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #82111f;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    min-width: 110px;
    width: 100%;
    /* 添加动画属性 */
    transform-origin: top center;
    animation: menuDropDown 0.3s ease-out;
}


.menu-level-2 ul {
    flex-direction: column;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.menu-level-2 > ul > li {
    position: relative;
    flex: 1;
    border-bottom: 1px dotted #e8e8e8;
}

.menu-level-2 > ul > li > a {
    display: block;
    padding: 0 15px;
    width: 100%;
    color: #82111f;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 0.4rem;
    font-size: 0.16rem!important;
}

/* 三级菜单 Third-level menu */
.menu-level-3 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #333;
    width: 100%;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;

    /* 添加动画属性 */
    transform-origin: left center;
    animation: menuSlideIn 0.3s ease-out;
}

.menu-level-3 ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-level-3 > ul > li {
    position: relative;
    border-bottom: 1px dotted #e8e8e8;
}

.menu-level-3 > ul > li > a {
    display: block;
    padding: 0 15px;
    color: #82111f;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 0.4rem;
    font-size: 0.16rem!important;
}

/* 四级菜单 Fourth-level menu */
.menu-level-4 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #444;
    min-width: 240px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;

    /* 添加动画属性 */
    transform-origin: left center;
    animation: menuSlideIn 0.3s ease-out;
}

.menu-level-4 ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-level-4 > ul > li {
    border-bottom: 1px dotted #e8e8e8;
}

.menu-level-4 > ul > li > a {
    display: block;
    padding: 0 15px;
    color: #82111f;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 0.4rem;
    font-size: 0.16rem!important;
}

/* Hover states */
.menu-level-1 > li:hover > .menu-level-2 {
    display: block;
    animation: menuDropDown 0.3s ease-out;
}

/* 当三级菜单显示时触发动画 */
.menu-level-2 > ul > li:hover > .menu-level-3 {
    display: block;
    animation: menuSlideIn 0.3s ease-out;
}

/* 当四级菜单显示时触发动画 */
.menu-level-3 > ul > li:hover > .menu-level-4 {
    display: block;
    animation: menuSlideIn 0.3s ease-out;
}
@keyframes menuDropDown {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top center;
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top center;
    }
}

@keyframes menuSlideIn {
    0% {
        opacity: 0;
        transform: scaleX(0);
        transform-origin: left center;
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left center;
    }
}



.side-menu {
    width: 235px;
    background-color: #ffffff;
}

.side-menu-level-1 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-level-1 > li {
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}

.side-menu-level-1 > li > a {
    display: block;
    padding: 10px 20px;
    color: #82111f;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    font-size: 0.18rem;
    border-left: 5px solid #f4f4f4;
}

.side-menu-level-1 > li > a:hover, .side-menu-level-1 > li > a.current {
    border-left: 5px solid #82111f;
    background: #f2f2f2;
}

/* 二级菜单 Second-level menu */
.side-menu-level-2 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 260px;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    z-index: 1000;

    /* 添加动画属性 */
    transform-origin: top center;
    animation: menuDropDown 0.3s ease-out;
}


.side-menu-level-2 ul {
    flex-direction: column;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-level-2 > ul > li {
    position: relative;
    flex: 1;
    border-bottom: 1px dotted #e8e8e8;
}

.side-menu-level-2 > ul > li > a {
    display: block;
    padding: 10px 15px;
    color: #82111f;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.side-menu-level-2 > ul > li > a:hover, .side-menu-level-2 > ul > li > a.current {
    color: #ffffff;
    background: #82111f;
}
/* 三级菜单 Third-level menu */
.side-menu-level-3 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 300px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;

    /* 添加动画属性 */
    transform-origin: left center;
    animation: menuSlideIn 0.3s ease-out;
}

.side-menu-level-3 ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu-level-3 > ul > li {
    position: relative;
    border-bottom: 1px dotted #e8e8e8;
}

.side-menu-level-3 > ul > li > a {
    display: block;
    padding: 10px 15px;
    color: #82111f;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.side-menu-level-3 > ul > li > a:hover, .side-menu-level-3 > ul > li > a.current {
    color: #ffffff;
    background: #82111f;
}
/* 四级菜单 Fourth-level menu */
.side-menu-level-4 {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;

    /* 添加动画属性 */
    transform-origin: left center;
    animation: menuSlideIn 0.3s ease-out;
}

.side-menu-level-4 ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}
.side-menu-level-4 > ul > li {
    position: relative;
    border-bottom: 1px dotted #e8e8e8;
}
.side-menu-level-4 > ul > li > a {
    display: block;
    padding: 10px 15px;
    color: #82111f;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.side-menu-level-4 > ul > li > a:hover, .side-menu-level-4 > ul > li > a.current {
    color: #ffffff;
    background: #82111f;
}
/* Hover states */
.side-menu-level-1 > li:hover > .side-menu-level-2 {
    display: block;
    animation: menuDropDown 0.3s ease-out;
}

/* 当三级菜单显示时触发动画 */
.side-menu-level-2 > ul > li:hover > .side-menu-level-3 {
    display: block;
    animation: menuSlideIn 0.3s ease-out;
}

/* 当四级菜单显示时触发动画 */
.side-menu-level-3 > ul > li:hover > .side-menu-level-4 {
    display: block;
    animation: menuSlideIn 0.3s ease-out;
}
#vsb_content td {
border:1px solid #dddddd!important;
text-align:center;
}
#vsb_content th {
background:var(--color-primary);
color:#ffffff;
border:1px solid #dddddd!important;
text-align:center;
}
.main-list .list1 .text {
   padding:15px 0 0 15px;
}
.main-list .list1 .text .title {
    font-size: 18px;
    font-weight: normal;
    line-height: 0.27rem;
    color: #333333;
    text-align: justify;
    word-wrap: break-word;
}
.td-title {
background-color: #82111f;color: #ffffff;
}
.row {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 强制6列 */
    gap: 10px;
    padding: 10px 0;
}
.row > a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 20px;
    background: #82111f;
    color: #ffffff;
}
.mw-240 {
    min-width: 240px!important;
}
.teacher-title-t {
    font-size: 24px;
    font-weight: bold;
    color: #82111f;
    width: 120px;
    border-bottom: 5px solid #82111f;
    margin: 10px 0;
    padding-bottom: 5px;
}
.partyBranch tbody tr td:first-child {
    background-color: #82111f;
    color: #ffffff;
}
.article .fl a,.article .fr a {
    color: #82111f;
}
.partyBranch tbody tr td:nth-child(2) {
    text-align:left!important;
}