/* content --------------------------------------------------------------------------------- */
.content{
    padding: 70px 0;
    box-sizing: border-box;
}

.content h1,
.content h2,
.content h3,
.content h5 {
    text-align: center;
    line-height: 1em;
}

.content h1{
    font-weight: bold;
}

.content h1,
.content h2 {
    font-size: 32px;
}

.content h3 {
    font-size: 30px;
}

.content h5 {
    font-size: 16px;
    margin-top: 18px;
    color: #666666;
}


@media (max-width: 950px) {
    .content{
        padding: 40px 0;
    }

    .content h2 {
        font-size: 24px;
    }

    .content h3 {
        font-size: 20px;
    }

    .content h5 {
        margin-top: 10px;
        font-size: 12px;
    }
}

/* info --------------------------------------------------------------------------------- */
#info .website {
    color: #666666;
    display: block;
    margin-top: 18px;
    font-size: 18px;
    text-align: center;
}

#info  .website a.web-link {
    color: #0099ff;
    text-decoration: underline;
}

#info .desc{
    max-width: 1000px;
    margin: 40px auto 0 auto;
    color: #888888;
    font-size: 16px;
    line-height: 26px;
}

#info .desc p {
    text-indent: 2em;
    margin-bottom: 10px;
    text-align: justify;
}

#info .desc p span,
#info .desc p b{
    color: #0099ff;
}

#info .desc p a{
    color: #0099ff;
    text-decoration: underline;
}


#info .pic-show{
    margin: 20px auto 0 auto;
    width：100%;
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #ccc;
}

#info .pic-show>img{
    width: 100%;
}

#info .links{
    text-align: center;
    margin-top: 30px;
}

#info .links a{
    font-size: 18px;
    color: #0099ff;
}

#info .links a:hover{
    color: #0051ff;
    text-decoration: underline;
}

@media (max-width: 950px) {
    #info {
        padding-left: 10px;
        padding-right: 10px;
    }
    #info .desc{
        max-width: 92%;
        margin: 20px auto 0 auto;
        font-size: 14px;
        line-height: 20px;
    }
}

/* pain-points ------------------------------------------------------------------------------------ */

#pain-points{
    background-color:#0099ff;
}

#pain-points h2,
#pain-points h3,
#pain-points p{
    color: #fff;
}

#pain-points h2{
    margin-bottom: 40px;
}

#pain-points .pain-points-items{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

#pain-points .pain-points-items .item{
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
}

#pain-points .pain-points-items .item p{
    font-size: 16px;
    text-align: justify;
}

#pain-points .pain-points-items .item .icon{
    margin-right: 5px;
}

#pain-points .pain-points-items .item p:nth-child(1){
    text-align: center;
    color: #ffab43;
    font-size: 52px;
    margin-bottom: 16px;
}

#pain-points .pain-points-items .item p:nth-child(2){
    color: #0099ff;
    margin-bottom: 10px;
}

#pain-points .pain-points-items .item p:nth-child(2) .icon{
    color: #ff4b4b;
}

#pain-points .pain-points-items .item p:nth-child(3){
    border-top: 1px #ccc dotted;
    padding-top: 10px;
    color: #454545;
}

#pain-points .pain-points-items .item p:nth-child(3) .icon{
    color: #27c9d5;
}

@media (max-width: 950px) {
    #pain-points .pain-points-items{
        grid-template-columns: repeat(1, 1fr);
        padding: 0 10px;
    }
}


/* questions-list --------------------------------------------------------------------------------- */
.questions-list {
    width: 98%;
    margin: 40px auto 0 auto;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.questions-list .questions-item {
    flex-basis: calc(50% - 10px);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #ffffff;
    min-height: 120px;
}

.questions-list .questions-item p.title {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: left;
    line-height: 1em;
    color: #0081ff;
}

.questions-list .questions-item p.title span {
    font-size: 16px;
    margin-right: 8px;
    color: #00a5b3;
}

.questions-list .questions-item p.info {
    font-size: 14px;
    text-wrap: wrap;
    color: #888888;
    line-height: 1.6em;
}

.questions-list .questions-item p.info a {
    color: #0099ff;
    text-decoration: underline;
}

.questions-list .questions-item p.info b {
    color: #0099ff;
}

@media (max-width: 950px) {
    .questions-list {
        margin: 20px auto 0 auto;
        gap: 10px;
        min-height: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .questions-list .questions-item {
        flex-basis: calc(100%);
        padding: 10px;
    }

    .questions-list .questions-item p.title {
        font-size: 16px;
        line-height: 1.5em;
    }
}


/* contact-info --------------------------------------------------------------------------------- */
.contact-info {
    width:80%;
    margin:30px auto 0 auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.contact-info .wx-qr {
    width: 300px;
    height: 300px;
    margin: 0 auto 16px auto;
}

.contact-info p{
    font-size: 16px;
    color: #666666;
}

