/* 首頁 - 輪播圖區塊 */
.swiper {
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-img-pc {
    display: block;
}

.banner-img-mobile {
    display: none;
}

/* 首頁 - 公司簡介 */
.company-info {
    padding: 50px 0px;
    background-color: #f8f8f8;
}

.company-info .info-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-info .info-content .title {
    width: 40%;
    height: 100%;
    font-size: 34px;
    font-weight: 600;
    border-right: 1px solid #999;
    padding: 60px 50px 60px 0px;
}

.company-info .info-content .content {
    width: 50%;
    margin-left: 50px;
    font-size: 18px;
    font-weight: 300;
    line-height: 40px;
}

/* 首頁 - 我們的服務 */
.service {
    padding: 50px 0px 15px 0px;
}

.service .service-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.service .service-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.service .service-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.service-list {
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-wrap: wrap;
}

.service-item {
    width: 31.3%;
    padding: 0px 1% 30px 1%;
}

.item-image img {
    display: block;
}

.item-content {
    padding: 15px 15px 30px 25px;
    background-color: #f8f8f8;
}

.item-title {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
}

.item-desctipt {
    font-weight: 300;
    line-height: 30px;
    white-space: normal;
}

/* 首頁 - 關於我們 */
.about-us {
    padding: 50px 0px;
    background-color: #f8f8f8;
}

.about-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.about-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.about-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.about-content .content {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
}

.about-image-area {
    width: 40%;
}

.about-image {
    width: 70%;
    margin-left: auto;
    padding: 5%;
    position: relative;
    border: 10px #1cb8c8 solid;
}

.about-image::before {
    width: 17px;
    height: 80%;
    right: -13px;
    top: 50%;
    position: absolute;
    background-color: #f6f8fa;
    content: "";
    transform: translateY(-50%);
}

.about-image image {
    width: 100%;
}

.about-text-area {
    width: 60%;
    padding: 0px 30px;
}

.about-title {
    font-size: 22px;
    font-weight: 300;
    line-height: 36px;
}

.about-descript {
    padding-top: 5%;
    font-weight: 300;
    line-height: 30px;
}

/* 首頁 - 大容介紹 */
.about-dazone {
    padding: 50px 0px;
}

.dazone-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.dazone-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.dazone-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.dazone-content .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
}

.chronology {
    width: 100%;
}

.chronology-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.chronology-item:nth-child(n+2) {
    margin-top: calc(-0.28 * 186px);                /* 第1列後的每一列都往上移動圖片高度的28% */
}

.chronology-item-left {
    width: 40%;
}

.chronology-item-left .chronology-item-descript {
    margin-left: auto;
    background-color: #1699a6;
}

.chronology-item-middle {
    position: relative;
}

.chronology-item-right {
    width: 40%;
}
.chronology-item-right .chronology-item-descript {
    margin-right: auto;
    background-color: #1cb8c8;
}

.chronology-item-descript {
    width: 95%;
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    white-space: normal;
    word-wrap: break-word;
    /*word-break: break-word;*/
}

.chronology-item-number-bg {
    width: 300px;
    height: 186px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.chronology-item:nth-child(odd) .chronology-item-number-bg {
    background-image: url("../../../web/images/brand_pic_bg_right.webp");               /* 奇數列的圖片 */
}
.chronology-item:nth-child(even) .chronology-item-number-bg {
    background-image: url("../../../web/images/brand_pic_bg_left.webp");                /* 偶數列的圖片 */
}

.chronology-item-number-bg::before {
    width: 60px;
    height: 12px;
    position: absolute;
}
.chronology-item:nth-child(odd) .chronology-item-number-bg::before {
    top: 48%;
    right: -1px;
    background-color: #1cb8c8;
    content: "";
}
.chronology-item:nth-child(even) .chronology-item-number-bg::before {
    top: 48%;
    left: -1px;
    background-color: #1699a6;
    content: "";
}

.chronology-item-number {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #1cb8c8;
    box-shadow: 0 0 20px -1px rgba(0,0,0,.3);
}

/* 首頁 - 服務產業類型 */
.industry {
    padding: 50px 0px;
    background-color: #1dbbc9;
    color: #fff;
}

.industry-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.industry-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.industry-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.industry-content .content {
    width: fit-content;
    margin: 0 auto;
}

.industry-list {
    display: flex;
    align-items: normal;
    justify-content: center;
}

.industry-item {
    padding: 0px 20px;
}

.industry-number {
    width: fit-content;
    margin: 0 auto;
    padding: 0px 30px 15px 30px;
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid;
    text-align: center;
}

.industry-title {
    margin-top: 20px;
    text-align: center;
}

/* 首頁 - 系統產品 */
.system-product {
    padding: 50px 0px;
}

.product-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.product-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.product-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.product-content .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
}

.product-swiper-area {
    width: 100%;
    position: relative;
}

.product-swiper-area > button {
    top: 50%;
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}

.product-swiper-button-prev {
  left: 10px;
}

.product-swiper-button-next {
  right: 10px;
}

.product-swiper {
    width: 90%;
    height: 200px;
    margin: 0 auto;
}

.product-image {
    height: 186px;
}

.product-title {
    opacity: 60%;
    width: 100%;
    top: 75%;
    line-height: 38px;
    position: absolute;
    background-color: #1cb8c8;
    text-align: center;
}

.product-title a {
    all: unset;
    color: #fff;
    cursor: pointer;
}

.product-btn-area {
    margin: 0 auto;
    padding: 30px 0px;
}

.product-details-btn {
    all: unset;
    color: #fff;
    cursor: pointer;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    background-color: #1cb8c8;
    border-radius: 3px;
    color: #fff;
    transition: all 0.3s ease;
}

.product-details-btn:hover {
    background-color: #1a9caa;
}

.product-details-btn img {
    width: 14px;
    height: 14px;
    padding-left: 8px;
}

/* 首頁 - 合作夥伴 */
.partner {
    padding: 50px 0px;
    background-color: #f8f8f8;
}

.partner-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.partner-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.partner-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.partner-content .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
}

.partner-image {
    height: 78px;
}

.partner-title {
    padding-top: 20px;
    font-size: 26px;
    font-weight: 500;
    text-align: center;
}

.partner-descript {
    padding: 20px 0px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
}

.partner-swiper-area {
    width: 100%;
    padding: 20px 0px;
    position: relative;
}

.partner-swiper-area > button {
    top: 50%;
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}

.partner-swiper-button-prev {
  left: 100px;
}

.partner-swiper-button-next {
  right: 100px;
}

.partner-swiper {
    width: 80%;
    height: 80px;
    margin: 0 auto;
}

/* 首頁 - 客戶見證 */
.client {
    padding: 50px 0px;
    background-color: #1dbbc9;
    color: #fff;
}

.client-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.client-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.client-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.client-content .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
    flex-direction: column;
}

.client-image {
    height: 78px;
}

.client-descript {
    padding: 20px 0px;
    font-weight: 300;
    line-height: 30px;
    text-align: center;
}

.client-swiper-area {
    width: 100%;
    padding: 20px 0px;
    position: relative;
}

.client-swiper-area > button {
    top: 50%;
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    transform: translateY(-50%);
    z-index: 10;
}

.client-swiper-button-prev {
  left: 100px;
}

.client-swiper-button-next {
  right: 100px;
}

.client-swiper {
    width: 80%;
    height: 80px;
    margin: 0 auto;
}

/* 首頁 - 聯絡我們 */
.contact-us {
    padding: 50px 0px;
    background-image: url("../../../web/images/index_bg.png");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.contact-us-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
}

.contact-us-content .title {
    width: fit-content;
    margin: 0 auto;
    font-size: 28px;
    font-weight: 500;
}

.contact-us-content .line {
    width: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
}

.contact-us-content .content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: normal;
    justify-content: center;
}

.contact-info {
    width: 50%;
}

.contact-form {
    width: 50%;
    margin: 30px 0px;
    padding: 20px 0px;
    background-color: #1dbbc9;
}

.contact-field {
    padding: 10px 20px;
}

.contact-field-title {
    margin: 10px 0px;
}

.contact-field-value input {
    width: 100%;
    height: 36px;
    margin: 0px;
    padding: 0px 6px;
    font-size: 14px;
    line-height: 42px;
    outline: 0;
    background-color: #1cb8c8;
    border: solid 1px #fff;
    box-sizing: border-box;
    color: #fff;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.contact-field-value textarea {
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 3px;
    outline: 0;
    background-color: #1cb8c8;
    border: solid 1px #fff;
    box-sizing: border-box;
    color: #fff;
    line-height: 24px;
    resize: none;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.contact-field-value.captcha {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.captcha input {
    width: 80px;
}

.contact-field.submit {
    display: flex;
    justify-content: center;
}

.submit-btn {
    width: 102px;
    height: 40px;
    font-size: 14px;
    line-height: 33px;
    background: #333;
    border-radius: 3px;
    color: #fff;
    transition: all 0.3s ease;
}

/* 首頁 - 電子報訂閱 */
.epaper {
    padding: 50px 0px;
    background-color: #1dbbc9;
    color: #fff;
}

.epaper-content {
    width: var(--wrap, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epaper-content .title {
    width: 50%;
    font-size: 28px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.epaper-content .title img {
    padding-right: 20px;
}

.epaper-content .content {
    width: 50%;
}

.epaper-field-value {
    margin: 6px 0px;
    display: flex;
    align-items: center;
}

.epaper-field-value input {
    width: 80%;
    height: 36px;
    margin: 0px;
    padding: 0px 6px;
    font-size: 14px;
    line-height: 42px;
    outline: 0;
    border: solid 1px #fff;
    box-sizing: border-box;
    color: #1cb8c8;
    vertical-align: middle;
    transition: all 0.2s ease;
}

.epaper-field-value button {
    all: unset;
    padding: 10px 0px 0px 20px;
    cursor: pointer;
}
.epaper-field-value button:hover {
    opacity: 0.7;
}