header .container {
    align-items: center;
    justify-content: center;
}

header .container .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header .container .content-box .synopsis {
    margin-top: 10px;
    text-align: center;
}

#contact .title {
    border-bottom: 1px solid #EFEFEF;
}

#contact .content-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

#contact .content-box .left,
#contact .content-box .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#contact .content-box .left {
    width: 65%;
}

#contact .content-box .right {
    width: 35%;
}

#contact .content-box label {
    font-weight: 500;
}

#contact .content-box .right .way {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

#contact .content-box .right .way a {
    background-color: #00A4FF;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: white;
    padding: 8px 30px;
}

#contact .content-box .right .way a img {
    width: 30px;
    margin-right: 5px;
}

#office {
    background-color: #F4F5F7;
}
#office .container .content-box{
    /*margin-top: 40px;*/
}
#office .container .content-box .options-text {
    display: inline-block;
    text-align: center;
    width: 100%;
}
#office .container .content-box .options-img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
#office .container .content-box .options-img-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
#office .container .content-box .options-img  span{
    margin-bottom: 20px;
}
#office .container .content-box .options-img  img{
    width: 240px;
    padding: 20px;
    background-color: white;
    margin: 0 20px;
    border-radius: 4px;
}

#office .content-box .options-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

#office .content-box .options-box {
}

#office .content-box .options-box .options-box-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

#office .content-box .options-box .options-box-item .place {
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 30px;
}

#office .content-box .options-box .options-box-item .place img {
    width: 28px;
    margin-right: 15px;
}

#office .content-box .options-item .select-box {
    width: 95%;
    height: 55px;
    background-color: white;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 6px 0px;
    position: relative;
}

#office .content-box .options-item .select-box p {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 2px;
    cursor: pointer;
}

#office .content-box .options-item .set {
    position: relative;
}

#office .content-box .options-item .set:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 55px;
    height: 55px;
    background-image: url(/static/front/images/info/icon/ic_arrow.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: auto 25%;
    transition: all .3s ease-out;
}

#office .content-box .options-item .select:before {
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    width: 55px;
    height: 55px;
    background-image: url(/static/front/images/info/icon/ic_arrow.png);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: auto 25%;
    transform: rotateZ(180deg);
}

#office .content-box .options-item .new {
    min-width: 100px;
    position: absolute;
    display: none;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 12px;
    max-height: 280px;
    overflow: auto;
    z-index: 2;
}

#office .content-box .options-item .select-box ul li {
    padding: 20px 30px;
    text-align: center;
    cursor: pointer;
}

#office .content-box .options-item .select-box ul li:hover {
    color: #00A4FF;
}

@media screen and (max-width: 768px) {
    #contact .title {
        padding: 0 15px;
    }

    #contact .content-box {
        flex-direction: column;
    }

    #contact .content-box .left,
    #contact .content-box .right {
        width: 100%;
        padding: 0 15px;
        margin-top: 15px;
    }

    #contact .content-box .right .way {
        margin-top: 0px;
    }

    #contact .content-box .right .way a {
        padding: 5px 15px;
        margin-right: 10px;
    }

    #office .content-box .options-item {
        padding: 0 15px;
    }

    #office .content-box .options-item:last-child {
        margin-bottom: 0;
    }

    #contact .content-box .right .way a img {
        width: 24px;
    }

    #office .content-box .options-item .select-box {
        width: 85%;
        height: 40px;
        border-radius: 5px;
    }

    #office .content-box .options-item .set:before {
        height: 40px;
        width: 40px;
    }

    #office .content-box .options-item .new {
        border-radius: 4px;
    }

    #office .content-box .options-item .select-box ul li {
        padding: 10px 15px;
    }

    #office .content-box .options-box .options-box-item {
        padding: 0 15px;
    }

    #office .content-box .options-box .options-box-item .place {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    #office .content-box .options-box .options-box-item .place img {
        width: 20px;
        margin-right: 10px;
    }
    #office .container .content-box .options-img  img{
        width: 180px;
    }
}
