@charset "utf-8";

.card-content{
    width: 100%;
    background-color: #f1f1f1;
    border-radius: 0 0 5px 5px;
    position: relative;
}

.tu-all{
    padding: 20px;
    display: flex;
    flex-direction: column;
    cursor: default;
}
.tu-all .tu-header{
    display: flex;
    background: #1464ff;
    border-radius: 4px;
    overflow: hidden;
}
.tu-all .tu-header>div {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    position: relative;
}
.tu-header .tu-arrow {
    width: 50px;
    height: 50px;
    border-top: 5px solid #ffffff;
    border-right: 5px solid #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: -14px;
    top: 0px;
}
.tu-header span {
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
}
.tu-all .tu-body{
    display: flex;
}
.tu-all .tu-body>div{
    flex: 1;
    background: #cfe5f6;
    margin-top: 10px;
    border-radius: 4px;
}
.tu-all .tu-body>div.tu-one{
    margin-right: 10px;
}
.tu-all .tu-body>div.tu-two{
    margin-left: 10px;
    margin-right: 10px;
    background: #ffeae5;
}
.tu-all .tu-body>div.tu-three{
    margin-left: 10px;
}
.tu-all .tu-body .tu-title{
    text-align:center;
    padding: 10px 0 0 0;
    font-weight: 600;
    font-size: 20px;
}
.tu-all .tu-body .tu-child{
    text-align:center;
    padding: 10px;
    border: 1px dashed #4086f5;
    margin: 10px;
}
.tu-body .tu-two .tu-child{
    border: 1px dashed #ff512a;
}
.tu-body .tu-child .tu-item{
    margin: 5px;
    background: #4086f5;
    position: relative;
}
.tu-body .tu-child .tu-item>span{
    padding: 10px;
    display: block;
    color: #ffffff;
    font-size: 18px;
    border-radius: 2px;
}
.tu-body .tu-two .tu-item{
    background: #ff512a;
}

.tu-body .tu-child .tu-item>div.tu-tips{
    display: none;
    position: absolute;
    top: 100%;
    left: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px;
    text-align: left;
    z-index: 100;
    box-sizing: border-box;
    width: 100%;
}