﻿.indexcss {
}

    .indexcss .inban {
        position: relative;
        width: 100%;
        height: calc(100vh - 80px);
        overflow: hidden;
    }

        .indexcss .inban .banholder {
            position: absolute;
            left: 0px;
            top: 0px;
            right: 0px;
            bottom: 0px;
            z-index: 1;
            color: #FFF;
            display: flex;
            align-items: center;
        }

.banstr {
    width: 800px;
    margin: 0 auto;
}

.indexcss .inban h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.indexcss .inban p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.indexcss .inban a {
    display: block;
    width: 120px;
    background: #E65100;
    color: #fff;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

    .indexcss .inban a:hover {
        background: #eb5b25;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
    }
/* Canvas层级放在banner图片底部 */
.indexcss .inban .water-wave-canvas {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 120px; /* 波纹高度，可自行调整 */
    pointer-events: none; /* 不遮挡点击、鼠标悬浮 */
}

.indexcss .inban img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.indexcss .incatmain {
    padding: 100px 0;
    background: #F5F9FC;
}

    .indexcss .incatmain .box-wrap {
        width: 1200px;
        margin: 0 auto;
        /****/
        display: grid;
        /* 固定2行等高 */
        grid-template-rows: 1fr 1fr;
        /* 6列均分：竖1、横1、竖2、横2、竖3、横3 */
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
        height: 300px;
    }

        .indexcss .incatmain .box-wrap a {
            display: grid;
            place-items: center;
            box-sizing: border-box;
            position: relative;
            /****/
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
            /****/
            transition: all 0.3s ease;
            text-decoration: none;
        }

            .indexcss .incatmain .box-wrap a img {
                display: block;
                width: 100%;
                height: 100%;
                /*object-fit: cover;*/
                object-position: center;
                /****/
                transition: transform 0.4s ease;
            }
            /* 悬浮整体上浮阴影 */
            .indexcss .incatmain .box-wrap a:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
            }
                /* 图片放大 */
                .indexcss .incatmain .box-wrap a:hover img {
                    transform: scale(1.08);
                }

    .indexcss .incatmain .item-title {
        position: absolute;
        z-index: 2;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        /****/
        line-height: 22px;
        text-align: center;
        display: flex;
        justify-content: center; /* 左右居中 */
        align-items: flex-end; /* 垂直靠底部 */
        /****/
        box-sizing: border-box;
        padding: 20px 10px;
        color: #FFF;
        font-weight: bold;
        /****/
        /* 文字过渡 */
        transition: transform 0.3s ease, color 0.3s ease, text-decoration 0.3s ease;
    }

    .indexcss .incatmain .item-bg {
        position: absolute;
        z-index: 1;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        background-color: #000;
        opacity: 0.3;
    }
    /* 遮罩加深 */
    .indexcss .incatmain .box-wrap a:hover .item-bg {
        opacity: 0.55;
    }
    /* 标题上浮+变色+下划线 */
    .indexcss .incatmain .box-wrap a:hover .item-title {
        transform: translateY(-6px);
        color: #ffd700; /* 金色高亮文字 */
        text-decoration: underline;
        text-underline-offset: 6px; /* 下划线距离文字间距 */
    }
    /* 竖版：跨两行 */
    .indexcss .incatmain .box-wrap a:nth-child(-n+3) {
        grid-row: span 2;
    }

    /* 手动指定每个竖卡片所在列 */
    .indexcss .incatmain .box-wrap a:nth-child(1) {
        grid-column: 1;
    }

    .indexcss .incatmain .box-wrap a:nth-child(2) {
        grid-column: 3;
    }

    .indexcss .incatmain .box-wrap a:nth-child(3) {
        grid-column: 5;
    }

    /* 横卡片列位置 */
    .indexcss .incatmain .box-wrap a:nth-child(4) {
        grid-column: 2;
        grid-row: 1;
    }

    .indexcss .incatmain .box-wrap a:nth-child(5) {
        grid-column: 4;
        grid-row: 1;
    }

    .indexcss .incatmain .box-wrap a:nth-child(6) {
        grid-column: 6;
        grid-row: 1;
    }

    .indexcss .incatmain .box-wrap a:nth-child(7) {
        grid-column: 2;
        grid-row: 2;
    }

    .indexcss .incatmain .box-wrap a:nth-child(8) {
        grid-column: 4;
        grid-row: 2;
    }

    .indexcss .incatmain .box-wrap a:nth-child(9) {
        grid-column: 6;
        grid-row: 2;
    }
    /****/
    .indexcss .incatmain .more-categories {
        margin: 20px auto;
        display: block;
        width: 200px;
        height: 50px;
        line-height: 50px;
        /****/
        text-align: center;
        background: #CCC;
        color: #333;
        font-size: 16px;
        font-weight: 500;
        border-radius: 4px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .indexcss .incatmain .more-categories:hover {
            background: #0F4C81;
            color: #FFF;
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
            transform: translateY(-2px);
        }
/************/
.indexcss .coxxmain {
    width: 1200px;
    margin: 100px auto;
}
    .indexcss .coxxmain .coxxflex {
        display: flex;
        justify-content: space-between;
    }

    .indexcss .coxxmain .coimg {
    }

        .indexcss .coxxmain .coimg img {
            display: block;
            width: 320px;
            border-radius:2px;
        }

    .indexcss .coxxmain .conr {
        flex: 1;
        margin-left: 50px;
    }

        .indexcss .coxxmain .conr p {
            font-size: 15px;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }
/*************/
.indexcss .lxusmain {
    background-color: #F5F9FC;
    padding: 100px 0;
}

    .indexcss .lxusmain .lxusholder {
        width: 1200px;
        margin: 0px auto;
    }

    .indexcss .lxusmain .lxflex {
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
    }

    .indexcss .lxusmain .lxxx {
        width: 575px;
    }

    .indexcss .lxusmain .xxnm {
        color: #0F4C81;
        margin-bottom: 25px;
        font-size: 22px;
        font-weight: bold;
    }

    .indexcss .lxusmain .xxul {
    }

    .indexcss .lxusmain .xxli {
        font-size: 15px;
        color: #555;
        margin-bottom: 25px;
    }

        .indexcss .lxusmain .xxli span {
            font-weight: bold;
        }
        .indexcss .lxusmain .xxli .map{
            margin-left:5px;
            color:#F50;
        }
        .indexcss .lxusmain .lxmsg {
            width: 575px;
        }

    .indexcss .lxusmain .msgli {
        margin-bottom: 20px;
    }

        .indexcss .lxusmain .msgli .tbmsg {
            display: block;
            width: 100%;
            box-sizing: border-box;
            padding: 14px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 2px;
            font-family: inherit;
            font-size: 14px;
        }

            .indexcss .lxusmain .msgli .tbmsg:focus {
                border: 1px solid #00a3e9;
                outline: none;
                box-shadow: 0 0 0 3px rgba(0, 163, 233, 0.25);
                background-color: #FFF;
                color: #333;
            }

    .indexcss .lxusmain .msgbtn {
        display: block;
        width: 120px;
        background: #E65100;
        color: #fff;
        padding: 12px 28px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

        .indexcss .lxusmain .msgbtn:hover {
            background: #eb5b25;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 81, 0, 0.25);
        }
