*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #01162B;
    min-width: 1024px;
}
.index{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav{
    width: 100%;
    min-width: 1200px;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0 150px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00283D;
    a{
        display: inline-block;
        width: 70px;
        text-align: center;
        line-height: 68px;
        color: #fff;
        text-decoration: none;
    }
    .active{
        border-bottom: 2px solid #CE8E91;;
    }
}

.bag{
    width: 90%;
    min-width: 800px;
    height: 500px;
    position: fixed;
    top: 70px;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    img{
        width: 100%;
        height: 500px;
    }
}

.content{
    width: 80%;
    min-width: 1000px;
    margin-top: 100px;
    z-index: 9;
    font-family: '圆体';
    letter-spacing: 1px;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    .left{
        width: 250px;
        height: 600px;
        padding:0 20px;
        text-align: center;
        background-color: #00283D;
        border-radius: 10px;
        img{
            width: 80px;
            height: 80px;
            border-radius: 50%;
        }
        button{
            width: 150px;
            height: 30px;
            border: none;
            margin-top: 30px;
            border-radius: 30px;
            color: white;
            background: linear-gradient(to right, #FE8180, #FCB1AF);
        }
    }
    .left>div{
        border-bottom: 1px dotted #2C505F;
        padding: 20px 0;
        .item{
            display: flex;
            justify-content: space-between;
            margin: 2px;
            font-size: 12px;
            .details{
                color: #2C505F;
            }
        }
    }
    ul {
        flex: 1;
        height: 600px;
        li{
            list-style: none;
            display: none;
        }
        .lis-active{
            display: flex;
            box-sizing: border-box;
        }
        li{
            .right{
                display: flex;
                justify-content: space-between;
                flex-direction: column;
                flex: 1;
                margin-left: 60px;
                .title{
                    margin-bottom: 20px;
                }
                .info{
                    display: flex;
                    justify-content: space-between;
                    margin: 50px 0;
                    .active{
                        display: block;
                        color: #E38B83;
                    }
                    .item{
                        flex: 1;
                        height: 160px;
                        margin: 0 10px;
                        background-color: #00283D;
                        border-radius: 10px;
                        text-align: center;
                        padding: 0 10px;
                        img{
                            width: 100%;
                            height: 160px;
                        }
                        .details{
                            font-size: 12px;
                            margin-top: 20px;
                        }
                        .num{
                            padding: 20px 0;
                            font-size: 20px;
                            font-weight: bold;
                            border-bottom: 1px dotted #2C505F;
                            span{
                                color: #E38B83;
                            }
                        }
                    }
                }
                .story{
                    flex: 1;
                    background-color: #00283D;
                    border-radius: 10px;
                    padding: 20px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    font-size: 20px;
                    .my_work{
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: space-around;
                        font-weight: bold;
                        line-height: 60px;
                        a{
                            color: #E38B83 !important;
                        }
                    }
                    span{
                        font-size: 24px;
                        font-weight: bold;
                        color: #E38B83;
                    }
                    span:last-child{
                        text-align: right;
                    }
                }
            }
        }
    }

}

