@charset "utf-8";

/*
 * drawer
 * */
.drawer .drawer_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /*-webkit-backdrop-filter: blur(15px);*/
    /*backdrop-filter: blur(15px);*/
    overflow: auto;
    cursor: pointer;
    display: none;
}

.drawer .drawer_layer {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100%;
    z-index: 1100;
    background-color: #fff;
    transition: transform .5s;
    -webkit-transition: transform .5s;
    transform: translateX(150%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drawer .drawer_header {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.drawer .drawer_header.drawer_header_not_title {
    height: 0;
    border-bottom: 0;
}

.drawer .drawer_title {
    flex: 1;
    font-size: 16px;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.drawer .drawer_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    color: #999;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.drawer .drawer_body {
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
}

.drawer .drawer_body2 {
    padding: 15px;
}

.drawer .drawer_footer {
    height: 40px;
    border-top: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;
}


.drawer.active .drawer_overlay {
    display: block;
}

.drawer.active .drawer_layer {
    transform: translateX(0);
}

/*
pics_list
*/
.pic_full {
    width: 100%;
}

.pic_full img {
    display: block;
    max-width: 100%;
    height: auto;
}

.pics_list {
    width: 100%;
}

.pics_list .items {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.pics_list .items .item {
    width: 25%;
    padding: 20px;
    position: relative;
}

.pics_list .items .item {
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
}

.pics_list .items .item .pic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pics_list .item img {
    max-width: 100%;
}

.pics_list .item .dl {
    margin: 10px;
}

.pics_list .item .dt {
    font-size: 16px;
    margin: 5px;
}

.pics_list .items3 .item {
    width: 33.333%;
}

@media (max-width: 992px) {
    .pics_list .items {
        display: flex;
        flex-wrap: wrap;
    }

    .pics_list .items .item {
        width: 50%;
        padding: 10px;
    }

    .pics_list .items3 .item {
        width: 33.333%;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .pics_list .items .item {
        width: 100%;
        padding: 0;
    }
}

/*
pics_tiled
*/
.pics_tiled img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.pics_tiled_m20 img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

/*
share_icons
*/
.share_icons {
    display: flex;
    text-align: center;
    justify-content: center;
}

.share_icons a {
    display: inline-block;
    margin: 5px;
    font-size: 22px;
}

/*
card
*/
.card {
    background-color: #fff;
    /*border: 1px solid #ddd;*/
    border-radius: 4px;
    /*box-shadow: 0 2px 3px rgba(221, 221, 221, 0.6);*/
}

.card_title {
    min-height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 0 15px;
}

.card_title dt {
    font-size: 16px;
    position: relative;
    padding-left: 12px;
}

.card_title dt:before {
    content: " ";
    background-color: #AC8241;
    border-radius: 10px;
    width: 5px;
    height: 16px;
    position: absolute;
    top: 3px;
    left: 0;
}

.card_body {
    padding: 15px;
}

@media (max-width: 768px) {
    .card_body {
        padding: 10px;
    }
}

/*
play_icon
*/
.play_icon {
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    z-index: 100;
    border-radius: 50%;
    line-height: 0;
    background-color: rgba(100, 100, 100, 0.4);
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #fff;
}

.play_icon::before {
    content: " ";
    width: 32px;
    height: 32px;
    background: url("/res/site/img/play_icon.png") no-repeat center center;
    background-size: 100% 100%;
    display: inline-block;
    margin-left: 4px;
}

.video_click {
    cursor: pointer;
}

/**
video_item
 */
.video_item {
    width: 100%;
    position: relative;
    border: 1px solid #fff;
}

.video_item .poster img {
    max-width: 100%;
}

.video_item .bg {
    width: 100%;
    height: 100%;
    background-color: #111;
    display: none;
}


.video_item .con {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_item.active .poster {
    display: none;
}

.video_item.active .bg {
    display: block;
}


.video_item2 .dl {
    width: 100%;
    position: relative;
    height: 0;
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.video_item2 .bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #111;
    display: none;
}

/*
breadcrumb
*/
.breadcrumb_box {
    width: 100%;
    min-height: 40px;
    line-height: 40px;
    background-color: #f8f8f8;
}

.breadcrumb .items {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb .breadcrumb_item {
    display: inline-block;
    color: #6c757d;
    padding-right: 8px;
}

.breadcrumb .breadcrumb_item::before {
    display: inline-block;
    padding-right: 8px;
    content: "/";
}

.breadcrumb .breadcrumb_item:first-child::before {
    display: none;
}

@media (max-width: 992px) {
    .breadcrumb {
        display: none;
    }
}

/*
alert
*/
.alert {
    position: relative;
    padding: 12px 20px;
    margin-bottom: 10px;
    border: 1px solid #ffeeba;
    border-radius: 4px;
    color: #856404;
    background-color: #fff3cd;
}

/*
 * pagination2
 * */
.pagination2 {
    text-align: center;
    margin-top: 20px;
}

.pagination2 a,
.pagination2 span {
    margin: 3px;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
    overflow: hidden;
    display: inline-block;
    font-size: 13px;
    color: #6c6c6c;
    text-align: center;
}

.pagination2 a {
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.pagination2 a:hover {
    color: #e30016;
}

.pagination2 .selected {
    color: #fff;
    background-color: #658DB3;
}

.pagination2 .disabled {
    color: #999;
    border-color: #ddd;
    background-color: #ddd;
    cursor: not-allowed;
}

/**
gotop
 */
.gotop {
    opacity: 0.7;
}

.gotop:hover {
    opacity: 1;
}

/*
@media (max-width: 992px) {
    .gotop {
        display: none;
    }
}
*/


/*
footer_service
*/
.footer_service {
    position: fixed;
    right: 10px;
    bottom: 10%;
    z-index: 1000;
    display: block;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    cursor: pointer;
    width: 70px;
}

.footer_service .dl {
    margin-bottom: 10px;
    text-align: center;
}

.footer_service .dd {
    font-size: 12px;
    font-weight: bold;
}

.footer_service .whatsapp {
    background-color: #6EBF63;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    color: #fff;
}

.footer_service .whatsapp .dt {
    font-size: 32px;
}

.footer_service .whatsapp .dd {
    padding-bottom: 5px;
}

