123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- /* 共通樣式 */
- :root {
- --main-color: #005bac;
- --sub-color: #00b9ef;
- }
- * {
- letter-spacing: 1px;
- font-weight: 300;
- font-family: "Noto Sans TC", sans-serif !important;
- }
- .navbar {
- box-shadow: 1px 1px 10px #ccc;
- .navbar-collapse {
- flex-grow: 0;
- }
- }
- p,
- li {
- line-height: 32px;
- }
- ul {
- list-style: none;
- }
- img {
- width: 100%;
- height: auto;
- }
- .navbar {
- position: fixed;
- right: 0;
- left: 0;
- top: 0;
- z-index: 1000;
- .navbar-nav {
- li {
- margin: 0 3px;
- }
- }
- }
- #all {
- overflow: hidden;
- }
- .logo {
- position: absolute;
- width: 220px;
- top: 5px;
- left: 5px;
- @media (max-width: 991px) {
- top: 0px;
- }
- }
- .title {
- font-size: 36px;
- text-align: center;
- color: var(--main-color);
- }
- .sub-title {
- display: block;
- margin: 20px auto 80px;
- text-align: center;
- color: #64646c;
- font-weight: 300;
- }
- #about,
- #service,
- #returns,
- #recruit {
- padding: 100px 0;
- }
- .click-btn {
- margin-top: 50px;
- display: flex;
- justify-content: center;
- a {
- position: relative;
- padding: 15px 40px;
- text-decoration: none;
- border-radius: 100px;
- box-shadow: 3px 5px 12px #ccc;
- background-image: linear-gradient(20deg, var(--main-color) 20%, var(--sub-color) 75%);
- &::before {
- position: absolute;
- content: "";
- inset: 0;
- border-radius: 100px;
- background-image: linear-gradient(20deg, var(--main-color) 95%, var(--sub-color) 75%);
- opacity: 0;
- transition: opacity 0.3s linear;
- }
- &:hover::before {
- opacity: 1;
- }
- img {
- position: absolute;
- width: 35px;
- bottom: -10px;
- right: -5px;
- }
- span {
- position: relative;
- z-index: 100;
- color: #fff;
- font-size: 18px;
- font-weight: 500;
- letter-spacing: 3px;
- }
- }
- }
- .service-btn {
- width: 160px;
- display: block;
- margin: 20px auto;
- padding: 15px 20px;
- font-size: 18px;
- border-radius: 100px;
- text-align: center;
- text-decoration: none;
- color: var(--main-color);
- border: 2px solid var(--main-color);
- transition: all .3s;
- &:hover {
- opacity: .8;
- }
- }
- /* header Start */
- #header {
- h2 {
- font-size: 36px;
- font-weight: 500;
- @media (max-width: 1200px) {
- font-size: 32px;
- }
- @media (max-width: 991px) {
- font-size: 28px;
- }
- }
- p {
- font-size: 18px;
- }
- a {
- display: inline-block;
- color: #fff;
- margin-top: 50px;
- padding: 15px 45px;
- font-weight: 400;
- border: none;
- border-radius: 100px;
- box-shadow: 3px 5px 12px #ccc;
- background: linear-gradient(20deg, var(--main-color) 20%, var(--sub-color) 75%);
- transition: all 0.3s;
- text-decoration: none;
- &:hover {
- transform: translate(0px, -5px);
- }
- }
- section {
- padding: 30px 60px;
- display: inline-block;
- border-radius: 10px;
- border: 1px solid #ccc;
- line-height: 26px;
- }
- strong {
- font-size: 30px;
- font-weight: 700;
- margin-bottom: 15px;
- display: inline-block;
- }
- .line {
- margin-left: 20px;
- &::after {
- content: "";
- display: inline-block;
- width: 50px;
- height: 2px;
- background: #000;
- position: relative;
- top: -10px;
- left: -17px;
- margin-right: -10px;
- }
- }
- }
- /* header End */
- /* about Start */
- #about {
- margin-top: 50px;
- background-color: #f8f9fa;
- h4 {
- font-size: 26px;
- font-weight: 500;
- margin-bottom: 20px;
- }
- }
- /* about End */
- /* service Start */
- #service {
- h4 {
- padding: 8px 28px;
- margin-bottom: 20px;
- display: inline-block;
- color: #fff;
- font-size: 20px;
- font-weight: 500;
- border-radius: 10px;
- background: var(--sub-color);
- }
- h5 {
- line-height: 32px;
- }
- ul {
- li {
- img {
- width: 18px;
- margin-bottom: -3px;
- }
- }
- }
- }
- /* service End */
- /* returns Start */
- #returns {
- background-color: #f8f9fa;
- section {
- display: flex;
- flex-direction: column;
- align-items: center;
- h5 {
- margin: auto;
- padding: 10px 20px;
- display: inline-block;
- color: #fff;
- text-align: center;
- border-radius: 10px;
- background: var(--sub-color);
- }
- small {
- margin: 15px 0;
- color: #64646c;
- }
- }
- }
- /* returns End */
- /* footer Start */
- #recruit {
- h4 {
- font-size: 20px;
- margin-bottom: 5px;
- }
- li {
- margin: 30px 0;
- }
- .arrow {
- width: 20px;
- object-fit: contain;
- margin-right: 10px;
- }
- }
- /* returns End */
- /* footer Start */
- .footer {
- color: var(--main-color);
- background: #eeeded;
- h2 {
- font-size: 28px;
- }
- ul {
- li {
- margin: 15px 0;
- a {
- padding-bottom: 3px;
- transition: border-color 0.5s ease;
- text-decoration: none;
- color: var(--main-color);
- border-bottom: 1px solid transparent;
- &:hover {
- border-bottom: 1px solid var(--main-color);
- }
- }
- }
- }
- h3 {
- padding: 15px 0;
- margin-bottom: 0;
- color: #fff;
- font-size: 16px;
- font-weight: 300;
- text-align: center;
- background-color: var(--main-color);
- }
- img {
- max-width: 300px;
- }
- .content {
- padding: 50px 100px 35px;
- display: flex;
- justify-content: space-between;
- @media (max-width: 767px) {
- align-items: center;
- flex-direction: column;
- }
- }
- }
- /* footer End */
- /* contact Start */
- .contact-form {
- margin: 150px auto;
- h2 {
- font-size: 30px;
- }
- h3 {
- font-size: 22px;
- margin-bottom: 20px;
- }
- .btn {
- color: #fff;
- background-color: var(--main-color);
- }
- .line {
- display: block;
- width: 100px;
- margin: 20px 0;
- height: 3px;
- background-color: var(--main-color);
- }
- .errorText {
- display: none;
- }
- .loading-btn {
- display: none;
- }
- }
- /* contact End */
|