@charset "utf-8";

.home-message-container {
    width: 45%;
    max-width: 600px;
    min-width: 320px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    overflow: hidden;
    margin: 10px auto
}

.home-message-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #2ecc71)
}

.home-message-container h3 {
    font-size: 32px;
    color: #8bb7ff;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px
}

.home-message-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db
}

.home-message-container>p {
    text-align: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6
}

form {
    display: flex;
    flex-direction: column
}

.form_l,
.form_r {
    flex: 1;
    min-width: 300px
}

.btnGroup ul,
.form_l ul {
    list-style: none
}

.form_l li {
    margin-bottom: 20px
}

.input1,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: all .3s ease;
    background-color: rgba(255, 255, 255, .9)
}

.input1:focus,
textarea:focus {
    outline: 0;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, .2);
    background-color: #fff
}

textarea {
    height: 180px;
    resize: vertical;
    font-family: inherit
}

.btnGroup {
    margin-top: 20px
}

input[type=submit] {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all .3s ease;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px
}

input[type=submit]:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(52, 152, 219, .4)
}

input[type=submit]:active {
    transform: translateY(0)
}

@media (max-width:768px) {
    .home-message-container {
        padding: 25px
    }

    form {
        flex-direction: column;
        gap: 20px
    }

    .form_l,
    .form_r {
        min-width: 100%
    }

    .home-message-container h3 {
        font-size: 26px
    }
}

@media (max-width:480px) {
    .home-message-container {
        padding: 20px 15px
    }

    .home-message-container h3 {
        font-size: 22px
    }

    .input1,
    textarea {
        padding: 12px
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.home-message-container {
    animation: fadeIn .8s ease-out
}

.honor-container {
    max-width: 85%;
    margin: 50px auto;
    padding: 0 20px
}

.honor-container-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd
}

.honor-title {
    font-size: 32px;
    font-weight: 700;
    color: #005ea6;
    margin: 0
}

.honor-container-head span {
    font-size: 16px;
    color: #666;
    margin-bottom: 4px
}

.medal-area {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    height: 220px
}

.medal-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite
}

.medal-img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    transition: transform .3s ease, box-shadow .3s ease;
    margin-right: 20px
}

.medal-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .15)
}

.medal-area:hover .medal-track {
    animation-play-state: paused
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-220px * 6))
    }
}

.honor-grid {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 35px;
    justify-content: center
}

.honor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .05);
    background-image: url(/skin/images/yueguiye.png);
    background-repeat: no-repeat;
    width: 320px;
    height: 180px;
    background-position: -2px 1px;
    background-size: 320px;
    transition: transform .3s ease, box-shadow .3s ease
}

.honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .1)
}

.honor-item ul {
    list-style: none;
    text-align: center;
    margin-top: 18px;
    width: 70%;
    padding: 0
}

.year {
    font-size: 20px;
    font-weight: 700;
    color: #005ea6;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #005ea6
}

.award {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
    max-width: 280px
}

@media (max-width:992px) {
    .honor-item {
        margin: 20px auto
    }

    .honor-container-body {
        flex-direction: column
    }

    .honor-grid,
    .medal-area {
        width: 100%
    }
}

@media (max-width:768px) {
    .honor-container-head {
        flex-direction: column;
        align-items: flex-start
    }

    .honor-container-head span {
        margin-top: 5px;
        margin-bottom: 0
    }

    .medal-img {
        margin-right: 15px
    }
}

@media (max-width:576px) {
    .award {
        font-size: 15px
    }
}

:root {
    --slide-width: 280px;
    --slide-height: 200px;
    --slide-margin: 10px;
    --slide-total: 6
}

.about-us-cangku {
    padding: 40px 20px 60px;
    background: linear-gradient(135deg, #f9f9f9 0, #fff 100%);
    position: relative
}

.about-us-cangku-title {
    text-align: center;
    margin-bottom: 20px
}

.honor-title {
    font-size: 36px;
    color: #0e5eb5;
    margin-bottom: 10px;
    position: relative;
    display: inline-block
}

.honor-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #0e5eb5
}

.honor-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px
}

.warehouse-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin: 0 -10px;
    padding: 20px 10px
}

.warehouse-slider-track {
    display: flex;
    width: auto;
    animation: scroll calc(30s / var(--slide-speed, 1)) linear infinite
}

.warehouse-slider-track:hover {
    animation-play-state: paused
}

.warehouse-slide {
    width: var(--slide-width);
    height: var(--slide-height);
    margin: 0 var(--slide-margin);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    flex-shrink: 0
}

.warehouse-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15)
}

.warehouse-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

@keyframes scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(calc(-1 * (var(--slide-width) + 2 * var(--slide-margin)) * var(--slide-total)))
    }
}

.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 9999;
    overflow-y: auto;
    padding: 20px 0;
    opacity: 0;
    transition: opacity .3s ease
}

.image-modal.active {
    display: block;
    opacity: 1
}

.modal-center {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    padding: 20px
}

.modal-content {
    max-width: 95vw;
    max-height: 90vh;
    position: relative;
    margin: 0 auto
}

.modal-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .5);
    object-fit: contain
}

.close-modal {
    position: absolute;
    top: -15px;
    right: -15px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, .8);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    z-index: 10;
    transform: translate(0, 0)
}

.close-modal:hover {
    background: rgba(255, 255, 255, .2);
    transform: rotate(90deg) translate(0, 0)
}

@media (max-width:1200px) {
    :root {
        --slide-width: 250px;
        --slide-height: 180px
    }
}

@media (max-width:992px) {
    .about-us-cangku {
        padding: 40px 15px
    }

    .honor-title {
        font-size: 30px
    }

    :root {
        --slide-width: 220px;
        --slide-height: 160px
    }
}

@media (max-width:768px) {
    .about-us-cangku {
        padding: 30px 10px
    }

    .honor-title {
        font-size: 26px
    }

    .honor-subtitle {
        font-size: 14px
    }

    :root {
        --slide-width: 180px;
        --slide-height: 130px;
        --slide-margin: 8px;
        --slide-speed: 0.8
    }
}

@media (max-width:576px) {
    :root {
        --slide-width: 150px;
        --slide-height: 110px;
        --slide-margin: 6px;
        --slide-speed: 0.7
    }

    .close-modal {
        width: 30px;
        height: 30px;
        font-size: 24px
    }
}

@media (max-width:375px) {
    :root {
        --slide-width: 130px;
        --slide-height: 90px
    }
}

/* 底部css */
.footer_follow_us {
    display: flex;
    margin-bottom: 20px;
}

.footer_follow_us img {
    width: 150px;
    height: 150px;
    margin-right: 10px;
}

.footer_follow_us span {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

/* 右下角悬浮窗 */
.float-service-panel {
    position: fixed;
    right: 20px;
    bottom: 10px;
    width: 280px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    display: block;
}

.panel-header {
    position: relative;
    text-align: center;
    margin-top: -37px;
    z-index: 1;
}

.panel-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: #032a4d 1px solid;
}

.panel-close {
    position: absolute;
    right: 16px;
    top: 12px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    color: #999;
    z-index: 10;
    transition: color 0.2s;
}

.panel-close:hover {
    color: #ff4444;
}

.panel-content {
    padding: 20px 16px;
    text-align: center;
    font-size: 14px;
    color: #141414;
}

.panel-btn {
    padding: 0 16px 16px;
}

.service-btn {
    display: block;
    width: 80%;
    height: 40px;
    line-height: 40px;
    background: #032a4d;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin: 0 auto;
    transition: background 0.2s;
}

.service-btn:hover {
    background: #043b6b;
}

/* 右边悬浮窗 */
.back-top-container {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    background: transparent;
    border-radius: 15%;
}

.back-top-container:hover {
    top: 40%;
}

.yb_bar ul {
    position: relative;
}


.yb_bar li {
    position: relative;
    width: 53px;
    height: 53px;
    line-height: 53px;
    padding: 0 5px;
    margin: 2px 0;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0071bc;
    border-bottom: 1px solid transparent;
    border-radius: 5%;
}

.yb_bar li span {
    color: #eee;
    position: absolute;
    left: 52px;
}


.yb-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    flex-shrink: 0;
}

.yb-content {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 5px;
    color: #333;
    transition: width 0.3s ease;
}

.back-top-container:hover .yb_bar li {
    width: 160px;
    justify-content: flex-start;
    padding-left: 10px;
}

.back-top-container:hover .yb-content {
    width: 135px;
}

.yb_top {
    visibility: hidden;
    height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    margin: 1px 0;
    position: relative;
}


.yb_top.show {
    visibility: visible;
    height: 50px;
    opacity: 1;
}


.yb_bar li a {
    color: #eee;
    text-decoration: none;
}

li.yb_wxcord {
    position: absolute;
    display: none;
    width: 150px;
    height: 150px;
    background: #0071bc;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin: 0px;
}

li.yb_ercode {
    margin: 1px 0 0 0;
}


.yb_bar ul:hover .yb_wxcord,
.yb_wxcord:hover {
    display: block;
    transition: all 0.3s ease-in-out;
    padding-left: 0px;
}

.yb_bar ul:hover .yb_ercode,
.yb_ercode:hover {
    border-radius: 5% 5% 0 0;
}

.hd_qr {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yb_bar .yb_zixun {
    width: 53px;
    height: 66px;
}

.yb_zixun_img {
    width: 53px;
    height: 66px;
    object-fit: cover;
}

.yb_bar ul:hover .yb_zixun_img {
    margin-left: -10px;
}

/* 友情链接 */
.links-container {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    flex-wrap: nowrap;
    padding: 20px 90px;
    background-color: #acbfcf;
}

.links a {
    text-decoration: none;
    color: #fff;
    transition: color .3s ease;
    padding: 3px;
}

.links a:hover {
    color: #0e5eb5
}

@media (max-width:1580px) {
    .links-container {
        padding: 20px 30px;
    }
}

/*企业文化*/
.cube h4 {
    background: linear-gradient(180deg,
            #fff176,

            #ffb74d,

            #8b4513);
    background-clip: text;
    color: transparent;
    font-size: 30px;
    font-weight: 700;
    padding: 20px 0;
}

/* 父容器：Flex 布局实现两列 */
.culture-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cube {
    flex: 0 0 calc(50% - 10px);
    padding: 20px;
}

.yi-culture img,
.xiao-culture img {
    margin: 75px auto;
}

.cube .culture-content {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.cube .culture-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .cube {
        flex: 0 0 100%;
    }
}

        /* 企业文化主卡片容器 */
        .supply-chain-card {
            display: flex;
            align-items: stretch;
            background-color: #0e5eb5;
            max-width: 1300px;
            margin: 3rem auto;
            border-radius: 12px;
            overflow: hidden;
        }

        /* 左侧区域（图片+文字） */
        .card-left {
            flex: 0.9;
            position: relative;
        }

        .card-left .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-right-radius: 60px;
            border-bottom-right-radius: 60px;
        }

        .card-left .card-title {
            position: absolute;
            top: 30px;
            left: 40px;
            color: #0e5eb5;
            font-size: 35px;
            font-weight: bold;
        }

        .card-left .card-subtitle {
            position: absolute;
            top: 110px;
            left: 40px;
            color: #8b8b8b;
            font-size: 21px;
            opacity: 0.9;
            /* 轻微透明 */
        }

        /* 右侧区域（标题+系统截图） */
        .card-right {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .system-title {
            color: #fff;
            font-size: 24px;
            font-weight: bold;
        }

        .system-subtitle {
            color: #fff;
            font-size: 16px;
            opacity: 0.9;
        }

        .system-img {
            width: 100%;
            border-radius: 8px;
            object-fit: contain;
        }

        /* ========== 响应式适配（768px 以下） ========== */
        @media (max-width: 768px) {
            .supply-chain-card {
                flex-direction: column;
                margin: 1rem;
                /* 移动端减少上下/左右间距 */
                max-width: calc(100% - 2rem);
                /* 适配屏幕宽度 */
            }

            /* 左侧区域调整 */
            .card-left {
                flex: none;
                /* 取消弹性占比，自适应高度 */
                height: 250px;
                /* 移动端固定左侧图片高度 */
            }

            .card-left .card-img {
                /* 移动端取消左右弧形，改为上下弧形（与下方蓝色区域融合） */
                border-top-right-radius: 0;
                border-bottom-right-radius: 60px;
                border-bottom-left-radius: 60px;
            }

            /* 左侧文字适配移动端（缩小字体、调整位置） */
            .card-left .card-title {
                top: 20px;
                left: 20px;
                font-size: 20px;
            }

            .card-left .card-subtitle {
                top: 65px;
                left: 20px;
                font-size: 14px;
            }

            /* 右侧区域适配 */
            .card-right {
                flex: none;
                padding: 30px 20px;
                /* 减少内边距 */
                gap: 15px;
                /* 缩小标题与截图间距 */
            }

            .system-title {
                font-size: 20px;
            }

            .system-subtitle {
                font-size: 14px;
            }
        }

        /* 额外适配小屏手机（480px 以下） */
        @media (max-width: 480px) {
            .card-left {
                height: 200px;
                /* 更小的图片高度 */
            }

            .card-right {
                padding: 20px 15px;
            }
        }

        .item {
            color: #fff;
            margin: 10px 0 20px 0;
            font-size:16px;
        }

        .item h3 {
            margin-bottom: 8px;
            font-size: 18px;
            font-weight: 600;
        }