@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
*{box-sizing: border-box;}
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	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;
}
/*共用*/
body{
    font-family: 'Noto Sans TC','微軟正黑體', sans-serif;
    color: #303030;
    background: #fff;
    overflow-x: hidden;
    font-size: 1rem;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
.clear{
    clear: both;
}
.barclear{
    height: 110px;
}
.con{
    width: 1300px;
    margin: 0 auto;
}

/* menu--------------------- */
.topmenu{
    width: 100%;
    height: 80px; 
    background-color: #fff;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding:0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 888;
}
.menuicon{
    display: none;
}

/* nav--------------------- */
.topmenu .navtop{  
    width: 100%; 
    display: flex;
    margin: 0 auto;
    justify-content:space-between;
    align-items:center;
}
.topmenu .navtop .logobox{
    display: flex;
    align-items:center;
}
.topmenu .navtop .logobox a.vs_logo img{
    width: auto;
    height: 42px;
}
.topmenu .navtop .logobox a.fe_logo img{
    width: auto;
    height: 40px;
}
.topmenu .navtop .logobox .xx{
    width: 22px;
    margin:0 15px;
}
.navtop .nav_right{
    display: flex;
}
.navtop ul{
    display: flex;
    margin-right:20px;
}
.navtop ul li{
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    line-height: 36px;
    margin:0 2px;
}
.navtop ul li a{
    text-decoration: none;
    color: #2F2F2F;
    padding:0 10px;
    display: inline-block;
    height: 80px;
    line-height: 80px;
}
.navtop ul li a:hover{
    color: #D83D3B;
}
.navtop ul li.current,.navtop ul li.current a{
    color: #D83D3B;
    position: relative;
}
.navtop ul li.current a::after{
    content: '';
    display: block;
    width:100%;
    height:6px;
    background: #d83d3b;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-border-top-left-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-bottomright: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}


/* share--------------------- */
.share{
    display: flex;
    align-items: center;
    justify-content: center;
}
.share a{
    display:block;
    width: 40px;
    height: 40px;
    -webkit-border-radius:50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background:#2A317C;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin:0 4px;
}
.share a img{
    width: 100%;
    height: auto;
}
.share a:last-child img{
    width: 28px;
}
/* footer------------------------ */
footer{
    width: 100%;
    background-color: #F1F1F8;
    padding: 30px;
}
footer .scbtn{
    text-align: center;
    display: flex;
    justify-content: center;
}
footer .scbtn a{
    display: flex;
    align-items: center;
    text-decoration: none;
    margin: 22px 15px;
    font-size: 1.1rem;
    color: #313131;
}
footer .scbtn a:hover{
    color: #990000;
}
footer .scbtn a img{
    margin-right: 8px;
}
footer .scbtn a.footer_fb img,footer .scbtn a.footer_Community img{
    width: 40px;
    height: 40px;
}
footer .scbtn a.footer_yt img{
    width: 43px;
    height: 28px;
}
footer .scbtn a.footer_eshop img{
    width: 31px;
    height: 31px;
}
footer p{
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    line-height: 1.7rem;
    margin-top: 15px;
    letter-spacing: 0.03rem;
}

/* right_btn*/
.right_btn{
    position: fixed;
    right: 0;
    bottom: 45px;
    overflow: hidden;
    animation: pulse .5s infinite alternate;
    -webkit-animation: pulse2 .6s infinite alternate;
    z-index: 600;
}
.right_btn a{
    display: block;
    width: 220px;
    height: 160px;
    position: relative;
}
.right_btn img{
    position: absolute;
    right: -20px;
}
@media screen and (max-width: 1300px){
.con{
    width:96%;
}
}
@media screen and (max-width: 1200px){

/* menu--------------------- */
.topmenu{
    padding:0 2%
}
/* nav--------------------- */
.barclear {
    height:70px;
}
#navbtn .nav_right{
    display: none;
    width: 100%;background: #fdfefe;
}
.topmenu {
    width: 100%;
    display: block;
    padding: 0;
    position: relative;
    position: fixed;
}
.topmenu .navtop {
    text-align: center;
}
.topmenu .navtop .logobox {
    position: absolute;
    top:19px;
    left:25px;
}
.navtop ul {
    display: block;
     width: 100%;
 }
 .navtop ul li{
     width: 100%;
     line-height: 65px;
     display: block;
     -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
     border-radius: 0px;
     transition: none;
     margin: 0;
     border: none;
 }

.navtop ul li a:hover,.navtop ul li.current a,.navtop ul li.cut a{
    text-decoration: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

 .navtop ul li a{
     display: block; width: 100%;
 }


 .share {
     justify-content: center;
     height: 120px;
     width: 100%;
     align-items:center;
     
 }
 
 .menuicon{
     float: right;
     display: flex;
     width: 40px;
     height: 40px;
     text-align: center;
     justify-content: center;
     align-items: center;
     margin: 20px;
 }
 .menuicon span{
     display: block;
     width: 24px;
     height: 24px;
     background: url(../img/align-justify-solid.svg)no-repeat center;
     background-size: 100% auto;

 }
 .menuicon span.cutt{
     display: block;
     width: 24px;
     height: 24px;
     background: url(../img/close2.svg)no-repeat center;
     background-size: 100% auto;
 }

.navtop ul li{
    display: inline-block;
    font-size: 20px;
}
.navtop ul li.current a::after {
    top: auto;bottom: 0;
}
}
@media screen and (max-width:1000px){
    footer .scbtn {
        flex-wrap:wrap;
    }
    footer .scbtn a{
        width: 45%;
        margin: 15px;
        font-size: 0.9rem;
        line-height: 1.4rem;
        text-align: left;
    }
}
@media screen and (max-width:700px){
    footer p {
        font-size: 0.9rem;
        line-height:1.5rem;
    }

    .right_btn a {
        width: 81px;
        height: 74px;
    }
    .right_btn a img{
        width: 100%;
        right: -10px;
    }

    footer .scbtn a {
        width: 41%;
    }
    footer {
        padding: 30px 15px;
    }
}
@media screen and (max-width:600px){
.topmenu .navtop .logobox a.vs_logo img{
    width: 38vw;
    height:auto;
}
.topmenu .navtop .logobox a.fe_logo img{
    width: 31vw;
    height:auto;
}
.topmenu .navtop .logobox .xx{
    width: 3vw;
    margin:0 8px;
}
.menuicon {
    margin:20px 15px;
}
.topmenu .navtop .logobox {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}
}
@media screen and (max-width: 374px){
    .topmenu .logo a:first-child img {
        width: 7em;margin-left: 1em;
    }
    .topmenu .logo a:last-child img{ 
        width: 4.5em;
    }

}