:root{
    --theme:rgb(41, 4, 173);
    --themeBg:rgba(41, 4, 173,1);
    --themea:rgba(41, 4, 173,0.5);
    --pc-line-height:28px;
    --mobile-line-height:24px;
    --decorate-color:#fbd156;
}
body,div,p,h3{
    padding: 0;
    margin: 0;
}
a{
    text-decoration: none;
}
.box-flex{
    display: flex;
}
.box-flex-wrap{
    flex-wrap: wrap;
}
.box-flex-no-wrap{
    flex-wrap: nowrap;
}
.flex-justify-space{
    justify-content: space-between;
}
.flex-justify-center{
    justify-content:center;
}
.flex-align-items-center{
    align-items: center;
}
.flex-align-content-center{
    align-content: center;
}

.content-box{
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: auto;
}

.box-border{
    border: 1px solid rgba(0,0,0,0.15);
}

.content-module{
    margin-top: 30px;
}

.content-module-box{
    margin-top: 20px;
}

.module-title{
    width: 100%;
    height: 140px;
    background-size: 100% auto;
    background-repeat: no-repeat;
}

.module-title .module-title-box{
    border: 4px solid var(--theme);
}

.module-title .module-title-box .module-title-box-text{
    margin: 6px;
    padding: 12px 50px;
    background-color: var(--theme);
    color:white;
    font-size: 18px;
    font-weight: 600;
}

.product-detail{
    width: 100%;
    padding: 12px 16px;
    box-sizing: border-box;
}

.product-detail-img{
    width: 350px;
    height: auto;
    margin: auto;
}

.product-detail-img img{
    width: 100%;
    height: 100%;
}

.product-detail-text{
    text-indent: 2em;
    line-height: var(--pc-line-height);
}

.product-detail-principle p{
    text-indent: 2em;
    line-height: var(--pc-line-height);
    margin-top: 10px;
}

.product-detail-points h3,
.product-detail-specs h3,
.product-detail-principle h3{
    width: fit-content;
    color: var(--theme);
    padding-bottom: 4px;
    border-bottom: 4px solid var(--theme);
}

.product-detail-points p::before{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--theme);
    margin-right: 6px;
}

.product-detail-module-top{
    margin-top: 50px;
}

.product-detail-points-point{
    margin-top: 10px;
}

.product-detail-specs table{
    width: 100%;
    margin-top: 14px;
}

.one-line-ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1024px){
    .content-box{
        width: 100%;
        max-width: 100%;
        padding: 0px 12px !important;
        box-sizing: border-box;
    }

    .module-title{
        height: 100px;
    }

    .module-title .flow-title-box .flow-title-box-text{
        margin: 6px;
        padding: 6px 30px;
        font-size: 16px;
    }

    .product-detail{
        width: 100%;
        padding: 12px 16px;
        box-sizing: border-box;
    }
    
    .product-detail-img{
        width: 80%;
        max-width: 350px;
        height: auto;
        margin: auto;
    }

    .product-detail-text{
        line-height: var(--mobile-line-height);
    }
}