ul{list-style: none;}

.container{
    margin: 0 5%;
    text-align: center;
}

/* 以下是标题部分 */
.container h3{
    display: inline-block;
    font-size: 1.8em;
    font-weight: 500;
    color: green;
    position: relative;
    margin-top: 2em;
    margin-bottom: 2em;
}
.container h3::before{
    content: "";
    display: block;
    border-bottom: 1px solid black;
    width: 51px;
    position: absolute;
    top: 49%;
    left: -70px;
}
.container h3::after{
    content: "";
    display: block;
    border-bottom: 1px solid black;
    width: 51px;
    position: absolute;
    top: 49%;
    right: -70px;
}

/* 以上是标题部分 */

/* 以下是设计优势和能力部分 */
.same-contentCon{
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items:flex-start;
}
.same-contentCon .content{
    color: #737373;
    width: 28vw;  /* 宽度为43%，一行有3个 */
    padding: 0 1vw; /* 这个padding主要是用来控制左右的间距 */
    font-size: 1.2em;
    line-height: 2.4em;
    text-align: left;
}
.same-contentCon .dot{
    color: green;
}
/* 以上是设计优势和能力部分 */

#ICS-contentCon .content{
    display: flex;
    flex-flow: row nowrap;
    justify-content: left;
    align-items: center;
}
#ICS-contentCon .content-left{
    margin-right: 2em;
}
#ICS-contentCon .content-left h5{
    font-size: 1.5em;
    margin: 0.5em;
    font-weight: 500;
}
#ICS-contentCon .content-right{
    color: #737373;
    font-size: 1.2em;
    line-height: 2.4em;
    text-align: left;
    word-wrap: break-word; /* 换行 */
    word-break: break-all;
}
#ICS-contentCon hr{
    border: 1px dotted #737373;
}
/* 以上是涉及芯片 */


#products-contentCon{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items:flex-start;
}

#products-contentCon .content{

    width: 50%;
    padding: 1vw;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start; 
    align-items:flex-start;
}

/* #products-contentCon .content .products-picture{
    width: 21.5vw; 
} */

#products-contentCon .content .products-picture img{
   
   width: auto;
   height: auto;
   max-width: 100%;
   max-height: 100%;
}

#products-contentCon .content .products-details{
    width: 21.5vw;
    padding-left: 1vw;
}
#products-contentCon .content .products-details h5{
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 0.5em;
    text-align: left;

}
#products-contentCon .content .products-details p{
    font-size: 1em;
    line-height: 2em;
    color: #737373;
    text-align: left;
    margin: 0px;
    
}

#PCBDesign-products{
    margin-bottom: 3.6em;
}

@media (max-width:768px){
    .same-contentCon{
        flex-flow: column nowrap;
    }
    .same-contentCon .content{
        width: 100%;
    }
    /* 以上是设计优势和能力部分 */
    #ICS-contentCon .content{
        flex-flow: column nowrap;
    }
    /* 以上是涉及的IC */

    #products-contentCon{
        flex-flow: column nowrap;
    }
    #products-contentCon .content{
        width: 100%;
        justify-content: flex-start;
        /* align-items: center; */
    }

    #products-contentCon .content .products-picture{
        width: 20vw;
    }
    #products-contentCon .content .products-details{
        width: 68vw;
    }
}