@charset "UTF-8";

/*clear default style*/


/*remove margin and padding of common tags*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
input {
    margin: 0;
    padding: 0;
}


/*inner margin mode*/

* {
    box-sizing: border-box;
}


/*set the font size, line height, font series related properties of the web page*/

body {
    font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
    color: #333;
}


/*remove the default style of the list*/

ul,
ol {
    list-style: none;
}


/*remove the default italic effect*/

em,
i {
    font-style: normal;
}


/*remove the default underline of the a tag, and set the default text color*/

a {
    text-decoration: none;
    color: #333;
}


/*set the vertical alignment of the img to the middle, and remove the default gap of the img*/

img {
    vertical-align: middle;
}


/*remove the default style of the input*/

input {
    border: none;
    outline: none;
    color: #333;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
}


/*left float*/

.fl {
    float: left;
}


/*right float*/

.fr {
    float: right;
}


/*double pseudo-element clear method*/

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

.flex {
    display: flex;
}

.content {
    max-width: 1082px;
    margin: 0 auto;
}

#header {
    height: 82px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    user-select: none;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

#header .menu-warp {
    display: flex;
    align-items: center;
    height: 82px;
}

#header .menu-warp .logo-warp {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

#header .menu-warp .logo-warp-logo {
    background-image: url(../img/ltranslate-logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 170px;
    height: 42px;
    display: flex;
    align-items: center;
}

#header .menu-warp .logo-warp-text {
    display: none;
    font-size: 24px;
    font-weight: 700;
    color: #213D58;
}

#header .menu-warp .menu-list {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
    gap: 45px;
    color: #808080;
}

#header .menu-warp .menu-list li {
    cursor: pointer;
}

#header .menu-warp .menu-list li a {
    color: #808080;
}

#header .menu-warp .menu-list li a:hover {
    color: #165DFF;
}

#header .menu-warp .menu-list li.active a {
    color: #165DFF;
}

#header .menu-warp .menu-list .sub-menu {
    display: flex;
    align-items: center;
    position: relative;
}

#header .menu-warp .menu-list .sub-menu i {
    background-image: url(../img/down.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

#header .menu-warp .menu-list .sub-menu:hover i {
    transform: rotate(180deg);
}

#header .menu-warp .menu-list .sub-menu:hover .sub-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#header .menu-warp .menu-list .sub-menu:hover .sub-menu-list a.active {
    color: #165DFF;
}

#header .menu-warp .menu-list .sub-menu .sub-menu-list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 136px;
    background: #fff;
    border-radius: 6px;
    padding: 14px 10px;
    box-shadow: 0px 2px 12px 0px #4D566D40;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

#header .menu-warp .menu-list .sub-menu .sub-menu-list a {
    display: block;
    padding: 8px 20px;
    border-radius: 6px;
    color: #808080;
    transition: all 0.2s ease;
}

#header .menu-warp .menu-list .sub-menu .sub-menu-list a:hover {
    background: #E9E9E9;
    color: #165DFF;
    text-decoration: none;
}

#header .menu-warp .login-btn {
    width: 120px;
    height: 40px;
    border-radius: 6px;
    background: #313131;
    font-weight: 700;
    color: #fff;
    margin-left: 40px;
    cursor: pointer;
}

#header .menu-warp .login-btn:hover {
    background: #165DFF;
}

#header .menu-warp .lang-warp {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

#header .menu-warp .lang-warp-icon {
    background-image: url(../img/lang.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
}

#header .menu-warp .lang-warp-more {
    background-image: url(../img/up.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

#header .menu-warp .lang-warp .lang-list {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    border-radius: 6px;
    width: 150px;
    z-index: 1;
    padding: 14px 10px;
    background: #fff;
    box-shadow: 0px 2px 12px 0px #4D566D40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#header .menu-warp .lang-warp .lang-list li {
    display: flex;
    align-items: center;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    padding: 6px 10px;
}

#header .menu-warp .lang-warp .lang-list li:hover {
    background: #E9E9E9;
}

#header .menu-warp .lang-warp .lang-list li .zh-icon {
    background-image: url(../img/cn_national_flag.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 16px;
    margin-right: 6px;
}

#header .menu-warp .lang-warp .lang-list li .en-icon {
    background-image: url(../img/en_national_flag.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 22px;
    height: 16px;
    margin-right: 6px;
}

#header .menu-warp .lang-warp .lang-list li a {
    color: #808080;
}

#header .menu-warp .lang-warp.lang-warp-active .lang-warp-more {
    transform: rotate(180deg);
}

#header .menu-warp .lang-warp.lang-warp-active .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

#header .menu-warp .icon-lang,
#header .menu-warp .icon-menus {
    display: none;
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

#header .menu-warp .icon-lang {
    background: url(../img/header/lang.svg) no-repeat center center;
    background-size: 100% 100%;
}

#header .menu-warp .icon-menus {
    background: url(../img/header/menus.svg) no-repeat center center;
    background-size: 100% 100%;
}

#header .menu-warp .icon-menus.active {
    background: url(../img/header/close.svg) no-repeat center center;
    background-size: 100% 100%;
}

#header .phone-menu-list {
    display: none;
}

.main {
    min-height: calc(100vh - 82px - 390px);
}

.main-p {
    color: red;
    font-size: 18px;
}

#footer {
    height: 390px;
    background: #1C1C38;
    color: #fff;
}

#footer .footer-zn-copyright {
    display: none;
}

#footer .footer-warp {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 390px;
    box-sizing: border-box;
    padding: 48px 0;
}

#footer .footer-warp-top {
    display: flex;
    width: 100%;
}

#footer .footer-warp-top-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 220px;
    margin-right: 80px;
}

#footer .footer-warp-top-left-logo {
    background-image: url(../img/ltranslate-logo-mini.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 220px;
    height: 90px;
    display: flex;
    align-items: center;
}

#footer .footer-warp-top-left-text {
    display: block;
    font-size: 36px;
    text-align: center;
    font-weight: 700;
    color: #fff;
}

#footer .footer-warp-top-right {
    display: flex;
    flex: 1;
    justify-content: space-around;
    gap: 20px;
}

#footer .footer-warp-top-right-item {
    display: flex;
    flex-direction: column;
}

#footer .footer-warp-top-right-item-title {
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

#footer .footer-warp-top-right-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#footer .footer-warp-top-right-item-list-item a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
}

#footer .footer-warp-top-right-item-list-item a:hover {
    color: #165DFF;
}

#footer .footer-warp-top-right-item-list-item.active a {
    color: #165DFF;
    font-weight: 600;
}

#footer .footer-warp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#footer .footer-warp-bottom-left span {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    color: #B1B1B1;
    user-select: none;
}

#footer .footer-warp-bottom-right,footer-beian-container {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

#footer .footer-warp-bottom-right i {
    background-size: cover;
    background-repeat: no-repeat;
    width: 34px;
    height: 34px;
    cursor: pointer;
    color: white !important;
}

#footer .footer-warp-bottom-right .facebook {
    background-image: url(../img/facebook.png);
}

#footer .footer-warp-bottom-right .youtube {
    background-image: url(../img/youtube.png);
}

#footer .footer-warp-bottom-right .twitter {
    background-image: url(../img/twitter.png);
}

/* 备案信息样式 */
.footer-beian-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.footer-beian-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff !important;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-beian-link:hover {
    color: #165DFF !important;
    background: rgba(22, 93, 255, 0.1);
    text-decoration: none;
}

.footer-beian-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    vertical-align: middle;
}

/* 移动端备案信息样式 */
@media screen and (max-width: 768px) {
    .footer-beian-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: 15px;
    }
    
    .footer-beian-link {
        font-size: 12px;
        padding: 2px 6px;
    }
    
    .footer-beian-icon {
        width: 14px;
        height: 14px;
    }
}

.main[data-lang="zh"] {
    min-height: calc(100vh - 82px - 334px);
}

#footer[data-lang="zh"] {
    height: 334px;
}

#footer[data-lang="zh"] .footer-zn-copyright {
    display: block;
    margin-top: 20px;
}

#footer[data-lang="zh"] .footer-warp {
    height: 334px;
    justify-content: center;
}

#footer[data-lang="zh"] .footer-warp .footer-warp-bottom {
    display: none;
}

#footer[data-lang="zh"] .footer-warp-top-left {
    width: unset;
}

#footer[data-lang="zh"] .footer-warp-top-right {
    padding-top: 30px;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    height: 100%;
}

.custom-dropdown .dropdown-button {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    border: 1px solid #A5A5A5;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    color: #1F1F1F;
    transition: all 0.3s ease;
}

.custom-dropdown .dropdown-button.has-value:hover .dropdown-clear {
    display: block;
    opacity: 1;
    transform: translateY(-50%);
}

.custom-dropdown .dropdown-button:hover {
    border-color: #4080FF;
}

.custom-dropdown .custom-dropdown.active .dropdown-button {
    border-color: #4080FF;
}

.custom-dropdown .dropdown-text {
    font-size: 16px;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #1F1F1F;
}

.custom-dropdown .dropdown-placeholder {
    font-size: 16px;
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #909399;
}

.custom-dropdown .dropdown-arrow {
    width: 20px;
    height: 20px;
    background: url('../img/price/open.svg') no-repeat center;
    background-size: 100% 100%;
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.custom-dropdown .dropdown-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-dropdown.active .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown .dropdown-option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-dropdown .dropdown-option:hover {
    background: #F5F7FA;
}

.custom-dropdown .dropdown-option.selected {
    color: #4080FF;
    background: #ECF2FF;
}

.custom-dropdown .dropdown-clear {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) translateY(10px);
    width: 16px;
    height: 16px;
    margin-right: 8px;
    background: url('../img/close.svg') no-repeat center;
    background-size: 100% 100%;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    display: none;
    background-color: #fff;
    z-index: 9;
}

.custom-dropdown .dropdown-clear:hover {
    opacity: 1;
}

.main .paginationjs .paginationjs-pages ul {
    display: flex;
    align-items: center;
}

.main .paginationjs .paginationjs-pages li {
    margin-right: 16px;
    border: 1px solid #E6E6E6;
    border-radius: 7px;
    overflow: hidden;
}

.main .paginationjs .paginationjs-pages li>a {
    font-size: 16px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    color: #6A6A6A;
}

.main .paginationjs .paginationjs-pages li.active>a {
    height: 40px;
    line-height: 40px;
    background: #165DFF;
    color: #fff;
}

.main .paginationjs .paginationjs-pages li:first-child,
.main .paginationjs .paginationjs-pages li:last-child {
    border-radius: 7px;
    border-color: #E6E6E6;
}

.main .paginationjs .paginationjs-pages li:first-child>a,
.main .paginationjs .paginationjs-pages li:last-child>a {
    font-size: 28px;
    line-height: 36px;
}

.main .paginationjs .paginationjs-pages li:last-child {
    margin-right: 0px;
}

@media screen and (max-width: 768px) {
    .content {
        max-width: 100%;
        padding: 0;
    }
    #header {
        height: 60px;
    }
    #header .content {
        width: 100%;
        max-width: 100%;
    }
    #header .menu-warp {
        position: relative;
        z-index: 9;
        height: 60px;
        justify-content: space-between;
        padding: 0 15px;
        box-shadow: 0px 4px 30px 0px #0000001C;
    }
    #header .menu-warp .logo-warp-logo {
        background-image: url(../img/logo-90.png) !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        width: 39px !important;
        height: 45px !important;
        display: flex !important;
        align-items: center !important;
    }
    #header .menu-warp .logo-warp-text {
        font-size: 18px;
    }
    #header .menu-warp .menu-list {
        display: none;
    }
    #header .menu-warp .lang-warp {
        display: none;
    }
    #header .menu-warp .login-btn {
        margin-left: 0px;
        width: 80px;
        height: 26px;
    }
    #header .menu-warp .header-btns {
        display: flex;
        align-items: center;
    }
    #header .menu-warp .icon-lang,
    #header .menu-warp .icon-menus {
        display: block;
    }
    #header .menu-warp .phone-lang-warp {
        display: block;
    }
    #header .menu-warp .lang-warp.lang-warp-active .lang-list {
        transform: translateX(-80%) translateY(-10px);
    }
    #header .phone-menu-list {
        position: absolute;
        top: 60px;
        left: 0px;
        width: 100%;
        overflow: hidden;
        background-color: #fff;
        padding: 0;
        z-index: 8;
        max-height: 0px;
        opacity: 0;
        transition: max-height 1s ease, opacity 0.3s ease;
        display: block;
        padding: 0 15px;
    }
    #header .phone-menu-list .phone-menu>a {
        display: flex;
        height: 50px;
        line-height: 50px;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
        align-items: center;
    }
    #header .phone-menu-list .phone-menu>a>i {
        display: inline-block;
        background-image: url(../img/down.png);
        background-size: cover;
        background-repeat: no-repeat;
        width: 10px;
        height: 6px;
        margin-left: 6px;
        transition: transform 0.3s ease;
    }
    #header .phone-menu-list .phone-menu.active>a {
        color: #165DFF;
    }
    #header .phone-menu-list .sub-menu-list {
        display: flex;
        flex-direction: column;
        height: 0px;
        overflow: hidden;
    }
    #header .phone-menu-list .sub-menu-list>a {
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
    }
    #header .phone-menu-list .sub-menu-list>a.active {
        color: #165DFF;
    }
    #header .phone-menu-list .sub-menu-list-active .sub-menu-list {
        height: auto;
    }
    #header .phone-menu-list .sub-menu-list-active .sub-menu-row .active {
        color: #165DFF;
    }
    #header .phone-menu-list .sub-menu-list-active .sub-menu-row>i {
        transform: rotate(180deg);
    }
    #header .phone-menu-list-active {
        max-height: 500px;
        opacity: 1;
        padding-top: 25px;
        padding-bottom: 20px;
    }
    .main {
        min-height: calc(100vh - 60px - 570px);
        width: 100%;
        overflow-x: hidden;
    }
    #footer {
        height: auto;
    }
    #footer .footer-zn-copyright {
        display: none;
    }
    #footer .content {
        width: 100%;
        max-width: 100%;
    }
    #footer .footer-warp {
        height: auto;
        padding: 15px;
        padding-bottom: 0px;
    }
    #footer .footer-warp-top {
        flex-direction: column;
    }
    #footer .footer-warp-top-left {
        margin-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
    }
    #footer .footer-warp-top-right {
        justify-content: flex-start;
        flex-direction: column;
    }
    #footer .footer-warp-top-right-item {
        border-bottom: 1px solid #2F2F52;
    }
    #footer .footer-warp-top-right-item-title {
        padding-bottom: 30px;
        margin-bottom: 0px;
    }
    #footer .footer-warp-top-right-item-list {
        padding-bottom: 0px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }
    #footer .footer-warp-top-right .active .footer-warp-top-right-item-list {
        display: flex;
        max-height: 500px;
        opacity: 1;
        padding-bottom: 20px;
        transition: max-height 1s ease, opacity 1s ease;
    }
    #footer .footer-warp-bottom {
        padding: 15px 0;
    }
    #footer .footer-warp-bottom-right {
        display: none;
    }
    #footer[data-lang="zh"] {
        height: auto;
    }
    #footer[data-lang="zh"] .footer-zn-copyright {
        display: none;
    }
    #footer[data-lang="zh"] .footer-warp-top-right {
        padding-top: 0px;
    }
    #footer[data-lang="zh"] .footer-warp {
        height: auto;
    }
    #footer[data-lang="zh"] .footer-warp .footer-warp-bottom {
        display: flex;
    }
}

.ajax-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.sk-fading-circle {
    width: 40px;
    height: 40px;
    position: relative;
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #4080FF;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%,
    39%,
    100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}