body{
    padding: 0;
    margin: 0;
    font-family: 'STXinwei';
    font-size: 14px;
    color: black;
}

:root{
    --area-distance: 20px;
    --border-radius: 10px;
}

body>* ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
body>* ::-webkit-scrollbar-track {
    background-color: transparent
}

body ::-moz-scrollbar-track {
    background-color: transparent
}

body>* ::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #adb0b8;
}

body>* ::-webkit-scrollbar-thumb:hover {
    background-color: #8a8e99;
}

body>* ::-webkit-scrollbar-corner {
    background-color: transparent
}

#main{
    width: 100%;
    display: flex;
    min-width: 1114px;
    overflow-x: auto;

    #header,#footer{
        width: 100%;
        position: fixed;
        display: flex;
        left: 0px;
        padding: 10px 10%;
        margin: 0px !important;
        align-items: center;
        align-content: center;
        z-index: 2;
    }
    
    #header{
        height: 50px;
        top: 0px;
        background-color: white;
    
        #last{
            display: flex;
            justify-content: flex-end;
        }

        div{
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
        }

        .el-menu-demo{
            background-color: unset !important;
        }

        .fl-icon-websiteName{
            cursor: pointer;
        }
    }

    #footer{
        height: 70px;
        bottom: 0px;
        background: #f3f3f3;
        color: #606061;
        justify-content: center;
        border-top: 1px solid #dfe1e6;

        .footer-copyright{
            margin-left: var(--area-distance);
            display: flex;
        }
    }
    
    #con{
        display: flex;
        width: 100%;
        background: #409eff;
        flex-direction: column;
        min-height: 100vh;
        position: relative;
        align-items: center;
        justify-content: center;
        max-height: 100vh;
        .carousel{
            width: 100%;
            height: 350px;
            
            .el-carousel__item h3 {
                display: flex;
                color: #475669;
                opacity: 0.75;
                line-height: 300px;
                margin: 0;
            }
            
            .el-carousel__item:nth-child(2n) {
                background-color: #99a9bf;
            }
            
            .el-carousel__item:nth-child(2n + 1) {
                background-color: #d3dce6;
            }

            .carousels{
                display: flex;
                align-items: flex-start;
                flex-direction: column;
                justify-content: center;
                width: calc(100% - 35% - 400px);
                padding: 0px calc(20% + 400px) 0px 15%;
                height: 100%;
                background-size: cover;
                background-repeat: no-repeat;

                .fl-description{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: flex-start;

                    .el-descriptions__header{
                        margin-bottom: 0px !important;

                        .el-descriptions__title{
                            font-size: 35px !important;
                        }

                    }

                    .el-descriptions__body{
                        background-color: unset !important;
                    }
                    
                }
            }
            
            ul{
                bottom: 61px;
                padding-left: 15%;
                position: relative;
                transform: translateX(-50%);

                .el-carousel__button{
                    background-color: #409eff;
                }
            }
        }

        .fl-message-frame{
            position: absolute;
            right: 15%;
            width: 400px;
            top: 100px;
            border-radius: var(--border-radius);
            backdrop-filter: blur(10px);
            background-color: unset !important;

            .el-card__header{
                padding-top: 10px;
                padding-bottom: 10px;
                border-bottom: unset;
            }

            .el-card__body{
                max-height: 162px;
                overflow-y: auto;
                padding: 0;
                margin: 10px;

                .el-timeline{
                    max-width: 600px;
                    padding-left: 10px !important;
                    max-height: 162px;
                }

                .el-timeline-item__node{
                    width: 6;
                    height: 6;
                    left: 2px;
                }
            }
        }

        .fl-search-input{
            width: 70%;
            height: 70px;
            z-index: 1000;

            .el-input__wrapper{
                border-radius: 35px;
                box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, .16);
                padding: 10px 30px;
                border: 1px solid white;
            }

            .fl-search-clear{
                cursor: pointer;
                display: none;
            }

            .el-input__icon{
                cursor:pointer;
            }
        }

        .fl-module{
            width: 70%;
            margin: 5px 0px;
            height: 70%;
            overflow-y: auto;
    
            .fl-type{
                max-width: 15%;
    
                .el-menu{
                    border-right: unset !important;
                    border-radius: var(--border-radius);
                    box-shadow: var(--el-box-shadow-light);
                    padding: 10px;
    
                    .el-menu-item{
                        border-radius: var(--border-radius);
                    }
                }
            }
    
            .fl-con{
                max-width: calc(100%);
                
                .fl-el-menu-multiple-sort{
                    border-radius: var(--border-radius);
                    box-shadow: var(--el-box-shadow-light);
                    padding: 10px 10px 10px 30px;
    
                    .el-menu-item{
                        padding: 5px;
                        margin: 0px 10px;
                        
                    }
    
                    .el-menu-item:hover, .el-menu-item:focus{
                        background-color: unset !important;
                    }
                }            
            }
            
            .fl-cons{
                width: 100%;
                margin-top: var(--area-distance);
                display: flex;
                flex-wrap: wrap;
    
                .fl-cons-center{
                    margin: 0px 2%;
                }
    
                .el-card{
                    width: calc(32% - 20px);
                    border-radius: var(--border-radius);
                    margin-bottom: var(--area-distance);
                    border: unset;
                    padding: 10px;
    
                    .el-card__header{
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
    
                        .fl-cons-title{
                            width: calc(100% - 65px);
                            word-break: break-all;
                            display: -webkit-box;
                            -webkit-line-clamp: 1;
                            -webkit-box-orient: vertical;
                            overflow: hidden;
                        }
                    }
    
                    .el-card__body{
                        height: 60px;
                        display: flex;
                        flex-direction: column;
                        justify-content: space-between;
                    }
    
                    .el-card__footer{
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        font-size: 12px;
                    }
                }
    
                .fl-cons-image{
                    height: 200px;
                    width: 100%;
                    display: flex;
                    justify-content: center;
    
                    img{
                        width: unset;
                    }
                }
                  
            }
        }
    }
}
