a {
    text-decoration: none;
}

a:hover {
    color: #3B83F2;
}

.banner {
    width: 100%;
    height: 360px;
    position: relative;
    text-align: center;
}

.crumbs {
    font-size: 14px;
    position: absolute;
    width: 100%;
    bottom: 10px;
    color: white;
    text-align: left;
}

.crumbs a {
    color: white;
    text-decoration: none;
}

.banner > img {
    width: 1920px;
}

.bar {
    height: 64px;
    box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}

.bar ul {
    list-style: none;
    display: flex;
}

.bar ul li {
    width: 80px;
    height: 60px;
    margin-right: 60px;
}

.bar ul .bar-active {
    border-bottom: 4px solid #3B83F2;
}

.bar ul li a {
    line-height: 60px;
    font-size: 16px;
    color: #555555;
}

.bar ul .bar-active a {
    color: #111111;
}

.content-box {
    width: 100%;
    background: #F0F4FA;
    padding-top: 30px;
    padding-bottom: 30px;
}

.white-box {
    background-color: white;
    padding: 30px 70px;
}

.gray-box {
    background-color: #F0F4FA;
    padding: 30px 70px;
}

.flex {
    display: flex;
}

.flex-vertical {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.flex-vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layui-layer-shade {
    opacity: 0.3;
}

.white-item {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.blue-item {
    background: linear-gradient(45deg, #0f4c81, #1972e7);
    padding: 40px;
    border-radius: 5px;
    overflow: hidden;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pA10 {
    padding: 10px;
}

.pA20 {
    padding: 20px;
}

.pA30 {
    padding: 30px;
}

.w50p {
    width: 50%;
}

.sub-title-center {
    font-size: 35px;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

.sub-title-left {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 35px;
    padding-bottom: 5px;
    border-bottom: 1px solid #d1d5db;
}

.content-paragraph-center {
    margin-bottom: 1.2rem;
    text-align: center; /* 两端对齐，提升排版整洁度 */
    color: #4b5563; /* 稍浅文字色，减轻视觉压力 */
    font-size: 14px;
}

.sub-banner-box {
    border-radius: 15px 15px 0 0;
    overflow: hidden;

    &.pointer img{
        cursor: pointer;
    }

    & img{
        width: 100%;
    }
}

.core-item-group {
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.core-item {
    box-sizing: border-box;
    width: 270px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #f5f7fa;
    border-radius: 10px;
}

.core-item .icon-box {
    height: 45px;
    width: 45px;
    background-color: #dee6ef;
    color: #0f4c81;
    font-size: 24px;
    border-radius: 8px;
    line-height: 45px;
    text-align: center;
}

.core-item .item-title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
}

.core-item .item-content {
    margin-top: 15px;
    font-size: 14px;
    line-height: 20px;
    color: #646a7a;
}

.core-item .item-btn {
    margin-top: 20px;
    color: #0f4c81;
    font-size: 14px;
    width: 90px;
}

.special-item {
    box-sizing: border-box;
    width: 560px;
    padding: 20px;
    /*background-color: #f5f7fa;*/
    min-height: 40px;
    border-radius: 10px;
    border: 1px solid #eeeeee;
    box-shadow: 3px 6px 4px -3px rgba(0, 0, 0, 0.1);
}

.special-item .item-header {
    height: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-item .item-header .item-title {
    margin-left: 0;
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

.special-item .item-header .item-tag {
    font-size: 12px;
    line-height: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-left: 10px;
}

.special-item .item-header .item-tag.green-tag {
    background-color: #dcfce7;
    color: #216b40;
}

.special-item .item-header .item-tag.blue-tag {
    background-color: #daebfe;
    color: #295cbe;
}

.special-item .item-sub-title {
    color: #686d85;
    font-size: 14px;
    margin-top: 10px;
    line-height: 20px;
}

.special-item .item-content {
    height: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.special-item .item-content .content-label {
    color: #7c8088;
}

.special-item .item-content .content-value {
    color: #333333;
}

.special-item .item-btn {
    display: block;
    margin-top: 15px;
    line-height: 35px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 8px;
    background-color: #0f4c81;
    text-align: center;
    margin-bottom: 5px;
    cursor: pointer;
}

/* 表格整体样式 */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Microsoft Yahei", sans-serif;
    margin: 20px 0;
}

/* 表头样式 */
thead th {
    background-color: #f0f2f5;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
    border-right: none;
    border-left: none;
    font-weight: bold;
}

/* 表体单元格样式 */
table.show-part tr:not(:nth-child(-n + 5)) {
    display: none;
}

tbody td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    color: #666;
    transition: background-color 0.3s ease;
    border-right: none;
    border-left: none;
}

/* 奇数行背景色（斑马纹效果） */
tbody tr:nth-child(odd) {
    background-color: #fff;
}

/* 偶数行背景色（斑马纹效果） */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* hover 效果 */
tbody tr:hover {
    background-color: #f0f7ff;
}

/* 操作按钮样式 */
td a {
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-more-products {
    color: #114d82;
    font-size: 14px;
    cursor: pointer;
}

.submit-item-1{
    margin-top: 20px;
    padding: 40px 150px;
}

.online-product .item-header,
.submit-item-1 .item-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.online-product .icon-box,
.submit-item-1 .icon-box {
    width: 50px;
    height: 50px;
    background-color: #fff2e5;
    color: #ff7d00;
    border-radius: 8px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
}

.online-product .item-title,
.submit-item-1 .item-title {
    margin-left: 20px;
    font-size: 24px;
    font-weight: bold;
}

.submit-item-1 .item-sub-title {
    margin-top: 20px;
    font-size: 14px;
    color: #777777;
}

/* 表单组样式 */
.form-container {
    margin-top: 10px;
}

.form-group {
    margin-top: 8px;
}

.form-group label {
    display: block;
    margin-bottom: 3px;
    color: #555;
    font-weight: bold;
    font-size: 14px;
}

/* 输入框和下拉框样式 */
.form-group input, .form-group select {
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.3s ease;
    text-indent: 10px;
}

.form-group-input:focus, .form-group-select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

/* 占位符样式 */
.form-group-input::placeholder {
    color: #bbb;
}

/* 提交按钮样式 */
.submit-btn-1 {
    box-sizing: border-box;
    height: 45px;
    line-height: 45px;
    width: 100%;
    background-color: #ff7d00;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 40px;
    letter-spacing: 1px;
}

.submit-btn-1:hover {
    background-color: #f5871e;
}

.submit-item-2{
    margin-top: 20px;
    padding: 40px 150px;
}

.submit-item-2 .item-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.submit-item-2 .icon-box {
    width: 50px;
    height: 50px;
    background-color: #4072a2;
    color: #ffffff;
    border-radius: 8px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
}

.submit-item-2 .item-title {
    margin-left: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.submit-item-2 .item-sub-title {
    margin-top: 20px;
    font-size: 14px;
    color: #eeeeee;
}

.submit-item-2 .item-content {
    margin-top: 42px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.submit-item-2 .item-content .img-box {
    width: 35%;
    overflow: hidden;
    border-radius: 8px;
}

.submit-item-2 .item-content .img-box img {
    width: 100%;
    object-fit: cover;
}

.item-list {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.item-list li {
    width: 290px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 30px;
    flex-wrap: wrap;
}

.item-list li .item-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #4177ae;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}

.item-list li .item-title-box {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-list li .item-title-box .item-title {
    margin-left: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.item-list li .item-title-box .item-sub-title {
    font-size: 14px;
    font-weight: normal;
    color: #dddddd;
    margin-top: 12px;
}

.submit-btn-2 {
    display: block;
    box-sizing: border-box;
    height: 45px;
    line-height: 45px;
    width: 100%;
    background-color: #ffffff;
    color: #0f4d85;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 58px;
    letter-spacing: 1px;
    text-align: center;
}

.submit-btn-2:hover {
    color: #1769cd;
}

#detailDiv {
    width: 600px;
    display: none;
    padding-top: 0;

    & .detail-title {
        margin-top: 20px;
        font-size: 20px;
        font-weight: bold;
    }

    & .detail-desc {
        margin-top: 10px;
        font-size: 12px;
        font-weight: normal;
        color: #968fad;
        line-height: 18px;
    }

    & .range-box {
        margin-top: 10px;
        display: flex;
        justify-content: flex-start;
        align-items: center;

        & .range-item {
            width: 200px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            & .range-value {
                font-size: 24px;
                font-weight: bold;
            }

            & .range-label {
                margin-top: 5px;
                font-size: 14px;
                font-weight: normal;
                color: #968fad;
            }
        }
    }

    & .item-list {
        box-sizing: border-box;
        margin-top: 20px;

        & .item-box {
            margin-top: 10px;
            line-height: 20px;
            display: flex;
            justify-content: flex-start;
            font-size: 14px;

            &:first-child {
                margin-top: 20px;
            }

            & .item-label {
                font-weight: bold;
            }

            & .item-value {
                flex: 1;
                margin-left: 10px;
            }
        }
    }
}

#loginDiv {
    width: 450px;
    display: none;
    padding-top: 20px;

    & .layui-form-item {
        & label {
            font-size: 14px;
            line-height: 30px;
        }
    }

    & .login-btn {
        margin-top: 20px;
        height: 50px;
        width: 100%;
        font-size: 16px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 50px;
        color: #ffffff;
        border-radius: 4px;
        background: #3B83F2;
        cursor: pointer;
        box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
    }
}

#bindDiv {
    display: none;
    width: 450px;
    padding-top: 0;

    & div {
        margin-top: 10px;
        text-align: center;

        & a {
            color: #3B83F2;
            text-decoration: underline;
            cursor: pointer;
            font-size: 14px;
        }
    }
}

.check-box-group {
    display: flex;

    & li {
        line-height: 40px;
        margin-right: 30px;

        & label {
            display: inline-block;
            margin-bottom: 0;
            font-size: 14px;
            position: relative;
            top: 2px;
        }

        & input {
            width: 18px;
            margin-right: 5px;
        }
    }
}

.search-box {
    padding: 20px 20px 5px 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

    & .layui-form-item {
        & > label {
            display: inline-block;
            color: #666666;
            margin-bottom: 3px;
        }

        & .layui-input-prefix i {
            color: #999999;
        }
    }

    & #formBtn, & #formReset {
        position: relative;
        top: 18px;
        width: 100%;
    }

    & .layui-anim.layui-icon {
        display: none;
    }

    & .layui-form-radio {
        padding-right: 0;
        margin-top: -1px;

        & .radio-tag {
            padding: 0 20px;
            height: 38px;
            line-height: 38px;
            background-color: #ffffff;
            color: #666666;
            border: 1px solid #eeeeee;
            box-sizing: border-box;
            font-size: 12px;
            border-radius: 2px;
        }

        &:not(.layui-form-radioed):hover .radio-tag {
            background-color: #ffffff;
            color: #3b83f2;
            border: 1px solid #3b83f2;
        }
    }

    .layui-form-radioed .radio-tag {
        background-color: #3b83f2;
        color: #ffffff;
        border: 1px solid #3b83f2;
    }
}

.page-box{
    padding: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;

    & .box-header {
        height: 50px;
        border-bottom: 1px solid #eeeeee;
        line-height: 50px;
        text-indent: 20px;
        font-size: 20px;
        font-weight: bold;
        color: #1461bb;

        & .layui-icon {
            font-size: 24px;
            margin-right: 5px;
            vertical-align: bottom;
        }
    }

    & .box-body {
        min-height: 200px;
        border-bottom: 1px solid #eeeeee;
    }

    & .box-footer {
        & .page-box {
            display: flex;
            justify-content: flex-end;
            padding-right: 20px;
        }
    }
}

.product-item-box {
    box-sizing: border-box;
    width: 100%;
    height: 130px;
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;

    &:first-child {
        border-top: 1px solid #eeeeee;
    }

    & .item-left {
        width: 200px;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;

        & .item-logo {
            height: 50px;
            overflow: hidden;
            border-radius: 8px;

            & img {
                height: 100%;
            }
        }

        & .institution-name {
            font-size: 14px;
            color: #333333;
            margin-top: 2px;
        }

        & .simple-name {
            font-size: 12px;
            color: #999999;
            margin-top: 2px;
        }
    }

    & .item-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        height: 100%;
        overflow: hidden;

        & .content-top {
            display: flex;
            justify-content: flex-start;
            align-items: center;

            & .product-name {
                font-size: 18px;
                font-weight: bold;
                color: #3b83f2;
            }

            & .handle-mode-tag {
                font-size: 12px;
                color: #3b83f2;
                margin-left: 10px;
                padding: 3px 10px;
                border-radius: 10px;
                background-color: #e8f3ff;
            }

            & .customers-tag {
                font-size: 12px;
                color: #0ea5e9;
                margin-left: 10px;
                padding: 3px 10px;
                border-radius: 10px;
                background-color: #f0f9ff;
            }
        }

        & .content-value-group {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex: 1;

            & .content-value {
                width: 25%;
                position: relative;
                top: 10px;

                & .value-title {
                    font-size: 12px;
                    color: #666666;

                }

                & .value-content {
                    margin-top: 5px;
                    font-size: 14px;
                    color: #3b83f2;
                    font-weight: bold;
                    width: 100%;
                    overflow: hidden;
                    text-overflow: ellipsis;
                    white-space: nowrap;

                    &.text-gray {
                        color: #333333;
                        font-weight: normal;
                    }
                }
            }
        }
    }

    & .item-right {
        width: 140px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        & .layui-btn {
            border-radius: 5px;
        }
    }
}

.no-data {
    text-align: center;
}

.detail-box {
    width: 100%;
    background: #F0F4FA;
    padding-top: 30px;
    padding-bottom: 30px;

    .white-box{
        padding: 20px;
        background-color: #ffffff;
        box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        box-sizing: border-box;
        width: 100%;
        margin-bottom: 20px;

        &.w50p{
            width: 630px;
        }
    }

    .summary-box{
        box-sizing: border-box;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        border-bottom: 1px solid #eeeeee;
        overflow: hidden;

        & .item-left {
            width: 250px;
            padding-right: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;

            & .item-logo {
                height: 60px;
                overflow: hidden;
                border-radius: 8px;

                & img {
                    height: 100%;
                }
            }

            & .institution-name {
                font-size: 16px;
                font-weight: bold;
                color: #333333;
                margin-top: 2px;
            }

            & .simple-name {
                font-size: 14px;
                color: #999999;
                margin-top: 3px;
            }
        }

        & .item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;

            & .content-top {
                display: flex;
                justify-content: flex-start;
                align-items: center;

                & .product-name {
                    font-size: 18px;
                    font-weight: bold;
                    color: #3b83f2;
                }

                & .handle-mode-tag {
                    font-size: 12px;
                    color: #3b83f2;
                    margin-left: 10px;
                    padding: 3px 10px;
                    border-radius: 10px;
                    background-color: #e8f3ff;
                }

                & .customers-tag {
                    font-size: 12px;
                    color: #0ea5e9;
                    margin-left: 10px;
                    padding: 3px 10px;
                    border-radius: 10px;
                    background-color: #f0f9ff;
                }
            }

            & .content-description {
                margin-top: 10px;

                & .description-title {
                    font-size: 12px;
                    color: #666666;
                }

                & .description-content {
                    margin-top: 2px;
                    font-size: 14px;
                    color: #333333;
                }
            }

            & .content-value-group {
                margin-top: 5px;
                display: flex;
                justify-content: space-between;
                align-items: center;

                & .content-value {
                    box-sizing: border-box;
                    width: 32%;
                    position: relative;
                    top: 10px;
                    background-color: #f5f7fa;
                    padding: 15px;
                    border-radius: 10px;
                    margin-bottom: 20px;

                    & .value-title {
                        font-size: 14px;
                        color: #666666;
                    }

                    & .value-content {
                        margin-top: 5px;
                        font-size: 18px;
                        color: #3b83f2;
                        font-weight: bold;
                        width: 100%;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        white-space: nowrap;

                        &.text-gray {
                            color: #333333;
                            font-weight: normal;
                        }
                    }

                    & .value-remark {
                        margin-top: 4px;
                        font-size: 12px;
                        color: #666666;
                    }
                }
            }
        }

        & .item-right {
            width: 120px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            margin-left: 30px;

            & .layui-btn {
                width: 100%;
                border-radius: 5px;
            }
        }
    }

    & .common-box {
        & .content-title {
            height: 30px;
            margin-bottom: 10px;
            line-height: 30px;
            font-size: 16px;
            font-weight: bold;

            & i {
                color: #3b83f2;
                margin-right: 3px;
            }
        }

        & .content-sub-title {
            font-size: 12px;
            color: #999999;
        }

        & .content-paragraph {
            margin-top: 5px;
            font-size: 14px;
            line-height: 20px;
            color: #333333;
        }
    }
}