.breadcrumb-area{
            height: 350px;
            background-image: url("../image/bug-banner.png");
            background-size: cover;
            margin-bottom: 0;
            background-repeat: no-repeat;
            background-position: bottom;
        }
        .breadcrumb-area .row{
            align-content: center;
        }
        .tab-btn{
            text-align: center;
            color: rgba(51, 51, 51, 1);
            font-size: 24px;
            cursor: pointer;
        }
        .tab-btn.active{
            color: rgba(0, 133, 255, 1);
        }
        .bug-details{
            height: auto;
            background-color: rgba(231, 239, 251, 1);
            
            border-radius: 12px;
            padding: 30px;
            display: flex;
            justify-content: space-between;
        }
        .bug-details .col-lg-4{
            max-width: 32%;
            height: 300px;
            background-image: url("../image/banben-bg.png");
            background-repeat: no-repeat;
            background-size: 110% 100%;
            background-position: right;
            border-radius: 8px;
            padding: 20px;
        }
        .bug-details .col-lg-4 h4{
            color: rgba(0, 133, 255, 1);
        }
        .bug-details .col-lg-4 .tel{
            width: 100%;
            height: 40px;
            background-color: rgba(255, 255, 255, 1);
            border-radius: 6px;
            border: 1px solid rgba(0, 133, 255, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            user-select: none;
            cursor: pointer;
            color: rgba(0, 133, 255, 1);
            font-size: 16px;
            margin-top: 10px;
            margin-bottom: 20px;
        }
        .bug-details .col-lg-4 .tel:hover{
            color: rgba(255, 255, 255, 1);
            background-image: linear-gradient(to right,rgba(0, 133, 255, 1),rgba(162, 210, 255, 1));
        }
        .trait-list{
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        .trait-item{
            width: 100%;
            height: 26px;
            display: flex;
            align-items: center;
        }
        .trait-item:before{
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            background-image: url("../image/answer-icon.svg");
            background-size: 100% 100%;
            margin-right: 6px;
        }
        .trait-item span{
            line-height: 0;
        }
        .function-list{
            width: 100%;
            height: auto;
            margin-top: 80px;
            background-color: rgba(255, 255, 255, 1);
            border-radius: 10px;
            padding: 20px 30px;
        }
        .function-list table{
            width: 100%;
        }
        .function-list table tr th,.function-list table tr td{
            text-align: center;
            height: 68px;
            font-size: 18px;
        }
        .function-list table tr th{
            font-size: 22px;
        }
        .function-list table tr th:first-child,.function-list table tr td:first-child{
            text-align: left;
        }
        .function-list table tr th img,.function-list table tr td img{
            width: 36px;
            height: 36px;
        }