/* Google Web Fonts */
@import url("https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700|Roboto:300,400,500");

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+TC:100,300,400,500,700,900&display=swap');

/* 滑鼠反白顏色 */

*::selection {
    background-color: #e51737;
    color: #ffffff;
}

*::-moz-selection {
    background-color: #e51737;
    color: #ffffff;
}

/* Import Styles */
.hidden {
    display: none !important;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
    /* 1 */
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    -webkit-clip-path: none;
    clip-path: none;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

.v_middle {
    display: inline-block;
    vertical-align: middle;
    margin-right: -3px;
    float: none;
}

/*--------------------------------------*/
html {
    color: #646464;
    font-size: 16px;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

input,
input:focus {
    outline: none;
    border: 0 none;
}

textarea {
    resize: vertical;
    outline: none;
}

a {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

a:hover {
    text-decoration: none;
}

a:focus {
    outline: none;
}

body {
    font-family: '微軟正黑體';
}

p {
    color: #646464;
    font-weight: 400;
    line-height: 27px;
}


.section-bg-gray {
    background: #f5f5f5;
}

.section-bg-red {
    background: #ce0b2b;
}

.section-padding {
    padding: 8vh 0;
}

.section-title {
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 27px;
    font-weight: 700;
    color: #212529;
}


.section-title h2 span {
    color: #646464;
    font-weight: 500;
    font-size: 14px;
}

.title {
    border-left: 6px solid #e51737;
    padding-left: 1rem;
}

.section-title p {
    margin: 0 auto;
    width: 650px;
    text-align: center;
}

.section-title.title-left {
    text-align: left;
}

.section-title.title-left p {
    text-align: left;
    width: 100%;
}

.btns {
    display: inline-block;
    font-size: 14px;
    padding: 10px 35px;
    background: #e51737;
    color: #fff;
    font-weight: 400;
    -webkit-border-radius: .25rem;
    border: 2px solid #e51737;
    border-radius: .25rem;
    margin-top: 3rem;
}

.btns:hover {
    background: transparent;
    color: #e51737;
    font-weight: 400;
    border: 2px solid #e51737;
    border-radius: .25rem;
}




/* ==========================
   pagination Styles 頁碼
============================ */


.pagination ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.pagination ul li {
    margin-right: 10px;
}

.pagination ul li:last-child {
    margin-right: 0;
}

.pagination ul li a {
    text-decoration: none;
    padding: 12px 15px;
    border: 1px solid #ececec;
    color: #b1b1b1;
}

.pagination ul li a:hover {
    color: #e51737;
    border-color: #e51737;
}

.pagination ul li.active a {
    color: #fff;
    border-color: #e51737;
    background: #e51737;
}



/* ==========================
   pages-header Styles 橫幅
============================ */



.pages-header {
    padding: 60px 0;
    background: url(../images/header_banner.jpg);
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.pages-header h1 {
    color: #fff;
    font-weight: 700;
    font-size: 30px;
}

.pages-header span {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.pages-header .breadcrumbs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 30px 0 0 0;
    padding: 0;
}

.pages-header .breadcrumbs li {
    list-style: none;
}

.pages-header .breadcrumbs li + li {
    margin-left: 25px;
    position: relative;
}

.pages-header .breadcrumbs li + li:before {
    position: absolute;
    content: "/";
    left: -14px;
    top: 0;
}

.pages-header .breadcrumbs li a {
    color: #fff;
}

.pages-header .breadcrumbs li a span {
    margin-right: 5px;
}

.pages-header .breadcrumbs li a:hover {
    color: #252B33;
}

.pages-header .breadcrumbs li.active {
    color: #eee;
}




/* ==========================
   Main Menu Styles 導覽列
============================ */


.main-menu {
    padding: 15px 0;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;

}

.main-menu .navbar {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
}

.navbar .navbar-collapse {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.navbar .navbar-collapse ul li {
    margin-right: 20px;
    position: relative;
}

.navbar .navbar-collapse ul li:last-child {
    margin-right: 0;
}

.navbar .navbar-collapse ul li a {
    color: inherit;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar .navbar-collapse ul li a:hover {
    color: #e51737;
}

.navbar .navbar-collapse ul li a.dropdown-toggle:after {
    content: none;
}

.navbar .navbar-collapse ul li.active a {
    color: #e51737;
}

.navbar .navbar-collapse ul li.active .dropdown-menu a {
    color: #333;
}

.navbar .navbar-collapse ul li.dropdown .dropdown-menu {
    top: 60px;
    display: block;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    padding: 15px 0;
    min-width: 12rem;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 0 none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-collapse ul li.dropdown .dropdown-menu:before {
    position: absolute;
    content: "";
    left: 8px;
    top: -9px;
    border-bottom: 9px solid #ededed;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.navbar .navbar-collapse ul li.dropdown .dropdown-menu a {
    padding: 5px 20px;
    font-weight: 400;
    text-transform: capitalize;
}

.navbar .navbar-collapse ul li.dropdown .dropdown-menu a:hover {
    background: none;
}

.navbar .navbar-collapse ul li.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    top: 40px;
}

.navbar .navbar-collapse ul li.dropdown:hover a.nav-link {
    color: #e51737 !important;
}

.navbar .navbar-collapse.collapse.show {
    z-index: 100;
    background: #fff;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}




/* ==========================
    video Area Styles 哈燒影音
============================ */
.video .video-image {
    margin-bottom: 1rem;
}

.video .video-image figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    text-align: center;
    border-radius: .25rem;
}

.video .video-image figure img {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.video .video-image figure:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


.video .video-image figure figcaption {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.video .video-image figure figcaption a {
    display: inline-block;
    width: 70px;
    height: 70px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #e51737;
    color: #fff;
    font-size: 25px;
    padding-top: 18px;
    padding-left: 7px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.video .video-image figure figcaption a:hover {
    background: #212529;
    color: #fff;
}

/* ==========================
    point Area Styles 線上購點
============================ */
.point .section-title h2 {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
}

.point-contents a {
    color: #fff;
    background: #252B33;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 35px;
    margin-top: 30px;
}

.point-contents a:hover {
    color: #e51737;
    background: #222;
}

.point-contents i {
    display: inline-block;
    padding-left: 10px;
    color: #e51737;

}

.point-details {
    text-align: center;
    margin-bottom: 1rem;
}

.point-details a {
    background: #e51737;
    display: block;
    padding: 10px;
    border-radius: .25rem;
}

.point-details a:hover {
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.point-details a img {
    display: inline-block;
}

.point-details a h3 {
    font-size: 18px;
    color: #fff;
    margin: 10px 0;
}


/* ==========================
    about - Styles   關於艾玩
============================ */
.joinus {
    background: url("../images/join_bg.jpg");
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}


.joinus-contents {
    text-align: center;
}

.joinus-contents h2 {
    font-size: 27px;
    font-weight: 700;
    color: #212529;
}


.coop-contents {
    text-align: center;
}

.coop-contents h2 {
    font-size: 27px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 2rem;
}



.coop-contents a {
    color: #e51737;
}

.coop-contents a:hover {
    color: #212529;
}

.coop-contents p i {
    color: #e51737;
}


/* ==========================
    Projects - Styles 首頁-遊戲專區
============================ */
.projects {
    background: url('../images/bg01.jpg');
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
}


.projects .project-grid .project-single figure {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.projects .project-grid .project-single figure img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.projects .project-grid .project-single figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #e51737;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}

.projects .project-grid .project-single figure figcaption div {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.projects .project-grid .project-single figure figcaption div h3 {
    font-size: 22px;
    margin: 0 0 5px 0;
    color: #fff;
}

.projects .project-grid .project-single figure figcaption div a {
    color: #fff;
    font-size: 22px;
    margin: 0 5px;
}

.projects .project-grid .project-single figure figcaption div a:hover {
    color: #333;
}

.projects .project-grid .project-single figure figcaption div span {
    color: #e7e7e7;
}

.projects .project-grid .project-single figure:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

.projects .project-grid .project-single figure:hover figcaption {
    opacity: 1;
    visibility: visible;
}


/* ==========================
    gamecard - Styles  儲值中心
============================ */

.gamecard .gamecard-single {
    margin-bottom: 3rem;
    padding-bottom: 15px;

}

.gamecard .gamecard-single figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    text-align: center;
    border-radius: .25rem;

}

.gamecard .gamecard-single figure figcaption {
    position: absolute;
    left: 0;
    bottom: -98%;
    width: 100%;
    height: 100%;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    background: #e51737c4;
    text-align: center;
    padding: 0 15px;
}


.gamecard .gamecard-single figure figcaption img {
    text-align: center;
}



.gamecard .gamecard-single figure:hover figcaption {
    bottom: 0;
}


.gamecard .gamecard-single .gamecard-details {
    background: #fff;
    padding-top: 15px;
}

.gamecard .gamecard-single .gamecard-details h3 {
    font-size: 22px;
    color: #212529;
    font-weight: 700;
}

.gamecard .gamecard-single .gamecard-details h3 img {
    margin-top: -5px;

}

/* ==========================
    news - Styles   首頁-新聞公告
============================ */

.news .news-single {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ededed;
}

.news .news-single figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    text-align: center;
}

.news .news-single figure img {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.news .news-single figure figcaption {
    position: absolute;
    width: 120px;
    height: 100%;
    right: 0;
    top: 0;
    background: rgba(244, 67, 54, 0.85);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}


.news .news-single figure:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.news .news-single figure:hover figcaption {
    width: 100%;
}


.news .news-single .news-details {
    background: #fff;
    padding-top: 15px;
}

.news .news-single .news-details h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #212529;
    font-weight: 400;
}

.news .news-single .news-details a {
    color: inherit;
}

.news .news-single .news-details a h3:hover {
    color: #e51737;
}

.news .news-single .news-details span {
    color: #646464;
    font-size: 14px;
    font-weight: 700;

}


.news .news-single .news-details i {
    color: #e51737;
}

.news .news-single .news-details p {
    margin: 0;
}

/* ==========================
    system - Styles 首頁-系統公告
============================ */

.system .system-single {
    position: relative;
    display: block;
    padding: .75rem 0;
    border-bottom: 1px solid #ededed;
}


.system .system-single .system-details {
    margin: 0;
    font-size: 16px;
    color: #212529;
    font-weight: 400;
}



.system .system-single .system-details a {
    color: inherit;
}

.system .system-single .system-details a:hover {
    color: #e51737;
}

.system .system-single .system-details .systemtime {
    color: #646464;
    font-size: 14px;
    font-weight: 700;
    padding-right: 30px;

}


.system .system-single .system-details i {
    color: #e51737;
    position: absolute;
    right: 0px;
}




/* =====================
    Footer Styles 
======================= */
.footer {
    padding: 20px 0;
    background: #000;
}

.footer p {
    font-size: 13px;
    color: #fff;

}

.footer p a {
    color: #fff;
}

.footer p a:hover {
    color: #e51737;
}



/* ==============================
    gamelist Styles  遊戲專區
=============================== */
.gamelist .gamelist-single {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f1f1;

}


.gamelist .gamelist-single figure {
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: .25rem;

}

.gamelist .gamelist-single figure img {
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;

}


.gamelist .gamelist-single figure:hover img {
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}


.gamelist .gamelist-single figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #212529c7;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
}


.gamelist .gamelist-single figure figcaption img {
    position: absolute;
    width: 100%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}


.gamelist .gamelist-single figure:hover figcaption {
    opacity: 1;
    visibility: visible;
}


.gamelist .gamelist-single .gamelist-details h3 {
    font-size: 22px;
    font-weight: 700;
    position: relative
}

.gamelist .gamelist-single .gamelist-details h3 img {
    position: absolute;
    right: 0;

}

.gamelist .gamelist-single .gamelistbtn {
    border-bottom: 1px dashed #ededed;

}


.gamelist .gamelist-single .gamelistbtn a.btns {
    display: block;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    -webkit-border-radius: .25rem;
    border: 2px solid #e51737;
    border-radius: .25rem;
    background: #fff;
    color: #e51737;
    padding: 10px 6px;
    text-align: center;
}

.gamelist .gamelist-single .gamelistbtn a.btns:hover {
    color: #fff;
    background: #e51737;
}

.gamelist .gamelist-single .gamelistplat {
    padding-top: 20px;

}


/* ==============================
    Project Details Styles 關於艾玩輪播
=============================== */
.project-details .project-gallery {
    position: relative;
}

.project-details .project-gallery .gallery-single figure {
    position: relative;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.project-details .project-gallery .gallery-single figure img {
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.project-details .project-gallery .gallery-single figure figcaption {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.4s ease;
    -o-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
}

.project-details .project-gallery .gallery-single figure figcaption span {
    font-size: 16px;
    color: #fff;
}

.project-details .project-gallery .gallery-single figure:hover figcaption {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.project-details .project-gallery .owl-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}


.project-details .project-gallery .owl-nav .owl-prev:hover,
.project-details .project-gallery .owl-nav .owl-next:hover {
    color: #e51737;
}

.project-details .contents-wrapper .project-desc .social-share {
    margin-top: 30px;
}

.project-details .contents-wrapper .project-sidebar ul {
    margin-bottom: 20px;
}

.project-details .contents-wrapper .project-sidebar ul li {
    color: #504b47;
    font-weight: 300;
    margin-bottom: 7px;
}

.project-details .contents-wrapper .project-sidebar ul li:last-child {
    margin-bottom: 0;
}

.project-details .contents-wrapper .project-sidebar ul li span {
    font-weight: 400;
    min-width: 100px;
    display: inline-block;
}


/* ==============================
    latestnews Styles   最新消息
=============================== */

.latestnews-single {
    border-bottom: 1px dashed #ededed;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.latestnews .latestnews-single figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    text-align: center;
}


.latestnews .latestnews-single figure img {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}


.latestnews .latestnews-single figure:hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}


.latestnews-single .latestnews-title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
}

.latestnews-single .latestnews-title a {
    color: #212529;
}

.latestnews-single .latestnews-title a:hover {
    color: #e51737;
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}



.newstime {
    color: #646464;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.latestnews-single .latestnews-details .morebtn {
    display: inline-block;
    font-size: 14px;
    padding: 0px 20px;
    color: #e51737;
    font-weight: 400;
    -webkit-border-radius: .25rem;
    border: 1px solid #e51737;
    border-radius: .25rem;
    margin: 0rem;
}

.latestnews-single .latestnews-details .morebtn:hover {
    color: #fff;
    background: #e51737;

}


/* ==============================
    newsdetails Styles   新聞內頁
=============================== */

.newsdetails .newsdetails-title {
    font-size: 22px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}


.newsdetails .newsdetails-title .newsdetails-newsbadge {
    font-size: 16px;
}

.newsdetails-newsbadge {
    display: inline-block;
    background: #e51737;
    text-align: center;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 5px;
    font-size: 16px;
}

.newsdetails-sysbadge {
    display: inline-block;
    background: #007ac8;
    text-align: center;
    color: #fff;
    padding: 5px 15px;
    margin-bottom: 5px;
    font-size: 16px;

}


.newsdetails .newsdetails-contents h3 {
    margin: 1.5rem 0;
    font-size: 18px;
    font-weight: 700;
    color: #212529;
}

.newsdetails .newsdetails-contents p {
    margin: 2rem 0;
}

.newsdetails .newsdetails-contents a {
    color: #e51737;
}

.newsdetails .newsdetails-contents a:hover {
    color: #212529;
}

.newsdetails .newsdetails-contents blockquote {
    border: 15px solid #f5f5f5;
    padding: 20px;
    font-style: italic;
    margin: 30px 0;
    color: #e51737;
}

.newsdetails .newsdetails-contents blockquote span {
    color: #e51737;
    display: inline-block;
    padding-right: 5px;
}


.newsdetails .backto {
    margin: 80px 0;
}


.newsdetails .backto a {

    color: #e51737;
    font-size: 16px;
}

.newsdetails .backto a:hover {
    color: #212529;
}



/* ==============================
    Contact Styles 客服中心
=============================== */

.contact .contact-from {
    margin-bottom: 3rem;
}

.contact .contact-details {
    text-align: center;
    margin-bottom: 3rem;
}

.contact .contact-details a {
    display: block;
    color: #212529;
}

.contact .contact-details a:hover {
    background: #e51737;
    color: #fff;
}



.contact .contact-details .contact-single {
    border: 1px solid rgba(0, 0, 0, .125);
    padding: 5px;
    border-radius: .25rem;
}


.contact .contact-details .contact-single h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;

}

.contact .contact-details .contact-single i {
    margin: 20px 0;
}

.contact .contact-from ul li {
    color: #212529;
    font-weight: 400;
    line-height: 27px;
    font-size: 16px;
}


.contact .contact-from a {
    color: #e51737;
}

.contact .contact-from a:hover {
    color: #212529;
}

.contact .contact-from .contact-note ol {
    list-style: decimal;
    padding-left: 18px;
}

.contact .contact-from .contact-note ol li {
    color: #212529;
    font-weight: 400;
    line-height: 27px;
    font-size: 16px;
}


/***************************************
    RESPONSIVE CSS GOES HERE
****************************************/
/*****************************
	RESPONSIVE
*****************************/
/*this is responsive scss*/
/* 992 TO 1199 */
@media (min-width: 992px) and (max-width: 1199px) {
    .services-boxes .box-single ul li {
        text-align: left;
    }

    .process-content {
        padding: 60px 0;
    }


}

/* 991 */
@media (max-width: 991px) {
    .navbar .navbar-collapse ul li.dropdown .dropdown-menu {
        top: 100%;
        display: none;
        visibility: visible;
        opacity: 1;
    }

    .navbar .navbar-collapse ul li.dropdown .dropdown-menu.show {
        display: block;
    }

    .navbar .navbar-collapse ul li.dropdown .dropdown-menu:before {
        content: none;
    }

    .navbar .navbar-collapse ul li.dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
    }

}


/* 767 */
@media screen and (max-width: 767px) {


    .section-title p,
        {
        width: 100%;
    }


    .header-top .top-left {
        text-align: center;
    }

    .header-top .top-right {
        text-align: center;
        margin-top: 15px;
    }
}

/* 320 TO 480 */
@media (min-width: 320px) and (max-width: 480px) {
    .projects .project-grid .project-single {
        width: 100%;
    }

    .pagination ul li a {
        padding: 5px 10px;

    }

}

span,
.date {
    /*font-size: 1.2em;
	color: #000;
	font-family: 'cwTeXHei', sans-serif;*/
}



/*---- footer ----*/
footer {
    position: relative;
    padding: 10px 0;
    color: #000;
    font-size: .7rem;
    text-align: center;
    letter-spacing: .2px;
    line-height: normal;
    background: #fff;
    z-index: 2;
}

footer p,
footer ul {
    opacity: 1;
    margin-bottom: 0;
    font-size: .7rem;
    line-height: normal;
}


footer p a {
    color: inherit;
}

footer p a:hover {
    color: #e51737;
    text-decoration: none;
    transition: .3s ease;

}

footer .copyright,
footer .company,
footer p,
footer .grading,
footer ul {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

footer .copyright {
    margin-right: 10px;
}

footer img {
    margin: 0 6px;
}

footer ul {
    font-size: .6rem;
    list-style: none;
    padding: 0;
}

@media only screen and (max-width:1200px) {

    footer .copyright,
    footer .company,
    footer p,
    footer .grading {
        display: block;
        margin: 15px auto;
        text-align: center;
    }

    footer .copyright {
        margin-bottom: 20px;
    }

    footer ul {
        text-align: left;
    }
}




/* ==========================
    gameinfo 遊戲訊息
============================ */
.gameinfo {
    font-family: "微軟正黑體";
}

.gameinfo h2 {
    font-size: 27px;
    font-weight: bold;
    color: #dc3b33;
    line-height: 3rem;
}

.gameinfo p {
    font-size: 16px;
    font-weight: bold;
    color: #979797;
    line-height: 1.5rem;
}

.gameinfo span {
    font-size: 18px;
    font-weight: bold;
    color: #dc3b33;
    line-height: 3rem;
}



/* Btn 10  */
.gameinfo .btn24h {
    padding: 10px 0px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    text-decoration: none;
    display: block;

}

.gameinfo .btn24h {
    padding: 10px 0px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    text-decoration: none;
    display: block;
    font-weight: bold;
    font-size: 20px;
    text-transform: uppercase !important;
    cursor: hand;
    text-align: center;
    text-transform: capitalize;
    border-radius: 0.25rem;
    position: relative;
    overflow: hidden !important;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    background: #dc3b33 !important;
    z-index: 10;

}


.gameinfo .btn24h:hover {
    color: #fff !important;
}

.gameinfo .btn24h a:hover {
    color: #fff;
}


.gameinfo .btn24h::after {
    content: '';
    width: 0%;
    height: 100%;
    display: block;
    background: #f76d66;
    position: absolute;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    left: -10%;
    opacity: 0;
    top: 0;
    z-index: -15;
    -webkit-transition: all .94s cubic-bezier(.2, .95, .57, .99);
    -moz-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    -o-transition: all .4s cubic-bezier(.2, .95, .57, .99);
    transition: all .4s cubic-bezier(.2, .95, .57, .99);
    box-shadow: 2px 0px 14px rgba(0, 0, 0, .6);
}


.gameinfo .btn24h:hover::after {
    opacity: 1;
    width: 120%;
}
