﻿@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    border: none;
    max-width: 100%;
    /*height: auto;*/
}

body {
    background: #f2f2f2;
    font-family: Microsoft JhengHei, "微軟正黑體";
    letter-spacing: .05em;
}

#wrapper {
    min-width: 1300px;
    margin: 0 auto;
}

.container {
    width: 1300px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

header {
    width: 100%;
    /*height: 200px;*/
    overflow: hidden;
    background: url(../images/headerBg.png) repeat-x;
    background: #c72525;
    background: #fff;
}

#logo {
    width: 560px;
    height: 115px;
    margin: 10px 20px;
    float: left;
}

.right-head {
    float: right;
    margin: 10px 20px;
    width: 500px;
    text-align: center;
}

.right-head button {
    width: 150px;
    height: 36px;
    margin: 10px 5px;
}

.right-head a {
    text-decoration: none;
    color: #fff;
}

.bttn-pill.bttn-danger {
    background: #1d539f;
}

nav {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 8px;
    line-height: 24px;
    text-align: center;
    background: #c72525;
}

nav ul li {
    float: left;
    font-size: 21px;
    margin: 0 46px;
}

nav ul li a {
    color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a span {
    position: relative;
    display: block;
    padding-bottom: 6px;
}

nav ul li a span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1d539f;
    background-color: #fff;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

nav ul li a:hover span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

nav ul li a:hover {
    color: #1d539f;
    color: #fff;
}

#main {
    width: 1300px;
    overflow: hidden;
    margin: 0 auto 20px;
}

#demo-content {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 40px 50px;
}

#slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

#slider .swiper-wrapper {
    width: 1300px;
    height: 600px;
}

#content-flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

aside {
    background: #fff;
    width: 23%;
    min-height: 200px;
    float: left;
    margin-right: 2%;
    padding: 20px 30px;
}

aside h2 {
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #1d539f;
    font-weight: bold;
    border-bottom: solid 4px #1d539f;
}

aside h2 span {
    font-size: 20px;
}

aside ol a {
    display: block;
    color: #000;
    text-decoration: none;
    transition: .3s;
}

aside ol a:hover {
    color: #7b7b7b;
    color: #1d539f;
}

aside ol li {
    list-style: decimal;
    margin-bottom: 20px;
    font-size: 21px;
    font-weight: bold;
    padding: 6px 3px;
    margin-left: 20px;
    border-bottom: dashed 1px #a2adb9;
}

#content {
    background: #fff;
    width: 75%;
    min-height: 500px;
    float: left;
    padding: 20px 30px;
}

.hot-news {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.hot-news i {
    font-size: 40px;
    color: #1d539f;
    display: block;
    text-align: center;
    width: 10%;
    float: left;
}

.marqueeTxt {
    font-size: 20px;
    float: left;
    width: 90%;
    padding: 10px 0;
}

.hot-Local {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.hot-Local-tool {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.hot-Local-tool:last-of-type {
    margin-bottom: 0;
}

.hot-Local-pic {
    width: 452px;
    height: 232px;
    margin-right: 35px;
    float: left;
    padding: 10px;
    background: #fff;
    border: solid 1px #bababa;
}

.hot-Local-pic a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hot-Local-pic a img {
    transition: .5s;
}

.hot-Local-pic a:hover img {
    transform: scale(1.1);
}

.hot-Local-txt {
    width: 420px;
    height: 232px;
    overflow-y: auto;
    float: left;
    padding: 20px 0;
    line-height: 30px;
}

.special {
    width: 100%;
    overflow: hidden;
}

.special figure {
    width: 295px;
    float: left;
    margin-right: 20px;
}

.special figure:last-of-type {
    margin-right: 0;
}

.special figure a {
    color: #000;
    text-decoration: none;
}

.special figcaption {
    width: 100%;
    text-align: center;
    font-size: 18px;
    margin: 5px 0;
    transition: .3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.special-pic {
    width: 100%;
    height: 221px;
    overflow: hidden;
    display: block;
}

.special figure:hover img {
    transform: scale(1.1);
}

.special figure img {
    transition: .5s;
}

.special figure:hover figcaption {
    color: #1d539f;
}

.special-prev {
    width: 25px;
    margin-right: 7px;
    float: left;
}

.special-prev i {
    font-size: 40px;
    color: #767676;
    margin: 90px 0;
}

.special-next {
    width: 25px;
    margin-left: 7px;
    float: left;
}

.special-next i {
    font-size: 40px;
    color: #767676;
    margin: 90px 0;
}

footer {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    background: url(../images/footer-bg.jpg) repeat;
    background: #a71515;
}

.footer-link {
    background: #b6b6b7;
    padding: 15px;
}

.footer-link a {
    text-decoration: none;
}

.footer {
    color: #fff;
    line-height: 30px;
    padding: 30px 0;
}

.footer-box {
    width: 37%;
    margin: 0 1.5%;
    float: left;
}

.footer-box a {
    color: #fff;
}

.footer-box a:hover {
    color: #fec400;
    transition: .3s;
}

.footer-box h6 a {
    color: #fec400;
    font-size: 21px;
    margin-bottom: 0;
    text-decoration: none;
}

.footer-box i {
    margin: 0 5px;
    color: #fec400;
    transition: .3s;
}

.footer-box i:hover {
    color: #d3a818;
}

.footer-counter {
    width: 20%;
    float: right;
}

.counter-img {
    display: inline-block;
    margin: 0 5px;
}

.footer-share {
    width: 100%;
    margin-top: 110px;
}

.copyright {
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 15px 0;
    border-top: solid 1px #a0a0a0;
}


/*================== apply ==================*/

#apply-content {
    width: 100%;
    overflow: hidden;
    min-height: 500px;
    background: #fff;
    padding: 40px 50px;
    font-family: '微軟正黑體';
}

#apply-content h2 {
    font-size: 30px;
    padding: 10px 0;
    margin-bottom: 30px;
    color: #1d539f;
    font-weight: bold;
    border-bottom: 1px solid #cdcdcd;
    position: relative;
}

#apply-content h2:after {
    position: absolute;
    content: "";
    background: #1d539f;
    width: 200px;
    height: 4px;
    bottom: -2px;
    left: 0;
}

#apply-content h2 span {
    font-size: 20px;
}

.apply-content-tool {
    width: 100%;
    overflow: hidden;
    background: #e5e5e5;
    padding: 30px;
    height: 1710px;
}

#apply-content input,
#apply-content textarea,
#apply-content select,
#apply-content button {
    font-family: "微軟正黑體", 'Arial';
    font-size: 15px;
    top: 413px;
    left: -298px;
}

.apply-tool {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.apply-form {
    width: auto;
    margin-right: 30px;
    float: left;
}

.apply-form-title {
    font-size: 16px;
    float: left;
    padding: 2px 0px;
    margin-right: 10px;
    line-height: 18px;
}

.apply-form-title a {
    color: #b48139;
    text-decoration: underline;
}

.apply-fixtop {
    padding: 10px 0;
}

.form-style {
    height: 30px;
    border: solid 1px #888;
    margin: 5px 0;
    padding: 5px 10px;
    border-radius: 3px;
}

.apply-form button {
    padding: 0 8px;
    cursor: pointer;
}

table.apply-table {
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    letter-spacing: 1px;
    border: 1px solid #b5b5b5;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
}

table.apply-table tr,
table.apply-table td {
    border: 1px solid #b5b5b5;
}

table.apply-table td {
    padding: 10px;
    vertical-align: middle;
}

.apply-table-style {
    width: 100%;
    padding: 5px 10px;
    border: none;
}

.apply-table-style-select {
    display: inline-block;
}

.check-tool {
    width: 50%;
    float: left;
    padding: 100px 50px;
    font-size: 18px;
    line-height: 24px;
}

.check-tool  p {
    margin-bottom: 20px;
}

.check-tool input {
    margin-right: 5px;
}

#apply-content button.apply-btn {
    width: 30%;
    margin: 0 35%;
    font-size: 30px;
}

.applyComplete-content-tool {
    font-size: 20px;
    width: 440px;
    margin: 80px auto;
}