* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: "iconfont";
    /* Project id 5012281 */
    src: url("//at.alicdn.com/t/c/font_5012281_3uylsp986ly.woff2?t=1756801970557") format("woff2"), url("//at.alicdn.com/t/c/font_5012281_3uylsp986ly.woff?t=1756801970557") format("woff"), url("//at.alicdn.com/t/c/font_5012281_3uylsp986ly.ttf?t=1756801970557") format("truetype");
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

html {
    --theme-color: #aa343c;
    font-size: 16px;
}

body {
    background-color: #f3f3f3;
}

.w-12 {
    width: 1200px;
    margin-right: auto;
    margin-left: auto;
    position: relative;
}

.text-overflow {
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

header {
    background: #373a3a url(../img/header-bg.png) repeat-x left center;
    height: 144px;
}

header .w-12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding-top: 12px;
}

header ul {
    display: flex;
}

header ul li {
    list-style: none;
    font-size: 1.3rem;
    margin: 0 8px;
    border-bottom: 3px solid transparent;
}

header ul li a {
    color: #fff;
    padding: 4px 5px 6px;
    display: block;
}

header ul li:hover {
    border-bottom-color: #fff;
}

header .search-wrap {
    width: 200px;
    height: 42px;
    overflow: hidden;
    position: relative;
    text-align: right;
    margin-right: 1rem;
}

header .search-wrap .iconfont {
    font-size: 1.7rem;
    color: #fff;
    cursor: pointer;
}

header .search-wrap .search-input {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    transform: translateX(200px);
    position: absolute;
    padding: 9px 0.8rem;
    border-radius: 1.2rem;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    z-index: 2;
}

header .search-wrap .search-input:focus-within{
    background-color: #fff;
}

header .search-wrap .search-input:focus-within .iconfont{
    color: var(--theme-color);
}

header .search-wrap .search-input input {
    flex: 1;
    width: calc(200px - 4rem);
    padding: 3px 6px;
    background: transparent;
    outline: none;
    border: none;
    font-size: 1rem;
    margin-top: 2px;
    color: #444;
}

header .search-wrap .search-input .iconfont {
    font-size: 1.4rem;
    color: #fff;
    cursor: pointer;
}

header .search-wrap .btn-show {
    transform: translateY(5px);
    display: inline-block;
}

header .search-wrap.showing .search-input {
    transform: translateX(0);
}

header .search-wrap.showing .btn-show {
    opacity: 0;
}

header .language {
    position: absolute;
    top: 6px;
    right: 8px;
    color: #fff9;
}

.drop-menu {
    width: 140px;
    flex-shrink: 0;
}

.drop-menu dl {
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.drop-menu dl dt {
    height: 44px;
    line-height: 44px;
    padding-left: 1rem;
    background: #f5f5f5;
    font-size: 1rem;
    cursor: pointer;
    background-color: #a5343c;
    color: #fff;
}

.drop-menu dl dt a {
    color: inherit;
    font-size: inherit;
}

.drop-menu dl:has(dd) dt::after {
    content: "\e600";
    float: right;
    padding: 0 10px;
    font-size: 0.8rem;
    transform-origin: center;
    font-family: "iconfont";
    transform: rotate(180deg);
}

.drop-menu dl.active dt::after {
    transform: rotate(0);
}

.drop-menu dl dd {
    display: none;
    background: #f0f0f0;
}

.drop-menu dl dd ul li {
    list-style: none;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-bottom: 1px solid #dbdbdb;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.drop-menu dl dd ul li a {
    color: #808080;
    min-width: 65px;
    display: inline-block;
    text-align-last: justify;
}

.common-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    position: relative;
}

.common-title.between {
    justify-content: space-between !important;
}

.common-title.between h3 {
    margin: 0;
}

.common-title .common-style {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0.5rem;
}

.common-title h3 {
    margin: auto;
}

.common-title h3::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0.5rem;
    background-image: url(../img/title-left.png);
}

.common-title h3::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 0.5rem;
    background-image: url(../img/title-right.png);
}

.common-title .other {
    position: absolute;
    top: 1rem;
    right: 0;
}

.section-swiper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #ececec;
    padding: 1.5rem 1rem;
}
.swiper-container.swiper-1 .swiper-slide{
    height: 250px;
}
.swiper-container .swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    font-size: 0;
    z-index: 0;
}

.swiper-container .swiper-slide a {
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.swiper-1 {
    width: 570px;
    height: 410px;
    margin: 1.3rem 0.5rem 0;
}

.swiper-1 .swiper-wrapper {
    height: auto;
    padding-top: 3.5rem;
}

.swiper-1 .swiper-slide {
    transform: scale(0.9);
}

.swiper-1 .swiper-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: 300ms;
    pointer-events: none;
}

.swiper-1 .swiper-slide-prev {
    transform: scale(0.9) translateX(16px);
}

.swiper-1 .swiper-slide-next {
    transform: scale(0.9) translateX(-16px);
}

.swiper-1 p {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
}

.swiper-1 .swiper-slide-active,
.swiper-1 .swiper-slide-duplicate-active {
    transform: scale(1.2);
    z-index: 1;
}

.swiper-1 .swiper-slide-active::after,
.swiper-1 .swiper-slide-duplicate-active::after {
    opacity: 0;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fffc !important;
    transform: scale(0.8);
    top: 45% !important;
    font-weight: bold;
    padding: 0 2rem;
}

.news-text-list ul {
    border-top: 5px solid #aa343c;
}

.news-text-list ul li {
    border-bottom: 1px solid #aa343c;
    padding: 9px 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
}

.news-text-list ul li a {
    color: inherit;
    width: 79%;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-text-list ul li time {
    color: #999;
    font-size: 0.9rem;
}

.news-text-list ul li:hover,
.news-text-list ul li.active {
    color: #aa343c;
}

.news-img-list {
    --num: 3;
    display: flex;
    flex-wrap: wrap;
}

.news-img-list.flex-4 {
    --num: 4;
}

.news-img-list .item {
    width: calc(100% / var(--num) - 2 * 0.8rem);
    position: relative;
    margin: 0.8rem;
    font-size: 0;
    overflow: hidden;
    color: #000;
}

.news-img-list .item figure {
    width: 100%;
    aspect-ratio: 3 / 4;
}

.news-img-list .item figure img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.news-img-list .item .bottom-text {
    color: #fff;
    padding: 6px 10px;
    bottom: 0;
    left: 0;
    position: absolute;
    word-break: keep-all;
    overflow: hidden;
    font-size: 1rem;
    width: 100%;
    z-index: 2;
}

.news-img-list .item p {
    font-size: 1rem;
    padding-top: 2px;
}

.news-img-list .item .text {
    font-size: 1.2rem;
    height: 58px;
    overflow: hidden;
    line-height: 1.3;
    padding-top: 4px;
}

.news-img-list .item:hover .text {
    color: var(--theme-color);
}

.section-gzdt {
    display: flex;
    padding: 4rem 2rem 1.5rem;
    background-color: #fff;
}

.section-gzdt .news-text-list {
    padding: 0 0.8rem;
    width: 700px;
    margin-top: -4rem;
}

.section-gzdt .news-text-list .common-title {
    height: 4rem;
}

.section-gonggao {
    background-color: #721b28;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
}

.section-gonggao span {
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
}

.section-gonggao span:nth-child(2) {
    flex: 1;
    border-left: 1px solid #fcdd62;
    border-right: 1px solid #fcdd62;
}

.section-gonggao span:nth-child(2) a {
    color: #fff;
    max-width: 49%;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.img-list-1 .item figure {
    aspect-ratio: 4 / 3;
}

footer {
    background: url(../img/footer-bg.png) repeat-x left center #333333;
    width: 100%;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 0.9rem;
    color: #fffa;
}

footer .content {
    position: relative;
    width: 1060px;
    margin: auto;
}

footer .ewm-list {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 1.5rem;
}

footer .ewm-list .item {
    padding: 0 2rem;
}

footer .ewm-list img {
    width: 120px;
}

footer .contact-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff8;
    margin-top: 1.5rem;
    padding: 2.5rem 0;
}

footer .contact-list span {
    flex: 1;
    text-align: center;
}

footer .contact-list span::after {
    content: "|";
    float: right;
    color: #fff8;
}

footer .contact-list span:last-child::after {
    display: none;
}

footer .sydw {
    position: absolute;
    bottom: -0.2rem;
    right: 1rem;
    text-align: center;
}

.img-list-2 .item p {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #fff;
    color: #444;
    padding: 1rem 1.5rem;
    min-height: 0;
    transform: translateY(3rem);
    transition: 0.3s;
    z-index: -1;
}

.img-list-2 .item:hover p {
    font-size: 1rem;
    min-height: 120px;
    transform: translateY(0);
    z-index: 1;
}

.img-list-2 .item figure img {
    object-fit: cover;
}

.img-list-3 .item {
    aspect-ratio: auto;
}

.img-list-3 .item figure {
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.img-list-3 .item figure img {
    height: auto;
    transition: 0.3s;
}

.img-list-3 .item p {
    width: 100%;
    background-color: #389ab3;
    color: #ffffff;
    padding: 0.5rem;
    transition: 0.3s;
    font-size: 1.2rem;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.img-list-3 .item:hover img {
    transform: scale(1.05);
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}

.zhanlan-lianxi {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

.zhanlan-lianxi span {
    width: 49%;
    padding: 1rem;
    background-color: #5c5c5c;
    text-align: center;
    color: #fff;
}

.selection-wrap {
    background-color: #fff;
    padding: 1.6rem 2.2rem;
    border-bottom: 1px solid #ddd;
}

.selection-wrap .item {
    display: flex;
    margin-top: 1rem;
}

.selection-wrap .item span {
    color: #222;
    word-break: keep-all;
    font-weight: bold;
    padding-top: 4px;
}

.selection-wrap .item ul {
    display: flex;
    flex-wrap: wrap;
}

.selection-wrap .item ul li {
    margin: 0 6px 6px;
    list-style: none;
    border-radius: 5px;
    color: #666;
}

.selection-wrap .item ul li a{
    padding: 4px 10px 5px;
    cursor: pointer;
    color: inherit;
    display: block;
}

.selection-wrap .item ul li.active,
.selection-wrap .item ul li:hover {
    background-color: #f4543c;
    color: #fff;
}

.img-list-4 {
    padding: 2rem;
}

.img-list-4 .item {
    aspect-ratio: unset;
}

.img-list-4 .item .figure {
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-color: #ddd;
    border-width: 1px 1px 0 1px;
    font-size: 0;
    width: 100%;
    display: block;
}

.img-list-4 .item .figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.img-list-4 .item .content {
    display: block;
    border-top: 3px solid #703c4e;
    background-color: #eeeeee;
    padding: 8px;
    color: #555;
    font-size: 1rem;
}

.img-list-4 .item:hover .content {
    background-color: #703c4e;
    color: #fff;
}

.swiper-2 {
    width: 97.4%;
    height: 640px;
    margin: auto;
}

.fuwu {
    margin-top: 1rem;
}

.fuwu .common-title {
    height: 80px;
}

.fuwu .kfsj {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.fuwu .kfsj .item {
    width: fit-content;
    border: 1px solid #bf976b;
    margin: 0.6rem auto;
}

.fuwu .kfsj .item span {
    padding: 0 16px;
    color: #222;
    display: inline-block;
    font-size: 1.1rem;
    vertical-align: middle;
}

.fuwu .kfsj .item span:nth-child(1) {
    background: #bf976b;
    color: #f8e9da;
    font-size: 1.6rem;
}

.fuwu .jtdl {
    margin: 0 1rem;
    flex: 1;
}

.fuwu .jtdl .content {
    background-color: #efe1d4;
}

.fuwu .jtdl .item {
    color: #5e3819;
    border-bottom: 1px solid #5e3819;
    padding-bottom: 0.7rem;
    margin-bottom: 1.5rem;
}

.fuwu .jtdl .item p {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.fuwu .content {
    height: calc(100% - 80px);
    padding: 1.7rem 2rem;
}

.fuwu .tab-head {
    border-bottom: 1px solid #ddd;
    display: flex;
    padding-top: 3rem;
    padding-left: 10%;
}

.fuwu .tab-head span {
    padding-bottom: 10px;
    border-bottom: 3px solid transparent;
    margin: 0 2rem;
    cursor: pointer;
    font-size: 1.2rem;
}

.fuwu .tab-head span.active {
    color: #603813;
    border-bottom-color: #603813;
}

.fuwu .tab-body .item {
    display: none;
    padding: 1.5rem 3rem;
}

.fuwu .tab-body .item.active {
    display: block;
}

.fuwu .tab-body .item p {
    line-height: 1.5;
    color: #444;
}

.img-list-5 .item figure {
    aspect-ratio: 5 / 3;
}

.img-list-5 .item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.img-list-5 .item p {
    background-color: #000b;
    font-size: 1.1rem;
}

.img-list-5 .item:hover::before {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-more {
    border: 1px solid #ddd;
    color: #666;
    padding: 6px 2.3rem;
    font-size: 1.1rem;
    margin: 1rem 0 1rem 45%;
    background-color: #fff;
}

.btn-more:hover {
    background-color: #721b28;
    color: #fff;
}

.aside {
    width: 220px;
}

.aside .sub-title {
    color: #fff;
    height: 52px;
    line-height: 52px;
    background-image: url("../img/sub-title-bg.png");
    padding-left: 2rem;
    font-size: 1.5rem;
}

.aside dl {
    border-top: 1px solid #5c5c5c;
}

.aside dt {
    background-color: #7a7a7a;
    padding: 0.7rem 2rem;
    color: #fff;
}

.aside dd {
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0;
}

.aside dd a {
    padding: 0.3rem 2rem;
    color: #8a8a8a;
    font-size: 0.95rem;
}

.aside dd a:hover {
    color: var(--theme-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pagination li {
    background-color: #ffffff;
    padding: 4px 8px;
    color: #555;
    margin: 0 8px;
    border-radius: 4px;
    list-style: none;
    font-size: .95rem;
    min-width: 28px;
    text-align: center;
    box-shadow: 0 1px 4px #d2d2d2;
}

.pagination li a {
    color: inherit;
}

.pagination .active {
    background-color: var(--theme-color);
    color: #fff;
}

.news-detail {
    padding: 3rem 5rem;
}

.news-detail .title {
    font-size: 2rem;
    margin-bottom: .9rem;
    text-align: center;
    letter-spacing: 1px;
    color: #333;
}

.news-detail .attribute {
    color: #8f8f8f;
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;

}

.news-detail .attribute span {
    padding: 0 10px;
    font-size: .95rem;
}

.news-detail article img {
    max-width: 100%;
}

.news-detail article,
.news-detail article p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 1rem;
}


.m-1 {
    margin: 0.5rem;
}

.mt-2 {
    margin-top: 2rem;
}

.ml-2 {
    margin-left: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.p-4 {
    padding: 3rem;
}

.p-3 {
    padding: 2rem;
}

.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: #ececec;
}

.plr-3 {
    padding-right: 3rem;
    padding-left: 3rem;
}
