/* reset */
* {
    box-sizing: border-box;
}

body,
img,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
pre,
blockquote,
figure,
hr,
fieldset,
legend,
table,
caption,
th,
td,
form,
input,
textarea,
button,
select,
optgroup,
option,
label {
    margin: 0;
    padding: 0;
    border: 0;
}

img {
    display: block;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
    color: #000;
}

ul,
ol {
    list-style: none;
}

/* base */
.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

/* font-family */
@font-face {
    font-family: 'SourceHanSansSC-VF';
    src: url('SourceHanSansSC-VF.otf.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

body {
    font-family: 'SourceHanSansSC-VF', sans-serif;
    margin: 0;
}

/* style */
:root {
    --column-padding: 80px;
    --header-font-size: 28px;
    --header-sublist-font-size: 20px;
    --footer-font-size: 20px;
}

html,
body {
    font-size: 20px;
}

.number-font
{
   font-family:Times New Roman, serif;
}

.main-wrapper {
    width: 100%;
    min-width: 425px;
    position: relative;
    overflow: hidden;
}

/* swiper */
.swiper {
    --swiper-theme-color: #C50000;
    --swiper-pagination-color: #C50000;
}

/* header */
.header {
    width: 100%;
}

.header .wrapper {
    max-width: 1920px;
    margin: 0 auto;
    height: 95px;
    width: 100%;
    padding: 0 var(--column-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.header .logo {
    margin-right: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .logo img {
    height: 80px;
}

/* nav */
.nav {
    flex: 1;
    height: 100%;
}

.nav ul {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    position: relative;
}

.nav ul li {
    text-align: center;
    position: relative;
    display: inline-block;
    font-size: var(--header-font-size);
    padding-bottom: 10px;
    flex: 2;
}

.nav li:hover .sublist {
    display: block;
}

.nav ul li a:hover {
    color: #BE0E13;
}

.header .nav .sublist {
    font-size: var(--header-sublist-font-size);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 2;
}

.header .nav .sublist .item {
    line-height: 2;
    background-color: rgb(193, 5, 6, 0.95);
}

.header .nav .sublist a {
    color: #D9BC8C;
}

.header .nav .sublist .item:hover {
    background-color: rgba(130, 19, 16, 1);
}
.header .nav .sublist .item:hover a{
    color: #fff;
}

/* search */
.search{
    height: 100%;
    padding-left: 10px;
    display: flex;
    align-items: end;
    padding-bottom: 11px;
}
.search .icon {
    width: var(--header-font-size);
    height: var(--header-font-size);
    background-color: #C50000;
    transform: translateY(-2px);
    position: relative;
    margin: 0 auto;
}

.search .icon svg {
    width: 70%;
    height: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* carousel */
.swiper-slide img {
    display: block;
    width: 100%;
}

.carousel-swiper .cover {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.carousel-swiper .cover img {
    height: 100%;
}


.swiper-button-next,
.swiper-button-prev {
    opacity: 0;
    transition: opacity 0.3s;
}

.swiper:hover .swiper-button-next,
.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.carousel-swiper .swiper-wrapper .swiper-button-prev,
.carousel-swiper .swiper-wrapper .swiper-button-next {
    z-index: 3;
}

/* notice */
.notice {
    background-color: #C10506;
}

.notice .wrapper {
    margin: 0 auto;
    max-width: 1920px;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5rem var(--column-padding);
    flex-wrap: wrap;
}

.notice .title {
    color: white;
    font-size: 1.8rem;
}

.notice .swiper-wrapper {
    width: 1000px
}

.notice .swiper-slide {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 1rem;
    position: relative;
}

.notice .swiper-slide .item {
    width: 95%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: white;
}

.notice .swiper-slide .item a {
    color: white;
}

/* dividing-line */
.dividing-line {
    height: 5px;
    width: 100%;
    background-color: #1A7178;
}

/* main */
.column {
    overflow: hidden;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: var(--column-padding);
}

.my-white {
    background-color: #ffffff;
}

.my-grey {
    background-color: #F4F4F4;
}

.column .title {
    font-size: 40px;
    margin-bottom: 40px;
    color: #C50000;
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
}

.column .content {
    position: relative;
}

.column .title svg {
    display: block;
    height: 52px;
    width: 52px;
    margin-right: 10px;
}

.more {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-150%);
    font-size: 20px;
    color: #B0B6B8;
}

.more:hover {
    color: #C50000;
}

/* 终身学习 */
.zsxx .content {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.zsxx .content .item {
    flex: 1;
    padding: 10px 0;
    background-color: #FBF1EF;
    color: #C50000;
}

.zsxx .content .item:first-child {
    margin-left: 0;
}

.zsxx .content .item:last-child {
    margin-right: 0;
}

.zsxx .content .item .logo svg {
    height: 95px;
    display: block;
    margin: 10px auto;
}

.zsxx .content .item .text {
    text-align: center;
    font-size: 30px;
}

.zsxx .content .item:hover {
    background-color: #C50000;
    color: #ffffff;
}

.zsxx .content .item:hover .logo svg * {
    fill: #ffffff;
}

/* 课程项目 */
.kcxm .content {
    display: flex;
    position: relative;
    height: 400px;
}

.kcxm .content .left {
    margin-right: 20px;
}

.kcxm .content .left .item {
    position: relative;
    width: 240px;
    height: 33.33%;
    transition: 0.1s ease-in-out;
    background-color: #C50000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kcxm .content .left .item:hover {
    background-color: #91110B;
}

.kcxm .content .left .item .logo {
    width: 40px;
    height: 40px;
}

.kcxm .content .left .item .text {
    margin-left: 5px;
    color: white;
    font-size: var(--header-font-size);
}

.selected-with-triangle {
    background-color: #91110B !important;
}

.selected-with-triangle::before {
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 15px solid #F4F4F4;
    border-bottom: 10px solid transparent;
}

.kcxm .sub-title-wrapper {
    display: none;
}

/* 专题推荐 */
.zttj-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
}

.zttj-card {
    flex: 1;
}

.zttj-card .pic {
    overflow: hidden;
    width: 100%;
    height: 76%;
}

.zttj-card .pic img {
    width: 100%;
    height: 100%;
    transition: 0.2s ease-in-out;
}

.zttj-card:hover .pic img {
    transform: scale(1.2);
}

.zttj-card .des {
    height: 24%;
    background-color: #fff;
    padding: 0.2rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.zttj-card:hover .des {
    color: #C50000;
}


/* 精品项目 */
.jpxm-container {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    height: 100%;
}

.jpxm-card {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.jpxm-card>img {
    width: 100%;
    height: 100%;
}

.jpxm-card .des-container {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 1rem;
    width: 100%;
    color: #fff;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.7) 100%);
    display: flex;
    align-items: end;
    font-size: 1.1rem;
}

.jpxm-card .des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.jpxm-card .cover {
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    background-color: rgba(206, 49, 49, 0.85);
    display: none;
}

.jpxm-card .cover-text {
    width: 70%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* 现场教学 */
.xcjx-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 100%;
    gap: 2%
}

.xcjx-container .item {
    position: relative;
    flex: 0 0 32%;
    height: 48%;
}

.xcjx-container .item .pic {
    display: block;
    object-fit: fill;
    width: 100%;
    height: 100%;
}

.xcjx-container .item .des {
    display: none;
    height: 3rem;
    padding: 1rem;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background-color: #ffffff;
}

.xcjx-container .item .cover {
    width: 100%;
    height: 100%;
    background-color: rgba(206, 49, 49, 0.85);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}


.xcjx-container .item:hover .cover {
    opacity: 1;
}

.xcjx-container .item:hover .des{
    opacity: 0;
}

.xcjx-container .item .cover .text {
    color: white;
    width: 70%;
    position: absolute;
    bottom: 42%;
    left: 50%;
    transform: translate(-50%, 0);
    text-align: center;
    font-size: 1.3rem;
}

.xcjx-container .item .cover .arrow {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 2rem;
    height: 2rem;
}

/* 学院动态 */
.xydt .content {
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.xydt .sub-title-wrapper {
    overflow: hidden;
}

.xydt .content .sub-title {
    color: #C50000;
    font-size: 20px;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
    cursor:pointer;
}

.xydt .subtitle-select {
    border-bottom: 3px solid #C50000;
    font-weight: bold;
}

.xydt .sub-more {
    color: #B0B6B8;
    font-size: 20px;
    float: right;
}

.xydt .sub-more:hover {
    color: #c50000;
}

.dtxw-swiper {
    background-color: #000;
    width: 400px;
    height: 300px;
    position: relative;
}

.dtxw {
    position: relative;
    flex: 2;
}

.dtxw .wrapper {
    display: flex;
}

.dtxw .wrapper .swiper-slide {
    height: 100%;
    width: 100%;
}
.dtxw .wrapper .swiper-slide img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.dtxw .wrapper .list {
    flex: 1;
    margin-left: 10px;
    position: relative;
}

.dtxw .list .item {
    height: 16.66%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dtxw .list .item:hover {
    color: #C50000;
}

.dtxw .list .item .text {
    margin-right: 20px;
    width: 160px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dtxw .list .item .date {
    white-space: nowrap;
}

.dtxw-swiper-bullet {
    padding: 0 0.2rem;
    color: #fff;
}

.dtxw-swiper-bullet-active {
    padding: 0 0.2rem;
    background-color: #F34D10;
    color: #fff;
}

.dtxw .swiper-pagination {
    text-align: right !important;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.dtxw-swiper .des {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3rem;
    width: 100%;
    background-color: rgba(180, 3, 1, 0.85);
    color: #fff;
    padding: 1rem 3rem 1rem 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.8rem;
}

.tzgg {
    flex: 1;
    height: 100%;
}

.tzgg .list {
    position: relative;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tzgg .list .item {
    display: flex;
    gap: 10px;
    overflow: hidden;
    height: 30%;
}

.tzgg .list .item:hover a{
    color:#C50000;
}

.tzgg .list .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.tzgg .list .left .day {
    font-size: 40px;
}

.tzgg .list .item .left {
    width: 150px;
    background-color: #C50000;
    color: #ffffff;
}

.tzgg .list .item .right {
    flex: 1;
    background-color: #FBF1EF;
    padding: 5px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
}

.tzgg .list .item .right .title3 {
    color: #C50000;
    font-size: 20px;
}

.tzgg .list .item .right .text {
    width: 285px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* 专业品质 */
.zypz .content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.zypz .content .item {
    flex: 1;
    position: relative;
}

.zypz .content .item .pic img {
    width: 100%;
    height: 100%;
}

.zypz .content .item .cover {
    transition: 0.2s ease-in-out;
    background-color: rgba(205, 96, 96, 0.85);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.zypz .content .item .cover:hover {
    background-color: rgba(180, 3, 1, 0.85);
}

.zypz .content .item .cover .logo {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.zypz .content .item .cover .logo {
    width: 15%;
    height: 25%;
}

.zypz .content .item .cover .text {
    font-size: 1.8rem;
    position: absolute;
    bottom: 48%;
    left: 50%;
    transform: translate(-50%, 100%);
    color: white;
}

/* 学在厦大 */
.xzxd .content {
    display: block;
}

.xzxd .m-content {
    display: none;
}

.xzxd .arrow {
    float: right;
    display: flex;
    transform: translate(0, -200%);
}

.xzxd .arrow svg:hover * {
    fill: #C50000 !important;
}

.xzxd .arrow svg {
    width: 2rem;
}

.xzxd .arrow svg:first-child {
    margin-right: 1rem;
}

.xzxd .content .wrapper{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.xzxd .content .left {
    flex: 1;
    position: relative;
}

.xzxd .content .left img {
    height: 100%;
    width: 100%;
}

.xzxd .content .right {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 2%;
}

.xzxd .content .right img {
    width: 49%;
    height: 49%;
}

/* footer */
.footer {
    background-image: url(../../images/202406/footer.png);
    background-size: cover;
    color: white;
    width: 100%;
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 50px;
    font-size: var(--footer-font-size);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(123, 25, 21, 0.8);
}

.footer .title {
    font-weight: bold;
    width: 100%;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-wrap: nowrap;
}

.footer a {
    font-size: var(--footer-font-size);
    color: white;
}

.footer .content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    padding: 1rem 2rem;
}

/* slogan */
.footer .slogan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    white-space: nowrap;
    font-size: 2rem;
    letter-spacing: 0.2rem;
    font-family: 'FZXiYuan-M01', serif;
    font-weight: bold;
}

/* contact */
.footer .contact .wrapper {
    display: flex;
}

.footer .contact img {
    width: 6rem;
    height: 6rem;
}

.footer .contact .text {
    line-height: 1.5;
    margin-left: 1rem;
}

/* email */
.footer .email {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer .email img {
    margin-top: 0.5rem;
    width: 5rem;
}

/* link */
.footer .link {
    position: relative;
}
.footer .link .wrapper{
    display: flex;
    gap: 1rem;
}
.footer .link li {
    margin-bottom: 0.5rem;
    text-wrap: nowrap;
}

.copyright {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: rgba(145, 17, 11, 0.5);
}

/* responsive */
/* 1440~1920 */
@media (max-width: 1920px) {
    :root {
        --column-padding: 40px;
        --header-font-size: 22px;
        --header-sublist-font-size: 20px;
        --footer-font-size: 16px;
    }

    .header .wrapper .logo img {
        height: 50px;
    }

    .footer .slogan {
        font-size: 1.4rem;
    }
}

/* 1024~1440 */
@media (max-width: 1439px) {
    :root {
        --header-font-size: 18px;
        --header-sublist-font-size: 15px;
        --column-padding: 30px;
        --footer-font-size:14px;
    }

    html,
    body {
        font-size: 18px;
    }

    .column .title {
        margin-bottom: 20px;
    }

    .header .wrapper {
        height: 70px;
    }

    .header .wrapper .logo img {
        height: 40px;
    }

    .notice .swiper-wrapper {
        width: 600px;
    }

    .notice .title {
        padding: 0 17px;
    }

    .notice .content .item {
        width: 300px;
    }

    .column .title svg {
        height: 40px;
        width: 40px;
    }

    .column .title {
        font-size: 25px;
    }

    .zsxx .content .item .logo svg {
        height: 58px;
        width: 58px;
    }

    .zsxx .content .item .text {
        font-size: 23px;
    }

    .xcjx-container .item .cover .text{
        font-size: 1rem;
    }

    .zttj-card .des{
        height: 29%;
    }

    .zttj-card .pic{
        height: 71%;
    }
	
    .kcxm .content {
        height: 300px;
    }
    .kcxm .content .left .item {
        width: 200px;
    }

    .xcjx-container .item .cover .arrow{
        width: 1.5rem;
    }

    .zypz .content .item .cover .text {
        font-size: 1.5rem;
    }

    .footer .contact img {
        width: 100px;
    }
}

@media (max-width: 1225px) {
    .tzgg .list .item .right .text {
        width: 500px;
    }
}

/* 768~1024 */
@media (max-width: 1023px) {
    :root {
        --header-font-size: 12px;
        --column-padding: 15px;
        --header-sublist-font-size: 10px;
        --footer-font-size:14px;
    }

    html,
    body {
        font-size: 16px;
    }

    .header .wrapper {
        height: 50px;
    }

    .header .wrapper .logo img {
        height: 40px;
    }
    .search{
        display: none;
    }

    .notice .swiper-wrapper {
        width: 470px;
    }

    .notice .content .item {
        width: 200px;
    }



    /* 隐藏标题，可选 */
    .notice .title{
        display: none;
    }

    .zsxx .content .item .logo svg {
        height: 40px;
    }

    .dtxw-swiper {
        width: 240px;
        height: 180px;
    }

    .kcxm .content .left .item {
        width: 170px;
    }

    .kcxm .content .xcjx-container .item .cover .text {
        font-size: 0.9rem;
    }

    .jpxm-card .cover{
        font-size: 1.2rem;
    }
    .jpxm-card .cover svg{
        width: 2rem;
    }

    .xcjx-container .item .cover .arrow{
        width: 1rem;
    }

    .zypz .content .item .cover .text {
        font-size: 1.2rem;
    }

    .footer .slogan {
        justify-content: center;
        width: 8rem;
        writing-mode: vertical-rl;
        gap: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .header .nav {
        display: none;
    }

    .header .wrapper {
        height: 4rem;
        padding: 0 2rem;
    }

    .header .wrapper .logo img {
        height: 3rem;
    }

    .header .wrapper .btn-menu {
        display: block;
    }

    .btn-menu {
        width: 2rem;
        height: 2rem;
        position: relative;
        border-top: solid 0.2rem #2C3567;
        border-bottom: solid 0.2rem #2C3567;
        padding: 0.4rem 0;
        transition: transform 0.3s ease;
    }

    .btn-menu::before,
    .btn-menu::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 0.2rem;
        background-color: #2C3567;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .btn-menu.btn-menu-x {
        border-top: none;
        border-bottom: none;
        background-color: transparent;
        transform: scale(0.8);
    }

    .btn-menu::before {
        top: 0.75rem;
    }

    .btn-menu::after {
        top: 0.75rem;
    }

    .btn-menu.btn-menu-x {
        border-top: none;
        border-bottom: none;
        background-color: transparent;
    }

    .btn-menu.btn-menu-x::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .btn-menu.btn-menu-x::after {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }

    .menu {
        background-color: #fff;
        position: absolute;
        top: 4rem;
        left: 0;
        width: 100%;
        z-index: 3;
        font-size: 1.5rem;
        padding: 1rem 2rem;
        overflow: scroll;
        transition: transform 1s ease;
        line-height: 2;
    }

    .sub-menu a {
        font-size: 1.2rem;
        margin-left: 1rem;
    }

    .menu a {
        display: block;
    }

    .sub-menu-title::after {
        position: absolute;
        font-size: 1.5rem;
        line-height: 3rem;
        content: '>';
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .menu .item,
    .menu .item a {
        border-bottom: 1px solid #c0c0c0;
        color: #2C3567;
        font-weight: bold;
    }

    .menu .sub-menu a {
        font-weight: normal;
    }

    .sub-menu-title.sub-menu-title-selected {
        background-color: #F4F4F4;
    }

    .sub-menu-title.sub-menu-title-selected::after {
        transform: rotate(90deg);
    }

    .notice .title {
        width: 100%;
        margin-bottom: 0.3rem;
        font-size: 1.3rem;
        text-align: center;
    }

    .zsxx .content {
        flex-wrap: wrap;
    }

    .zsxx .content .item {
        min-width: 120px;
        flex-basis: 30%;
    }

    .zypz .content {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .zypz .content .item {
        flex-basis: 45%;
        max-width: 15rem;
    }

    .kcxm .content .xcjx-container .item .cover .text {
        font-size: 0.9rem;
    }

    .kcxm .content .xcjx-container .item .cover .text {
        font-size: 1.1rem;
    }

    .xcjx-container .item .cover .arrow{
        width: 2rem;
    }


    .zttj-container {
        overflow: scroll;
    }

    .zttj-card {
        min-width: 233px;
    }

    .kcxm .xcjx-container {
        overflow: scroll;
        flex-wrap: nowrap;
    }

    .kcxm .xcjx-container .item {
        min-width: 233px;
    }

    .jpxm-container {
        overflow: scroll;
    }

    .jpxm-card {
        min-width: 233px;
    }

    .kcxm .content .left {
        display: none;
    }

    .kcxm .sub-title-wrapper {
        display: block !important;
        overflow: hidden;
    }

    .kcxm .sub-title {
        color: #C50000;
        font-size: 20px;
        float: left;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .kcxm .subtitle-select {
        border-bottom: 3px solid #C50000;
        font-weight: bold;
    }

    .kcxm .sub-more {
        color: #B0B6B8;
        font-size: 20px;
        float: right;
    }

    .kcxm .xcjx-container .item>.des {
        display: block;
    }

    .tzgg .list .item .right .text {
        width: 285px;
    }

    .tzgg .list .right,
    .tzgg .list .item .right .title3 {
        font-size: 1rem;
    }

    .tzgg .list .item .left {
        width: 85px;
    }

    .xzxd {
        position: relative;
    }

    .xzxd .content {
        width: 100%;
        overflow: hidden;
        display: none;
    }

    .xzxd .m-content {
        display: block;
    }

    .xzxd .xzxd-swiper {
        width: 160%;
        transform: translate(-18.5%, 0);
    }


.szdw__content-title {
        border-bottom: 1px solid #DDDDDD;
        font-size: 1.5rem;
        padding-left: 2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        color: #C50000;
    }

    .szdw__content-cards {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .szdw__content-card {
        width: calc(33.33% - 1rem);
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 5px;
        background-color: white;
        height: 10rem;
    }

    /* @todo 视是否需要card跳转选择注释 */
    .szdw__content-card:hover {
        outline: solid 1px #c50000;
    }

    .szdw__content-card-avatar {
        height: 100%;
        width: 6rem;
        float: left;
        margin-right: 1rem;
    }

    .szdw__content-card-text {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
    }

    .szdw__content-card-text-name {
        font-size: 1.3rem;
        font-weight: bold;
    }

    .szdw__content-card-text-item {
        /* white-space: nowrap; */
        overflow: hidden;
        font-size: 1rem;
        color: #8F8F8F;
    }

    .footer {
        margin-top: 2rem;
    }

    .footer .slogan {
        writing-mode: initial;
        height: 1.2rem;
    }

    .footer .title {
        margin-bottom: 0.5rem;
    }

    .footer .content {
        flex-wrap: wrap;
        gap: 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer .contact {
        padding-left: 2%;
        width: 100%;
        padding-bottom: 1rem;
        border-bottom: solid 1px;
    }

    .footer .email {
        width: 100%;
        padding-left: 2%;
        align-items: start;
        padding-bottom: 1rem;
        border-bottom: solid 1px;
    }

    .footer .email img {
        display: none;
    }

    .footer .link {
        width: 100%;
        padding-left: 2%;
        margin-bottom: 1rem;
    }

    .footer .link ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 569px) {
    .dtxw .wrapper {
        flex-wrap: wrap;
    }

    .dtxw-swiper {
        margin-bottom: 1rem;
    }

    .dtxw .wrapper .list {
        line-height: 2;
    }

    .dtxw-swiper {
        width: 360px;
        height: 250px;
    }

    .dtxw .list .item .date {
        width: 89px;
    }
}