
:root {
    --color1: rgb(178, 38, 27);
}

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

html,
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #f5f5f5;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s;
}

a:hover {
    color: var(--color1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea {
    font: inherit;
    border: none;
    outline: none;
    background: none;
}



.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.sticky {
    position: sticky;
}



.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}



.txtl {
    text-align: left;
}

.txtr {
    text-align: right;
}

.txtc {
    text-align: center;
}

.txtb {
    font-weight: bold;
}

.txti {
    font-style: italic;
}



.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.max-w-screen {
    max-width: 100vw;
}

.max-h-screen {
    max-height: 100vh;
}



.p-2 {
    padding: 8px;
}

.p-4 {
    padding: 16px;
}

.p-8 {
    padding: 32px;
}

.m-2 {
    margin: 8px;
}

.m-4 {
    margin: 16px;
}

.m-8 {
    margin: 32px;
}



.border {
    border: 1px solid #ddd;
}

.border-t {
    border-top: 1px solid #ddd;
}

.border-b {
    border-bottom: 1px solid #ddd;
}



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

.bg-black {
    background-color: #000;
}

.bg-gray {
    background-color: #f5f5f5;
}

.bg-primary {
    background-color: #007bff;
}

.bg-secondary {
    background-color: #6c757d;
}



.opacity-50 {
    opacity: 0.5;
}



.transition {
    transition: all 0.3s ease-in-out;
}



.container {
    width: min(94vw, 1200px);
    margin: auto;
}



.header {
    height: 100px;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

.weblogo img {
    height: 68px;
}

.header .container {
    display: flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    column-gap: 160px;
}

.nav {
    display: flex;
    gap: 15px;
    flex: 1;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}

.nav li {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-bottom: 3px solid transparent;
    transition: all .3s;
    font-size: 17px;
}

.nav li.active,
.nav li:hover {
    color: var(--color1);
    border-bottom-color: var(--color1);
}

.search {
}

.search input {
    padding: 1px 5px;
    flex: 0 0 calc(100% - 40px);
}

.search form {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 5px 10px;
    background: white;
    justify-content: space-between;
    gap: 0;
}

.search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    cursor: pointer;
}

.search button svg {
    height: 22px;
}



.main {
    display: flex;
    gap: 10px;
    margin: 30px 0 20px;
    justify-content: space-between;
    align-items: flex-start;
}



.main>div:first-child {
    flex: 1;
}

.slick-slider {
    max-width: 75%;
}



.right-nav {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    padding: 27px 15px;
}

.subt {
    font-size: 16px;
    padding-left: 10px;
    border-left: 3px solid var(--color1);
}



.article-list {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    margin-bottom: 60px;
}

.main .article-list {
    margin-top: 0;
    margin-right: 10px;
}

.article-list .subt {
    margin-bottom: 20px;
}

.article {
    display: flex;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #ddd;
}

.article img {
    width: 182px;
    height: 130px;
    object-fit: cover;
}

.article-info {
    flex-grow: 1;
    padding-left: 10px;
    padding-right: 20px;
    max-width: calc(100% - 194px);
}

.article h3 {
    font-size: 16px;
    margin-top: 6px;
    margin-bottom: 13px;
    font-weight: 700;
}

.article p {
    font-size: 14px;
    color: gray;
}

.article p.sinfo {
    margin-bottom: 10px;
    line-height: 25px;
}

.article-metas {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.article-metas p {
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.1;
}

.article-metas svg {}

.article-metas i {
    display: flex;
    align-items: center;
}

.article-metas span {
    color: #999;
    font-size: 13px;
}

.article .date {}

.article .view {}

.article .share {
    cursor: pointer;
}



.news-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-image img {
    width: 900px;
    max-width: 100%;
}

.news-content {
    padding: 25px;
    background: #fff;
}

.news-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}



.image-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.image-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 2px 10px;
    font-size: 14px;
    transition: .2s;
}

a:hover .overlay {
    background: var(--color1);
}

.footer {
    background: #fff;
    color: #333;
    font-size: 14px;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.footer-left {
    width: 30%;
    display: flex;
    gap: 20px;
}

.footer-left a {
    min-width: 68px;
}

.footer-left .copyright {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.footer-left img {
    width: 68px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-middle {
    width: 40%;
    text-align: center;
}

.footer-certifications {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
    margin-left: -10px;
}

.footer-middle nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    font-size: 16px;
    font-weight: bold;
}

.footer-middle .footer-certifications img {
    width: 140px;
    margin: 5px;
}

.footer-right {
    width: 20%;
}

.footer-right strong {
    font-size: 16px;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-right ul li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.footer-bottom ul {
    display: flex;
    gap: 30px;
    justify-content: center;
    padding: 20px 0;
}

.share-layer {
    position: absolute;
    z-index: 1000;
}

.share-layer .share-layer-inner {
    position: relative;
    left: 0;
    top: 10px;
    z-index: 2
}

.share-layer .share-layer-close {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
    right: -10px;
    top: -10px;
    background-color: #eee;
    color: #000;
    font-size: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 3px;
    display: none
}

.share-layer .share-layer-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-width: 0 8px 13px;
    border-style: solid dashed;
    border-color: #fff transparent
}

.share-layer .share-layer-arrow.em-1 {
    top: -12px;
    border-color: #e9e9e9 transparent
}

.share-layer .share-list {
    padding: 0 7px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .3);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .3)
}

.share-layer .share-list li {
    display: inline-block;
    padding: 16px 15px
}

.share-layer .share-list .evIcon {
    font-size: 47px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 100px;
    filter: saturate(130%);
}

.share-layer .share-list b.icon-name {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #555;
    padding-top: 8px;
    text-align: center
}

.share-layer .evIcon-weibo-3 {
    color: #ff5a5a
}

.share-layer .evIcon-wechat-1 {
    color: #00c930
}

.share-layer .evIcon-qq-9 {
    color: #0eb5f7
}

.share-layer .evIcon-qzone-1 {
    color: #ffd152
}

.share-layer .evIcon-baidu-3 {
    color: #0eb5f7
}

.share-layer .evIcon-douban-2 {
    color: #10c995
}

.share-list {}

.share-list li {}

.share-list li em {
    background: no-repeat center/auto 23px;
    width: 46px;
    height: 46px;
    display: block;
}

.share-layer .share-list .weibo-li em {
    background-color: #ec6660;
    background-image: url(../images/weibo.png);
}

.share-layer .share-list .wechat-li {
    position: relative;
}

.share-layer .share-list .wechat-li em {
    background-color: #5bc64a;
    background-image: url(../images/wechat.png);
}

.share-layer .share-list .qq-li em {
    background-color: #53b2f1;
    background-image: url(../images/qq.png);
}

.share-layer .share-list .qzone-li em {
    background-color: #f8d369;
    background-image: url(../images/QQzone.png);
}

.share-layer .share-list .baidu-li em {
    background-color: #53b2f1;
    background-image: url(../images/baidu.png);
}

.share-layer .share-list .douban-li em {
    background-color: #5cc698;
    background-image: url(../images/douban.png);
}

.share-layer .twoCode {
    position: absolute;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    top: -140px;
    font-size: 12px;
    text-align: center;
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 10px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.page-item,
.page-num {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
    background: #fff;
}

.page-num-current {
    background-color: var(--color1);
    color: white;
    font-weight: bold;
    border: none;
}



.page-item:hover,
.page-num:hover {
    background-color: var(--color1);
    color: #fff;
    border-color: var(--color1);
}



.page-item.disabled {
    color: #aaa;
    pointer-events: none;
}



.page-num:nth-last-child(3) {
}

.article_content {
    background: #fff;
    padding: 30px 20px;
}

.article_content .articletitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    line-height: 1.7;
}

.article_content .remark {
    padding: 0 20px 0;
}

.article_content .remark * {
    line-height: 1.8;
}

.article_content .remark img {}

.article_content .remark img.imgcenter {
    margin: 10px auto 30px;
}

.article_content .articleinfo {
    text-align: center;
}

.article_content .article-metas {
    justify-content: center;
    padding: 25px 0 10px;
    margin: 25px auto;
    border-top: 1px dashed #ddd;
}

.article_content .article-metas * {
    color: #333 !important;
}

.ft.article-metas i {
    color: #999;
    font-size: 13px;
    font-style: normal;
}

.ft.article-metas .share i {
    cursor: pointer;
}

.ft.article-metas .share i:hover {
    color: var(--color1) !important;
}

.articlenav {}

.articlenav p {}

.articlenav span {}

.articlenav a {}

.articlenav * {
    font-size: 14px;
}

.articlenav .newspn {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px auto 10px;
    display: flex;
    justify-content: space-between;
}

.profiles .section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 0;
    gap: 60px;
}

.profiles .section {
    background-color: #fff;
}

.profiles .section:nth-child(even) {
    background-color: #f5f5f5;
}

.profiles .section:nth-child(even) .container {
    flex-direction: row-reverse;
}



.profiles .text {
}

.profiles .text * {
    text-wrap-mode: wrap !important;
    !i;
    !;
    line-height: 2.3;
}

.profiles .info {
    font-size: 16px;
}

.profiles .title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
}

.profiles .title:after {
    content: "";
    display: block;
    height: 3px;
    background: var(--color1);
    width: 2em;
}

.profiles .description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}





.profiles .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 0;
}

.profiles .text {
    flex: 1;
    min-width: 300px;
}

.profiles .image {
    flex-shrink: 0;
    width: auto;
    max-width: 45%;
}

.profiles .image img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.kwttl {
    padding: 10px 0 20px 15px;
    font-size: 17px;
}

.kwttl strong {
    color: var(--color1);
}

.editor_content_air .imgwrapper {
    text-align: center;
    padding: 20px 0;
}

.editor_content_air .imgwrapper img {
    display: inline-block;
}


.promo-box {
            position: fixed;
            bottom: -270px; /* åˆå§‹ä½ç½®åœ¨å±å¹•ä¸‹æ–¹ */
            right: 20px;
            width: 250px;
            height: auto;
            transition: bottom 0.5s ease-in-out; /* å¹³æ»‘è¿‡æ¸¡æ•ˆæžœ */
            z-index: 1000; /* ç¡®ä¿åœ¨æœ€ä¸Šå±‚ */
        }

        .promo-box img {
            width: 100%;
            height: auto;
            border-radius: 8px; /* å›¾ç‰‡åœ†è§’ */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* é˜´å½±æ•ˆæžœ */
        }

        .promo-box:hover {
            cursor: pointer; /* é¼ æ ‡æ‚¬åœæ—¶æ˜¾ç¤ºæ‰‹åž‹ */
        }
        
        
        