﻿:root {
    --back-bg-blue: #15589f;
    --back-bg-red: #c12e2e;
}
/*
    common.css
*/
* {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    /* Chrome 和 Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer */
    user-select: none;
    font-family: "思源黑体";
}

img {
    -webkit-user-drag: none;
}

ul,
li {
    list-style: none;
}

a {
    /*color: #fff;*/
    text-decoration: none;
}
.Crumb a {
    color: #5e5e5e;
}

.warp {
    width: 1200px;
    margin: auto;
}

.line {
    height: 12px;
    width: 1px;
    background-color: #6aabf5;
}

.flex_warp {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex_center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex_gap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.flex_gap20 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* 背景选中红色*/
.check_bg {
    background-color: var(--back-bg-red);
}

/*
    index.css
*/
.header {
    min-width: 1200px;
    height: 300px;
    background: url("./asstes/home.png") no-repeat center;
    background-size: cover;
}

.header_option {
    background-color: rgba(255, 255, 255, 0.1);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.home_title {
    width: 930px;
    height: 120px;
}

.search_box {
    background-color: #fff;
    width: 420px;
    /* padding: 15px 0; */
    height: 50px;
    border-radius: 5px;
}

    .search_box > .select_box {
        width: 100px;
        padding: 0 0 0 10px;
        color: var(--back-bg-red);
        position: relative;
        display: flex;
        align-items: center;
        gap: 20px;
    }

        .search_box > .select_box .select_header {
            position: relative;
        }

        .search_box > .select_box:hover .select_option {
            display: block !important;
        }

        .search_box > .select_box .select_option {
            position: absolute;
            background: #fff;
            box-shadow: 0 0 10px 0px #ccc;
            width: 83px;
            left: -10px;
            text-indent: 9px;
            border-radius: 5px;
            display: none;
        }

            .search_box > .select_box .select_option li {
                padding: 10px 0;
            }

        .search_box > .select_box::after {
            content: "";
            width: 1px;
            height: 20px;
            right: 10px;
            background-color: #ccc;
            position: absolute;
        }

    .search_box > .search_input {
        display: inline-block;
        flex: 1;
        outline: none;
        border: none;
        height: 30px;
        font-size: 16px;
    }

    .search_box > .search_btn {
        height: inherit;
        width: 80px;
        background-color: var(--back-bg-red);
        color: #fff;
        cursor: pointer;
        display: flex;
        gap: 5px;
        border-radius: 0 5px 5px 0;
    }

.main_box {
    margin-top: -40px;
    position: relative;
}

.wxxcx_box {
    position: absolute;
    top: 60px;
    right: 44px;
    width: 180px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px #ccc;
}

    .wxxcx_box .wxxcx_img {
        width: 180px;
        height: 180px;
    }

.main_box > .main_business {
    height: 80px;
    color: #fff;
}

    .main_box > .main_business > li {
        flex: 1;
        height: 100%;
        background-color: var(--back-bg-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        flex-direction: column;
        gap: 5px;
    }

        .main_box > .main_business > li:hover {
            background-color: var(--back-bg-red);
            cursor: pointer;
            color: #fff5d2;
        }

            .main_box > .main_business > li:hover > svg path {
                fill: #fff5d2 !important;
            }

        .main_box > .main_business > li:not(:last-of-type)::after {
            content: "";
            width: 1px;
            height: 20px;
            background-color: rgba(255, 255, 255, 0.2);
            position: absolute;
            right: 0px;
        }

.first_box_left {
    width: 500px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

    .first_box_left .slides {
        display: flex;
        transition: transform 0.3s ease-in-out;
    }

        .first_box_left .slides .slide {
            position: relative;
            flex: 0 0 100%;
        }

            .first_box_left .slides .slide img {
                width: 100%;
                height: 100%;
            }

            .first_box_left .slides .slide .bottom_title {
                position: absolute;
                bottom: 0;
                height: 20px;
                background: rgba(24, 24, 24, 0.4);
                padding: 10px 15px;
                display: flex;
                gap: 10px;
                width: 100%;
                color: #fff;
                font-size: 16px;
                align-items: center;
            }

                .first_box_left .slides .slide .bottom_title > .bottom_title_tips {
                    width: 80%;
                    white-space: nowrap; /* 禁止换行 */
                    overflow: hidden; /* 隐藏溢出部分 */
                    text-overflow: ellipsis; /* 使用省略号表示溢出 */
                }

    .first_box_left > .lunbo_box {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 20%;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }

.unpoint {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkpoint {
    width: 25px;
    background-color: var(--back-bg-red);
}

.first_box_right {
    width: 630px;
    height: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .first_box_right .first_box_right_header {
        /* height: 40px; */
        background-color: #f5f5f5;
    }

        .first_box_right .first_box_right_header ul {
            height: 44px;
        }

            .first_box_right .first_box_right_header ul > li {
                padding: 10px 19px;
                color: #181818;
                font-weight: bold;
                font-size: 18px;
                cursor: pointer;
            }

.first_box_right_header_check {
    padding: 10px 23px;
    background-color: var(--back-bg-red);
    position: relative;
    color: #fff !important;
}

    .first_box_right_header_check::before {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        background: url("./asstes/title_selectbg.png") no-repeat center;
        height: 44px;
        width: 6px;
    }

    .first_box_right_header_check::after {
        content: "";
        position: absolute;
        top: -5px;
        left: 0;
        height: 5px;
        width: 110px;
        background-color: var(--back-bg-red);
        border-radius: 5px 5px 0 0;
    }

.first_box_right .first_box_right_header .more {
    font-size: 16px;
    color: #666666;
    margin-right: 10px;
}

.first_box_right .first_box_right_contain {
    flex: 1;
}

    .first_box_right .first_box_right_contain > ul > li {
        position: relative;
        padding: 10px 5px;
    }

        .first_box_right .first_box_right_contain > ul > li::before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 5px;
            background-color: var(--back-bg-red);
            position: absolute;
            left: 5px;
            top: 18px;
        }

    .first_box_right .first_box_right_contain .first_box_right_contain_list {
        white-space: nowrap; /* 禁止换行 */
        overflow: hidden; /* 隐藏溢出部分 */
        text-overflow: ellipsis; /* 使用省略号表示溢出 */
        width: 80%;
        text-indent: 1em;
    }

.servicePlatform {
    margin: 20px auto 20px;
    height: 100px;
    background: url("./asstes/bannerbg.png") no-repeat center;
    background-size: cover;
    color: #ffed71;
    cursor: pointer;
}

.secened_bg {
    background-color: #f3f6f9;
    padding: 20px 0;
}

.secened_bg_servse_header {
    font-size: 22px;
    padding-bottom: 20px;
    /*border-bottom: 1px solid #aaaaaa;*/
    position: relative;
    font-weight:600
}

   /* .secened_bg_servse_header::before {
        content: "";
        width: 110px;
        height: 2px;
        background-color: var(--back-bg-blue);
        position: absolute;
        bottom: 0;
        left: 0;
    }*/

    .secened_bg_servse_header img {
        vertical-align: middle;
    }

.secened_bg .secened_bg_servse_header_line {
    padding: 10px 0;
    text-indent: 1em;
    position: relative;
    font-size: 16px;
}

    .secened_bg .secened_bg_servse_header_line::before {
        content: "";
        width: 4px;
        height: 10px;
        position: absolute;
        top: 15px;
        left: 5px;
        border-radius: 5px;
        background-color: var(--back-bg-red);
    }

.secened_bg .servse_contain {
    display: flex;
    align-items: center;
    width: 150px;
    height: 90px;
    background-color: var(--back-bg-blue);
    border-radius: 4px;
    gap: 10px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding-left: 10px;
    cursor: pointer;
}

    .secened_bg .servse_contain:hover {
        background-color: var(--back-bg-red);
        color: #fff5d2;
    }

        .secened_bg .servse_contain:hover > svg path {
            fill: #fff5d2 !important;
        }

.secened_bg .secend_faren_gird {
    margin-top: 10px;
    display: grid;
    grid-template-areas:
        ". ."
        ". .";
    gap: 19px;
}

    .secened_bg .secend_faren_gird .secend_faren_gird_box {
        width: 85px;
        padding: 0 15px;
        height: 115px;
        background-color: var(--back-bg-red);
        color: #fff;
        font-size: 18px;
        text-align: center;
        flex-direction: column;
        cursor: pointer;
    }

        .secened_bg .secend_faren_gird .secend_faren_gird_box:hover {
            color: #fff5d2;
        }

            .secened_bg .secend_faren_gird .secend_faren_gird_box:hover > svg path {
                fill: #fff5d2 !important;
            }

.secened_bg .secened_sell_info {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 130px;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    box-sizing: border-box;
}
.secened_sell_info_text {
    font-weight: bold;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .secened_sell_info_title {
        font-size: 13px;
        color: #888888;
        padding-bottom:8px;
    }

        .secened_sell_info_title ~ div {
            color: #333333;
            font-weight: normal;
            width: 200px;
        }

.three_tips_box {
    display: flex;
    flex-direction: column;
    padding: 0px;
    gap: 16px;
}

    .three_tips_box .three_tips_box_card {
         
        width: 384px;
        height: 108px;
        border-radius: 4px; 
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        padding-left: 20px;
    }

        .three_tips_box .three_tips_box_card .three_tips_box_card_first {
            color: #ffffff;
            font-size: 26px;
            font-weight: 600;
        }

            .three_tips_box .three_tips_box_card .three_tips_box_card_first ~ div {
                font-size: 18px;
                color: #ffffff;
            }

.four_tips_box {
    flex: 1;
    height: 80px;
    background-color: var(--back-bg-blue);
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    line-height: 80px;
}

.tips_box {
    margin-top: 30px;
    height: 46px;
    border-bottom: 2px solid var(--back-bg-blue);
    display: flex;
}

    .tips_box .tips_tabs {
        font-size: 18px;
        padding: 12px 52px;
        color: #333333;
    }

.tips_tabs_check {
    background-color: var(--back-bg-blue);
    color: #fff !important;
}

.tips_tabs_content {
    height: 80px;
    display: flex;
    align-items: center;
    gap: 20px;
}

    .tips_tabs_content .tips_tabs_content_box {
        width: 200px;
        height: 40px;
        background-color: #fff;
    }

.tips_tabs_content_check {
    background: rgba(0, 53, 109, 0.1) !important;
    color: #00356d !important;
}

footer {
    height: 160px;
    background-color: var(--back-bg-blue);
    display: flex;
}

.footer_title {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    font-size: 14px;
    color: #fff;
}

.footer_title_gap20 {
    display: flex;
    gap: 20px;
}
