
#app {
    position: static;
}
.navbar .nav-link {
    color: white;
}
#index > article {
    display: flex;
    flex-wrap: wrap;
    background-color: rgba(0,0,0,0.05);
}
#index .bg {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
#index .bg_dot {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/imgs/dot_bg_02.png) repeat top left;
}
#index .bg img {
    object-fit: cover;
}
#index .center {
    position: absolute;
    flex-basis: calc(100% - 300px);
}
#index .center div {
    position: relative;
    left: 300px;
    top: 120px;
    width: fit-content;
    padding: 4rem;
    border-radius: 1.5rem;
    background-color: rgba(255,255,255,0.7);
    box-shadow: 0px 0px 15px 15px rgba(255,255,255,0.7);

}
#index .center u,
#index .center h1 {
    /* color: white; */
    /* text-shadow: 1px 1px #a0a0a0; */
    font-weight: 600;
    line-height: 1.4;
    font-size: 3.5rem;
    color: #333;
}
#index .center p:first-of-type {
    padding-top: 1rem;
}
#index .center p {
    font-size: 1.25rem;
    font-weight: 400;
    color: #333;
}
#index .center h1 span {
    font-size: inherit;
    /* color: rgb(37, 77, 111); */
    font-weight: 300;
}
#index .center u {
    display: inline-block;
    font-size: 1.125rem;
    text-decoration: underline;
    padding-bottom: 1rem;
}
.side {
    position: fixed;
    z-index: 10;
    right: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    opacity: 0.9;
}
.side .top {
    display: flex;
    flex-wrap: wrap;
}
.side .top {
    height: 55%;
}
.side .top > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-basis: 50%;
    height: 50%;
}
.side .top > div:first-of-type {
    background-color: #4d5b7a;
}
.side .top > div:nth-of-type(2) {
    background-color: #2d53a2;
}
.side .top > div:nth-of-type(3) {
    background-color: #287d7f;
}
.side .top > div:last-of-type {
    background-color: #00a2bf;
}
.side .mid > div > a,
.side .top > div > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px 15px;
}
.side .mid > div > a > *,
.side .top > div > a > * {
    color: rgba(255,255,255,0.6);
}
.side .mid > div > a > small,
.side .top > div > a > small {
    color: white;
    font-size: 12px;
    font-weight: bold;
}
.side .mid > div > a > span,
.side .top > div > a > span {
    font-size: 24px;
    margin: 7px 0px;
}
.side .mid > div > a > p,
.side .top > div > a > p {
    font-size: 1rem;
}
.side .mid > div > a > img,
.side .top > div > a > img {
    margin-top: 10px;
}
@media screen and (max-height: 800px) {
    .side .mid > div > a > img,
    .side .top > div > a > img {
        display: none;
    }
}
.side img {
    width: inherit;
    height: 65px;
    opacity: 0.5;
}
.side > .top p,
.side > .mid p {
    color: white;
}
.side .mid {
    height: 45%;
    background-color: #89ABD9;
}
.side .mid > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
}
.side .mid > div > .select-box {
    position: relative;
    padding: 1rem;
    width: 100%;
}
.side .mid > div > .select-box i {
    position: absolute;
    right: 1.75rem;
    top: 1.75rem;
}
#index .banner {
    display: flex;
    justify-content: center;
    width: 100%;
}
#index .banner a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #298C9F;
    padding: 0.5rem 0rem;
}
#index .banner img {
    width: unset;
    height: 60px;
}
#index .banner > *,
#index .banner > a > * {
    padding: 0rem 1.5rem;
    color: white;
}
#index .banner span {
    font-size: 1.35rem;
    color: #FCC419;
}
#index .main_board {
    width: 100%;
    background-color: #e9ecef;
    z-index: 1;
    padding-bottom: 2rem;
}
#index .main_board .board {
    flex-basis: calc(100% / 3);
    padding: 1rem 0.75rem 1rem 0.75rem;
}
#index .main_board .board .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0rem;
    border-bottom: 1px solid #dadada;
    margin-bottom: 1rem;
}

#index .main_board .board .title i {
    padding: 0.5rem;
    font-size: 1rem;
}
#index .main_board .board .content {
    display: flex;
}
#index .main_board .gallary .content {
    flex-wrap: wrap;
}
#index .main_board .gallary .content .items {
    flex-basis: calc(100% / 2);
}
#index .main_board .gallary .content .items a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    overflow: hidden;
}
#index .main_board .gallary .content .items a .item_title {
    padding: 0.5rem 0rem;
}
#index .main_board .gallary .content .items a .img_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
}
#index .main_board .gallary .content .items a .img_wrap img {
    height: 100%;
    object-fit: cover;
}
#index .main_board .notice .content .items {
    flex-basis: 100%;
}
#index .main_board .notice .content .items a {
    display: flex;
    padding: 0.375rem 0rem;
    justify-content: space-between;
    border-bottom: 1px solid #dbdbdb;
}
#index .main_board .notice .content .items a > p {
    flex-basis: 75%;
    word-break: keep-all;
}
#index .main_board .notice .content .items a > span {
    flex-basis: 25%;
    text-align: right;
}
#index .main_board .board.info .title h5 {
    color: #20a8d8;
}
#index .main_board .board.info .custo {
    position: relative;
    overflow: hidden;
}
#index .main_board .board.info .custo .tel_wrap span {
    margin: 5px 0px 10px;
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 1536px) {

}

@media screen and (max-width: 768px) {
    .navbar .nav-link {
        color: unset;
    }
    #index .center {
        width: 100svw;
        flex-basis: 100%;
        display: flex;
        /* background-color: rgba(0,0,0,0.3); */
    }
    #index .center > div {
        width: 100%;
        left: inherit;
        top: inherit;
        display: none;
    }
    #index .center u {
        display: none;
        word-break: keep-all;
        width: 100%;
        /* color: rgb(37, 77, 111); */
    }
    #index .center h1 {
        /* word-break: keep-all;
        font-size: 1.25rem;
        width: 50%;
        color: rgb(37, 77, 111);
        padding-left: 1rem; */
        font-size: 3rem;
    }
    #index .center h1 span {
    }
    #index .center * {

    }
    #index .side {
        width: 100%;
    }
    #index .side .top {
        flex-basis: 100%;
    }
    #index .side .top > div {
        flex-basis: calc(100% / 4);
        padding: inherit;
        height: inherit;
    }
    #index .side .top > div > a {
        padding: 1rem 0rem;
        width: 100%;
    }
    #index .side .mid {
        display: none;
    }
    #index .side img {
        width: auto;
        height: 40px;
    }
    #index .banner h4 {
        word-break: keep-all;
        padding: 0;
        font-size: 1.125rem;
        padding-right: 1.5rem;
    }
    #index .banner p {
        display: none;
    }
    #index .main_board .container{
        flex-wrap: wrap;
    }
    #index .main_board .board {
        padding: 1rem 0.5rem;
        flex-basis: 100% !important;
    }
    #index .main_board .board .content > h5 {
        font-size: 1rem;
        padding: 3rem 0rem;
    }
    #index .main_board .gallary .content {
        flex-wrap: wrap;
    }
    #index .main_board .gallary .content .items {
        flex-basis: calc(100% / 2);
    }
    #index .main_board .notice .content .items a p {
        word-break: keep-all;
    }
    #index .main_board .container {
        padding-left: 0;
        padding-right: 0;
    }
    #index .main_board .board.info .custo .tel_wrap span {
        font-size: 24px;
        padding: 0px 8px;
    }
}
