.inNav {
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
    height: 123px;
    border-bottom: solid 1px #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;

    >li {
        cursor: pointer;
        margin: 0 45px;
        width: 70px;
        height: 123px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        img {
            width: 32px;
            height: 32px;
            margin-bottom: 10px;
        }

        span {
            text-align: center;
            font-weight: 400;
            font-size: 16px;
            color: #2D2D2D;
        }
    }

    >li.on {
        border-bottom: solid 2px #002770;
        ;

        span {
            font-weight: 600;
            color: #002770;
        }
    }
}

.c1,
.c2,
.c3,
.c4,
.c5 {
    padding: 84px 0 0;

    >div {
        margin: 0 auto;
        max-width: 1300px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        >p:first-child {
            font-weight: 600;
            font-size: 38px;
            color: #2D2D2D;
        }

        >p:nth-child(2) {
            margin-top: 15px;
            font-weight: 400;
            font-size: 20px;
            color: #CDCDCD;
        }

        >p:nth-child(3) {
            margin-top: 30px;
            width: 40px;
            height: 5px;
            background: linear-gradient(90deg, #002A74, #004DB4);
        }
    }
}

.c2,
.c4 {
    background: #f6f6f6;
}

.c1 {
    >div {
        >div:last-child {
            padding: 40px 0 80px;
            font-weight: 400;
            font-size: 16px;
            color: #2D2D2D;
            line-height: 30px;

            img {
                display: block;
                /*width: 80%;*/
                margin: 20px auto;
            }
        }
    }
}

.c2 {
    >div {
        >div:nth-child(4) {
            margin: 69px 0 43px;
        }

        >img:nth-child(4) {
            margin: 69px 0 43px;
            width: 1293px;
            height: 841px;
        }
    }
}

.c3 {
    >div {
        ul {
            width: 100%;
            margin: 70px auto 78px;

            lii:hover {
                box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
                border-radius: 10px;
                border: none;
            }

            li {
                float: left;
                width: 420px;
                height: 462px;
                background: #F9F9F9;
                border-radius: 10px;
                border: 1px solid #E8EBEF;
                margin-left: 20px;
                padding: 46px 35px 35px 38px;
                display: flex;
                flex-direction: column;

                >a {



                    p {
                        font-weight: 600;
                        font-size: 18px;
                        color: #2D2D2D;
                        line-height: 24px;
                        margin-bottom: 15px;
                    }

                    >div:nth-child(2)>label {
                        padding: 0px 10px;
                        font-weight: 400;
                        font-size: 14px;
                        color: #004AAF;
                        border-radius: 13px;
                        border: 1px solid #004AAE;
                    }

                    >div:nth-child(3) {
                        width: 100%;
                        height: 295px;
                        overflow: hidden;

                        img {
                            width: 100%;
                            height: 295px;
                            margin: 0 auto;
                            transition: all 0.6s;
                        }

                        img:hover {
                            transform: scale(1.1);
                        }
                    }

                    span {
                        background: url('/images/ico_lnk.png') left top/20px 20px no-repeat;
                        padding-left: 30px;
                        font-weight: 600;
                        font-size: 14px;
                        color: #2D2D2D;
                        line-height: 20px;
                        margin-left: 250px;
                        text-align: right;
                    }
                }

            }

            li:nth-child(3n+1) {
                margin-left: 0;
            }

            li:nth-child(n+4) {
                margin-top: 20px;
            }
        }
    }
}

.c5 {
    ul {
        width: 100%;
    }

    li {
        padding: 0 36px;
        height: 440px;
        border-top: solid 1px #e2e2e2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;

        img:first-child {
            width: 500px;
            height: 302px;
            background: #AEAEAE;
            border-radius: 10px;
        }

        div:nth-child(2) {
            width: 682px;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            justify-content: center;

            p:first-child {
                font-weight: bold;
                font-size: 22px;
            }

            p:nth-child(2) {
                font-weight: 400;
                font-size: 14px;
                color: #5B5B5B;
                margin: 27px 0 39px;
                line-height: 24px;
            }

            a:last-child {
                width: 146px;
                height: 50px;
                background: url('/images/more.png') left top/146px 50px no-repeat;
                text-decoration: none;
            }
        }
    }

    li:first-child {
        border: none;
    }

    li:hover {
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        border: none;
    }
}