.container{
    width: 1200px;
    height: 680px;
    align-items: center;
    position: relative;
    top: 20px;
    bottom: 0;
    background: #ffffff;
    box-shadow: 0px 1px 20px 0px rgba(0, 168, 255, 0.1);
    border-radius: 10px;
    margin: auto;
    color: #333333;
}
.menu{
    width: 154px;
    height: 100%;
    padding: 30px 0;
    box-sizing: border-box;
    float: left;
}
.menu li{
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    color: #333333;
    cursor: pointer;
}
.menu .active{
    color: #00A8FF ;
}
.menu .active div{
    width: 6px;
    height: 50px;
    background: linear-gradient(45deg, #3E9CFC, #00A8FF);
    border-radius: 3px;
    float: left;
    margin: 15px 0;
}
.menu-content{
    background-color: #F5FAFF;
    margin-left: 154px;
    height: 100%;
    padding: 60px;
    box-sizing: border-box;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.menu-content .wrap{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 60px;
    box-sizing: border-box;
}
.menu-content .wrap p{
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    line-height: 34px;
    margin-bottom: 22px;
}
.menu-content .wrap p span{
    font-weight: 600;
    font-size: 18px;
}
.menu-content .wrap .row{
    width: 100%;
    height: 30px;
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
    line-height: 30px;
}
.menu-content .wrap .row:hover{
    color: #00A8FF;
}
.menu-content .wrap .name{
    float: left;
}
.menu-content .wrap .btn{
    float: right;
    width: 104px;
    height: 30px;
    background: linear-gradient(45deg, #3E9CFC, #00A8FF);
    box-shadow: 0px 2px 4px 0px rgba(0, 168, 255, 0.3);
    border-radius: 15px;
    border: none;
    color: #FEFEFF !important;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
}