@charset "utf-8";

/* ===================================================================
CSS information

 file name  :news.css
 author     :PCBrain
 style info :News & Topics
=================================================================== */

#pageTitle {
    background: url(../img/news/h1_bg.png) no-repeat center center;
}

#main h3 {
    text-align: left;
}


#main h3 span {
    background: #83c2e9;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 100px;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
}

#main h3 a {
    color: #333;
    text-decoration: none;
}

#main h3 a:hover {
    color: #f29625;
}

#main .date {
    color: #f29625;
    font-size: 14px;
    font-weight: bold;
    text-align: right;
    margin: -15px 0 5px;
}

#main .singlePage .date {
    text-align: center;
    margin: 0 0 15px;
    float: right;
}

#main .singlePage .catTxt {
    float: left;
}

#main .singlePage .catTxt span {
    background: #83c2e9;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    width: 100px;
    text-align: center;
    display: inline-block;
    margin-right: 15px;
}

#main .singlePage h2 {
    margin-bottom: 10px;
    text-align: left;
    position: relative;
    border-bottom: #4394d5 solid 4px;
    padding: 0 10px;
    font-size: 23px;
}

#main .singlePage h2:after{
    display: none;
}

#main .singlePage h4 {
    text-align: left;
    padding: 0 10px;
}

#main .contentsTxt {
    clear: both;
}

#main .btn {
    display: block;
    text-align: right;
    font-weight: normal;
    font-size: 16px;
}

#main .btn a {
    position: relative;
    padding: 10px 15px 10px 45px;
    background: #4394d5;
    text-decoration: none;
    color: #fff;
}

#main .btn a:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    content: "";
    vertical-align: middle;
}

#main .btn a:before {
    display: none;
}

#main .btn a:after {
    left: 15px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#main .btn a:hover {
    opacity: 0.8;
    transition: 0.7s;
}

#main blockquote {
    background: #fff;
    border: #ddd solid 1px;
    box-shadow: 0px 0px 0px 3px #eee inset;
    -moz-box-shadow: 0px 0px 0px 3px #eee inset;
    -webkit-box-shadow: 0px 0px 0px 3px #eee inset;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    margin: 20px 0;
}

#main blockquote p:last-of-type {
    margin-bottom: 0;
}

#main ul,
#main ol {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

#main ul li {
    position: relative;
    padding-left: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
}

#main ul li:before,
#main ul li:after {
    position: absolute;
    top: 3px;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

#main ul li:before {
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #386ad7;
}

#main ul li:after {
    left: 3px;
    top: 7px;
    width: 4px;
    height: 4px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#main ol {
    counter-reset: numList;
}

#main ol li {
    position: relative;
    line-height: 1.4;
    margin-bottom: 10px;
    padding-left: 35px;
}

#main ol li:before {
    counter-increment: numList;
    content: counter(numList)".";
    color: #386ad7;
    margin-right: 5px;
    font-weight: bold;
    float: left;
    margin-left: -30px;
}

#main strong {
    background: rgba(125, 214, 59, 0.4);
    display: inline-block;
    line-height: 0.7;
}

#main p + h3,
#main p + h4,
#main p + h5,
#main p + h6,
#main ul + h3,
#main ul + h4,
#main ul + h5,
#main ul + h6,
#main ol + h3,
#main ol + h4,
#main ol + h5,
#main ol + h6 {
    margin-top: 30px;
}