
@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  color: #069;
  background: transparent;
  text-decoration: none;
/*  transition-duration: 0.3s;  */
}
a:hover {
  color: #06c;
}
a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

img {
	border: 0px none #FFF;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

*:before, *:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
html, body {
  height:100%;
  margin:0;
}
body {
  font: 100%/1.4 "微軟正黑體", Arial, Helvetica, sans-serif;
	background-color: #f0f4f7;
	margin: 0;
	padding: 0;
  color: #333;
  display: flex;
  flex-direction: column;
}
.container::after, 
.container::before, 
.r_content::after, 
.r_content::before, 
.row-fluid::after,
.row-fluid::before,
.row::after,
.row::before {
  content: " ";
  display: table;
}
.container::after, .r_content::after, .row-fluid::after, .row::after {
  clear: both;
}
.container {
  width: 1200px;
  margin: 0 auto;
  content: "";
  padding: 0px 10px;
  height: 100%;
}
header .container {
 height: inherit; 
}
.span5 {
  width: 50%;
}
.span7 {
  width: 70%;
}
.span3 {
  width: 30%;
}
.row-fluid {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.row-fluid [class*="span"] {
    box-sizing: border-box;
    display: block;
    float: left;
}

/* 頁首 */
header {
	background-color: #006699;
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#006699), to(#005580)); /*漸層色for Google Chrome、Safari*/
  background: -moz-linear-gradient(#006699, #005580); /*漸層色for Firefox*/
	height: 48px;
  padding: 2px 0px 0px 0px;
  -webkit-box-shadow: 0px 2px 3px #666; /*陰影for Google Chrome、Safari*/
  -moz-box-shadow: 0px 2px 3px #666; /*陰影for Firefox*/
  box-shadow: 0px 2px 3px #666; /*陰影for IE*/
  position: relative;
  z-index: 10;
}
#logo{
  float: left;
}
#logo img, .ft-logo img {
  max-width: 145px;
}
#navigation {
	float: left;
}
#navigation ul, #setting > ul {
	padding: 10px 0px 0px 20px;
	margin: 0;
	list-style-type: none;
}
#navigation ul li {
	display: inline-block;
  padding: 0px 15px 0px 0px;
}
#navigation ul li a{
  color:#ffffff;
}
#setting {
	float: right;
}

#setting > ul {
	padding: 0px 0px 0px 0px;
	margin: 0;
	list-style-type: none;
}

#setting > ul > li {
	display: inline-block;
  vertical-align: middle;
  color:#ffffff;
  padding: 0px 0px 0px 10px;
  line-height: 40px;
  vertical-align: middle;
}
#setting ul li a {
  color:#ffffff;
}
#setting .fa, #navigation ul li .fa {
  font-size: 28px;
}
#setting .fa.fa-users {
  font-size: 23px;
}
#setting i, #navigation ul li .fa {
  vertical-align: middle;
}
#setting #menus {
  display: none;
}
.u-pl-lnk {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.u-pl-lnk span {
  padding-left: 45px;
  padding-right: 10px;
}
.u-pl-lnk img {
  max-width: 38px;
  border-radius: 20px;
  font-size: 0px;
  position: absolute;
  left: 0px;
  top: 1px;
}
#setting .u-pl-lnk i.fa {
  font-size: 21px;
}
.nty-bel {
  display: inline-block;
  position: relative;
}
.nty-n {
  background-color: #993333;
  border-radius: 10px;
  display: block;
  font-size: 12px;
  height: 20px;
  left: -5px;
  line-height: 17px;
  position: absolute;
  text-align: center;
  top: 0px;
  width: 20px;
}
#user-prof {
  position: relative;
}
#user-prof .user-pl {
  position: absolute;
  background-color: #fff;
  display: none;
  width: 200px;
  border: 1px solid rgb(184, 220, 255);
  border-radius: 3px;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  right: 0;
  top: 50px;
}
#user-prof .user-pl li {
  line-height: 45px;
}
#user-prof .user-pl a {
  display: block;
  color: #006699;
  display: block;
  padding-left: 25px;
}
#user-prof .user-pl a:hover {
  background-color: #006699;
  color: #fff;
}
#user-prof .user-pl span {

}
#menus .menu_icon {
  display: block;
  width: 25px;
  height: 22px;
  background: url("../images/icon_menu.png") no-repeat;
}

.i_user {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url("../images/icon_user.png") no-repeat;
  padding: 4px 4px 0px 0px;
}
.i_control {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/icon_control.png") no-repeat;
}
/* 版面資訊 */
#main-content {
  position: relative;
  flex: 1;
}
#main-content .container {
  background-color: #fff;
}
.content {
	padding: 10px 0;
  width: 880px;
  float: left;
}
.r_content {
  padding: 10px 0px 0px 0px;
  width: 300px; 
  float: left;
}
.r_content .ad_1 img {
  max-width: 100%;
}
.hot_news_ls::after,
.dateinfo::after,
.news_scope::after,
.news_list::after,
.news_wraper::after
{
  clear: both;
}
.hot_news_ls::before, 
.hot_news_ls::after,
.dateinfo::before,
.dateinfo::after,
.news_scope::before,
.news_scope::after,
.news_list::before,
.news_list::after,
.news_wraper::before,
.news_wraper::after
{
    content: " ";
    display: table;
}
.label-n1 {
  color: #111;
  padding: 0px;
  line-height: 36px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin: 5px 0px 5px 0px;
  font-size: 18px;
}
.hot_news {
/*  width: 25%; */
  width: 100%;
  float: left;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  line-height: 0px;
}
.hot_news a {
  display: block;
  position: relative;
  overflow: hidden;
}
.hot_news img {
  width: 100%;
/*  max-height: 168px;  */
/*  min-height: 168px;  */
}
.hot_news .overlay {
  background: #000;
  opacity: 0.6;
  bottom: 0px;
  left: 0;
  display: block;
  height: 55px;
  width: 100%;
  position: absolute;
}
.hot_news .title {
  bottom: 0px;
  left: 0;
  display: block;
  line-height: 20px;
  width: 100%;
  position: absolute;
  color: #FFF;
  padding: 2px 4px;
  font-size: 17px;
  height: 50px;
  overflow-y: hidden;
}
.news_scope {
  padding: 0px 0px 0px 0px;
}
.news_list {
  padding: 0px 10px 10px 0px;
  width: 25%;
  float: left;
  height: 240px;
  position: relative;
}
.news_list .newsimg {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.news_list .newsimg img {
  width: 100%;
/*  max-height: 143.5px;  */
}

.hot_news img,
.news_list .newsimg img,
.recoms .img img {
  transition: all 0.4s ease 0s;
}
.hot_news a:hover img,
.news_list a:hover .newsimg img,
.recoms a:hover .img img {
  transform:  scale(1.1);
}

.news_list .news_info {
  padding: 0px 0px 0px 5px;
}
.news_list .news_info h3 {
  font-size: 15px;
  line-height: 20px;
  height: 60px;
  overflow-y: hidden;
}
.news_list .news_info .txt {
  font-size: 14px;
  line-height: 20px;
  color: #444444;
  padding: 1px 0px;
}

.news_list .news_info .dateinfo {

}
.news_list .news_info .dateinfo p {
}
.dateinfo .date {
  color: #999;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
}
.news_list .ntype {
  position: absolute;
  left: 0px;
  top: 5px;
}
.span7 {
  width: 70%;
}
.span10 {
  width: 100%;
}
.span3 {
  width: 29%;
  text-align: right;
}
.news_list .news_info.nimg .ntype {
  position: relative;
  left: 0px;
  top: 0px;
}
.news_wraper .news_list .news_info.nimg {
  max-width: 100%;
}
/* News */
.news_wraper .news_list {
  width: 100%;
  height: auto;
  display: block;
  float: none;
  padding: 0px 10px 10px 0px;
}
.news_wraper .news_list .newsimg {
  width: 100%;
  max-width: 210px;
  float: left;
}
.news_wraper .news_list .newsimg img {
  max-height: none;
}
.news_wraper .news_list .news_info {
  width: 100%;
  max-width: calc(100% - 210px);
  float: left;
}
.news_wraper .news_list .news_info h3 {
  font-size: 22px;
  font-weight: bold;
  line-height: 26px;
  height: unset;
  padding-bottom: 0px;
  padding-top: 0px;
}
.news_wraper .news_list .news_info p {
  color: #333333;
  font-size: 17px;
  line-height: 24px;

}
.news_wraper .news_list .news_info .dateinfo {
  color: #999;
  font-size: 16px;
  line-height: 20px;
  text-align: right;
  padding-top: 0px;
}
.news_info .dateinfo i {
  color: #006699;
}
.news_slide::after
{
  clear: both;
}
.news_slide::before, 
.news_slide::after
{
    content: " ";
    display: table;
}
.news_slide {
  
}
.news_slide .news_list {
  width: 50%;
  line-height: 0px;
  height: auto;
  padding-right: 0px;
}

.news_slide .news_list a {
  display: block;
  position: relative;
  overflow: hidden;
}
.news_slide .news_list img {
  width: 100%;
}
.news_slide .news_list .overlay {
  background: #000;
  opacity: 0.7;
  bottom: 0px;
  left: 0;
  display: block;
  height: 60px;
  width: 100%;
  position: absolute;
}
.news_slide .news_list .title {
  bottom: -75px;
  left: 0;
  display: block;
  line-height: 20px;
  width: 100%;
  position: absolute;
  color: #FFF;
  padding: 5px 5px;
  font-size: 15px;
}
.news_slide .news_list .title h3 {
  font-size: 18px;
  text-align: left;
  height: 50px;
}
.news_slide .news_list .title p {
  font-size: 16px;
  text-align: left;
  line-height: 24px;
  height: 70px;
 overflow-y: hidden;
}
.news_slide .news_list img {
  transition: all 0.4s ease 0s;
}
.news_slide .news_list a:hover img {
  transform:  scale(1.1);
}
.news_slide .news_list a:hover .overlay {
  transition: all 0.4s ease 0s;
  height: 134px;
}
.news_slide .news_list a:hover .title {
  transition: all 0.4s ease 0s;
  bottom: 0px;
}
.topic_ls {
  width: 100%;
  padding: 5px 0px;
}
.topic_ls .ls-label {
  background-color: #efefef;
  border-top: 1px solid #ededed;
}
.topic_ls .col-g {
  width: 100%;
  line-height: 31px;
  border-bottom: 1px solid #ededed;
  font-size: 15px;
}
.topic_ls .col-g, .topic_ls .col-g a {
  color: #666666;
}
.topic_ls .col-g a:hover {
  color: #DD6900;
  text-decoration: underline;
}
.topic_ls .col-g span {
  float: left;
  padding: 0px 5px;
}
.topic_ls .ls-f {
  width: 20%;
}
.topic_ls .ls-t {
  width: 70%;
}
.topic_ls .ls-r {
  width: 10%;
  text-align: right;
}

.forum_ls {
  width: 50%;
  padding: 5px 0px;
  float: left;
}
.forum_ls .ls-label {
  background-color: #efefef;
  border-top: 1px solid #ededed;
}
.forum_ls .col-g {
  width: 100%;
  line-height: 31px;
  border-bottom: 1px solid #ededed;
  font-size: 15px;
}
.forum_ls .col-g, .forum_ls .col-g a {
  color: #666666;
}
.forum_ls .col-g a:hover {
  color: #DD6900;
  text-decoration: underline;
}
.forum_ls .col-g span {
  display: inline-block;
  padding: 0px 5px;
}
.forum_ls .ls-f {
  width: 80%;
}
.forum_ls .ls-r {
  width: 18%;
  text-align: right;
}
/* 右側區塊 */
.r_content .r_row {
  width: 100%;
}
.recoms-t {
/*  background-color: #3399bb;  */
  color: #111;
  padding: 0px 5px 5px 5px;
  line-height: 1.5em;
/*  text-shadow: 1px 1px 0px #333333; */
  border-bottom: 1px solid #f0f0f0;
  margin: 0px 0px 10px 0px;
  font-size: 2em;
  color: #006699;
}
.recoms {
  width: 100%;
  padding: 10px 0px 0px 0px;
  position: relative;
  border-top: 1px solid #ccc;
}
.recoms:first-of-type {
  border-top: 0px solid #ccc;
  padding: 0px 0px 0px 0px;
}
.recoms a {
  display: block;
  padding: 0;
  margin: 0px 0px -4px 0px;
}
.recoms .img {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  height: 160px;
  position: relative;
}
.recoms img {
  width: 100%;
  position: absolute;
  top: -20%;
}
.recoms .overlay {
  background: #000;
  opacity: 0.75;
  bottom: 5px;
  left: 0;
  display: none;
  height: 65px;
  width: 100%;
}
.recoms .title {
  display: block;
  width: 100%;
  padding: 2px 4px 10px 4px;
  font-size: 17px;
  text-align: left;
}

/* news view */
#news {
  padding: 20px 30px;
}
.wrapper-news-title {
  color: #006699;
  padding: 10px 0px 30px 0px;
  position: relative;
}
.wrapper-news-title h1 {
  font-size: 30px;
  font-weight: bold;
}
.wrapper-news-title .info-wrap {
  padding: 20px 0px 5px 0px;
  margin-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
}
.wrapper-news-title .info-wrap .date {
  float: right;
}
.soicals {
/*
  position: absolute;
  right: 0px;
*/
  text-align: right;
  vertical-align: middle;
  line-height: 22px;
}
.fb_iframe_widget {
  vertical-align: top;
}
.wrapper-text {
  color: #333;
  font-size: 17px;
  line-height: 30px;
}
.wrapper-text h3, .wrapper-text strong {
  font-weight: bold;
  font-size: 20px;
  color: #333;
  padding: 5px 0px 5px 0px;
}
.wrapper-text strong {
  font-size: 18px;
}
.wrapper-text img {
  padding-top: 5px;
  max-width: 100%;
  height: auto !important;
}
.wrapper-text iframe {
  max-width: 820px;
}
.wrapper-text table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
}
.wrapper-text table tr, .wrapper-text table td {
  border: 1px solid #aaa;  
}
.wrapper-text table td {
  padding: 3px 4px;
  word-break: break-all;
  word-wrap: break-word;
}
.wrapper-text ul, .wrapper-text ol {
  padding-left: 40px;
}
.wrapper-text ul {
  list-style-type: disc;
}
.wrapper-text ol {
  list-style-type: decimal;
}
.wrapper-text hr {
  border-top: 1px solid #aaa;
  border-bottom: 0;
}
.links-news {
  border-top: 1px solid #ebebeb;
  margin-top: 20px;
  padding-top: 10px;
  
}
.links-news h3 {
  color: #006699;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
}
/* forum */
.bbs-wrap::after,
.forum-list::after,
.topics-list-head::after,
.topics-list::after,
.poster-info::after
{
  clear: both;
}
.bbs-wrap::before, 
.bbs-wrap::after,
.forum-list::before, 
.forum-list::after,
.topics-list-head::before,
.topics-list-head::after,
.topics-list::before,
.topics-list::after,
.poster-info::before,
.poster-info::after
{
    content: " ";
    display: table;
}
.bbs-wrap {
  padding: 20px 30px;
  border-top: 1px solid #DDEEFF;
}
.bbs-wrap h2 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
.forum-list {
  color: #333;
  font-size: 17px;
  padding: 10px 0px;
}

.forum-list li {
  float: left;
  min-height: 45px;
}
.forum-list .title {
  width: 30%;
  font-size: 17px;
  font-weight: bold;
}
.forum-list .desc {
  width: 45%;
}
.forum-list .posts {
  width: 15%;
  text-align: center;
}
.forum-list .date {
  width: 20%;
  font-size: 15px;
  text-align: center;
  line-height: 24px;
}
.forum-list .posts i {
  padding-right: 3px;
}
.forum-list .posttitle {
  width: 55%;
  font-size: 15px;
  font-weight: normal;
}
.forum-list .posttitle span {
  color: #aaa;
  display: block;
  text-align: right;
  font-size: 14px;
}
.forum-list p {
  line-height: 24px;
}
.forum-list .more {
  font-weight: bold;
}
.bbs2 .forum-list {
  border-bottom: 1px solid #ccc;
}
.bbs2 .forum-list-h {
  border-top: 1px dashed #aaa;
  border-bottom: 1px dashed #aaa;
  padding: 0;
  margin-top: 10px;
}
.forum-list-h li, .forum-list-h li.posttitle {
  font-size: 16px !important;
  text-align: center;
  font-weight: bold;
  line-height: 50px;
  padding: 0 !important;
}
.bbs h2 {
  padding-bottom: 5px;
}
.bbs .forum-list {
/*  width: 33.33%;	*/
  width: 50%;
  float: left;
  padding: 6px 0px;
}
.bbs .forum-list li {
  height: 25px;
}
.bbs .forum-list .title {
  width: 65%;
  font-size: 18px;
  font-weight: normal;
}
.bbs .forum-list .posts {
  width: 35%;
  color: #666;
}
.bw-forum {
  line-height: 24px;
  padding-bottom: 20px;
}
.bw-forum a {
  display: block;
  line-height: 28px;
}
.bbs-cates {
  padding: 60px 30px 20px 30px;
  margin: 0px 5px;
  position: relative;
}
.bbs-cates li {
  display: inline-block;
  width: 25%;
  margin-left: -5px;
  font-size: 20px;
  font-weight: bold;
  line-height: 33px;
  padding-bottom: 10px;
/*  text-align: center; */
}
.bbs-cates .search-wrap {
  position: absolute;
  top: 10px;
  right: 20px;
}
.bbs-cates li a {
  display: block;
  margin-right: 5px;
  text-align: center;
}
.bbs-cates li a:hover, .bbs-cates li.current a {
  color: #fff;
  background-color: #069;
}
.forum-info {
  padding: 5px 30px 0px 30px;
}
.forum-info .title {
  position: relative;
}
.forum-info .title h1, .forum-info .title h2 {
  color: #069;
  font-size: 28px;
  display: inline;
}
.forum-info .forum_menus > a.posting,
.forum-info .title > a.posting {
  float: right;
  border: 1px solid #069;
  border-radius: 2px;
/*  padding: 2px 10px 3px 10px; */
  padding: 5px 15px 6px 15px;
  margin-top: 2px;
}
.forum-info .forum_menus > a.posting:hover,
.forum-info .title > a.posting:hover {
  background-color: #069;
  color: #fff;
}
.forum_menus .post,
.forum_menus .post {
  float: right;
  padding-top: 5px;
}
.posts-wrap .post,
.posting-wrap .post {
  text-align: right;
  padding-bottom: 10px;
}
.forum_menus .post a.posting,
.posting-wrap .post a.posting {
  border: 1px solid #069;
  border-radius: 2px;
  padding: 5px 15px 6px 15px;
  display: inline-block;
}
.forum_menus .post a.posting:hover,
.posting-wrap .post a.posting:hover {
  background-color: #069;
  color: #fff;
}
.forum-board {
  border-bottom: 1px solid #ccc;
  line-height: 28px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.forum-board-img {
  max-width: 870px;
}
.forum-board-img img {
  max-width: 100%;
}
.forum_menus {
  padding-top: 10px;
}
.forum_menus ul {
  display: inline-block;
  padding-top: 10px;
}
.forum_menus li {
  display: inline-block;
  font-size: 18px;
}
.forum_menus li a {
  display: block;
  line-height: 26px;
  position: relative;
}
.forum_menus li:first-child {
  border-right: 1px solid #ccc;
  line-height: 16px;
  padding-right: 7px;
  margin-right: 5px;
}
.forum_menus li.action a {
  color: #058;
}
.forum_menus li.action a:before {
  background-color: #058;
  content: '';
  display: inline-block;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: -1px;
}
.forum-info .search-wrap {
  float: right;
  margin-top: 3px;
}

.topics-wrap {
  padding: 10px 30px 20px 30px;
}
.topics-list-head {
  background-color: #006699;
  color: #fff;
  font-size: 15px;
  padding: 5px 0px 5px 0px;
  line-height: 26px;
}
.topics-list-head li,
.topics-list li {
  float: left;
}
.topics-list {
  padding: 10px 0px 10px 0px;
}
.topics-wrap .title {
  width: 64%;
  padding-left: 10px;
  overflow: hidden;
  max-width: 580px;
  display: flex;
}
.topics-list .title {
  display: inline-block;
  line-height: 40px;
  vertical-align: middle;
}
.topics-list .title a {
  display: inline-block;
  line-height: 24px;
  font-size: 16px;
  width: 100%;
}
.topics-wrap .lastdate {
  padding-right: 10px;
}
.topics-wrap .replies,
.topics-wrap .lastdate {
  width: 18%;
  text-align: center;
}

.topics-list .replies,
.topics-list .lastdate {
  font-size: 13px;
}
.topics-list .replies a,
.topics-list .lastdate a {
  display: block;
  font-size: 14px;
}
.topics-list {
  border-bottom: 1px solid #aaa;
}
.topics-list:nth-child(2n + 1) {
/*  background-color: #f6f6f6;  */
}
.topics-list:hover {
  background-color: #f6f6f6;
}
.topics-wrap.gtop .title {
  max-width: 500px;
  width: 63%;
}
.topics-wrap.gtop .folder {
  max-width: 700px;
  width: 82%;
}
.topics-wrap.gtop .folderb {
  max-width: 820px;
}
.topics-wrap.gtop .folder i {
  padding-right: 5px;
}
.topics-wrap.gtop .author, .topics-wrap.gtop .organer {
  width: 10.4%;
  text-align: center;
}
.topics-wrap.gtop .topics-list .author, 
.topics-wrap.gtop .topics-list .organer {
  font-size: 14px;
}
.topics-wrap.gtop .topics-list li {
  line-height: 40px;
}
.tips-fd {
  padding-top: 10px;
}
.forum-manager {
  border: 1px solid #ccc;
  padding: 5px 10px 10px;
  margin-bottom: 20px;
}
.forum-manager h3 {
  color: #005580;
  font-size: 20px;
  font-weight: bold;
}
/* topics */
.posts-wrap {
  padding: 20px 30px 20px 30px;
}
.post-title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
}
.post-list {
/*  border: 1px solid #3366CC;  */
  border: 1px solid #91B9E2;
  margin-bottom: 15px;
  border-radius: 3px;
  box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}
.poster-info {
  border-radius: 3px 3px 0px 0px;
  /*  background-color: #ebf0fa;  */
  /*  background-color: #f0f4f7;  */
  color: #333;
  position: relative;
  padding-bottom: 10px;
}
.poster-icon {
  float: left;
  max-width: 120px;
  width: 100%;
  font-size: 0px;
}
.poster-icon img {
  max-width: 100%;
  font-size: 0px;
}
.poster-info .detail {
  float: left;
  padding: 5px 0px 5px 10px;
  position: relative;
  height: 120px;
  width: 80%;
  max-width: 680px;
  border-bottom: 1px solid #ccc;
}
.poster-info .poster {
  text-shadow: 1px 1px 3px rgba(80, 80, 92, 0.1); 
  font-size: 17px;
  color: #06c;
}
.poster-info .detail li {
  display: inline-block;
  padding-right: 10px;
}
.poster-info .detail li span {
  color: #43609C;
}
.poster-info .ranks {
  padding-top: 5px;
  display: block
}
.poster-info .detail .postdate {
  position: absolute;
  bottom: 5px;
  font-size: 15px;
}
.poster-info .likeranks {
  position: absolute;
  right: 0;
  padding: 30px;
}
.poster-info .likeranks a {
  font-size: 16px;
  padding-left: 20px;
  display: inline-block;
}
.poster-info .likeranks i {
  font-size: 28px;
}
.post-text {
  color: #333;
  font-size: 17px;
  line-height: 30px;
  padding: 10px;
  word-wrap: break-word;
}
.post-text ul, .post-text ol {
  padding-left: 40px;
}
.post-text ul {
  list-style-type: disc;
}
.post-text ol {
  list-style-type: decimal;
}
.post-text hr {
  border-top: 1px solid #aaa;
  border-bottom: 0;
}

.post-text table {
  border: 1px solid #aaa;
  border-collapse: collapse;
  width: 100%;
}
.post-text table tr, .post-text table td {
  border: 1px solid #aaa;  
}
.post-text table td {
  padding: 3px 4px;
  word-break: break-all;
  word-wrap: break-word;
}
.post-text .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.post-text .video-wrapper iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}
.post-text img {
	max-width: 100%;
}
.postEdits {
  text-align: right;
  color: #C0C0C0;
  font-size: 16px;
  padding-top: 10px;
}
.postTB {
/*  background-color: #91B9E2;  */
  line-height: 45px;
  font-size: 17px;
}
.postTB ul {

}
.postTB li {
  float: right;
  position: relative;
  margin-left: 1px;
}
.postTB li:first-child {
  float: left;
}
.postTB li::before {
  content: '';
  width: 1px;
  background-color: #2B97F0;
/*  height: 40px; */
  height: 14px;
  display: block;
  position: absolute;
/*  top: 3px; */
  top: calc(50% - 7px);
  left: -1px;
}
.postTB li:first-child::before,
.postTB li:last-child::before {
  display: none;
}
.postTB a {
/*  color: #005580; */
  color: #90949c;
  padding: 0px 20px;
  display: block;
}
.postTB a:hover {
/*  background-color: #005580;  */
  color: #005580;
  border-radius: 2px;
}
.postTB a.btnReport:hover {
  color: #c0392b;
}
.postTB a.pm:hover {
  color: #3296DC;
}
.post-comments {
  background-color: #f0f4f7;
  padding: 20px 20px;
}
.post-comment-list {
  padding-bottom: 10px;
}
.post-comment-list .poster-icon {
  float: left;
  max-width: 40px;
  padding-right: 10px;
}
.post-comment-list .poster-icon img {
  border-radius: 3px;
}
.post-comment-list .comments {
  color: #333;
  font-size: 15px;
  overflow: hidden;
}
.comments .comment-date {
  color: #ccc;
  display: inline-block;
}
.comments .comment-user {

}
.comments .comments-info {
  padding-top: 5px;
}
.comments .comments-info a {
  border: 1px solid #069;
  border-radius: 3px;
  padding: 0px 3px 1px 3px;
  display: inline-block;
  margin-left: 10px;
  line-height: 20px;
}
.comments .comments-info a:hover {
  background-color: #069;
  color: #fff;
}
.comments .frmComment {
  border: 1px solid #069;
  border-radius: 20px;
  display: inline-block;
  background-color: #fff;
  max-width: 735px;
  width: 100%;
}
.comments .frmComment input[type="text"] {
  border: 0;
  border-radius: 20px;
  line-height: 32px;
  padding: 0px 15px;
  width: 100%;

}
.quick-reply {
  padding: 15px 15px 30px;
}
.quick-reply textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 17px;
  height: 200px;
  padding: 10px;
  width: 100%;
}
.quick-reply .btn01 {
  background-color: #069;
  border: 1px solid #069;;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  padding: 7px 25px 8px 25px;
  margin-top: 15px;
}
.quick-reply .btn01b {
  background-color: #fff;
  border: 1px solid #069;;
  border-radius: 5px;
  color: #069;
  font-size: 18px;
  padding: 7px 25px 8px 25px;
  margin-top: 15px;
}
.quick-reply .btn01:hover {
  background-color: #005580;
  color: #fff;
}
/* Posting */
.posting-wrap {
  padding: 20px 30px 30px 30px;
}
.posting-wrap h2 {
  color: #005588;
  font-size: 26px;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 10px;
}
.posting-wrap input[type="text"],
.posting-wrap textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 17px;
  padding: 5px 10px;
  margin-bottom: 15px;
  width: 100%;
}
.posting-wrap input[type="text"] {
  line-height: 32px;
}
.posting-wrap textarea {
  line-height: 26px;
  padding: 8px 10px;
  height: 620px;
}
.posting-wrap input[type="text"]:focus,
.posting-wrap textarea:focus {
  border: 1px solid #069;
}
.posting-wrap .btnCrptxt {
  border: 1px solid #069;
  border-radius: 2px;
  padding: 2px 10px 3px 10px;
  padding: 5px 15px 6px 15px;
  margin-top: 2px;
  color: #069;
  background: #fff;
  text-decoration: none;
  transition-duration: 0.3s;
}
.posting-wrap .btnCrptxt:hover,
.posting-wrap .btnCrptxt.act {
  color: #fff;
  background: #069;
}
.input-region {
  font-size: 17px;
  padding: 8px 0px;
}
.input-region select {
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px 5px;
}
.input-region .btns {
  width: 100%;
  max-width: 820px;
  padding: 20px 0px;
}
.input-region .btns li {
  float: left;
}
.input-region .btns li:nth-child(2) {
  float: right;
}
.input-region .btns li a {
  line-height: 30px;
  display: inline-block;
  padding-left: 20px;
}
.input-region .btns li a:first-child {
  padding-left: 0px;
}

.input-region .btns li i {
  padding-right: 5px;
}
.input-region .btns button {
  margin-left: 20px;
}
.input-region .btns button:first-child {
  margin-left: 0px;
}
.reply_title {
  color: #005588;
  font-size: 22px;
  padding-top: 10px;
  padding-bottom: 20px;
}
.reply-quotes {
  height: 500px;
  overflow-y: scroll;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* join */
.member-forms {
  max-width: 420px;
  margin: auto;
  padding: 80px 0px 120px;
  width: 100%;
}
.login-form {
  max-width: 420px;
  padding-top: 100px;
  padding-bottom: 230px;
}
.g-recaptcha {
  margin-bottom: 10px;
}
.member-forms h1 {
  font-size: 30px;
  color:#006699;
  font-size: 30px;
  font-weight: bold;
}
.member-forms label {
  color: #4d4d4d;
  font-size: 20px;
  line-height: 46px;
  padding-bottom: 10px;
}
.member-forms p {
  color: #666;
  line-height: 22px;
  padding: 10px 0 5px;
}
.member-forms input[type="text"],
.member-forms input[type="password"] {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 16px;
  padding: 10px 10px;
  margin-bottom: 10px;
  width: 100%;
}
.member-forms input[type="text"]:focus,
.member-forms input[type="password"]:focus {
  border: 1px solid #069;
}
.member-forms input[type="submit"] {
  width: 100%;
  padding: 10px 10px;
  font-size: 20px;
}
.member-forms .cinput {
  padding: 0px;
}
.member-forms .cinput li,
.member-forms .lnks a {
  float: left;
}
.member-forms .cinput li:nth-child(2),
.member-forms .lnks a:nth-child(2) {
  float: right;
}
.member-forms .lnks {
  padding: 20px 0px;
  font-size: 20px;
}
.member-forms .cinput label {
  font-size: 16px;
}

/* 會員 */
.profile-wrap {
  padding: 20px 30px 30px 30px;
/*  min-height: 600px;  */
}
.profile-panel {
  padding-bottom: 20px;
}
.profile-panel li {
  display: block;
  float: left;
  font-size: 20px;
  text-align: center;
  width: 25%;
  margin-bottom: 0px;
}
.profile-panel a {
  padding: 20px 15px;
  display: inline-block;
}
.profile-panel a:hover,
.profile-panel a.act {
  background-color: #069;
  color: #fff;
  border-radius: 5px;
}
.profile-panel a i {
  font-size: 35px;
  display: block;
}
.profile-info {
  margin: 0 auto;
  max-width: 600px;
  padding: 10px 0px 30px 0px;
}
.profile-info h2 {
  font-size: 26px;
  font-weight: bold;
}
.profile-info h3 {
  font-size: 22px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 5px;
}
.profile-info label {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 36px;
  padding-bottom: 5px;
}
.profile-info input[type="text"],
.profile-info input[type="password"],
.profile-info textarea {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 16px;
  padding: 10px 10px;
  margin-bottom: 10px;
  width: 100%;
}
.profile-info input[type="text"]:focus,
.profile-info input[type="password"]:focus,
.profile-info textarea:focus {
  border: 1px solid #069;
}
.profile-info textarea {
  height: 100px;
}
.inp-1 {
  padding: 0px 0px 10px 0px;
}
.profile-info .inp-1 .p1 {
  color: #666;
  font-size: 15px;
}
.profile-info .btn {
  text-align: center;
  padding: 20px 0px 20px 0px;
}

/* 訊息 */
.message-wrap {
  max-width: 820px;
  padding: 10px 0px 30px 0px;
}
.msg-bar {
  padding: 0px 0px 5px 0px;
}
.msg-bar a {
  display: inline-block;
  padding: 2px 10px 3px 10px;
  font-size: 18px;
}
.msg-bar a:hover,
.msg-bar a.act,
.msg-bar a.rm_msg {
  background-color: #069;
  color: #fff;
  border-radius: 2px;
}
.msg-bar a.rm_msg2 {
  background-color: #880000;
  color: #fff;
  border-radius: 2px;
}
.msg-bar a i {
  padding-right: 2px;
}
.msg-bar a.btn-03, .msg-bar a.rt {
  float: right;
}
.msgs-list-head {
  background-color: #006699;
  color: #fff;
  font-size: 15px;
  padding: 5px 0px 5px 0px;
  line-height: 26px;
}
.msgs-list-head li {
  text-align: center;
}
.msgs-list-head li,
.msgs-list li {
  float: left;
}
.msgs-list-head .customcbox + .lbl::before, 
.msgs-list-head .customradio + .lbl::before{
  color: #fff;
}
.msgs-list li {
  padding: 3px 0px 5px 0px;
}
.msgs-wrap .select {
  width: 30px;
  text-align: center;
}
.msgs-wrap .title {
  width: 100%;
  max-width: 490px;
}
.msgs-list li {
  line-height: 45px;
}
.msgs-list li.title a {
  line-height: 26px;
  display: inline-block;
}
.msgs-list .select {
  line-height: 45px;
  padding: 5px 0px 0px 0px;
}
.msgs-list .title a {
  font-size: 17px;
  vertical-align: middle;
}
.msgs-list .title.unread {
  font-weight: bold;
}
.msgs-wrap .sender {
  padding-left: 10px;
  width: 150px;
  text-align: center;
}
.msgs-wrap .senddate {
  padding-left: 10px;
  width: 150px;
  text-align: center;
}
.msgs-list:nth-child(2n + 1) {
  background-color: #f6f6f6;
}
.msgs-list:hover {
  background-color: #f6f6f6;
}
.profile-wrap .topics-wrap {
  padding: 10px 0px 20px 0px;
}
.profile-wrap .posts-wrap,
.report-wrap .posts-wrap {
  padding: 0px 0px 20px 0px;
}
.profile-wrap .post-title {
  padding-top: 5px;
  padding-bottom: 15px;
}
.profile-wrap .posts-wrap.msg-f,
.report-wrap .posts-wrap.msg-f {
  margin-top: 10px;
}
.profile-wrap .msg-f input[type="text"],
.report-wrap .msg-f input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 17px;
  line-height: 32px;
  padding: 5px 10px;
  margin-bottom: 15px;
  width: 100%;
}
.profile-wrap .msg-f textarea,
.report-wrap .msg-f textarea {
  height: 300px;;
}
.user-info {
  text-align: center;
  padding-bottom: 30px;
}
.user-info .detail {
  line-height: 28px;
}
.user-info .ranks li span {
  color: #058;
  padding-left: 5px;
}
/* pic */
.mypics-wrap {
  max-width: 820px;
  padding: 10px 0px 30px 0px;
}

.imgs-wrap {
  display: block;
}
.mypics-wrap .prvtitle {
	padding: 5px 0px 10px 0px;	
}
.mypics-wrap .prvtitle h3 {
	font-size: 20px;
	font-weight: bold;
	color: #006699;
}
.msg-bar .btn {
    display: inline-block;
    padding: 2px 10px 3px 10px;
    font-size: 18px;
    color: #069;
}
.msg-bar .btn:hover {
    background-color: #069;
    color: #fff;
    border-radius: 2px;
    cursor: pointer;
}
.mypics-list {
	padding: 5px 0px;
}
.mypics-list .pics {
	position: relative;
	float: left;
	width: 32%;
	padding: 5px 5px 5px 5px;
	border: 1px solid #dddddd;
	height: 250px;
	margin: 0px 1% 1% 0px;
	text-align: center;
}
.mypics-list  .img {
    height: 190px;
}
.mypics-list img {
    max-width: 100%;
    max-height: 220px;
}
.mypics-list .pics input[type="text"] {
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #333;
    font-size: 17px;
    line-height: 32px;
    padding: 5px 4px 6px;
    margin-bottom: 15px;
    width: 100%;
    transition-duration: 0.1s;
}
.pics-rm {
	position: absolute;
	top: 10px;
	right: 10px;
	display: block;
	font-size: 25px;
	color: #fff;
    background: #f00;
    padding: 5px;
    line-height: 20px;
    border-radius: 5px;
}
.pics-rm:hover {
	color: #fff;
    background: #d00000;
}
/* 金手指 */
.finger-wrap {
  padding: 10px 30px 10px 30px;
}
.finger-wrap h1 {
  color: #069;
  font-size: 32px;
  display: block;
  text-align: center;
}
.finger-wrap .search-wrap {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
}
.finger-wrap .search-wrap input {
  max-width: 267px;
  width: 100%;
  float: left;
}
.finger-wrap .search-wrap button {
  width: 31px;
  float: left;
}
.finger-head {
  border-bottom: 1px solid #999;
}
.finger-list, .finger-detal {
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
}
.finger-list a {
  display: block;
  padding: 5px 0px 5px 20px;
  position: relative;
}
.finger-list a::before {
  border-radius: 10px;
  background-color: #333;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  width: 8px;
  left: 2px;
  top: 10px;
}
.finger-info {
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  padding-bottom: 20px;
}
.finger-code {
  text-align: center;
}
.finger-code h3 {
  font-size: 22px;
  font-weight: bold;
  color: #666;
  padding-bottom: 10px;
}
.finger-code .codes {
  line-height: 26px;
  padding-bottom: 40px;
}
.finger-detal .btn {
  padding: 10px 30px 11px;
  font-size: 17px;
}
/* help */
.nav-help {
  background-color: #027ed8;
  margin-left: -10px;
}
.nav-help li {
  float: left;
  line-height: 50px;
}
.nav-help li a {
  padding: 0px 15px;
  color: #fff;
  font-size: 17px;
}
.nav-help li a:hover,
.nav-help li.active a {
  background-color: #0064b9;
  display: inline-block;
}
.wrapper-title {
  color: #006699;
  padding: 10px 0px 20px 0px;
  position: relative;
}
.wrapper-title h1 {
  font-size: 28px;
  font-weight: bold;
}
.help-t {
  padding: 5px 5px 5px 5px;
  line-height: 1.5em;
  border-bottom: 1px solid #f0f0f0;
  margin: 0px 0px 10px 0px;
  font-size: 1.7em;
  color: #006699;
  text-align: center;
}
.help-wrapper {
  padding: 10px 30px 10px 30px;
}
.help-list {
  padding-bottom: 30px;
}
.help-list li {
  font-size: 17px;
  line-height: 30px;
  list-style: disclosure-closed;
  margin-left: 30px;
  color: #069;
}
.help-h-list {
  padding-bottom: 40px;
}
.help-h-list li {
  list-style: circle;
  margin-left: 30px;
  color: #069;
  line-height: 30px;
  font-size: 16px;
}
/* Report */
.report-wrap {
  padding: 20px 30px 30px 30px;
}
.report-f .fld {
  line-height: 30px;
  padding-bottom: 10px;
  font-size: 17px;
}
.rmtxt {
  font-size: 17px;
}
/* message */
.msgs-form h1, .msgs-form p {
  text-align: center;
}
.msgs-form p {
  line-height: 26px;
  padding: 10px 0;
}
/* 表單 */
.form-info {
  margin: 0 auto;
  max-width: 600px;
  padding: 10px 0px 30px 0px;
}
.form-info h2 {
  font-size: 26px;
  font-weight: bold;
}
.form-info h3 {
  font-size: 22px;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 5px;
}
.form-info label {
  color: #4d4d4d;
  font-size: 18px;
  line-height: 36px;
  padding-bottom: 5px;
}
.form-info input[type="text"],
.form-info input[type="email"],
.form-info textarea,
.form-info select {
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  font-size: 16px;
  padding: 10px 10px;
  margin-bottom: 10px;
  width: 100%;
}
.form-info input[type="text"]:focus,
.form-info input[type="email"]:focus,
.form-info textarea:focus {
  border: 1px solid #069;
}
.form-info textarea {
  height: 210px;
}
.form-info .inp-1 .p1 {
  color: #666;
  font-size: 15px;
}
.form-info .btn {
  text-align: center;
  padding: 20px 0px 20px 0px;
}
/* 標題 */
.h1 {
  color: #006699;
  font-size: 30px;
  font-weight: bold;
  padding: 10px 30px;
}
/* 輸入表單 */
.customcbox {
  box-sizing: border-box;
  clip: rect(1px, 1px, 1px, 1px);
  cursor: pointer;
  height: 1px !important;
  opacity: 0;
  padding: 0;
  position: absolute;
  width: 1px !important;
  z-index: -100 !important;
}
.customcbox + .lbl {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.customcbox + .lbl::before, .customradio + .lbl::before {
  color: #069;
  cursor: pointer;
  display: inline-block;
  font-family: fontAwesome;
  font-size: 25px;
  font-weight: 400;
  height: 24px;
  line-height: 30px;
  margin-right: 1px;
  min-width: 26px;
  position: relative;
  text-align: center;
  top: 3px;
}
input[type="checkbox"].customcbox + .lbl::before {
  content: "\f096";
}

input[type="checkbox"].customcbox:checked + .lbl::before {
  content: "\f14a";
  font-size: 25px;
  top: 2px;
}
input[type="radio"].customcbox + .lbl::before {
  content: "\f10c";
  font-size: 24px;
  top: 2px;
}
input[type="radio"].customcbox:checked + .lbl::before {
  content: "\f192";
}

/* search */
.search-wrap {
  border: 1px solid #069;
  border-radius: 5px;
  display: inline-block;
}
.search-wrap input {
  border-width: 0px;
  border-radius: 5px 0px 0px 5px;
  line-height: 31px;
  padding: 0px 5px 0px 5px;
}
.search-wrap button {
  color: #fff;
  background-color: #069;
  border-width: 0px;
  border-radius: 0px 5px 5px 0px;
  line-height: 31px;
}
.search-wrap button i {
  vertical-align: text-top;
  padding-top: 3px;
}
.search-wrap select {
  border: 0;
}

/* schedule */
.sched-wrapper {
  padding: 10px 30px 10px 30px;
}

.sched-wrap h2.sched-head {
  background-color: #006699;
  color: #fff;
  font-size: 16px;
  padding: 5px 10px 5px 10px;
  line-height: 26px;
  letter-spacing: 2px;
}
.sched-list {
  border-bottom: 1px solid #aaa;
  padding: 10px 0px 10px 0px;
  line-height: 24px;
}
.sched-list h3 {
  display: inline-block;
}
.sched-list .price {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  color: #333;
}
.sched-platforms, .sched-options {
  padding-bottom: 15px;
}
.sched-platforms .ico-g {
  font-size: 16px;
  line-height: 20px;
  padding: 5px 10px;
  letter-spacing: 0.5px;
}
.sched-options select {
  display: inline-block;
  height: 35px;
  padding: 5px 0px 5px 5px;
  line-height: 1.5;
  color: #666;
  background: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
}

/* link */
.news_list a,
.recoms a,
.wrapper-text a,
.forum-list a {
  color: #069;
}
.news_list a:hover,
.recoms a:hover,
.wrapper-text a:hover,
.forum-list a:hover {
  color: #06c;
}
/* page-pagination */
.page-pagination {
  border-top: 1px solid #ebebeb;
  text-align: center;
  padding: 20px 0px 50px 0px;
  margin-top: 20px;
}
.back {
  position: relative;
  padding: 5px 20px 7px 20px;
  color: #006699;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1px solid #006699;
  display: inline-block;
}
.back:hover {
  color: #252a40;
  border: 1px solid #252a40;
}

/* 分頁 */
#pages {
  color: #A1A7C1;
  font-weight: bold;
  margin: 15px 20px;
  text-align: center;
  padding: 20px 0px 20px 0px;
}
#pages a {
  text-align: center; 
  font-size: 14px;
  margin: 0px 10px 0px 10px;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 32px;
  color: #656565;
  margin: 0px 2px;
}
#pages a:hover, #pages a.active {
  border: 1px solid #006699;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  background-color: #006699;
}
#pages a:active, #pages a:focus {
  text-decoration: none;
}

#pages a.firsts,
#pages a.lasts,
#pages a.prevs,
#pages a.nexts {
  margin: 0px 2px;
  width: 35px;
  height: 35px;
  padding: 0px 0px 0px 5px;
}
#pages a.firsts {
  
}
#pages a.lasts {
  
}
#pages a.prevs {
  
}
#pages a.nexts {
  
}
#pages a.prevs:hover {
  background-position: -18px 7px;
}
#pages a.firsts:hover {
  background-position: 6px 7px;
}

.breadcrumb {
  display: block;
  padding: 5px 0px 0px 30px;
  background: #ffffff;
  margin: 0;
  position: relative;
  width: 100%;
}
.breadcrumb li {
    display: inline-block;
    color: #aaa;
    font-size: 15px;
}
.breadcrumb li + li::before {
    color: #aaa;
    content: " > ";
    padding: 0 2px;
}
.breadcrumb li a {
/*  color: #448fcc;	*/
	color: #aaa;
}
.breadcrumb li a:hover {
  color: #448fcc;
}
/* button */
.btn-01 {
  background-color: #069;
  border: 1px solid #069;
  border-radius: 2px;
  color: #fff;
  padding: 5px 10px 6px;
}
.btn-01:hover {
  background-color: #058;
  color: #fff;
}
.btn-02 {
  background-color: #fff;
  border: 1px solid #069;
  border-radius: 2px;
  color: #069;
  padding: 5px 10px 6px;
}
.btn-02:hover {
  background-color: #069;
  color: #fff;
}
.btn-01-1 {
  font-size: 20px;
  padding: 10px 20px 11px;
}
.btn-03 {
  background-color: #fff;
  border: 1px solid #069;
  border-radius: 2px;
  color: #069;
  padding: 5px 10px 6px;
}
.btn-03:hover {
  background-color: #069;
  color: #fff;
}
.btn-lnk {
  display: block;
  padding: 9px 10px 11px;
  text-align: center;
  font-size: 17px;
  max-width: 320px;
  margin: 0 auto;
}

/* ico */
.ico-g {
  border-radius: 3px;
  min-width: 34px;
  line-height: 12px;
  display: inline-block;
  margin: 0px 5px 0px 0px;
  padding: 5px;
  text-align: center;
  font-size: 13px;
  text-shadow: 1px 0px 1px #333333;
  box-shadow:  0px 0px 1px #333333;
}
.ico_pc {
  color: #FFFFFF;
  background-color: #027ed8;
}
.ico_olg {
  color: #FFFFFF;
  background-color: #027ed8;
}
.ico_web {
  color: #FFFFFF;
  background-color: #A00000;
}
.ico_etc {
  color: #FFFFFF;
  background-color: #FF8844;
}
.ico_ps5 {
  color: #555;
  background-color: #ffffff;
}
.ico_ps4 {
  color: #FFFFFF;
  background-color: #555555;
}
.ico_ps3 {
  color: #FFFFFF;
  background-color: #555555;
}
.ico_one {
  color: #FFFFFF;
  background-color: #00AE1D;
}
.ico_360 {
  color: #FFFFFF;
  background-color: #00AE1D;
}
.ico_psv {
  color: #FFFFFF;
  background-color: #5577BB;
}
.ico_ios {
  color: #FFFFFF;
  background-color: #b5b5b5;
}
.ico_android {
  color: #FFFFFF;
  background-color: #79C35C;
}
.ico_mobile {
  color: #FFFFFF;
  background-color: #7788BB;
}
.ico_switch {
  color: #FFFFFF;
  background-color: #dc0112;
}
.ico_xboxsx {
  color: #FFFFFF;
  background-color: #107c10;
}
.ico_ani {
  color: #FFFFFF;
  background-color: #1c6ab3;
}
/* 頁尾 */
footer {
	padding: 20px 0;
  background-color: #006699;
  background: -webkit-gradient(linear, 0 0, 0 bottom, from(#006699), to(#005580)); /*漸層色for Google Chrome、Safari*/
  background: -moz-linear-gradient(#006699, #005580); /*漸層色for Firefox*/
}
.footer {
  position: relative;
}
.footer .social {
  position: absolute;
  top: 0px;
  right: 5px;
}
.footer .social a {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #FFFFFF;
  border-radius: 5px;
  margin: 5px 5px 0px 0px;
}
.col-30 {
  width: 33%;
  display: inline-block;
  vertical-align: top;
}
.col-30::after {
  clear: both;
}
.fa.ico-fb {
    color: #43609C;
    font-size: 30px;
    line-height: 28px;
}
.fa.ico-gplus {
    color: #DD4B39;
    font-size: 30px;
    line-height: 28px;
 }
.fa.ico-tt {
    color: #2B97F0;
    font-size: 30px;
    line-height: 28px;
}
.fa.ico-rss {
    color: #E78733;
    font-size: 30px;
    line-height: 28px;
}
.footer .cr {
  padding: 15px 0px 0px 20px;
  color: #999;
  font-size: 14px;
  text-align: right;
}
.footer .ft-infos {
  width: 150px;
  display: inline-block;
  vertical-align: top;
}
.footer .ft-nav {
  max-width: calc(100% - 160px);
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding-left: 20px;
}
.footer .ft-nav ul li {
  line-height: 26px;
  float: left;
}
.footer .ft-nav ul li a {
  color: #FFFFFF;
  display: block;
  padding: 0px 10px;
}
.footer .ft-nav ul li a:hover {
  color: #DDEEFF;
  text-shadow: 1px 1px 1px #333333;
}
.line1 {
  border-top: 1px dotted #C0C0C0;
  padding: 5px 0px 0px 0px;
}
.line2 {
  border-top: 1px solid #C0C0C0;
  padding: 5px 0px 0px 0px;
}
/* 其他類別 */
.fltrt {
	float: right;
	margin-left: 8px;
}
.fltlft {
	float: left;
	margin-right: 8px;
}
.reset {
  clear:both;
  float: none;;
}
.clearfloat {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.central {
  text-align: center;
}
.right {
  text-align: right;
}
.md-show {
  display: none;
}
.md-hide {
  display: block;
}
/* scrollUp */
#scrollUp {
  display: block;
  right: 10px;
  bottom: 10px;
  width: 70px;
  height: 70px;
  font-size: 0;
  cursor: pointer;
  background: #448fcc;
  border-radius: 50px;
  font: normal normal normal 14px/1 FontAwesome;
}
#scrollUp::before {
  content: "\f077";
  color: #fff;
  font-size: 36px;
  left: 17px;
  position: absolute;
  top: 15px;
}
#scrollUp:hover {
  position: relative;
}

/* Slider */
.slider {
  width: 100%;
  margin: 0px auto 10px;
  padding-right: 10px;
}
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;

    margin: 0px 5px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-loading .slick-list
{
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/slick.eot');
    src: url('../fonts/slick.eot?#iefix') format('embedded-opentype'), url('../fonts/slick.woff') format('woff'), url('../fonts/slick.ttf') format('truetype'), url('../fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.slick-prev, .slick-next {
  width: 140px;
  z-index: 1;
  height: 100%;
}
.slick-prev {
  left: 0px;
}
.slick-next {
  right: 0px;
}
@media (max-width: 1200px) {
  .container {
    width: 100%;
  }
  .content {
    width: 75%;
  }
  .r_content {
    width: 25%;
  }
  .r_content img {
    max-width: 100%;
  }
  .topics-wrap.gtop .title {
    width: 61%;
  }
  .topics-wrap.gtop .folder {
    width: 82%;
  }
  .msgs-wrap .title {
    width: 56%;
  }
}
@media (max-width: 1080px) {
/*
  .news_slide .news_list .title {
    bottom: -37%;
  }
*/
  .msgs-wrap .title {
    width: 50%;
  }
  .bbs2 .forum-list, .bbs2 .forum-list li {
    height: auto;
  }
  .slick-prev, .slick-next {
    width: 80px;
  }
}
@media (max-width: 960px) {
  .content {
    width: 70%;
  }
  .r_content {
    width: 30%;
  }
  .hot_news {
/*    width: 33.33%;  */
  }
  .news_list {
    width: 25%;
  }
  .bbs-cates li {
    width: 33.33%;
  }
  .bbs .forum-list {
    width: 50%;
  }
  .topics-list .title {
    width: 60%;
  }
  .topics-list .replies, .topics-list .lastdate {
    width: 20%;
  }
  .reply-quotes {
    height: 380px;
  }
  .poster-info .detail {
    width: 70%;
  }
  .poster-info .likeranks {
    padding-top: 5px;
  }
  .topics-wrap.gtop .title {
    width: 68%;
  }
  .topics-wrap.gtop .folder {
    width: 78%;
  }
  .topics-wrap.gtop .author {
    display: none;
  }
  .forum-info .title h1,
  .forum-info .title h2 {
    display: block;
  }
  .msgs-wrap .title {
    width: 93%;
    max-width: none;
  }
  .msgs-wrap .sender {
    margin-left: calc(100% - 300px);
  }
  .msgs-list li.sender, .msgs-list li.senddate {
    line-height: 25px;
    padding-top: 0px;
  }
  .msgs-list-head li.title, 
  .msgs-list-head li.sender, 
  .msgs-list-head li.senddate {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 960px) {
  .md-show {
    display: block;
  }
  .md-hide {
    display: none;
  }
}
@media (min-width: 421px) and (max-width: 960px) {
  .news_slide .news_list .title {
    bottom: -1%;
  }
  .news_slide .news_list .title p {
    display: none;
  }
  .news_slide .news_list a:hover .overlay {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .content {
    width: 70%;
  }
  .r_content {
    width: 29.5%;
  }
  .hot_news {
/*    width: 50%; */
  }
  .recoms .img {
    height: 120px;
  }
  #setting {
    padding-right: 5px;
  }
  #setting #menus {
    display: inline-block;
  }
  #navigation {
    position: absolute;
    background-color: #fff;
    width: 200px;
    border: 1px solid rgb(184, 220, 255);
    border-radius: 3px;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
    right: 0px;
    top: 48px;
    display: none;
  }
  #navigation ul {
    padding: 0;
  }
  #navigation ul li {
    display: block;
    padding: 0;
    line-height: 45px;
  }
  #navigation ul li a {
    display: block;
    color: #006699;
    display: block;
    padding-left: 25px;
  }
  #navigation ul li a:hover {
    background-color: #006699;
    color: #fff;
  }
  .bbs-cates li {
    width: 50%;
  }
  .bbs .forum-list {
    width: 100%;
  }
  .bbs2 .forum-list-h li {
    display: none;
  }
  .bbs2 .forum-list .title {
    width: 65%;
  }
  .bbs2 .forum-list .posts {
    padding: 0px 5px 10px 5px;
    width: 35%;
  }
  .bbs2 .forum-list .posttitle {
    width: 100%;
  }
  .bbs-cates {
    padding: 60px 15px 20px 15px;
  }
  .bbs-wrap {
    padding: 20px 15px;
  }
  .forum_menus ul {
    display: block;
  }
  .forum-info {
    padding: 5px 10px 0px 10px;
  }
  .forum-info .title {
    height: 75px;
  }
  .forum-info .search-wrap {
    position: absolute;
    top: 0;
    right: 0;
  }
  .forum-info .title h1, .forum-info .title h2 {
    position: absolute;
    top: 35px;
  }
  .forum_menus {
    padding-top: 0px;
  }
  .topics-wrap {
    padding: 10px 10px 20px 10px;
  }
  .posts-wrap {
    padding: 20px 10px 20px 10px;
  }
  .posting-wrap {
    padding: 20px 10px 30px 10px;
  }
  #news {
    padding: 20px 10px;
  }
  .forum_menus .search-wrap {
    margin-top: 10px;
  }
  .poster-icon {
    max-width: 90px;
  }
  .poster-info .detail {
    height: 90px;
  }
  .poster-info .likeranks {
    padding-right: 5px;
  }
  .news_list {
    width: 50%;
    height: 250px;
  }
  .news_wraper .news_list {
    padding-right: 10px;
  }
  .news_wraper .news_list .newsimg {
    max-width: 160px;
    text-align: center;
  }
  .news_wraper .news_list .newsimg img {
  	max-width: 100%;
  	width: unset;
  }
  .news_wraper .news_list .news_info {
    max-width: calc(100% - 160px);
    padding-left: 5px;
  }
  .news_wraper .news_list .news_info h3 {
    font-size: 18px;
    line-height: 26px;
  }
  .news_wraper .news_list .news_info p {
    font-size: 17px;
    line-height: 28px;
    display: none;
  }
  .news_wraper .news_list .news_info .dateinfo {
    padding-top: 5px;
  }
  .news_list .news_info {
    padding: 0;
  }
  .news_slide .news_list .title {
    bottom: 0%;
    line-height: 25px;
  }
  .wrapper-text table {
    width: 100%;
  }

  .finger-wrap .search-wrap {
    max-width: 270px;
  }
  .finger-wrap .search-wrap input {
    max-width: 237px;
  }
  .wrapper-news-title {
    padding-bottom: 10px;
  }
  .wrapper-news-title h1 {
    font-size: 26px;
    line-height: 32px;
  }
  .links-news .news_list {
    width: 33.33%;
  }
  .topics-list .title {
    width: 100%;
  }
  .topics-list .replies {
    width: 120px;
    margin-left: calc(100% - 240px);
  }
  .topics-list .lastdate {
    width: 120px;
  }
  .topics-wrap.gtop .title {
    width: 100%;
  }
  .topics-wrap.gtop .topics-list .organer {
    width: 120px;
    margin-left: calc(100% - 240px);
  }
  .topics-list-head .organer,
  .topics-list-head .lastdate {
    display: none;
  }
  .topics-wrap.gtop .folder {
    width: 100%;
  }
  .topics-wrap.gtop .folder-t {
    width: 120px;
    margin-left: calc(100% - 120px);
  }
  .topics-wrap.gtop .topics-list li {
    line-height: 28px;
  }
  .profile-wrap {
    padding: 20px 10px 30px 10px;
  }
  .profile-panel li {
    font-size: 16px;
  }
  .profile-panel a i {
    font-size: 25px;
  }
  .profile-panel a {
    padding: 15px 10px;
  }
  .msgs-wrap .title {
    width: 90%;
  }
  .msg-bar a span {
    display: none;
  }
  .msg-bar a.act span {
    display: inline-block;
  }
  .help-wrapper {
    padding: 10px 10px;
  }
}
@media (max-width: 500px) {
  html, body {
    height:auto;
  }
  header {
    position: sticky;
    top: 0px;
  }
  .content {
    width: 100%;
  }
  .r_content {
    width: 100%;
  }
  .r_content .ad_1 {
    text-align: center;
  }
  .recoms .img {
    height: 160px;
  }
  .news_scope {
    margin-left: -5px;
    margin-right: -5px;
  }
  .news_list {
    width: 50%;
    padding: 0px 5px 10px 5px;
  }
  .news_scope .news_list .ntype {
    left: 5px;
  }
  .news_slide {
  	padding-right: 0px;
  }
  .news_slide .news_list {
    padding: 0px 0px 0px 0px;
  }
  .news_slide .news_list .title {
    bottom: -70px;
  }
  .news_wraper .news_list {
  	padding-right: 0px;
  }
  .news_wraper .news_list .newsimg {
    max-width: 37%;
  }
  .news_wraper .news_list .news_info {
    max-width: 63%;
  }
  .news_wraper .news_list .news_info h3 {
    font-size: 17px;
    line-height: 20px;
  }
  .footer .ft-infos {
    width: 50%;
  }
  .footer .ft-nav {
    width: 50%;
  }
  .footer .ft-nav:nth-child(2n+1) {
    border-left: 0;
  }
  .forum-info {
    padding: 0px;
  }
  .forum_menus {
    padding-top: 0px;
  }
  .topics-wrap {
    padding: 10px 0px 20px 0px;
  }
  .posts-wrap {
    padding: 10px 0px 10px 0px;
  }
  .posting-wrap {
    padding: 10px 0px 30px 0px;
  }
  .help-wrapper {
    padding: 10px 10px;
  }
  .profile-wrap {
    padding: 0px 10px 30px 10px;
  }
  .finger-wrap {
    padding: 10px 10px 10px 10px;
  }
  .member-forms {
    padding-top: 20px;
    padding-bottom: 80px;
  }
  #news {
    padding: 20px 5px;
  }
  .reply-quotes {
    height: 280px;
  }
  .postTB a {
    padding: 0px 10px;
  }
  .topics-wrap .title {
    padding-left: 0px;
  }
  .topics-wrap .lastdate {
    padding-right: 0px;
  }
  .breadcrumb {
    padding: 5px 0px 0px 10px;
  }
  #pages {
    margin: 15px 0px;
  }
  .profile-info {
    border-bottom: 1px solid #C0C0C0;
  }
  .report-wrap {
    padding: 20px 10px 0px 10px;
  }
  .post-text, .wrapper-text {
    line-height: 28px;
    font-size: 18px;
  }
  .slider {
    padding-right: 0px;
  }
  .slick-slide {
    margin: 0px;
  }
  #navigation {
    width: 100%;
  }
  #navigation ul li a, #user-prof .user-pl a {
    padding-left: 10px;
  }
  #user-prof {
    position: unset;
  }
  #user-prof .user-pl {
    right: 0px;
    width: 100%;
  }
}
@media (max-width: 420px) {
  .topic_ls .ls-f {
    width: 25%;
  }
  .topic_ls .ls-t {
    width: 60%;
  }
  .topic_ls .ls-r {
    width: 15%;
  }
  .forum_ls {
    width: 100%;
  }
  .u-pl-lnk img {
    position: relative;
    top: 3px;
  }
  .u-pl-lnk span {
    display: none;
  }
  #setting > ul > li.l-plk {
/*    display: none;  */
  }
  #setting > ul > li {
/*    line-height: 30px;  */
  }
  .topic-h {
    margin-top: 50px;
  }
  .poster-info .likeranks {
    top: -40px;
  }
  .links-news .news_list {
    width: 50%;
    padding: 0px 5px 10px 5px;
  }
  .profile-panel li {
    width: 50%;
  }
  .profile-panel {
    max-width: 280px;
    margin: 0 auto;
  }
  .topics-wrap .topics-list-head .replies {
    width: 100px;
  }
  .help-wrapper {
    padding: 10px 5px;
  }
  .help-list li {
    margin-left: 20px;
  }
}
@media (max-width: 380px) {
  .news_list {
    height: 210px;
  }
}
@media (max-width: 320px) {

}