﻿.gs18-HeaderNav__Text.active {
    color: #db1119;
}

.wrapper div.sw-nav-prev, .wrapper div.sw-nav-next {
    cursor: default;
}

p.nodata {
    color: #787c8d;
}

.border-top-none {
    border-top: none;
}

.form [type="radio"]:checked + label:after, .form [type="radio"]:not(:checked) + label:after {
    top: 6px;
}

/* 下載中心 */
.download .form [type="checkbox"]:checked, .download .form [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.download .form [type="checkbox"]:checked + label, .download  .form [type="checkbox"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
}

.download .form [type="checkbox"]:checked + label:before, .download .form [type="checkbox"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 1px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 100%;
    background: #f7f7f7;
}

.download .form [type="checkbox"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.download .form [type="checkbox"]:checked + label:after, .download .form [type="checkbox"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #666;
    position: absolute;
    top: 6px;
    left: 8px;
    border-radius: 100%;
}

.download .form [type="checkbox"]:checked + label:after {
    opacity: 1;
}

.download .sec-main .content .list .list-item .series .tag {
    max-width: 100%;
    padding: 6px 9px;
    margin: 5px 2px;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.25rem;
    color: #888;
    border-radius: 8px;
    background: #f7f7f7;
}

@media (min-width: 768px) {
    .download .sec-main .content .list .list-item .series .tag {
        padding: 3px 7px;
        margin: 2px 0px;
        font-size: .75rem;
        line-height: 1rem;
    }
}

/* 產品介紹 */
.product section.sec-main a.link {
    font-size: 15px;
    color: #005e8c;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    text-decoration: underline;
}

.product section.sec-main a.link:hover {
    opacity: 0.7;
}

.product section.sec-main a.link span {
    font-size: 15px;
}

.product section.sec-main a.link > * {
    vertical-align: middle;
}

.product section.sec-main a.link > img {
    margin-top: 3px;
}

/* support cnc-app */
.support.cnc-app .sec-main .content .app-buttons p {
    line-height: 1.5rem;
}

/* 最新消息 */
.l-inner a.info {
    color: #000;
    text-decoration: none;
}

/* processing */
.processing {
    position: fixed;
    visibility: hidden;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    z-index: 10000001;
    transition: opacity .4s ease-out, visibility .4s ease-out;
}

.processing.active {
    visibility: visible;
    opacity: 1;
}

.processing::after {
    position: absolute;
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .7;
    z-index: 1;
}

.processing .lds-ellipsis {
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 2;
}

.processing .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.processing .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.processing .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.processing .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.processing .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}