@charset "utf-8";
@font-face {
    font-family: 'CenturyGothic-Bold';
    src: url('../font/CenturyGot.hicBold/CenturyGothic-Bold_gdi.eot');
    src: url('../font/CenturyGothicBold/CenturyGothic-Bold_gdi.eot?#iefix') format('embedded-opentype'), url('../font/CenturyGothicBold/CenturyGothic-Bold_gdi.woff') format('woff'), url('../font/CenturyGothicBold/CenturyGothic-Bold_gdi.ttf') format('truetype'), url('../font/CenturyGothicBold/CenturyGothic-Bold_gdi.svg#CenturyGothic-Bold') format('svg');
    font-weight: 700;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-F003;
}

@font-face {
    font-family: 'CenturyGothic';
    src: url('../font/Century%20Gothic/CenturyGothic.eot');
    src: url('../font/Century%20Gothic/CenturyGothic.eot?#iefix') format('embedded-opentype'), url('../font/Century%20Gothic/CenturyGothic.woff2') format('woff2'), url('../font/Century%20Gothic/CenturyGothic.woff') format('woff'), url('../font/Century%20Gothic/CenturyGothic.ttf') format('truetype'), url('../font/Century%20Gothic/CenturyGothic.svg#CenturyGothic') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* ===============  HTML5 display definitions  =============== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden] {
    display: none;
}


/* ===============  Base  =============== */

html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow-x: hidden;
    position: relative;
    font-size: 100%;
    line-height: 100%;
    font-weight: normal;
    font-family: 'CenturyGothic', 'MyriadPro-Regular', '微軟正黑體';
    /*text-rendering: optimizeLegibility;*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: 'liga', 'kern';
    -webkit-overflow-scrolling: touch;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

a:active,
a:hover {
    outline: 0;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

dl,
menu,
ol,
ul {
    margin: 0;
}

ul {
    list-style: none;
    list-style-image: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/*p { line-height: 150%; }*/


/* ===============  Forms  =============== */

form {
    margin: 0;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px;
}

button,
input,
select,
textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

button,
input {
    line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible;
}

button[disabled],
input[disabled] {
    cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
    vertical-align: top;
}


/*去除input藍色框框*/

input,
button,
select,
textarea {
    outline: none
}

*:focus {
    outline: none;
}


/*placeholder 點一下後快速消失*/

input:focus,
textarea:focus {
    outline: none;
}

input:focus:placeholder {
    color: transparent;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}

input:focus::-moz-placeholder {
    color: transparent;
}

input:focus:-ms-input-placeholder {
    color: transparent;
}


/* ===============  Typography  =============== */

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

mark {
    background: #ff0;
    color: #000;
}


/*p, pre { margin: 1em 0; line-height:160%; }*/

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

q {
    quotes: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

hr {
    border: 0;
}


/* ===============  Global  =============== */

.wrapperH100 {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    line-height: 1em;
}


/* ===============  首頁  =============== */

body {
    background: #000;
}

.wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
    background: url('../img/bg.jpg') no-repeat center center;
    background-size: cover;
    overflow-y: auto;
}

.wrapper01 {
    width: 100%;
    max-width: 100%;
    background: #000 url('../img/bg02.png') no-repeat top center;
    background-attachment: fixed;
}

.icon-HOME {
    font-size: .875rem;
    color: #FFF;
    text-indent: 18px;
    display: block;
    background: url('../img/icon.png') no-repeat left center;
    position: absolute;
    top: 0;
    right: 0;
}

.icon-up {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #FFF;
    background: url('../img/icon-Up.png') no-repeat 40% 40%;
    display: block;
    position: fixed;
    bottom: 20px;
    right: 11.5%;
    z-index: 999
}


/*404*/

.bannerIND {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bannerIND div {
    width: 100%;
    height: 100%;
}

.bannerTxt {
    max-width: 1460px;
    width: 90%;
    height: 100%;
    position: relative;
    margin: auto;
}

.bannerTxt:after {
    content: '';
    display: block;
    clear: both;
}

.bannerTxt .logo {
    width: 210px;
    margin-top: 50px;
    margin-bottom: 140px;
}

.bannerTxt .left {
    display: block;
    width: 40%;
    padding-bottom: 10%;
    float: left
}

.bannerTxt .left h3 {
    font-size: 6.5rem;
    color: #FFF;
    /*text-transform: uppercase; */
    font-family: 'CenturyGothic', '微軟正黑體';
    font-weight: 700;
}

.bannerTxt .left h3 span {
    color: #b2b2b2;
}

.bannerTxt .left hr {
    width: 100px;
    height: 3px;
    background: #e32d34;
    margin: 41px 0 40px;
}

.bannerTxt .left .txt {}

.bannerTxt .left .txt h4 {
    font-size: 1.5625rem;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.bannerTxt .left .txt h4 span {
    color: #5e5e5e;
}

.bannerTxt .left .txt h4 span.sBold {
    font-family: 'CenturyGothic-Bold', '微軟正黑體';
}

.bannerTxt .left .txt p {
    font-size: .875rem;
    color: #FFF;
}

.bannerTxt .left .txt p span {
    color: #a6a6a6;
    display: block;
    margin-top: 17px
}

.bannerTxt .left .btnLink {
    margin-top: 56px;
}

.bannerTxt .left .btnLink a {
    font-size: .8rem;
    color: #FFF;
    display: inline-block;
    width: 190px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    vertical-align: top
}

.bannerTxt .left .btnLink a:first-child {
    border: 1px solid #a0a0a0;
    margin-right: 5px;
}

.bannerTxt .left .btnLink a:first-child:hover {
    color: #000;
    background: #FFF;
}

.bannerTxt .left .btnLink a:nth-child(2) {
    border: 1px solid #818282;
    position: relative;
}

.bannerTxt .left .btnLink a:nth-child(2):hover {
    color: #000;
    background: #818282
}

.locaInfo {
    position: absolute;
    right: 0;
    bottom: 13%;
}

.locaInfo hr {
    width: 78px;
    height: 1px;
    background: #e02d34;
    margin: 30px 0;
}

.locaInfo div span {
    font-size: .8rem;
    font-weight: bold;
    display: block;
    margin-bottom: 14px;
}

.locaInfo div span:last-child {
    margin-bottom: 0
}

.locaInfo div span:nth-child(odd) {
    color: #FFF;
}

.locaInfo div span:nth-child(even) {
    color: #a9a9a9;
}


/*投資人專區*/

.investorList {
    font-size: .875rem;
    float: right;
    margin-top: -90px
}

.investorBox {
    /*width:50%;*/
    width: 830px;
    position: relative;
    margin-bottom: 83px;
}

.investorBox:after {
    content: '';
    position: absolute;
    width: 78px;
    height: 1px;
    background: #d43134;
    left: 30%;
    bottom: -26px
}

.investorBox .tit,
.rightInfo {
    display: inline-block;
    vertical-align: top;
    margin-right: -4px
}

.rightInfo {
    width: 70%;
}

.investorBox .tit {
    color: #FFF;
    width: 30%;
}

.yearItem {}

.yearItem li {
    display: inline-block;
    margin-bottom: 24px;
    /*margin-right: 80px*/
    margin-right: -4px;
    width: 33.33%;
}

.yearItem li i,
.yearItem li a {
    display: inline-block
}

.yearItem li i,
.invItem li i {
    color: #FFF;
    font-style: normal;
    margin-right: 6px;
}

.yearItem li a {
    color: #c9c9c9;
}

.yearItem li a:hover {
    color: #FFF;
}

.invItem {
    color: #FFF;
}

.invItem li {
    margin-bottom: 22px
}

.invItem li i,
.invItem li label {
    display: inline-block;
    vertical-align: top
}

.invItem li label a {
    color: #c9c9c9;
    display: inline-block;
}

.invItem li label a:hover {
    color: #FFF;
}

.invItem li label > span {
    color: #c9c9c9;
    display: block;
    margin-top: 17px;
}

.personInfo {
    padding-left: 18px;
    margin-top: 25px
}

.personInfo span {
    color: #aaa9a9;
    display: block;
    margin-bottom: 15px
}

.personInfo span a {
    color: #aaa9a9;
}

.personInfo span a:hover {
    color: #FFF;
}

.personInfo span:first-child {
    color: #FFF;
}

.pdfList {}

.pdfList:after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background: rgba(255, 255, 255, .2);
    margin: 14px 0 38px;
}

.pdfList:last-child:after {
    display: none;
}

.pdfList span {
    color: #FFF;
    display: block;
    margin-bottom: 24px;
    padding-left: 16px;
}

.pdfList ul {
    padding-left: 20px;
}

.pdfList ul li {
    display: inline-block;
    margin-right: 110px;
    margin-bottom: 23px;
}

.pdfList ul li i,
.pdfList ul li a {
    color: #c9c9c9;
    display: inline-block;
    vertical-align: middle;
}

.pdfList ul li i {
    margin-right: 9px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 3.5px 0 3.5px;
    border-color: #ffffff transparent transparent transparent;
}

.pdfList ul li a:hover {
    color: #FFF;
}

.inLocaInfo {
    position: relative;
    padding-left: 30%;
    margin-top: 228px;
    margin-bottom: 270px
}

.logo{ display: block; }
.logo2{ display: none; }

@media (max-width:1280px){
	.bannerTxt .logo {
    width: 210px;
    margin-top: 50px;
    margin-bottom: 100px;
}
}


@media (max-width:768px){
.bannerTxt .left {
    display: block;
    width: 100%;
    padding-bottom: 10%;
  
    text-align: center;
}

.bannerTxt .left hr {
    width: 100px;
    height: 3px;
    background: #e32d34;
    margin: 41px auto 40px;
}

.logo{ display: none; }
.logo2{  display: block;
    width: 250px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 50px; }



}