* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100px;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-content {
    position: relative;
    padding: 0 15px;
    display: none;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
    color: #e53935;
    font-weight: bold;
    flex-shrink: 0;
}

.header-text h1 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.header-text p {
    font-size: 12px;
    opacity: 0.9;
}

/* Function Grid */
.function-grid {
    background: white;
    padding: 20px 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.function-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.function-item a{
    color: #333333;
}

.function-item:active {
    transform: scale(0.95);
}

.function-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    overflow: hidden;
    background: url('../images/icon-bg.png') no-repeat center;
    background-size: cover;
    padding: 8px;
}

.function-qxs{
    width: 50px;
    height: 50px;
    margin: 0 auto 5px;
    border: 3px solid #1e88e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    padding: 8px;
}

.function-qxs img{
    width: 34px;
    height: 34px;
}

.function-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.function-icon.icon-larger img {
    width: 100%;
    height: 100%;
}

.function-item span {
    display: block;
    font-size: 13px;
    color: #333;
}

/* Search Bar */
.search-container {
    padding: 0 15px 15px;
    background: white;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    padding: 0 60px 0 15px;
    font-size: 14px;
    background: #f8f8f8;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 28px;
    border: none;
    background: #1e88e5;
    color: white;
    border-radius: 14px;
    font-size: 13px;
    cursor: pointer;
}

/* Notice Bar */
.notice-bar {
    margin: 10px 15px;
    display: flex;
    align-items: stretch;
    height: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.notice-header {
    background: #e53935;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-radius: 8px !important;
    box-sizing: border-box;
}

.notice-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    flex-shrink: 0;
}

.notice-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.notice-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.notice-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 0 10px;
    background: white;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0 8px 8px 0;
}

.notice-scroll {
    animation: scroll-continuous 15s linear infinite;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.notice-item {
    font-size: 13px;
    color: #666;
    line-height: 22px;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-shrink: 0;
}

.notice-item a{
    color: #666666;
}

@keyframes scroll-continuous {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Carousel */
.carousel-container {
    margin: 0 15px 15px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 180px;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.carousel-slide a,.carousel-slide img,.carousel-slide a img{
    width: 100%;
}

.carousel-slide:nth-child(1) {
    background: linear-gradient(135deg, #e53935 0%, #ef5350 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    /*padding: 20px;*/
}

.carousel-slide:nth-child(2) {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.carousel-slide:nth-child(3) {
    background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: white;
    width: 16px;
    border-radius: 3px;
}

/* Section with Tabs */
.section {
    margin: 0 15px 15px;
    background: white;
    border-radius: 8px;
    padding: 15px;
}

.tabs-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: none;
    margin-bottom: 0;
    padding: 0 10px 10px;
}

.tab-item {
    padding: 10px 0 0;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.tab-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.tab-item-content {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tab-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.tab-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s;
}

.tab-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

.tab-item.active .tab-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(3011%) hue-rotate(346deg) brightness(91%) contrast(88%);
}

.tab-item.active .tab-title {
    color: #e53935;
    font-weight: 600;
}

.tab-divider {
    height: 3px;
    margin: 0;
    width: fit-content;
    min-width: 100px;
    position: relative;
    display: flex;
}

.tab-divider::before,
.tab-divider::after {
    content: '';
    height: 100%;
    flex: 1;
}

.tab-divider::before {
    background: #e53935;
    clip-path: polygon(0 0, calc(100% - 2px) 0, 100% 100%, 0 100%);
}

.tab-divider::after {
    background: #1e88e5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2px 100%);
}

.tab-item.active .tab-divider {
    display: flex;
}

.tab-item.active .tab-divider::before {
    background: #e53935;
}

.tab-item.active .tab-divider::after {
    background: #1e88e5;
}

.tab-item .tab-divider {
    display: flex;
}

.tab-item .tab-divider::before {
    background: #999;
}

.tab-item .tab-divider::after {
    background: #666;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.news-list {
    list-style: none;
}

.news-item {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.news-item a{
    color: #666;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item::before {
    content: '•';
    color: #e53935;
    margin-right: 8px;
    font-weight: bold;
}

.news-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Gallery Section */
.gallery-section {
    margin: 0 15px 15px;
    background: white;
    border-radius: 8px;
    padding: 15px;
}

.section-header-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-left: 10px;
    gap: 8px;
}

.section-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.section-header {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0;
    margin-left: 10px;
}

.section-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.section-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #e53935;
}

.section-divider {
    height: 3px;
    margin: 0;
    width: fit-content;
    min-width: 140px;
    position: relative;
    display: flex;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 100%;
    flex: 1;
}

.section-divider::before {
    background: #e53935;
    clip-path: polygon(0 0, calc(100% - 2px) 0, 100% 100%, 0 100%);
}

.section-divider::after {
    background: #1e88e5;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 2px 100%);
}

.gallery-carousel {
    position: relative;
    height: 90px;
    overflow: hidden;
    border-radius: 0;
    margin-top: 12px;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.7);
    color: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.gallery-arrow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.gallery-arrow:active {
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
}

.gallery-arrow-left {
    left: 5px;
}

.gallery-arrow-right {
    right: 5px;
}

.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(9, calc((100vw - 60px - 16px) / 3));
    grid-gap: 8px;
    transition: transform 0.5s ease;
    height: 100%;
    width: fit-content;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    background: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.gallery-item {
    position: relative;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    width: calc((100vw - 60px - 16px) / 3);
    flex-shrink: 0;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-content {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    position: relative;
    overflow: hidden;
}

.gallery-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-caption {
    position: relative;
    text-align: center;
    color: #999;
    padding: 3px 5px;
    font-size: 12px;
    background: white;
    width: 100%;
    border-top: 1px solid #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Services Section */
.services-section {
    margin: 0 15px 15px;
    background: white;
    border-radius: 8px;
    padding: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.service-item {
    background: url('../images/bmcx_bg.png') no-repeat center;
    background-size: cover;
    color: white;
    padding: 8px 0px;
    border-radius: 6px;
    text-align: center;
    font-size: 10px;
    cursor: pointer;
    transition: transform 0.2s;
    min-height: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    /*white-space: nowrap;*/
    overflow: hidden;
    position: relative;
}

.service-item-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.service-item-content .service-icon {
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.service-item-content span {
    width: 100%;
    text-align: center;
    padding: 0 10px 0 25px;
}

.service-item-content span a{
    color: white;
}

.service-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-item:active {
    transform: scale(0.95);
}

/* Links Section */
.links-section {
    margin: 0 15px 15px;
    background: white;
    border-radius: 8px;
    padding: 15px;
}

.links-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 12px;
    padding: 0 10px;
    justify-content: space-evenly;
}

.links-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e88e5 0%, #42a5f5 100%);
    padding: 20px 15px;
    margin-top: 20px;
    color: white;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    padding-bottom: 8px;
    border-bottom: 1px solid white;
    text-align: center;
    display: inline-block;
    width: auto;
}

.footer-title-wrapper {
    text-align: center;
}

.qr-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
    margin-top: 15px;
}

.qr-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.qr-label {
    font-size: 11px;
    color: white;
    margin-bottom: 8px;
    order: -1;
}

.qr-code {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #999;
    overflow: hidden;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-info {
    padding: 0 15px;
    text-align: center;
}

.footer-contact-title {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid white;
    text-align: center;
    display: inline-block;
    width: auto;
}

.footer-copyright {
    font-size: 11px;
    color: white;
    margin-top: 10px;
    text-align: center;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
}

.footer-address {
    font-size: 11px;
    color: white;
    line-height: 1.8;
    margin-top: 8px;
    text-align: center;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 8px;
    font-size: 11px;
    color: white;
    align-items: center;
}

.footer-contact div {
    white-space: nowrap;
}

/* Responsive Design */
@media (min-width: 480px) {
    .header {
        height: 120px;
    }

    .function-grid {
        gap: 20px;
        padding: 25px 20px;
    }

    .function-icon {
        width: 60px;
        height: 60px;
    }

    .function-item span {
        font-size: 14px;
    }

    .carousel-container {
        height: 200px;
    }

    .gallery-carousel {
        height: 110px;
    }

    .service-item {
        font-size: 11px;
        min-height: 45px;
    }
}

@media (min-width: 768px) {
    body {
        background: #f5f5f5;
    }

    .header {
        height: 150px;
    }

    .function-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 100%;
        padding: 30px 20px;
    }

    .function-icon {
        width: 70px;
        height: 70px;
    }

    .function-item span {
        font-size: 15px;
    }

    .search-container,
    .notice-bar,
    .carousel-container,
    .section,
    .gallery-section,
    .services-section,
    .links-section {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-container {
        height: 250px;
    }

    .gallery-carousel {
        height: 140px;
    }

    .service-item {
        font-size: 12px;
        min-height: 50px;
    }

    .footer {
        padding: 30px 20px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1024px) {
    body {
        max-width: 1200px;
        margin: 0 auto;
        background: #f5f5f5;
    }

    .header {
        height: 180px;
    }

    .function-grid {
        max-width: 1000px;
        margin: 0 auto;
        padding: 40px 30px;
        gap: 30px;
    }

    .function-icon {
        width: 80px;
        height: 80px;
    }

    .search-container,
    .notice-bar,
    .carousel-container,
    .section,
    .gallery-section,
    .services-section,
    .links-section {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }

    .carousel-container {
        height: 300px;
    }

    .gallery-carousel {
        height: 180px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-item {
        font-size: 13px;
        min-height: 55px;
        padding: 10px 5px;
    }

    .footer {
        padding: 40px 30px;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 1440px) {
    body {
        max-width: 1400px;
    }

    .header {
        height: 200px;
    }

    .function-grid {
        max-width: 1200px;
        padding: 50px 40px;
        gap: 35px;
    }

    .function-icon {
        width: 90px;
        height: 90px;
    }

    .function-item span {
        font-size: 16px;
    }

    .search-container,
    .notice-bar,
    .carousel-container,
    .section,
    .gallery-section,
    .services-section,
    .links-section {
        max-width: 1200px;
    }

    .carousel-container {
        height: 350px;
    }

    .gallery-carousel {
        height: 220px;
    }

    .service-item {
        font-size: 14px;
        min-height: 60px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
    }
}

/* Touch interaction */
.carousel-container, .gallery-carousel {
    touch-action: pan-y;
}

/* Modal for QR Code */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 300px;
}

.modal-close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.modal-qr {
    width: 200px;
    height: 200px;
    margin: 20px auto;
}

.modal-qr img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

/* list */

.list_title{
    width: 100%;
    height: 64px;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.qxs-bar{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ffa059;
}

.qxs-bar img{
    width: 30px !important;
    height: 30px !important;
    margin: 2px;
}

.list_title img{
    width: 20px;
    height: 20px;
}

.list_content{
    margin: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.list_content .list_items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
    font-size: 14px;
}

.list_content .list_items a{
    color: #c72226;
}

.on {

    background: #c72226 !important;
}

.on a{
    color: #ffffff !important;
}

.list_item{
    padding: 8px 5px;
    text-align: center;
    background: #f7f7f7;
    border-radius: 10px;
}

.list_body{
    margin-top: 20px;
    min-height: 200px;
}

.list_body_item{
    padding: 10px 6px;
    font-size: 14px;
}

.item_text{
    flex: 1;
    line-height: 22px;
}

/* 点击按钮 */
.nav-btn {
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 20px;
}

/* 打开按钮 固定定位 */
.open-btn {

}

/* 导航 固定定位 */
.nav-left {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    /* 通过移动隐藏 三层导航*/
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

/* visible 不隐藏 通过js控制 */
.nav-left.visible {
    transform: translateX(0);
}

/* 第一层背景 */
.nav-black {
    background-color: #c72226;
    max-width: 360px;
    min-width: 300px;
    transition-delay: 0.4s;
}

.nav-black.visible {
    transition-delay: 0s;
}

/* 第二层背景 */
.nav-red {
    background-color: #1e88e5;
    width: 98%;
    transition-delay: 0.2s;
}

.nav-red.visible {
    transition-delay: 0.2s;
}

/* 第三层背景 */
.nav-white {
    background-color: #fff;
    width: 98%;
    padding: 40px;
    position: relative;
    transition-delay: 0s;
}

.nav-white.visible {
    transition-delay: 0.4s;
}

/* 关闭按钮 */
.close-btn {
    opacity: 0.3;
    position: absolute;
    top: 26px;
    right: 20px;
}

.close-btn img{
    width: 25px;
    height: 25px;
}

/* 导航列表 */
.list-nav {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.list-nav li {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #1e88e5;
    padding: 10px 10px;
    border-radius: 10px;
    margin: 5px 0;
    text-align: center;
}

.list-nav li a {
    color: #c72226;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
}

.article{
    min-height: 200px;
    margin: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
}

.article_title{
    font-size: 0.85em;
    color: #666666;
    line-height: 1.4;
    font-weight: 600;
}

.article_author{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65em;
    color: #666666;
    margin-top: 0.7em;
    /*padding: 0 0.5em;*/
}

.author{
    flex: 1;
    line-height: 1.4;
}

.time{
    width: 6.5em;
    text-align: right;
}

.article_body{
    margin-top: 1em;
}

.article_body p{
    font-size: 0.7em;
    line-height: 1.4;
    color: #666666;
}

.article_body p img{
    max-width: 580px !important;
    width: 100% !important;
    height: auto !important;
    display: block;
}

.article_office{
    padding: 0 0.5em;
    font-size: 0.7em;
    text-align: right;
    margin-top: 1em;
    color: #666666;
    font-weight: 600;
    margin-bottom: 2em;
}

/* 泉小社 */


.ask_content{
    min-height: 580px;
    box-sizing: border-box;
    background-image: linear-gradient(234deg, #cadfff66 17.6%, #cadfff00 56.01%);
    margin: 0 auto 10px;
}

.ask_main{
    height: 580px;
    display: flex;
    width: 100%;
    flex: 1 1 0px;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    flex-direction: column;
    position: relative;
}

.ask_title{
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    min-height: 51px;
    box-sizing: border-box;
    overflow: hidden;
}

.ask_title_start{
    display: flex;
    flex: 1 1 0px;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.ask_title_head{
    font-size: 16px;
    font-weight: 600;
    color: rgba(0,0,0,.9);
    text-decoration: none;
}

.ask_title_sub{
    font-size: 12px;
    margin-left: 12px;
    color: rgba(0,0,0,.7);
    overflow: hidden;
    text-overflow: ellipsis;
}

.ask_body{
    height: 100%;
    padding: 10px 20px 35px;
    overflow: auto;
    /*position: relative;*/
    display: inline-block;
    vertical-align: top;
    z-index: 100;
}

.ask_left{
    padding: 24px;
    border-radius: 4px;
    box-shadow: 0 12px 48px -12px #0000000d;
    position: relative;
    border: 2px solid #fff;
    background-image: url(/static/images/ask-bg.png);
    background-position: right top;
    background-size: 360px 230px;
    background-repeat: no-repeat;
    max-width: 960px;
    width: 100%;

}

.ask_left::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-color: #fff;
    background-image: url(/static/images/ask-big.png);
}

.ask_header{
    margin-bottom: 16px;
}

.ask_header p{
    font-size: 14px;
    color: rgba(0,0,0,.7);
}

.ask_hot{
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ask_hot h4{
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,.7);
}

.ask_hot_list{
    display: flex;
    flex-wrap: wrap;
    gap: 4px 0;
}

.ask_hot_item{
    width: 50%;
    padding: 4px 0;
    cursor: pointer;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    font-size: 14px;
    color: #000000 !important;
}

.ask_hot_item_icon{
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #E6E7E8;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ask_hot_item_icon img{
    width: 12px;
    height: 12px;
}

.ask_hot_item_text{
    flex: 1 1 0px;
    /*overflow: hidden;*/
    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.ask_service{
    border-top: 1px solid #E1E4E9;
    padding-top: 16px;
    margin-top: 16px;
}

.ask_service_header{
    margin-bottom: 16px;
}

.ask_service_header h4{
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,.7);
}

.ask_service_body{
    overflow: hidden;
    position: relative;
}

.ask_service_list{
    gap: 4px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ask_service_item{
    /*width: 120px;*/
    height: 76px;
    flex: 0 0 auto;
    background-color: #f5f7fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.ask_service_item:hover{
    background-color: #e9ecf1;
}

.ask_service_item span{
    display: inline-block;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.ask_service_item img{
    display: block;
    max-width: 100%;
    height: auto;
    filter: none !important;
    width: 24px;
}

.ask-message-item{
    margin-top: 20px;
}

.ask-message-item--own{
    direction: rtl;
}

.ask-message-item-inner {
    box-sizing: border-box;
    max-width: 80%;
    width: 100%;
}

.ask-message-item--own .ask-message__body {
    direction: ltr;
    text-align: left;
    word-break: break-all;
}

.ask-message__body {
    max-width: 100%;
    position: relative;
    display: inline-block;
    vertical-align: top;
}

.ask-message-item--own .ask-message__content.style-base {
    background-color: #0052d9;
    border-radius: 6px 0 6px 6px;
    color: #fff;
    padding-top: 7px;
    padding-bottom: 7px;
}

.ask-message__content.style-base {
    border: 1px solid #E6E9EF;
    background-color: #fff;
    border-radius: 0 4px 4px;
    box-shadow: 0 12px 35px -12px #00000014;
    padding: 16px 20px;
    overflow: hidden;
}

.ask-message__content {
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    padding: 20px;
    word-wrap: break-word;
}

.ask-message-item__header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.ask-message__avatar {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ask-message-item__title {
    display: block;
    margin-right: 16px;
    font-size: 12px;
    font-weight: 500;
}

.ask-icon-32 {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-image: url(/static/images/ask-icon.png);
    display: inline-block;
    vertical-align: middle;
    background-size: 100% 100%;
    flex: 0 0 auto;
}

.ask-message__markdown {
    -webkit-font-smoothing: antialiased;
}

.ask-message__markdown .ask-message__content {
    border: 1px solid #E6E9EF;
    background-color: #fff;
    color: #000000;
    border-radius: 0 4px 4px;
    box-shadow: 0 12px 35px -12px #00000014;
    padding: 20px;
}

.ask_body::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: transparent;
    border-radius: 9px;
}

.ask_body:hover::-webkit-scrollbar-thumb {
    visibility: visible;
}

.ask_body::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0,0,0,.4);
}

.ask_body::-webkit-scrollbar-thumb {
    visibility: hidden;
    border: 0px solid transparent;
    background-color: #BBC2CC;
    border-radius: 0;
    background-clip: content-box;
}

.ask_loading{
    display: none;
}

.loader {
    width: 200px;
}

.loader::after {
    content: '';
    display: inline-block;
    vertical-align: bottom;
    animation: dots 1.5s steps(5, start) infinite; /* 定义动画 */
}

/* 泉小社悬浮 */
.qxz-bar {
    position: fixed;
    z-index: 99;
    right: 14px;
    top: calc(50% - 73px);
    /*height: 100%;*/
    display: table;
    width: 52px;
}

.qxz-bar-button {
    position: relative;
    width: 52px;
    /*height: 146px;*/
    box-sizing: border-box;
    border-radius: 26px;
    box-shadow: 8px 8px 20px 0 rgba(55, 99, 170, .1);
    border: 2px solid #fff;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    /*overflow: hidden;*/
    transition: all .3s ease-in-out;
    background: linear-gradient(180deg, #ff3b3b 0%, #ffa45a 100%);
    padding: 2px 2px 12px;
}

.qxz-bar-button .qxz-bar-icon {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 50%;
    background: #FFFFFF;

    position: absolute;
    top: -36px;
    border: 3px solid #ffa059;
    /*border: 3px solid transparent; !* 透明边框 *!*/
    /*background-clip: padding-box; !* 背景裁剪到内边距 *!*/
    /*background: linear-gradient(to right, #ff3b3b 0%, #d79767 100%);*/
}

.qxz-bar-button .qxz-bar-img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 2px;
}

.qxz-bar-button-desc {
    display: block;
    text-align: center;
    width: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 24px;
    margin-top: 26px;
}

/* 分页 */
.page_full{width:100%;margin: 0 auto;}
.pagination {display: inline-block;padding-left: 0;border-radius: 4px;margin: 20px auto 0;}
.pagination > li {display: inline;}
.pagination > li > a, .pagination > li > span {position: relative;float: left;padding: 6px 10px;margin-left: -1px;line-height: 1.42857143;color: #222222;text-decoration: none;background-color: #fff;border: 1px solid #EEEEEE;}
.pagination > li:first-child > a,.pagination > li:first-child > span {margin-left: 0;border-top-left-radius: 4px;border-bottom-left-radius: 4px;}
.pagination > li:last-child > a, .pagination > li:last-child > span {border-top-right-radius: 4px;border-bottom-right-radius: 4px;}
.pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus {z-index: 2;color:#027AD9;background-color: #F9F9F9;border-color: #EEEEEE;}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {z-index: 3;color: #FFFFFF;cursor: default;background-color: #027AD9;border-color: #027AD9;}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {color: #CCCCCC;cursor: not-allowed;background-color: #fff;border-color: #EEEEEE;}
