a {
    text-decoration: none;
}

.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;
}

.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;
}

.white-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 5px 5px 10px rgba(100, 100, 100, 0.1);
    border: 1px solid #e1e1e1;
}

.list-title {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    & h3 {
        font-size: 35px;
        font-weight: bold;
        color: #272e3b;
    }

    & p {
        margin-top: 10px;
        font-size: 14px;
        color: #999999;
    }
}

.notice-info-box {
    min-height: 350px;
    background-color: rgb(240, 244, 250);
    border: 1px solid rgb(240, 244, 250);
    padding: 20px 0;
}

.page_form {
    margin-top: 20px;
    height: 60px;
    display: flex;
    justify-content: left;
    font-size: 14px;
    padding: 0 15px;
    align-items: center;

    & .inputTextBox {
        position: relative;
        flex: 1;
        margin-right: 10px;

        & > i {
            position: absolute;
            left: 15px;
            top: 11px;
            z-index: 50;
            font-size: 16px;
            color: #8d97a2;
        }

        & .inputText {
            box-sizing: border-box;
            width: 100%;
            height: 40px;
            margin-right: 15px;
            padding: 2px 10px;
            border: 1px solid #e1e1e1;
            font-size: 14px;
            color: #777;
            border-radius: 8px;
            text-indent: 30px;
            position: relative;

            &::before {
                position: absolute;
                content: "<i class='fa fa-plane'></i>";
                color: #333333;
            }
        }
    }

    & .formBtn {
        height: 40px;
        color: white;
        background-color: #ff7d00;
        border: none;
        padding: 0 20px;
        border-radius: 8px;
        letter-spacing: 2px;
        font-size: 14px;
        cursor: pointer;

        &:hover {
            background-color: #f5963a;
        }
    }
}

.notice-content {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;

    & * {
        box-sizing: border-box;
    }

    & .content-left {
        width: 300px;

        & .category-title {
            font-size: 16px;
            font-weight: bold;
            height: 30px;
            line-height: 20px;
            border-bottom: 1px solid #e1e1e1;

            & i {
                margin-right: 5px;
                color: #165dff;
            }
        }

        & .category-list,
        & .sub-category-list {
            display: flex;
            flex-direction: column;
            gap: 5px;

            & li {
                height: 35px;
                line-height: 35px;
                padding-left: 10px;
                background-color: #fafafa;
                color: #666666;
                font-size: 14px;
                border-radius: 8px;
                cursor: pointer;

                &:hover {
                    background-color: #e9eeff;
                }

                &.active {
                    background-color: #165dff;
                    color: #ffffff;
                }
            }
        }

        & .sub-category-list {
            & li.active {
                color: #165dff;
                border: 1px solid #165dff;
                background-color: #e9eeff;
            }
        }

        & .reset-btn{
            display: block;
            width: 100%;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background-color: #ffffff;
            border: 1px solid #e1e1e1;
            color: #999999;
            border-radius: 8px;
            cursor: pointer;
        }
    }

    & .content-right {
        flex: 1;

        & .right-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;

            & .summary {
                font-size: 14px;
                color: #666666;
            }

            & .sort {
                & select {
                    margin-left: 5px;
                    padding: 0 10px;
                    height: 30px;
                    border: 1px solid #e1e1e1;
                    border-radius: 8px;
                }
            }
        }

        & .notice-list {
            display: flex;
            flex-direction: column;
            gap: 5px;

            & li{
                display: flex;
                justify-content: space-between;

                & .item-left {
                    width: 200px;

                    & .item-tag {
                        padding: 2px 8px;
                        font-size: 12px;
                        border-radius: 10px;

                        &.tag-1 {
                            background-color: #e7eeff;
                            color: #165dff;
                        }
                        &.tag-2 {
                            background-color: #fff2e5;
                            color: #ff942d;
                        }
                        &.tag-3 {
                            background-color: #e8faef;
                            color: #2ace7b;
                        }
                        &.tag-4 {
                            background-color: #fdeced;
                            color: #ef4649;
                        }
                    }

                    & .item-time{
                        font-size: 12px;
                        color: #999999;
                    }
                }

                & .item-right {
                    flex: 1;

                    & .item-title {
                        font-size: 16px;
                        font-weight: bold;
                    }

                    & .item-content {
                        margin-top: 5px;
                        font-size: 12px;
                        color: #666666;
                        line-height: 20px;
                    }

                    & .detail-btn{
                        display: inline-block;
                        margin-top: 10px;
                        color: #165dff;
                    }
                }
            }
        }

        & .pager-wrap {
            padding: 5px;

            & * {
                box-sizing: content-box;
            }
        }
    }
}

/*详情页*/
.detail-title {
    color: #111111;
    font-family: Microsoft YaHei;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
}

.detail-public-time {
    color: #97979C;
    font-family: Microsoft YaHei;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 14px;

}

#newsContent img {
    max-width: 100%;
}

#newsContent p, #newsContent span {
    font-size: 18px !important;
    line-height: 36px !important;
}

.fileInfos {
    margin-top: 50px;
}

.fileInfos a {
    font-size: 14px;
    color: #97979C;
    line-height: 36px;
}
