﻿@charset "utf-8";
/* 設計師用 桌機版CSS檔 style.css */
/* 說明：
    可提供設計師在此檔，針對桌機版面進行設計；為網站必載CSS檔。*/

body {
    font-size: 15px;
    color: #333;
    background:#eee;
}

p {
    line-height: 24px;
    margin-bottom: 24px;
}

a {
    color: #666;
}

a:hover {
    color: #52CED5;
}
.btn-primary{
    background: #444444;
    color: #fff;
    text-align: center;
    border: none;
}
.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active{
        background: #222;
}

/********************* Header *********************/
.header .navbar .container{
    padding-left:0;
    padding-right:0;
}
.header .navbar {
  background: #cf000d;
}

/* header logo */
.header .navbar .navbar-brand {
    width: 273px;
    height: 100px;
    background: url(../images/all/logo.png) no-repeat;
    text-indent: -9999px;
    display: block;
    margin: 15px 0 15px;
    padding: 0;
}

.header .navbar .navbar-brand:hover {
    opacity: 0.7;
}

/* header 主選單 */
.header .navbar .nav-box{
    background:#fff;
}
.header .navbar .nav-box .navbar-collapse{
    padding-left:0;
    padding-right:0;
}
.header .navbar .nav-box .dropdown-menu{
    background: #888888;
    color: #fff;
    border-radius: 0;
    border-color: #808080;
    padding: 0;
}
.header .navbar .nav-box .dropdown-menu li a{
    color:#fff;
}
.header .navbar .nav-box .dropdown-menu li a:hover,
.header .navbar .nav-box .dropdown-menu li a:focus{
    color: #888;
    background: #fff;
}
.header .navbar a.menu-toggle{
    position: absolute;
    bottom:-40px;
    left: 0;
    z-index: 1;
}
.header .navbar .navbar-nav {
    background: none;
    margin-top: 0px;
    margin-right: -15px;
    float: right;
    padding-bottom:15px;
    padding-top:15px;
}

.header .navbar .navbar-nav > li > a {
    background: none;
    color: #222222;
    font-weight: bold;
    padding: 5px 30px;
}

.header .navbar .navbar-nav li a:hover,
.header .navbar .navbar-nav li a:focus {
    color: #cf000d;
}

.header .navbar .navbar-nav > li + li > a {
    
}

.header .navbar .navbar-nav > li ul li a {
    padding: 10px 15px;
}
.header .navbar .navbar-nav > li ul li a:hover,
.header .navbar .navbar-nav > li ul li a:hover {
    background:#333;
    color:#fff;
}
.dropdown-menu li:hover .sub-menu {
    visibility: visible;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.header .navbar .nav-box-L{
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    z-index: 999;
    pointer-events: none;
}
body.menuopen .navbar .nav-box-L{
    pointer-events: auto;
}
.header .navbar .nav-box-L .navbar-nav{
    top:0;
    left: -310px;
    right: 0;
    bottom:0;
    float: none;
    margin-left: 0;
    width:310px;
    background:#969696;
    overflow-y: scroll;
    padding:0;
    position: absolute;
    z-index: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
} 
body.menuopen .header .navbar .nav-box-L .navbar-nav{
    left: 0;
}
.header .navbar a.body-toggle{
    position: absolute;
    background: rgba(0, 0, 0, 0.15);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-indent: -9999px;
    display: block;
    opacity:0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
body.menuopen .header .navbar a.body-toggle{
    opacity:1;
}
.header .navbar .nav-box-L .navbar-nav>li.panel{
    float: none;
    border-radius: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
    margin-bottom:0;
} 
.header .navbar .nav-box-L .navbar-nav>li.panel >a{
    box-shadow: none;
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    padding: 25px 15px 0px 25px;
    background: #969696; 
    text-align:left;
}
.header .navbar .nav-box-L .navbar-nav>li.panel >a.collapsed{
    padding-bottom:25px;
}


.header .navbar .nav-box-L .navbar-nav>li.panel >a:hover,
.header .navbar .nav-box-L .navbar-nav>li.panel >a:focus{
    color: #cf000d;
}
.header .navbar .nav-box-L .navbar-nav>li.panel >a.collapsed img{
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.header .navbar .nav-box-L .navbar-nav>li.panel >a img{
    margin-right:10px;
    transition: all .3s;
}
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li{
    margin-top:0px;
}
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li:first-child{
    margin-top:20px;
}
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li a{
    background:#888;
    padding:15px 15px 15px 75px;
    font-size:17px;
    display: block;
    color:#fff;
    border-bottom:1px solid #9f9f9f;
    text-align:left;
}
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li:last-child a{
    border-bottom:none;
}
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li a:hover,
.header .navbar .nav-box-L .navbar-nav>li.panel>ul li a:focus{
    color: #888;
    background:#fff;
}


/* header 次選單 */
.header .navbar .sub-nav {
    position: absolute;
    right: 0px;
    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: 35px;
    height: 30px;
    text-indent: -9999px;
}
.header .navbar .sub-nav li.b2 a{
    background-position:-35px 0;
}
.header .navbar .sub-nav li.b3 a{
    background-position:-70px 0;
}

.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;
}

/*------- Banner -------*/
.banner {
    position: relative;
    margin-top:35px;
}

.banner .container {

    background-color: #EEE;
    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 {
    display: block;
    margin: auto;
    width: auto;
}

.banner .bx-wrapper .bx-viewport {
    background: none;
    border: none;
    box-shadow: none;
    left: 0;
}
.banner ul.bxslider{
    display:none;
}
.banner .bx-viewport ul.bxslider{
    display:block;
}
.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;
    background: #cf000d;
}

/* sitemap */
.footer .sitemap {
    display:none;
}
.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 {
    font-size: 13px;
    line-height: 22px;
    padding: 15px 0 30px;
}

/* siteinfo */
.footer .container{
    padding:0;
}
.footer .cop-box{
    float:left;
}
.footer .siteinfo ul.list-inline{
    text-align:left;
}
.footer .siteinfo ul > li {
    padding: 0;
    display:block;
    font-size:14px;
    color:#fff; 
    margin:8px 0;
}
.footer .siteinfo ul > li.tel,
.footer .siteinfo ul > li.fax{
    display:inline-block;
}
.footer .siteinfo ul > li.mail{
    margin:15px 0;
}

.footer .siteinfo ul > li + li:before {

}
.footer .siteinfo ul > li a{
    overflow: inherit;
    color:#fff;
    font-size: 14px;
}
.footer .siteinfo ul > li label{
    margin: 0 5px 0 0;
    font-size: 14px;
    background: #2e2e2e;
    border-radius: 10px;
    padding: 0px 5px;
}

.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 {
    font-size: 14px;
    color:#fff;
}
.footer .copyright b {
    color: #fff;
    font-weight:500;
}

.footer .powered a {
    color: #AAA;
}

.footer .powered a:hover {
    color: #666;
}
.footer .nav-link{
    text-align:left;
    color:#fff;
    float:left;
    width:30%;
    margin:0 5px;
}
.footer .nav-box{
    border-right:1px solid #fff;
}
.footer .nav-link ul li a{
    color:#fff;
    padding:5px 0;
    font-size:15px;
}
.footer .nav-link ul li a:hover{
    background:none;
    text-decoration:underline;
}
.footer .nav-link h4 {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.footer .f-logo{
    float: left;
    margin: 0 65px 0 60px;
}
.footer .f-logo img{
    margin:auto;    
}
.footer .col-md-8{
    padding-top:15px;
}


/********************* 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 .main_content {
    padding: 35px 0 0;
}
.main_content {
    min-height: 600px;
    padding: 35px 0 35px;
}

/*----------------------- 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: #000;
    font-size: 30px;
    border-bottom: 2px solid #c1c1c1;
    padding: 5px 10px 15px;
    margin-top: 0;
    position: relative;
}
.content > h1:after{
    content:"";
    position:absolute;
    height:3px;
    top:53px;
    left:0;
    right:0;
    bottom:0;
    border-bottom:2px solid #ffffff;
}
/* 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 .item-box .txt-list {
    margin-bottom: 60px;
}

.content .item-box .txt-list li {
    background: url(../images/all/icon_list.png) no-repeat 8px 12px;
    border-bottom: 1px dotted #ccc;
    padding-left: 30px;
}

.content .item-box .txt-list li:nth-child(2n+1) {
    background-color: rgba(240,240,240,0.3);
}

.content .item-box .txt-list li a {
    line-height: 28px;
    display: block;
    padding: 10px 0;
}

.content .item-box .txt-list li a:hover,
.content .item-box .txt-list li a:focus {
    color: #36B9C0;
}

.content .item-box .txt-list li span {
    font-size: 13px;
    color: #aaa;
    line-height: 20px;
    display: inline-block;
    float: right;
    padding: 3px 20px;
}

.content .item-box .txt-list li span.news-title {
    width: 78%;
    color: #848275;
    float: left;
}

.content .item-box .txt-list li.list-header {
    background: none;
    border-bottom: 1px solid #ACE7EB;
    padding-left: 40px;
    padding-right: 15px;
}

.content .item-box .txt-list li.list-header a,
.content .item-box .txt-list li.list-header a span {
    font-size: 18px;
    color: #36B9C0;
}

.content .item-box .txt-list li.list-header a span {
    padding-right: 24px;
}

/* btn-box */
.content .btn-box {
    border-top: 1px solid #c1c1c1;
    margin: 40px 0 20px;
    padding-top: 15px;
    clear: both;
    text-align:center;
}

.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: #444;
    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;
}
body .search-box .form-group.w2{
    position:relative;
}
body .search-box{
    position:absolute;
    top: 20px;
    right: 121px;
}


body .search-box .form-control{
    border-radius:20px;
    border:none;
    box-shadow:none;
    position:relative;
    height:30px;
}

body .search-box .btn_search{
    position: absolute;
    top: 6px;
    right: 11px;
    font-size: 16px;
    color: #cf000d;
}
.content .txt {
    padding: 10px;
    line-height: 24px;
}

/*----------------------------------------- 首頁 home --------------------------------------*/
.main_content .container{
    padding-left:0;
    padding-right:0;
}


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: 0px;
    right: 0;
    width: 40px;
    height: 40px;
    background: url(../images/home/more.png) no-repeat;
}
body.home .content .btn-more:hover {
    top: -5px;
}
body.home .content .item-box{
    margin-bottom:45px;
}
body.home .content h1{
    color:#222;
    font-size:30px;
    margin-bottom:25px;
    margin-top:0px;
    font-weight:bold;
}
body.home .content .info {
    padding:15px 15px 0px 15px;
    border-top: 3px solid #c3c3c3;
}
body.home .content .info h5{
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size:16px;
}
body.home .content .info p{
    margin-bottom:15px;
}
body.home .content .info span.label{
    float:none;
}

body.home .content .con {
    padding-left:0;
}
body.home .content .ad {
    padding-right:0;
}
body.home ul.txt-overflow > li > a {
    color: #222222;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

body.home span.label{
    min-width: 68px;
    background: #ff9000;
    font-size: 12px;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px 4px;
    margin-right: 15px;
    float:left;
    display: inline-block;
    text-align: center;
}

body.home .con-box a{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.home .con-box a:hover{
    color:#cf000d;
}
body.home .con-box a .pic{
    overflow:hidden;
}
body.home .con-box a .pic img{
    transition: all .5s;
}
body.home .con-box a:hover .pic img{
    webkit-transform: scale(1.1);
    transform: scale(1.1);
}
body.home .con-box .pic{
    overflow:hidden;
}
body.home .con-box .pic a img{
    transition: all .5s;
}
body.home .con-box .pic a:hover img{
    webkit-transform: scale(1.1);
    transform: scale(1.1);
}
body.home .con-box h4{
    padding-left: 15px;
    font-size: 20px;
    border-left: 7px solid;
    line-height: 20px;
    font-weight: bold;
}
body.home .con-box .item-box{
    position:relative;
}

/* .list-tab */
body.home .list-tab .col-md-7{
    padding-right:0;
}
body.home .list-tab .col-md-5{
    padding-left:0;
}

body.home .list-tab .nav-pills>li{
    float:none;
}
body.home .list-tab .nav-pills > li > a {
    padding: 27px 15px;
    background: #fff;
    border-radius: 0;
    line-height: 21px;
}
body.home .list-tab .nav-pills>li+li {
    margin-left: 0px;
}

body.home .list-tab .nav-pills>li.active>a, 
body.home .list-tab .nav-pills>li.active>a:hover, 
body.home .list-tab .nav-pills>li.active>a:focus{
    background:#dfdfdf;
    color: #cf000d;
}
/* .list-pic01 */
body.home .list-pic01 .row{
    margin-left:-8px;
    margin-right:-8px;
}
body.home .list-pic01 .row .col-md-4{
    padding-left:8px;
    padding-right:8px;
}
/* .selected */
body.home .selected .wid-home-article {
    background: #fff;
    padding: 20px 20px 0 20px;
    margin-bottom: 20px;
}
body.home .selected .row {
    margin-left: -8px;
    margin-right: -8px;
}
body.home .selected .row .col-md-6{
    padding-left:8px;
    padding-right:8px;
}
body.home .selected ul li {
    border-bottom: 1px solid #e6e6e6;
}
body.home .selected  ul li:last-child{
    border-bottom:none;
}
body.home .selected  ul li a{
    padding:20px 0;
    display:block;
}

body.home .selected .col-md-6:nth-child(odd) .wid-home-article {
    border-top: 3px solid #ff5249;
}
body.home .selected .col-md-6:nth-child(odd) h4 {
    border-color: #5b0e1b;
    color: #5b0e1b;
}
body.home .selected .col-md-6:nth-child(odd) span.label {
    background: #ff5249;
}
body.home .selected .col-md-6:nth-child(even) .wid-home-article {
    border-top: 3px solid #e449af;
}
body.home .selected .col-md-6:nth-child(even) h4 {
    border-color: #5b0e4d;
    color: #5b0e4d;
}
body.home .selected .col-md-6:nth-child(even) span.label {
    background: #e449af;
}
/* .two-items */
body.home .two-items .row{
    margin-left:-8px;
    margin-right:-8px;
}
body.home .two-items .row .col-md-6{
    padding-left:8px;
    padding-right:8px;
}
body.home .two-items span.label{
    background:#ff5249;
}
body.home .two-items ul{
    padding:15px;
}
body.home .two-items ul li a{
    display:block;
    padding:10px 0;
}
body.home .content .two-items .btn-more{
    right:8px;
}
/* writer */
body.home .writer .info {
    border-top: none;
    text-align: center;
    background: #fff;
}
body.home .writer .info p{
    font-size:16px;
    color:#ff5249;
    margin-bottom:5px;
}
body.home .writer .info h3{
    font-size:22px;
    color:#222222;
    margin-top:0;
}
/* link */
body.home .link{
    padding-top:35px;
    padding-bottom:35px;
    background:#fff;
}
/* slickBox*/
body.home .con-box .slickBox .item{
    margin:0 8px;
}
body.home .con-box .slickBox{
    margin-left:-8px;
    margin-right:-8px;
}

body.home .con-box .slickBox .slick-prev, 
body.home .con-box .slickBox .slick-next{
    width: 30px;
    height: 55px;
    background: url(../images/home/arrow01.png) no-repeat;
    border: none;
    outline: none;
    text-indent: -9999px;
    position: absolute;
    z-index: 1;
    top: calc(50% - 55px/2);
}
body.home .con-box .slickBox .slick-next{
    right: -30px;
    background-position: 0px -54px;
}
body.home .con-box .slickBox .slick-prev{
    left:-30px;
}
body.home .link .slickBox .slick-prev, 
body.home .link .slickBox .slick-next{
    width: 18px;
    height: 25px;
    background: url(../images/home/arrow02.png) no-repeat;
    border: none;
    outline: none;
    text-indent: -9999px;
    position: absolute;
    z-index: 1;
    top: 50%;
}
body.home .link .slickBox .slick-next {
    right: -25px;
    background-position: 0px -25px;
}
body.home .link .slickBox .slick-prev{
    left:-25px;
}
body.home .link .container{
    padding-left:8px;
    padding-right:8px;
}
body.home .link .item{
    margin-left:8px;
    margin-right:8px;
}
/*----------------------------------------- 首頁 ad --------------------------------------*/

body .ad-L .col-md-12{
    margin-bottom:15px;
}

body.home .content .item-box .txt-list {
    margin-bottom: 60px;
}

body.home .content .item-box .txt-list li {
    background: none;
    border-bottom: 1px dotted #ccc;
    padding-left: 30px;
}
body.home .content .item-box .txt-list li span {
    font-size: 13px;
    color: #aaa;
    line-height: 20px;
    display: inline-block;
    float: right;
    padding: 3px 20px;
}

/*----------------------------------------- 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;
}


/* article 文章 */
.article a {
    color: #333;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.article a .pic{
    overflow:hidden;
}
.article a .pic img {
    transition: all .5s;
} 
.article a:hover .pic img{
    webkit-transform: scale(1.1);
    transform: scale(1.1);
} 
.article .title a,
.article .title{
    color:#cf000d;
    font-weight:bold;
}
.article .first-article{
    padding:10px;
}
.article h2.title{
    font-size:24px;
}
.article h3.subtitle{
    font-size:20px;
    color:#ff9000;
    margin-top: 0px;
    margin-bottom: 5px;
}
.article p.preface{
    font-size:15px;
    color:#666;
    margin-bottom: 15px;
}

.article h4.title{
    font-size:16px;
}
.article p.writer a,
.article p.writer{
    font-size:15px;
    margin-bottom:0;
}
.article p.writer span a,
.article p.writer span{
    margin-right:10px;
}
.article p.writer span.name a,
.article p.writer span.name{
   color: #c69b63;
}
.article p.writer a,
.article p.writer span.name label{
    color:#333;
    font-weight: inherit;
}
.article p.summary{
    font-size:14px;
}
.article a:hover p.summary {
    color: #999;
    transition: all .5s;
}
.article-list .item:nth-child(odd){
    background:#f7f7f7;
}
.article-list .item{
    position: relative;
    padding: 10px;
    margin-bottom: 5px;
}
.article-list .item a {
    padding-top: 10px;
    padding-bottom: 10px;
    /*display:block;*/
}
.article-list .item a .icon-box2{
    width: 25%;
    display: inline-block;
    vertical-align: top;    
}
.article-list .item a .icon-box2 img{
    width:100%;
}
.article-list .item .info{
    display: inline-block;
    vertical-align: top;
    width: 73%;
    text-align: left;
    margin-left: 8px;
    padding: 5px 0px 0 0;
}

.article.show .title-box{
    padding:0 10px;
}
.article.show .tabs{
    margin:0px 10px 15px;
}
.article.show .tabs a{
    background: #cf000d;
    color:#fff;
    padding:3px;
    margin-right:3px;
}
.article.show .tabs a:hover,
.article.show .tabs a:focus{
    background: #97121a;
}
.article.show .editor{
    margin:30px 0;
}
.article.show .related-article{
    background:#fff;

}
.article.show .related-article h4{
    font-size: 20px;
    background: #c0c3ca;
    padding: 8px 10px;
    margin: 0;
}

.article.show .related-article a{
    padding: 12px 10px;
    color: #222222;
    display:block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.article.show .related-article a:hover{
    color:#cf000d;
}
.article.show .related-article span.label {
    min-width: 68px;
    background: #cf000d;
    font-size: 12px;
    color: #fff;
    border-radius: 10px;
    padding: 5px 10px 4px;
    margin-right: 15px;
    float: left;
    display: inline-block;
    text-align: center;

}

/*.btn-toolbar*/
.btn-toolbar {
    text-align: center;
    margin-top: 40px;
    margin-bottom:20px;
}
.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group{
    float:none;
    margin-left:0;
    margin-top:10px;
}
.btn-toolbar a {
    padding: 4px 8px;
    background: #fff;
    border: 1px solid #ddd9d9;
    background-color: #fff;
    border-radius: 5px;
}
.btn-toolbar a:hover,
.btn-toolbar a:focus {
    background: #c0c3ca;
    color:#333;
}

/*.magazine*/

.magazine .magazine-list h4{
    color:#000;
    margin-bottom:0;
    font-weight:bold;
}
.magazine .magazine-list a:hover h4{
    color: #cf000d;
}
.magazine .magazine-list ul.list-unstyled li{
    color:#555;
    font-size:14px;
}
.magazine .magazine-list a{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom:20px;
}
.magazine .magazine-list a .pic{
    overflow:hidden;
}
.magazine .magazine-list a .pic img{
    transition: all .5s;
}
.magazine .magazine-list a:hover .pic img{
    webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.magazine.show .des{
    position:relative;
} 
.magazine.show h4.title{
    color:#333;
    font-weight:bold;
    margin-top:0;   
}
.magazine.show ul.list-unstyled{
    margin-bottom:5px;
}
.magazine.show ul.list-unstyled li{
    float:left;
    font-size:14px;
    color:#555;
}
.magazine.show ul.list-unstyled li.date{
    float:right;
}
.magazine.show .order-box{
    font-size:16px;
    color:#000;
    margin-top:15px;
}
.magazine.show .order-box .price{
    float:left;  
}
.magazine.show .order-box .price span{
    color: #cf000d;
    padding:0 5px;
}
.magazine.show .order-box .go-order{
    float:right;
}
.magazine.show .order-box .go-order a{
    background: #cccccc;
    padding: 5px 10px;
    border: 1px solid #cfcfcf;
    color: #000;
}
.magazine.show .order-box .go-order a:hover{
    background: #fff;
    border: 1px solid #cfcfcf;
    color: #cf000d;
}
.magazine.show .box2 .editor{
    margin-top:30px;
    padding-top:20px;
    padding-bottom:20px;
    position:relative;
    border-top: 2px solid #c1c1c1;
}
.magazine.show .box2 .editor:after{
    content: "";
    position: absolute;
    height: 3px;
    top: -2px;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #ffffff;
}
.magazine.show .box2 .editor ul{
    margin-left:20px;
}

.magazine.show .box2 .editor ul li a{
    padding: 3px 0;
    display: block;
}
.magazine.show .box2 .editor ul li a:hover{
    color: #cf000d;
}
.magazine.show .article-list h4.title{
    font-size:16px;
    color: #cf000d;
    font-weight: bold;
    margin-top:10px;
}
.magazine.show .article-list h3 {
    font-size: 20px;
    background: #c0c3ca;
    padding: 8px 10px;
    margin: 0;
}
.magazine.show .article-list .item:nth-child(odd){
    background:none;
}
.magazine.show .article-list .item:nth-child(even){
    background:#fff;
}

.magazine.show .eZShareBar {
	margin-bottom: 20px;
	margin-top: 20px;
}

/*.article .first-article*/
/*.article .first-article .icon-box{
    float: left;
    display: inline-block;
    width: 30%;
}
.article .first-article .info{

}*/




