﻿@charset "utf-8";
/* 設計師用 桌機版CSS檔 style.css */
/* 說明：
    可提供設計師在此檔，針對桌機版面進行設計；為網站必載CSS檔。*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800&display=swap');

body {
    font-size: 15px;
    color: #333;
    background: url('../../images/all/bg_001.jpg') left top no-repeat #e8f5fd;
    position:relative;
}
body:after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    height: 224px;
    z-index: -1;
    background: url('../../images/all/bg_b.png') bottom center no-repeat;
}
p {
    line-height: 24px;
    margin-bottom: 24px;
}

a {
    color: #228636;
    transition: all .3s ease;
    text-decoration:none!important;
}

a:hover {
    color: #f6a815;
}
.page_wrapper{
    min-height:100vh;
}
/*** 共用區 ***/
.d-block {
    display: block !important;
}
.d-inline-block{
    display:inline-block !important;
    width:auto !important;
    vertical-align:middle;
}

/*.form-control {
    border-radius: 0;
    border: none;
    height: 40px;
    font-size: 18px;
    transition: all .3s ease;
    color: #000;
    padding-top: 10px;
}*/
.form-control:focus {
    box-shadow: none;
}

.form-control::-webkit-input-placeholder {
    color: #000;
}

.form-control::-moz-placeholder {
    color: #000;
}

.form-control:-ms-input-placeholder {
    color: #000;
}

.form-control:-moz-placeholder {
    color: #000;
}

.form-group {
    margin-bottom: 25px;
}
.btn {
    display: block;
    transition: all .3s ease;
    text-decoration:none;
}

.btn:hover {
    -webkit-animation-name: hvr-pop !important;
    animation-name: hvr-pop !important;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-timing-function: linear !important;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
    .btn.red, .btn.yellow, .btn.green {
        margin-right: 10px;
    }
.btn.red {
    font-size: 18px;
    color: #ffffff;
    background: #c03e3e;
    border-radius: 15px;
    padding: 13px 30px;
    font-family: 'Open Sans','微軟正黑體', sans-serif;
    font-weight: bold;
}
    .btn.red:hover {
        background: #c03e3e;
    }

    .btn.yellow {
        font-size: 18px;
        color: #ffffff;
        background: #f2a124;
        border-radius: 15px;
        padding: 13px 30px;
        font-family: 'Open Sans','微軟正黑體', sans-serif;
        font-weight: bold;
    }

        .btn.yellow:hover {
            background: #f2a124;
        }

    .btn.green {
        font-size: 18px;
        color: #ffffff;
        background: #198236;
        border-radius: 15px;
        padding: 13px 30px;
        font-family: 'Open Sans','微軟正黑體', sans-serif;
        font-weight: bold;
    }

        .btn.green:hover {
            background: #198236;
        }


.btn.brown {
    font-size: 18px;
    color: #ffffff;
    background: #f6a815;
    border-radius: 15px;
    padding: 13px;
    font-family: 'Open Sans','微軟正黑體', sans-serif;
    font-weight: bold;
}
.btn.brown:hover {
    background: #8a6552;
}
.btn.gray {
    font-size: 18px;
    color: #000;
    background: #d2d2d2;
    border-radius: 15px;
    padding: 13px;
    font-family: 'Open Sans','微軟正黑體', sans-serif;
    font-weight: bold;
}
.btn.gray:hover {
    background: #be9c71;
    color:#fff;
}
.btn.black {
    font-size: 18px;
    color: #fff;
    background: #000;
    border-radius: 15px;
    padding: 13px;
    font-family: 'Open Sans','微軟正黑體', sans-serif;
    font-weight: bold;
    border:solid 1px transparent;
}
.btn.black:hover {
    background: #fff;
    border: solid 1px #000;
    color:#000;
}

.btn.orange {
    background: #b37502;
    color: #fff;
    font-size: 20px;
    padding: 6px 40px;
}
.btn.orange:hover {
    background: #4c9657;
}

.btn.icon {
    font-size: 20px;
    color: #fff;
    padding: 24px 10px 24px 46px;
    position:relative;
    
}
.btn.icon > span{
    position:relative;
    display:inline-block;
}
.btn.icon > span:before {
    position: absolute;
    content: "";
    display: block;
    left:-46px;
}

.btn.icon.back > span:before{
    top: -4px;
    width:34px;
    height:34px;
    background-image: url('../../images/all/icon_003.png');
}
.btn.icon.edit > span:before{
    top: -7px;
    width:40px;
    height:34px;
    background-image: url('../../images/all/icon_004.png');
}
.btn.icon.alarm > span:before{
    top: -7px;
    width:34px;
    height:34px;
    background-image: url('../../images/all/icon_005.png');
}

.btn.icon:hover {
    animation: none;
}
.btn.icon:after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    background: #ffc250;
    left: 0;
    bottom: 0;
    transition: all .3s ease;
}
.btn.icon:hover:after {
    height: 5px;
}

.btn.icon:hover > span:before{
    -webkit-animation-name: butover;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    animation-name: butover;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
}
@-webkit-keyframes butover {
    0%   {transform:translateX(0px);}
	50%  {transform:translateX(5px);}
	100% {transform:translateX(0px);}
}
@keyframes butover {
    0%   {transform:translateX(0px);}
	50%  {transform:translateX(5px);}
	100% {transform:translateX(0px);}
}

.bgg {
    background: #ffc250;
}

.txt_red{
    color:#f00 !important;
}



/*** 共用區 ***/
/********************* Header *********************/
.header {
}

.header .navbar{
    margin:30px 0 0;
}

body.home .header {
    display: none;
}
/* header logo */
.header .navbar .navbar-brand {
    width: 44px;
    height: 43px;
    background: url(../../images/all/logo_02.png) no-repeat;
    text-indent: -9999px;
    display: block;
    margin: 18px 0;
    padding: 0;
    transition:all .3s ease;
}

.header .navbar .navbar-brand:hover {
    opacity: 0.7;
}

/* header 主選單 */
.header .navbar .navbar-nav {
    background: none;
    margin-top: 84px;
    margin-right: -15px;
    float: right;
}

.header .navbar .navbar-nav > li > a {
    background: none;
    color: #888;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    padding-top: 0px;
}

.header .navbar .navbar-nav li a:hover {
    color: #333;
    border-bottom-color: #52CED5;
}

.header .navbar .navbar-nav > li + li > a {
    border-left: 1px solid #eee;
}

.header .navbar .navbar-nav > li ul li a {
    padding: 5px;
}

/* header 次選單 */
.header .navbar .sub-nav {
    position: absolute;
    right: 15px;
    top: 20px;
}

.header .navbar .sub-nav li {
    padding: 0;
}

.header .navbar .sub-nav li a {
    background: url(../../images/all/sub_nav.png) no-repeat;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
}

.header .navbar .sub-nav li a:hover {
    position: relative;
    top: 2px;
}

.header .navbar .btn-default {
    background: #52CED5;
    color: #fff;
    text-shadow: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 7px;
}

.header .navbar .lang {
    position: absolute;
    right: 54px;
    top: 20px;
}

.header .navbar .lang .dropdown-menu {
    background: #52CED5;
    color: #fff;
    border: none;
    border-radius: 0;
}

.header .navbar .lang .dropdown-menu a {
    color: #fff;
}

.header .navbar .lang .dropdown-menu a:hover {
    background: none;
    color: #FCE617;
}


.header .navbar > .container {
    background: #754c00;
}

.header .navbar .logo_txt {
    font-weight: bold;
    color: #fff;
    font-size: 25px;
    float: right;
    margin-top: 23px;
    letter-spacing:1px;
    transition:all .3s ease;
}
    .header .navbar .logo_txt:hover{
        opacity:0.7;
        letter-spacing:4px;
    }
    .header .navbar .navbar-header {
        width: 100%;
    }


/*------- Banner -------*/
.banner {
    position: relative;
}

.banner .container {
    max-width: 1144px;
    padding: 0;
}

.banner .bx-wrapper {
    margin-bottom: 0;
}

.banner .bxslider li {
    background-repeat: no-repeat;
    background-position: center top;
}

.banner .bxslider li a {
    display: block;
}

.banner .bxslider li img {
    width: 100%;
    display: none;
}

.banner .bx-wrapper .bx-viewport {
    background: none;
    border: none;
    box-shadow: none;
    left: 0;
}

.banner .bx-wrapper .bx-pager.bx-default-pager {
    text-align: right;
    padding: 0 15px;
    bottom: 2px;
    z-index: 60;
}

.banner .bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-align: left;
}

.banner .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #1EB5BE;
}

/********************* Footer *********************/
.footer {
    padding: 15px 0 0;
    text-align: center;
}

/* sitemap */
.footer .sitemap ul li {
    color: #888;
    padding: 0;
}

.footer .sitemap ul li a {
    color: #888;
    padding: 10px;
}

.footer .sitemap ul li a:hover {
    color: #36B9C0;
}

.footer_content {
    /*background-color: #ECECEC;
    font-size: 13px;
    line-height: 22px;
    padding: 15px 0 30px;*/
}

/* siteinfo */
.footer .siteinfo ul > li {
    padding: 0;
}

.footer .siteinfo ul > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #9c9c9c;
}

.footer .siteinfo .map {
    display: inline-block;
    background: url(../../images/all/icon_map.png) no-repeat;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    vertical-align: text-bottom;
    margin-right: 20px;
}

.footer .siteinfo .map:hover {
    position: relative;
    top: 2px;
}

.footer .copyright b {
    color: #36B9C0;
}

.footer .powered a {
    color: #AAA;
}

.footer .powered a:hover {
    color: #666;
}

/********************* floating *********************/
#floating .btn-floating {
    width: 28px;
    height: 58px;
    background-color: #52CED5;
    display: none;
    margin: 1px;
    padding: 10px 3px;
    position: absolute;
    left: -30px;
}

#floating .btn-floating .icon-arrow {
    width: 32px;
    height: 40px;
    background: url(../../images/all/arrow.png) no-repeat;
    display: block;
}

#floating.open .btn-floating .icon-arrow {
    background-position: 0 -40px;
}

#floating ul {
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
}

#floating ul li {
    padding: 10px 0;
}

#floating ul li + li {
    border-top: 1px solid #E7E7E7;
}

#floating ul li a {
    width: 56px;
    height: 60px;
    background: url(../../images/all/floating_icon.png) no-repeat;
    background-position-x: 0;
    font-size: 10px;
    color: #bbb;
    text-align: center;
    display: block;
    padding: 40px 0 0;
    position: relative;
}

#floating ul li.b1 a {
    background-position-y: 0;
}

#floating ul li.b2 a {
    background-position-y: -80px;
}

#floating ul li.b3 a {
    background-position-y: -160px;
}

#floating ul li a:hover {
    color: #333;
    background-position-x: -56px;
}


#floating ul li a .num {
    min-width: 20px;
    height: 20px;
    background-color: #EB0F0F;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 8px;
    top: 0;
}

/********************* Main *********************/
.main {
    z-index: 10;
}

body.home:not(.p01) .main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
}
body.home .page_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: auto;
}

.main_content {
    min-height: 600px;
    padding: 0 0;
    margin-bottom: 40px;
}
body:not(.home) .main_content > .container {
    box-shadow: 3px 13px 10px rgba(0, 0, 0, 0.3);
}
/*----------------------- side -----------------------*/
.side .side-toggle {
    font-size: 15px;
    color: #23989f;
    text-align: center;
    line-height: 28px;
    margin-top: 0px;
}

.side .nav > li + li {
    border-top: 1px solid #ABCFDB;
}

.side .nav > li a {
    color: #333;
    line-height: 20px;
    display: block;
    padding: 8px 10px 8px 22px;
}

.side .nav > li a:hover,
.side .nav > li a:focus,
.side .nav > li.active a {
    background: url(../../images/all/list_icon.png) no-repeat 0 10px;
    color: #02b7c1;
}

.side .nav > li > ul {
    padding-left: 20px;
    list-style-type: none;
}

.side .nav > li > ul > li > a,
.side .nav > li > ul > li > a:hover {
    background: url(../../images/all/list_icon2.png) no-repeat 0 6px;
    padding: 6px 10px 6px 20px;
}

.side .nav > li > ul > li > ul {
    margin-left: 18px;
    list-style-type: none;
}

.side .nav > li > ul > li > ul > li > a,
.side .nav > li > ul > li > ul > li > a:hover {
    background: url(../../images/all/list_icon3.png) no-repeat 0 6px;
    padding: 6px 10px 6px 20px;
}

/*----------------------- Content -----------------------*/
.content > h1 {
    color: #36b9c0;
    font-size: 30px;
    border-bottom: 1px solid #ABCFDB;
    padding: 5px 10px 15px;
    margin-top: 0;
}
/* breadcrumb */
.content .breadcrumb {
    background: none;
    margin: 0;
    font-size: 13px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.content .breadcrumb > li + li:before {
    content: "＞";
}

/* btn-more */
.content .btn-more {
    position: absolute;
    right: 15px;
    top: 30px;
    display: block;
    width: 52px;
    height: 24px;
    background: url(../../images/all/btn_more.png) no-repeat;
    text-indent: -9999px;
}

.content .btn-more:hover {
    background-position: 0 -24px;
}

/* list-box */
.content .list-box .txt-list {
    margin-bottom: 60px;
}

.content .list-box .txt-list li {
    background: url(../../images/all/icon_list.png) no-repeat 8px 12px;
    border-bottom: 1px dotted #ccc;
    padding-left: 30px;
}

.content .list-box .txt-list li:nth-child(2n+1) {
    background-color: rgba(240,240,240,0.3);
}

.content .list-box .txt-list li a {
    line-height: 28px;
    display: block;
    padding: 10px 0;
}

.content .list-box .txt-list li a:hover,
.content .list-box .txt-list li a:focus {
    color: #36B9C0;
}

.content .list-box .txt-list li span {
    font-size: 13px;
    color: #aaa;
    line-height: 20px;
    display: inline-block;
    float: right;
    padding: 3px 20px;
}

.content .list-box .txt-list li span.news-title {
    width: 78%;
    color: #848275;
    float: left;
}

.content .list-box .txt-list li.list-header {
    background: none;
    border-bottom: 1px solid #ACE7EB;
    padding-left: 40px;
    padding-right: 15px;
}

.content .list-box .txt-list li.list-header a,
.content .list-box .txt-list li.list-header a span {
    font-size: 18px;
    color: #36B9C0;
}

.content .list-box .txt-list li.list-header a span {
    padding-right: 24px;
}

/* btn-box */
.content .btn-box {
    border-top: 1px solid #ACE7EB;
    margin: 0 0 20px;
    padding-top: 15px;
    clear: both;
}

.content .btn-box:after {
    content: " ";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.content .btn-box .pager {
    text-align: left;
    display: inline-block;
    margin: 0 0 20px;
}

.content .btn-box .pager li {
    margin: 0 5px;
}

.content .btn-box .pager li > a {
    background: #fff;
    color: #888;
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    padding: 5px 20px;
}

.content .btn-box .pager li > a:hover {
    background-color: #36B9C0;
    color: #fff;
}

.content .btn-box .pager li > a .icon {
    display: none;
}

.content .btn-box .page-info {
    color: #888;
    float: right;
    text-align: center;
    margin: 0 5px;
}

.content .btn-box .page-info select {
    min-width: 60px;
    border: 1px solid #DFDFDF;
    margin-right: 10px;
}

/*----------------------------------------- 首頁 home --------------------------------------*/
body.home .main_content {
    min-height: 0;
}

body.home .content > h2 {
    font-size: 20px;
    border-bottom: 1px solid #ACE7EB;
    color: #36B9C0;
    padding: 6px;
}

body.home .content .btn-more {
    top: 10px;
    right: 0;
}
body.p01 .main {
    /* transform: translate(-50%, -55%); */
}

/*body.p01 .logo_sec a.logo {
    margin-bottom: 100px;
}*/

body.p01 .btn_group .list .btn {
    display: block;
    width: 19%;
    float: left;
    padding: 13px 5px;
    margin-right: 10px;
}

/*----------------------------------------- wid --------------------------------------*/
.content .wid {
    position: relative;
    z-index: 10;
}
/* wid-home-news */
.content .wid-home-news {
    margin-left: 0;
}

.content .wid-home-news .txt-list {
    margin-bottom: 10px;
    margin-top: -10px;
}

.content .wid-home-news .txt-list li {
    padding-left: 14px;
    background-position: 0 4px;
    background-color: transparent;
}

.content .wid-home-news .txt-list li:last-child {
    border-bottom: 2px solid #ACE7EB;
}

.content .wid-home-news .txt-list li a {
    padding: 2px 0;
    font-size: 13px;
}

.content .wid-home-news .txt-list li a span {
    padding: 3px 0;
    font-size: 12px;
}

/* wid-home-product */
.content .wid-home-product .bxslider li a {
    border: 1px solid #ACE7EB;
    padding: 2px;
    display: block;
}

.content .wid-home-product .bxslider li a:hover {
    border-color: #36B9C0;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a {
    width: 24px;
    height: 40px;
    background: url(../../images/home/arrow.png) no-repeat;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -24px;
}

.content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-next {
    right: -24px;
    background-position: 0 -40px;
}

/* wid-home-contact */
.content .wid-home-contact ul li {
    color: #717171;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.8;
}

.content .wid-home-contact ul li.phone {
    font-size: 22px;
    color: #333;
    font-weight: bold;
}

body.home .logo_sec a{
    transition:all .3s ease;
    display:block;
    width:100%;
    margin-bottom:20px;
}
body.home .logo_sec a img{
    max-width:90%;
}
body.home.manager .logo_sec a img{
    max-width: 40%;
}
body.home .logo_sec {
    margin-top: 65px;
}
body.home .logo_sec a:hover{
    opacity:0.7;
}
body.home .logo_sec .marquee {
    margin-top: 15px;
}
body.home .logo_sec .marquee a {
    color: #c03e3e;
    font-size: 16px;
}
body.home .logo_sec .marquee a:hover{
    color:#008ccf;
    text-decoration:underline;
}
body.home .logo_sec .marquee small.date{
    margin-right:10px;
}
.fill_sec {
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 50px 45px;
    position: relative;
}

.fill_sec .title_sec {
    font-size: 97px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    position: absolute;
    top: -73px;
    left: 30px;
    text-shadow: 5px 5px 13px rgba(0, 0, 0, 0.4);
    color: #fff;
}
.fill_sec .form-group .form_bord .form-control {
    padding-left: 50px;
}
.fill_sec .form-group .form_bord.user .form-control { 
    background: url('../../images/all/icon_001.png') 10px center no-repeat;
}
.fill_sec .form-group .form_bord.psd .form-control {
    background: url('../../images/all/icon_002.png') 10px center no-repeat;
}
.form_bord {
    background: #fff;
}
.form-group .btn {
    margin-top: 25px;
}
.user_sec {
    margin: 0 0 20px;
    visibility: unset!important;
}
.user_sec .user {
    background: url(../../images/all/icon_001.png) left top no-repeat;
    background-size: 23px;
    font-size: 20px;
    color: #7c3a00;
    padding-left: 29px;
    font-weight: bold;
}
body.inspection h1{
    font-size:30px;
    font-weight:bold;
    margin-bottom:20px;
}
body.inspection .form-horizontal .form-group {
    margin: 0;
    margin-bottom: 20px;
}
body.inspection .form-group label {
    text-align: right;
    font-size: 18px;
    padding-top: 5px;
    padding-right:0;
}
body.inspection .form-group span.txt {
    font-size: 16px;
    padding-top: 5px;
    display:block;
    text-align:left;
    margin-bottom:0;
}
body.inspection .next_btn{
    text-align:center;
    margin-bottom:10px;
}
body.inspection .next_btn .btn {
    display: inline-block;
    min-width: 150px;
}
body.inspection.p01 .logo_sec{
    margin-top:20px;
}
body.inspection.p01 .logo_sec a img {
    margin:0 auto;
}
body.inspection.p01 .d-f{
    display:flex;
    align-items:center;
}
body.inspection.p01 .d-f .form-control {
    width:50%;
    margin-right:10px;
}
body.inspection.p01 .d-f .txt{
    padding-right:10px;
}
body.inspection.p01 .display label{
    display:block;
    text-align:left;
}
body.inspection.p01 .main {
    transform: none;
    position: relative;
    top: 0;
    left: 0;
}
body.manager .txt {
    text-align: center;
    margin-bottom: 20px;
}
body.manager .txt p{
    margin-bottom:5px;
    font-size:18px;
    font-weight:bold;
    letter-spacing:2px;
}
body.manager .table th{
    text-align:center;
    width:50%;
}
body.manager .table tr td {
    text-align: center;
    background:none;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border: 1px solid #9e9e9e;
}
body.home .btn_group .btn {
    margin-bottom: 20px;
}
body.home .btn_group .d-flex {
    display: flex;
    justify-content: space-around;
}

body.home .btn_group .d-flex .btn {
    display: block;
    width: 100%;
}

body.home .btn_group .d-flex .btn:nth-child(1) {
    margin-right: 5px;
}

body.home .btn_group .d-flex .btn:nth-child(2) {
    margin-left: 5px;
}

.top_sec {
    background: #f2a124;
    /* padding-top: 20px; */
    text-align: center;
    padding-bottom: 15px;
}
.top_sec.nopb {
    padding-bottom: 0;
}
.main_content > .container {
    padding: 0;
}

.top_sec .top_info {
    display: flex;
    justify-content: space-around;
}

.top_sec .top_info .title_sec, .top_sec .top_info .btn_sec {
    width: 100%;
}

.top_sec .top_info .btn_sec {
    display: flex;
    justify-content: space-around;
    background: #ffe1a9;
    /* position: relative; */
}

.top_sec .top_info .title_sec .title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    padding: 25px 10px;
    box-shadow: inset 0 7px 0px #523601;
}
.top_sec .top_info .btn_sec .btn {
    width: 100%;
    color: #b37502;
}

.filter_sec {
    padding: 25px;
    color: #fff;
    font-size: 20px;
}

.filter_sec .btn_sec {
    margin-left: 40px;
}

.filter_sec .btn_sec .btn {
    margin: 0 7px;
}

.filter_sec .form_item {
    margin-left: 15px;
}

.filter_sec .form_item .form-control {
    width: 140px !important;
    border-radius: 5px;
}
.cityarea_sec {
    margin: 0 15px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    padding: 34px 10px;
}
.cityarea_sec.mgt_s {
    margin-top: 15px;
}

.main_sec {
    background: #fff;
}

.main_sec .date_sec {
    background: #f4f8e6;
    padding: 20px;
    font-size: 20px;
    text-align: center;
}

.data_sec {
    padding: 36px 15px;
}

.table-responsive {
    overflow: auto;
}
.table {
    border: solid 1px #9e9e9e;
    /* min-width: 1200px; */
}
.table>thead>tr>th,.table td {
    border: solid 1px #9e9e9e;
}
.table>thead>tr>th {
    vertical-align: middle;
    text-align:center;

}
.table>thead>tr>th span.rl{
    writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;      
    writing-mode: vertical-rl;
}
.table>thead>tr>th span.line{
    padding-top:8px;
    padding-bottom:8px;
}

.table > thead > tr > th:not(:nth-child(1)) {
    vertical-align: top;
}
.table>tbody>tr.gray {
    background: #d2d2d2;
}
.table>tbody>tr.pink {
    background: #f3bbc4;
}
.table>thead>tr.blue th{
    background:#daeefb;
}
    .table > tbody > tr > td.blue {
        background: #ffd7d7;
    }

.table>tbody>tr>td a {
    text-decoration: underline;
}
/*.table>tbody>tr>td:not(:first-child) {
    text-align: right;
}*/
.table>tbody>tr>td.des{
    text-align:left;
}
    .table > thead > tr > th:nth-child(1) {
         width: 230px;
    }
.main_sec .date_sec > span {
    display: inline-block;
    margin: 0 10px;
}

.main_sec .data_sec .hint {
    font-size: 15px;
    text-align: right;
    color: #c03e3e;
    margin: 5px 0 15px;
}
.main_sec .data_sec .btn_sec{
    margin-top:20px;
}
body.modify .table .form-control,
body.setunit.alarm .table .form-control{
    padding: 5px 3px;
    border: solid 1px #ccc;
    text-align: right;
    height: 34px;
    width: 90px;
}
body.modify .textalign .form-control {
    padding: 5px 3px;
    border: solid 1px #ccc;
    text-align: left;
    height: 34px;
}
body.modify .reBox .table .form-control {
    padding: 5px 3px;
    border: solid 1px #ccc;
    text-align: left;
    height: 34px;
}
body.modify .table .control-textarea,
body.modify .reBox .table .control-textarea {
    width: 100%;
    height: 180px;
}


body .reBox {
    margin-top: 60px;
}
body.modify .table,
body.setunit.alarm .table {
    /* min-width: 1500px; */
}

body.modify .table .form-control:focus{
    border-color:#000;
}
body.modify .table > tbody > tr:first-child > td,
body.declare.trash .table > tbody > tr:first-child > td,
body.declare.trash2 .table > tbody > tr:first-child > td{
    text-align:left;
}

body.setunit .table > tbody > tr > td:not(:first-child) {
    text-align: left;
}
.table>tbody>tr>td.btn_group .btn {
    display: inline-block;
    font-size: 15px;
    padding: 0;
    margin-right: 20px;
}
.table>tbody>tr>td.btn_group .btn.idelete {
    color: #5b4b49;
}

.table>tbody>tr>td.btn_group .btn.ialarm {
    color: #ffa630;
}
.table>tbody>tr>td.btn_group .btn:hover{
    animation:none;
    color:#f00 !important;
    text-decoration:underline;
}



.table>tbody>tr>td.btn_group .btn .icon {
    margin-right: 5px;
}
.table>tbody>tr>td.btn_group {
    max-width: 130px;
}


.main_sec .pubset_sec {
    text-align: right;
    padding: 20px 20px 0 0;
}
.main_sec .pubset_sec .btn {
    padding: 5px 25px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom:10px;
}

body.setunit .table {
    min-width: auto;
    width: 100%;
}

body.setunit.modify .form-group .form-control {
    border: solid 1px #ccc;
}

body.setunit.modify .form-group label {
    font-size: 18px;
}
body.declare.modify.recycle .form-control,
body.declare.modify.alt .form-control {
    width: 95px;
}
body.marquee .header {
    display: none;
}
body.marquee .main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f4f8e6;
    box-shadow: 3px 13px 10px rgba(0, 0, 0, 0.3);
}
body.marquee .main_content{
    min-height:300px;
}
body.marquee .main_content > .container {
    box-shadow: none;
}
body.marquee .main_sec {
    background: #f4f8e6;
}
body.marquee .form-horizontal {
    width: 80%;
    margin: auto;
    margin-top: 50px;
}
body.marquee .form-horizontal .form-control{
    box-shadow: none;
    border: 1px solid #eee;
}
body.manager.select.other .table > thead > tr > th:nth-child(2),
body.member.select.other .table > thead > tr > th:nth-child(2) {
    width: 150px;
}
body.manager.select.other .table > thead > tr > th:nth-child(4),
body.member.select.other .table > thead > tr > th:nth-child(4) {
    /*width: 150px;*/ width: 350px;
}

body.manager.select.recycle .table.kind02 tbody > tr > td:nth-child(1) {
    width: 50px;
    text-align: center;
}
body.manager.select.recycle .table.kind02 tbody > tr > td:nth-child(2) {
    width: 170px;
    text-align: left;
}
body.manager.select.recycle .table.kind02 tbody > tr:last-child > td:nth-child(2){
    text-align:right;
}
body.declare.trash .table > tbody > tr > td,
body.declare.trash2 .table > tbody > tr > td {
    width: 250px;
}
body.manager.select.trash2 .table > thead > tr > th:first-child{
    width: 22%;
}
body.manager.select.trash2 .table > thead > tr > th{
    width: 13%;
}
body.manager.select.trash2 .table > thead > tr > th:nth-child(2),
body.member.select.trash2 .table > thead > tr > th:nth-child(2) {
    width: 200px;
}


@media print{

    body .table>thead>tr>th, 
    body .table>tbody>tr>th, 
    body .table>tfoot>tr>th, 
    body .table>thead>tr>td, 
    body .table>tbody>tr>td, 
    body .table>tfoot>tr>td{
        padding: 2pt;
        font-size: 8pt;
    }
    .table>tbody>tr.gray td {
        background: #888 !important;
        border: solid 3px #9e9e9e;
        /* -webkit-print-color-adjust: exact;
        print-color-adjust: exact; */
    }
    .table>tbody>tr.pink {
        background: #ddd !important;
        border: solid 3px #9e9e9e;
        /* -webkit-print-color-adjust: exact;
        print-color-adjust: exact; */
    }
    body.manager.select.recycle.type0 .header .navbar > .container, 
    body.manager.select.recycle.type0:not(.home) .main_content > .container,
    body.manager.select.recycle.type2 .header .navbar > .container, 
    body.manager.select.recycle.type2:not(.home) .main_content > .container,
    body.member.select.recycle.type0 .header .navbar > .container, 
    body.member.select.recycle.type0:not(.home) .main_content > .container,
    body.member.select.recycle.type1 .header .navbar > .container, 
    body.member.select.recycle.type1:not(.home) .main_content > .container{
        width: auto;
    }
    body.manager.select.recycle.type0 .table-responsive,
    body.manager.select.recycle.type2 .table-responsive,
    body.member.select.recycle.type0 .table-responsive,
    body.member.select.recycle.type1 .table-responsive{
        overflow: visible;
    }
    body.manager.select.recycle.type0 .table > thead > tr > th:nth-child(1),
    body.manager.select.recycle.type2 .table > thead > tr > th:nth-child(1),
    body.member.select.recycle.type0 .table > thead > tr > th:nth-child(1),
    body.member.select.recycle.type1 .table > thead > tr > th:nth-child(1){
        width: auto;
    }
    body.select.other .table>thead>tr>th,
    body.select.other .table>tbody>tr>td{
        width: 25%;
    }


}


