* {
    box-sizing: border-box;
    outline: none;
    font-family: "Source Han Sans CN", -apple-system, sans-serif;

    -webkit-appearance: none;
    appearance: none;
    scroll-behavior: smooth;

    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

.instant-scroll {
    scroll-behavior: unset;
}

.mini-dialog-container,
.mini-dialog-container * {
    box-sizing: content-box;
}

.mini-dialog-container img {
    max-width: 100%;
    width: auto;
    height: auto;
}

html {
    color: #333;
}

a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

a.muted {
    cursor: text;
}

a:hover {
    color: #e60012;
}

a.muted:hover {
    color: inherit;
}

body {
    font-size: 16px;
    margin: auto;
}

.ip-denied .restricted,
.ip-denied .btn-fav {
    display: none !important;
}

p {
    line-height: 1.475em;
    margin-top: 0;
    margin-bottom: 0;
}

h1,
h2,
h3 {
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5em;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}

input,
select,
textarea {
    border-radius: 0;
}

input[type=text]::-ms-clear,
input[type=search]::-ms-clear {
    display: none;
}

.wrapper {
    width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    height: 84px;
    position: relative;
    z-index: 900;
    color: #000;
}

.container>.site-header {
    overflow: visible;
}

.top-nav {
    width: 100%;
    height: 84px;
    background-color: #ffffff;
    position: fixed;
    font-size: 18px;
    z-index: 910;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .08);
}

.top-nav .wrapper {
    display: flex;
    height: 100%;
    align-items: stretch;
}

.top-nav .left {
    flex: 0 0 auto;
    width: 200px;
    padding-left: 15px;

    display: flex;
    align-items: center;
}

.top-nav .left img {
    display: block;
    width: 84px;
    height: auto;
}

.top-nav .left .splitter {
    width: 1px;
    height: 50px;
    margin-left: 16px;
    margin-right: 16px;
    background-color: #e1e1e1;
}

.top-nav .left .country {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.top-nav .mid {
    flex: 1 0 auto;

    display: flex;
    justify-content: center;
    align-items: stretch;
}

.top-nav .mid .nav-item {
    border: 1px solid transparent;
    border-bottom: none;
    position: relative;
}

.top-nav .mid .nav-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -1px;
    left: 0;
    background: #e9e9e9;
    display: none;
}

.top-nav .mid .nav-item a {
    display: block;
    padding: 30px 15px;
    line-height: 24px;
    font-weight: 500;
}

.top-nav .mid .nav-item.active {
    border: 1px solid #a8a8a8;
    border-bottom: none;
    background-color: #e9e9e9;
}

.top-nav .mid .nav-item.active::after {
    display: block;
}

.top-nav .mid .nav-item.active a {
    color: #e60012;
}

.top-nav .right {
    flex: 0 0 auto;

    display: flex;
    align-items: stretch;
    position: relative;
}

.top-nav .right .links {
    padding-left: 20px;
    padding-right: 5px;

    display: flex;
}


.top-nav .right .links .link {
    display: block;

    width: 50px;
    flex: 0 0 auto;
}

.top-nav .right .links .top-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.top-nav .right .links .top-btn .badge {
    position: absolute;
    right: 4px;
    top: calc(50% - 18px);
    background-color: #e60012;
    color: #fff;
    font-size: 10px;
    line-height: 16px;
    width: 16px;
    border-radius: 50%;
    font-size-adjust: none;
    text-align: center;
}

.top-nav .right .links .top-btn::before,
.top-nav .right .links .top-btn::after {
    content: "";
    display: inline-block;
    width: 23px;
    height: 23px;
    vertical-align: middle;
    background: center/contain no-repeat;
}

.top-nav .right .links .top-btn::after {
    display: none;
}

.top-nav .right .links .top-btn:hover::before {
    display: none;
}

.top-nav .right .links .top-btn:hover::after {
    display: inline-block;
}

.top-nav .right .links .btn-account a::before {
    background-image: url("../images/icons/account.svg");
}

.top-nav .right .links .btn-account a::after {
    background-image: url("../images/icons/account_red.svg");
}

.top-nav .right .links .logged-in a.btn-account::before {
    background-image: url("../images/icons/account_logged_in.svg");
    background-size: 18.9px auto;
}

.top-nav .right .links .logged-in a.btn-account::after {
    background-image: url("../images/icons/account_logged_in_red.svg");
    background-size: 18.9px auto;
}

.top-nav .right .links .btn-language a::before {
    background-image: url("../images/icons/global.svg");
}

.top-nav .right .links .btn-language a::after {
    background-image: url("../images/icons/global_red.svg");
}

.top-nav .link .dropdown {
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(31, 31, 31, .1);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 10px 20px;
    opacity: 0;
    transition: .3s;
    transform: translateY(-10%);
    font-size: 14px;
    visibility: hidden;
}

.top-nav .link:hover .dropdown {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.top-nav .btn-account .dropdown .line1 {
    padding-top: 4px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e4e4;
    display: block;
}

.top-nav .btn-account .dropdown .line1-1 {
    font-size: 14px;
    color: #ee4e5b;
}

.top-nav .btn-account .dropdown .line1-2 {
    font-size: 20px;
}

.top-nav .btn-account .dropdown .line2 {
    padding-top: 8px;
    color: #ee4e5b;
}


.top-nav .search {
    position: relative;
    display: flex;
    align-items: stretch;
}

.top-nav .search-input-ctn {
    position: absolute;
    width: 0;
    right: 100%;
    top: 0;
    overflow: hidden;
    height: 100%;
    border-left: 1px solid #e0e0e0;
    visibility: hidden;
}

.top-expand-menus {
    position: fixed;
    top: 84px;
    width: 100%;
    height: auto;
    z-index: 900;
}

.top-expand-menus .wrapper {
    position: relative;
}

.top-menu-pane {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #e9e9e9;
    padding: 10px 15px 0;
    display: none;
    border: 1px solid #a8a8a8;
}

.top-menu-pane.active {
    display: block;
    z-index: 905;
}

.top-menu-pane .menu-title {
    padding-left: 15px;
    font-size: 16px;
    color: #666;
    line-height: 30px;
    background: url("data:image/jpg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMvaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0MiA3OS4xNjA5MjQsIDIwMTcvMDcvMTMtMDE6MDY6MzkgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE4IChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDozM0REQjQwMTA3NTkxMUVBQjdBM0ZDNzRCODZFMDYyQiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDozM0REQjQwMjA3NTkxMUVBQjdBM0ZDNzRCODZFMDYyQiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjMzRERCM0ZGMDc1OTExRUFCN0EzRkM3NEI4NkUwNjJCIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjMzRERCNDAwMDc1OTExRUFCN0EzRkM3NEI4NkUwNjJCIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgACQAJAwERAAIRAQMRAf/EAFQAAQEAAAAAAAAAAAAAAAAAAAAIAQEAAAAAAAAAAAAAAAAAAAAAEAACAwADAQEAAAAAAAAAAAAEBgIDBQATCBIHEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwCi8BV81E+Vd1ra3hhxfR436jvZiapYIcdwNiSqVdHKEtaACbwRl3Lq2zdCNOlAqN85dsIjGdPzSEucBwHA/9k=") no-repeat 0;
    background-size: 9px 9px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-expand-menus .nav-block-list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    align-items: stretch;
    margin-top: 10px;
    margin-bottom: -10px;
}

.top-expand-menus .link-box:hover a {
    color: #e60012;
}

.top-expand-menus .block {
    margin-right: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 15px;
    width: calc(25% - 15px);
    flex: 0 0 auto;
}

.top-menu-pane:nth-of-type(1) .block {
    width: calc(20% - 15px);
}

.top-menu-pane:nth-of-type(1) .block.w2 {
    width: calc(40% - 15px);
}

.top-menu-pane:nth-of-type(3) {
    align-items: stretch;
}

.top-menu-pane .p20-part {
    width: calc(20% - 22.5px);
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
}

.top-menu-pane .p40-part {
    width: calc(40% - 22.5px);
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 15px;
}

.top-menu-pane .p40-part.col2 {
    width: calc(40% - 15px);
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.top-menu-pane .p60-part {
    width: calc(60% - 15px);
    margin-right: 15px;

    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.top-menu-pane .p20-part .block {
    display: block;
    width: 100%;
    height: 100%;
}

.top-menu-pane .p40-part .block {
    display: block;
    width: 100%;
    height: 100%;
}

.top-menu-pane .p40-part.col2 .block {
    height: calc(50% - 15px);
    width: calc(50% - 15px);
}

.top-menu-pane .p20-part.col2 .block {
    height: calc(50% - 15px);
}

.top-menu-pane:nth-of-type(5) .news-left {
    width: calc(60%);
    display: flex;
    flex-wrap: wrap;
}

.top-menu-pane:nth-of-type(5) .news-left .block {
    width: calc(50% - 15px);
    margin-right: 15px;
}

.top-menu-pane:nth-of-type(5) .news-right {
    width: calc(40% - 15px);
    margin-right: 15px;
}

.top-menu-pane:nth-of-type(5) .news-right .block {
    width: 100%;
}

/*.top-menu-pane:nth-of-type(5) .block {
    width: calc(100% / 4 - 15px);
}*/

.top-menu-pane:nth-of-type(5) .news-left .block .block-cover {
    width: 100%;
    height: 42px;
    object-fit: cover;
}

.top-menu-pane:nth-of-type(5) .news-right .block-cover {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.top-menu-pane:nth-of-type(6) .block {
    width: calc(20% - 15px);
}

.top-menu-pane:nth-of-type(6) .block-2x {
    align-self: stretch;
    flex: 0 0 auto;

    display: flex;
    align-items: stretch;
    max-width: unset;
    width: calc(40% - 15px);
}

.top-menu-pane:nth-of-type(6) .block-2x .block-cover {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: 75% center;
}

.block-cover.full {
    object-fit: cover;
}


.top-expand-menus .block-cover {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


.top-expand-menus .block-title {
    display: block;
    font-size: 16px;
    color: #333;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg0OEYzRDc3MDc3RjExRUE4MEJCRUM3QzE2RkMyMzNEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg0OEYzRDc4MDc3RjExRUE4MEJCRUM3QzE2RkMyMzNEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODQ4RjNENzUwNzdGMTFFQTgwQkJFQzdDMTZGQzIzM0QiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODQ4RjNENzYwNzdGMTFFQTgwQkJFQzdDMTZGQzIzM0QiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4T57TrAAAAVElEQVR42mJ44Or6//v58/+BgAEZM1xlYPgPwk+iov7/vH37P4YECF9jY/v/LDPz/+/nz/8zMSADZmYGJh4eBiZOToSOpwkJ/389fIgwCpflAAEGAGr4Ud3nMKRBAAAAAElFTkSuQmCC) no-repeat 0;
    background-size: 6px 6px;
    padding-left: 15px;
    line-height: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s;
}

.top-expand-menus .block-title.no-hover {
    cursor: default;
}

.block-title .font-size-limit {
    font-size: .9em;
}

.fa-float {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 900;
    transition: 1.2s;
    transform: translateX(100%);
}

.fa-float img {
    display: block;
    width: 211.5px;
    height: auto;
}

.fa-float.active {
    transform: none;
}

.fa-float .btn-close {
    position: absolute;
    right: 0;
    top: -14px;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none rgb(238, 78, 91);
    color: #fff;
    cursor: pointer;
}

.fa-float .btn-close::after {
    content: "×";
}

@media (max-width: 1280px) {
    .block-title .font-size-limit {
        font-size: .7em;
    }
}

@media (max-width: 960px) {
    /* .fa-float{
        display: none;
    }*/
}

.top-expand-menus .block-title:not(.no-hover):hover {
    color: #d50000;
}

.top-menu-pane:nth-of-type(2) .block-title,
.top-menu-pane:nth-of-type(6) .block-title,
.block-title.has-more {
    border-bottom: 1px solid #cecece;
}

.top-expand-menus .block-links {
    margin-top: 5px;
}

.top-menu-pane:nth-of-type(3) .block:nth-of-type(4) .block-title,
.top-menu-pane:nth-of-type(3) .block:nth-of-type(5) .block-title,
.top-menu-pane:nth-of-type(3) .block:nth-of-type(6) .block-title,
.top-menu-pane:nth-of-type(3) .block:nth-of-type(7) .block-title,
.top-menu-pane:nth-of-type(5) .block-title {
    margin-bottom: -15px;
}

.top-menu-pane:nth-of-type(4) {
    height: 560px;
    max-height: calc(100vh - 84px);
}

.top-expand-menus .block-links a {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    font-size: 14px;
    color: #999;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjdBNjY2M0ZFMDc3RjExRUFBQ0JEOUY3MzdGRUE1NTBEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjdBNjY2M0ZGMDc3RjExRUFBQ0JEOUY3MzdGRUE1NTBEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6N0E2NjYzRkMwNzdGMTFFQUFDQkQ5RjczN0ZFQTU1MEQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6N0E2NjYzRkQwNzdGMTFFQUFDQkQ5RjczN0ZFQTU1MEQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4+bKrGAAAANUlEQVR42mKcM2fOfwYgSE5OZmRAAkwwxty5c/+DMIzPwoAGYJJMDDgAhg6YXSzoAjAAEGAA4ucO5a5J360AAAAASUVORK5CYII=) no-repeat 0;
    background-size: 6px 6px;
    padding: 10px 10px 10px 15px;
    line-height: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s;
}

.top-expand-menus .block-links a:not(.not-hover):hover {
    color: #d50000;
}

.top-expand-menus .block-links a:not(.not-hover).muted:hover {
    color: #999;
}

a.not-hover {
    cursor: default;
    color: inherit;
}

.top-expand-menus .line3-links {
    display: flex;
    margin-right: -15px;
}

.top-expand-menus .line3-links a {
    width: calc(20% - 15px);
    margin-right: 15px;
    flex: 0 0 auto;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 48px;

    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTggKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjg0OEYzRDc3MDc3RjExRUE4MEJCRUM3QzE2RkMyMzNEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjg0OEYzRDc4MDc3RjExRUE4MEJCRUM3QzE2RkMyMzNEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ODQ4RjNENzUwNzdGMTFFQTgwQkJFQzdDMTZGQzIzM0QiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6ODQ4RjNENzYwNzdGMTFFQTgwQkJFQzdDMTZGQzIzM0QiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4T57TrAAAAVElEQVR42mJ44Or6//v58/+BgAEZM1xlYPgPwk+iov7/vH37P4YECF9jY/v/LDPz/+/nz/8zMSADZmYGJh4eBiZOToSOpwkJ/389fIgwCpflAAEGAGr4Ud3nMKRBAAAAAElFTkSuQmCC) no-repeat 0;
    background-size: 6px 6px;
    padding-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .2s;
}

.top-expand-menus .line3-links a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 20px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: #c3c3c3;
}

.top-expand-menus .line3-links a:hover {
    color: #d50000;
}

.file-search-bar {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.file-search-ctn {
    width: 594px;
    position: relative;
}

.file-search-ctn .m-input {
    width: 100%;
    border: 1px solid #afafaf;
}

.file-search-ctn .btn-search {
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 40px;
    background: url("../images/icons/search_gray.svg") center/20px 20px no-repeat;
    cursor: pointer;
    transition: .2s;
}

.file-search-ctn .btn-search:hover {
    background: #ff0000 url("../images/icons/search_light.svg") center/20px 20px no-repeat;
}

.file-search-hint {
    font-size: 14px;
    color: #ee4e5b;
    line-height: 33px;
    margin-left: 20px;
}

.filter-select-hint {
    padding-left: 20px;
    padding-right: 30px;
    font-size: 14px;
    padding-top: 120px;
    text-align: center;
}

.filter-select-hint p {
    line-height: 26px;
    min-height: 26px;
}

.file-filters {
    margin-right: -20px;
    display: flex;
    margin-bottom: 20px;
    margin-top: 15px;
}

.file-filters .filter-col {
    width: calc(100% / 3 - 20px);
    margin-right: 20px;
    flex: 0 0 auto;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: auto;
}

.file-filters .filter-col:nth-of-type(1) {
    border: 1px solid #afafaf;
}

.file-filters .filter-col:nth-of-type(2) {
    border: 1px solid #f6f6f6;
}

.file-filters .filter-col.col3 .type {
    display: flex;
    padding: 10px 20px;
    cursor: pointer;
    pointer-events: none;
    opacity: .5;
}

.file-filters .filter-col.col3 .type .file-type-icon {
    margin-right: 10px;
}


.file-filters .filter-col.col3 .type.show {
    pointer-events: all;
    opacity: 1;
}

.file-filters .filter-col.col3 .type:hover {
    color: #ee4e5b;
    background-color: rgba(31, 31, 31, .05);
}


.file-filters .cat {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 35px;
    background: url("../images/icons/angle_right.svg") 20px center/10px auto no-repeat;
    background-size: 7px 11px;
    cursor: pointer;
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 20px;
}

.file-filters .cat:not(.not-hover):hover,
.file-filters .cat:not(.not-hover).active {
    color: #ee4e5b;
    background-color: rgba(31, 31, 31, .05);
}

.file-filters .cat:not(.not-hover).active {
    background-color: rgba(31, 31, 31, .1);
}

.file-filters .cat.not-hover {
    cursor: default;
}

.mobile-header .search-input-ctn {
    border-bottom: 1px solid #e1e1e1;
}

.top-nav .search-input-form,
.mobile-header .search-input-form {

    display: flex;
    align-items: center;
    height: 84px;
}

.top-nav .search-input-form {
    width: 600px;
    padding: 30px 30px 20px 30px;
}

.mobile-header .search-input-form {
    padding: 0 20px 0 16px;
    display: flex;
}

.searching .search-input-ctn {
    width: 600px;
    visibility: visible;
}

.top-nav .search-input-ctn button.btn-search-submit,
.mobile-header .search-input-ctn button.btn-search-submit {
    width: 28px;
    height: 28px;
    margin-left: 14px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: url(../images/icons/search.svg) no-repeat -100% -100%/cover;
}

.das {
    width: 28px;
    height: 28px;
    margin-left: 14px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: url(../images/icons/search.svg) no-repeat -100% -100%;
}

.top-nav .search-input-ctn {
    transition: .5s;
}

.top-nav .search-input-ctn input,
.mobile-header .search-input-ctn input {
    border: 0;
    border-bottom: solid 2px #000;
    font-size: 24px;
    font-style: italic;
    appearance: initial;
}

.mobile-header .search-input-ctn input {
    width: calc(100% - 42px);
    flex: 0 0 auto;
}

.top-nav .search-input-ctn input {
    width: 500px;
}

.top-nav .search-input-ctn input::placeholder,
.mobile-header .search-input-ctn input::placeholder {
    color: #bbb;
}

.top-nav .search-btn {
    width: 84px;
    border-left: 1px solid #e0e0e0;
    background: url('../images/icons/search.svg') center/26px auto no-repeat, url('../images/icons/search_red.svg') 0/0 no-repeat;
    cursor: pointer;
}

.top-nav .search-btn:hover {
    background: url('../images/icons/search_red.svg') center/26px auto no-repeat;
}

.top-nav .search-btn::after {
    content: "";
    width: 9px;
    height: 16px;
    background: url("../images/icons/angle_left.svg") center/contain no-repeat, url("../images/icons/angle_left_red.svg") 0/0 no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 10px;
    pointer-events: none;
}

.top-nav .search-btn:hover::after {
    background: url("../images/icons/angle_left_red.svg") center/contain no-repeat;
}

.mobile-header {
    color: #000;
}

.mobile-header .link-lv1 {
    background-color: #fff;
    border-bottom: 1px solid #e1e1e1;
}

.mobile-header .link-lv1 a {
    background-color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 24px;
    min-height: 85px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 500;
}

.mobile-header .link-lv1 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    transform: translateY(-50%) rotate(-225deg);
}

.searching .search-btn::after {
    display: none;
}

.searching .search-btn {
    background: url("../images/icons/close.svg") center/26px auto no-repeat, url("../images/icons/close_red.svg") 0/0 no-repeat;
}

.searching .search-btn:hover {
    background: url("../images/icons/close_red.svg") center/26px auto no-repeat;
}

.searching .mid,
.searching .links {
    visibility: hidden;
}

.site-sidebar {
    display: none;
}

.more {
    font-size: 14px;
    color: #e60012;
    line-height: 18px;
}

.more::after {
    content: "";
    width: 6px;
    height: 10px;
    display: inline-block;
    background: url("../images/icons/angle_right_red.svg") center/contain no-repeat;
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -1px;
    transition: .3s;
}

.more.light {
    color: #fff;
}

.more.light::after {
    background: url("../images/icons/angle_right_white.svg") center/contain no-repeat;
}

.more.blue::after {
    background: url("../images/icons/angle_right_blue.svg") center/contain no-repeat;
}

.site-footer {
    background-color: #dbdbdb;
    color: #000;

    font-weight: 300;
}

.site-footer .bottom-nav {
    padding-top: 40px;
    padding-bottom: 20px;
}

.bottom-nav .row1,
.bottom-nav .row2 {
    display: flex;
}

.bottom-nav .row1 {
    padding-bottom: 10px;
    border-bottom: 1px solid #d0d0d0;
    justify-content: space-between;
}

.bottom-nav .row1 .left {
    width: 200px;
    flex: 0 0 auto;
    align-items: stretch;
}

.bottom-nav .row1 .left a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bottom-nav .row1 .left img {
    width: 100%;
}


.bottom-nav .row1 .right {
    width: 805px;
    flex: 0 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    color: #000000;
    /*font-size: 15px;*/
    font-size: 14px;
}

.bottom-nav .row1 .right a {
    text-align: center;
    width: 140px;
    flex: 0 0 auto;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 24px;
    position: relative;
}

.bottom-nav .row1 .right a::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #999999;
}

.bottom-nav .row1 .right a:last-child {
    margin-right: -35px;
}

.bottom-nav .row1 .right a:last-child::after {
    display: none;
}

.bottom-nav .row2 {
    padding-top: 10px;
    /*font-size: 13px;*/
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.bottom-nav .row2 .left {
    line-height: 23px;
}

.bottom-nav .row2 .left .wx-qr {
    display: block;
    width: 101px;
    margin-top: 10px;
    height: 101px;
}

.site-footer .tips {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.bottom-nav-mobile .tips {
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
}

.site-footer .qr-wrap {
    display: flex;
    text-align: center;
}

.site-footer .qr-wrap .item {
    margin-right: 20px;
}

.site-footer .qr-wrap img {
    margin-bottom: 5px;
}

.bottom-nav-mobile .qr-wrap img {
    max-width: 100px;
    margin-bottom: 0;
}

.bottom-nav .row2 .right {
    width: 805px;
    display: flex;
    line-height: 30px;
}


.bottom-nav .row2 .right .col {
    text-align: center;
    width: 140px;
    flex: 0 0 auto;
    position: relative;
}

.bottom-nav .row2 .right .col:last-child {
    margin-right: -35px;
}

.bottom-nav .row2 a {
    display: block;
    line-height: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.site-footer .copyright {
    padding-top: 14px;
    padding-bottom: 14px;

    /*background-color: #f0f0f0;*/
    /*font-size: 12px;*/
    font-size: 18px;
    line-height: 1.5em;
}

.site-footer .copyright .wrapper {
    display: flex;
    color: #000;

    justify-content: space-between;
    align-items: flex-start;
}

.bottom-nav .wrapper {
    padding-bottom: 20px;
    border-bottom: 1px solid #d0d0d0;
}

ul.breadcrumbs {
    font-size: 14px;
    display: flex;
    overflow: hidden;
}

ul.breadcrumbs a.no-link {
    cursor: text;
}

ul.breadcrumbs a.no-link:hover {
    color: inherit;
}

ul.breadcrumbs li img {
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: auto;
    margin-top: -3px;
}

ul.breadcrumbs li span.next-level {
    width: 5px;
    height: 8px;
    background: url("../images/icons/angle_right.svg") center/cover no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 14px;
    margin-right: 12px;
}

ul.breadcrumbs li.current {
    overflow: hidden;
    max-width: 240px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.page-header {
    height: 300px;
    color: #ffffff;
    background: center/cover no-repeat;
    position: relative;
}

.page-header .wrapper {
    height: 100%;
    position: relative;
    padding-bottom: 60px;
}

@media (min-width: 1440px) {
    .top-nav .wrapper {
        width: 1380px;
        padding-left: 0;
        padding-right: 0;
    }

    .copyright .wrapper {
        width: 1380px;
        padding-left: 0;
        padding-right: 0;
    }

}

.page-title {
    font-size: 36px;
    line-height: 1em;
    height: 1em;
    margin: auto 0;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 60px;
    left: 40px;
    width: 100%;
    display: none;
}

.page-info {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    line-height: 32px;
    color: #666666;
    padding: 14px 20px;
    width: calc(100% - 80px);
    right: 0;
    margin: auto;

    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
}

.btn-fav {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 14px;
}

.btn-fav:hover,
.btn-fav.collected {
    color: #e60012;
}

.btn-fav::before {
    content: "";
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -1px;
    background: url("../images/icons/star.png") center/contain no-repeat;
}

.btn-fav::after {
    content: "收藏";
}

.btn-fav.collected::after {
    content: "已收藏";
}

.btn-fav.collected::before,
.btn-fav:hover::before {
    background-image: url("../images/icons/star_red.png");
}

.hidden {
    display: none;
}

.yiiPager {
    background-color: #fff;
    height: 68px;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-top: 30px;

    padding-left: 20px;
    padding-right: 20px;
}

.yiiPager>* {
    flex: 0 0 auto;
}

.yiiPager .hidden {
    display: block;
}

/*.yiiPager .first,
.yiiPager .last {
    display: none;
}*/

.yiiPager .previous,
.yiiPager .next {
    color: #ff0000;
    line-height: 30px;
}

.yiiPager .previous {
    margin-left: 0;
    margin-right: auto;
}

.yiiPager .next {
    margin-left: auto;
    margin-right: 0;
}

.yiiPager .page {
    margin-left: 6px;
    margin-right: 6px;
}


.yiiPager .dots {
    pointer-events: none;
    margin-left: 6px;
    margin-right: 6px;
}

.yiiPager .page a {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 34px;
    border: 1px solid #808080;
    display: block;
}

.yiiPager .page:hover a {
    border-color: #ff0000;
}

.yiiPager .page.selected a {
    color: #ffffff;
    border-color: #ff0000;
    background-color: #ff0000;
}

.yiiPager .previous.hidden,
.yiiPager .next.hidden {
    color: #999999;
    pointer-events: none;
}

.yiiPager .previous a::before {
    content: "";
    width: 19px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 10px;
    background: url("../images/icons/arr_left_red.svg");
}

.yiiPager .previous.hidden a::before {
    cursor: default;
    background: url("../images/icons/arr_left_gray.svg");
}

.yiiPager .next a::after {
    content: "";
    width: 19px;
    height: 8px;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 10px;
    background: url("../images/icons/arr_right_red.svg");
}

.yiiPager .next.hidden a::after {
    cursor: default;
    background: url("../images/icons/arr_right_gray.svg");
}

.page-tabs {
    margin-bottom: 30px;
}

.mobile-tab-toggle {
    display: none;
    position: absolute;
    z-index: 280;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: url("../images/icons/menu.svg") center/24px auto no-repeat;
}

.page-tabs .links {
    display: flex;
    background-color: #fff;
}

.page-tabs a {
    border-right: 1px solid #e6e6e6;
    line-height: 30px;
    padding-top: 8px;
    padding-bottom: 8px;
    text-align: center;
    border-bottom: 2px solid transparent;
    flex: 1;
}

.page-tabs a:last-child {
    border-right: none;
}

.page-tabs a:hover {
    color: #ff0000;
}

.page-tabs a.current {
    color: #ff0000;
    border-bottom-color: #ff0000;
}

.btn-video-play {
    height: 44px;
    line-height: 24px;
    font-size: 14px;
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    cursor: pointer;
}

.btn-video-play .duration {
    background-color: #fff;
}

.btn-video-play .video-play {
    color: #fff;
    background-color: #ff0000;
}

.btn-video-play .duration,
.btn-video-play .video-play {
    padding: 10px 18px;
    font-family: Arial, -apple-system, "Source Han Sans CN", sans-serif;
    font-weight: 600;
}

.btn-video-play .video-play::before {
    content: "";
    display: inline-block;
    height: 0;
    width: 0;
    border-left: 9px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-top: -2px;
    margin-right: 6px;
}

.btn-more {
    color: #ffffff;
    width: 180px;
    line-height: 26px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
    background-color: #ee4e5b;
    text-align: center;
    display: block;
}

.btn-more::after {
    content: "";
    width: 6px;
    height: 10px;
    display: inline-block;
    background: url("../images/icons/angle_right_white.svg") center/contain no-repeat;
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -1px;
    transform-origin: center 75%;
    transition: .3s;
}

.btn-more.light {
    background-color: #fff;
    color: #ee4e5b;
}

.btn-more.light::after {
    background-image: url("../images/icons/angle_right_red.svg")
}

.btn-more:not(.light):hover {
    color: #fff;
    background-color: #ff5462;
}

.more:hover::after,
.btn-more:hover::after {
    transform: translateX(75%) scale(1.25);
}

a.red-corner {
    line-height: 30px;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.red-corner span {
    position: relative;
    padding: 0 16px;
}

a.red-corner span::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 5px solid transparent;
    border-top: 5px solid #e60012;
}

a.red-corner::after {
    content: "";
    height: 18px;
    width: 1px;
    background-color: #d9d9d9;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    margin: auto;
}

a.red-corner:last-child::after {
    display: none;
}

.tri-title::before,
.tri-link::before,
.tri-label::before,
.tri-text::before {
    content: "";
    border-left: 0.5em solid #ff0000;
    border-top: 0.27em solid transparent;
    border-bottom: 0.27em solid transparent;
    display: inline-block;
    vertical-align: middle;
    margin-top: -0.15em;
    margin-right: .5em;
}

.section-title {
    margin-bottom: 30px;
    line-height: 30px;
    padding-left: 18px;
    position: relative;
    font-size: 26px;
}

.section-title::before {
    content: "";
    width: 3px;
    height: 100%;
    background-color: #ff0000;
    position: absolute;
    left: 0;
    top: 0;
}

.invisible {
    visibility: hidden;
}

strong {
    font-weight: bold;
}

.desc ul li::before {
    content: "";
    width: .3em;
    height: .3em;
    background-color: #e60012;
    display: inline-block;
    vertical-align: middle;
    margin-top: -2px;
    margin-right: 8px;
}

.page-header-label-ctn,
.back-to-guide-ctn {
    position: absolute;
    height: 0;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 300;
}

.back-to-guide-ctn {
    z-index: 305;
}

.page-header-label-ctn .wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-end;
}

.back-to-guide-ctn .wrapper {
    position: relative;
}

.page-header-label {
    background: rgba(238, 78, 91, .67);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 24px;
    padding: 18px 40px;
    font-family: Helvatica Bold, Arial, sans-serif;
    letter-spacing: .2px;
    /*text-transform: uppercase;*/
}

.btn-back-to-guide {
    background-color: #fff;
    line-height: 1.5em;
    padding: .75em 1em;
    color: #333;
    cursor: pointer;
    position: absolute;
    top: .5em;
    font-size: 14px;
}

.btn-back-to-guide:hover {
    color: #e60012;
}

.btn-back-to-guide::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: -.125em;
    width: 1.75em;
    height: 1.75em;
    border-right: 2px solid #ff0000;

    background: url("data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyNCAyNCcgd2lkdGg9JzI0JyBoZWlnaHQ9JzI0Jz48cGF0aCBmaWxsPSdub25lJyBkPSdNMCAwaDI0djI0SDB6Jy8+PHBhdGggZD0nTTcuODI4IDExSDIwdjJINy44MjhsNS4zNjQgNS4zNjQtMS40MTQgMS40MTRMNCAxMmw3Ljc3OC03Ljc3OCAxLjQxNCAxLjQxNHonIGZpbGw9J3JnYmEoMjMwLDAsMTgsMSknLz48L3N2Zz4=") left center/1.25em auto no-repeat;
    margin-right: .75em;
    margin-left: -.25em;
}

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

.m-select {
    line-height: 22px;
    border: 1px solid #e6e6e6;
    cursor: pointer;
    color: #333;
    font-size: 14px;
    position: relative;
    background: url("../images/icons/angle_down.svg") calc(100% - 20px) center/10px auto no-repeat;
    padding: 8px 40px 8px 10px;
}

.m-input,
.m-input-multiline {
    line-height: 22px;
    border: 1px solid #e6e6e6;
    padding: 8px 40px 8px 10px;
    font-size: 14px;
    position: relative;
    color: #333;
}

.ie .m-input,
.ie .m-select {
    height: 40px;
}

.m-form-display .m-input,
.m-form-display .m-input-multiline,
.m-form-display .m-select {
    border: none;
    background: none;
    padding-left: 0;
}

.m-input-multiline {
    resize: vertical;
}

.m-select:hover {
    background-color: #f7f7f7;
}

.m-select:active {
    background-color: #f7f7f7;
}

.m-select.empty {
    color: #999999;
}

.m-button {
    background-color: #ee4e5b;
    border: none;
    line-height: 24px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    padding: 8px 2em;
}

.m-button:hover {
    background-color: #ff5462;
    color: #fff;
}

.m-button.disabled {
    pointer-events: none;
    background-color: #e6e6e6;
    color: #999999;
}

.m-form .row.label-above {
    display: block;
}

.m-form .row.label-above label {
    display: block;
    text-align: left;
    width: 100%;
}

.m-form .row.label-above .field,
.m-form .row.label-above .m-input,
.m-form .row.label-above .m-input-multiline {
    width: 100%;
}

.login-modal-ctn {
    visibility: hidden;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1000;
    transition: .3s;
}

.login-modal-ctn.show {
    visibility: visible;
}

.login-modal-ctn .mask-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.login-modal-ctn.show .mask-layer {
    opacity: 1;
    visibility: visible;
}

.login-modal-ctn .login-modal {
    width: 440px;
    height: 530px;
    border-top: 3px solid #e60012;
    border-radius: 4px;
    overflow: hidden;
    padding: 30px;
    visibility: hidden;
    transition: .3s;
    transform: translateY(-40px);
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background-color: #fff;
    position: absolute;
}

.login-modal-ctn .input-ctn.verify-code {
    display: flex;
}

.login-modal-ctn .input-ctn.verify-code .m-input {
    width: calc(100% - 120px);
    flex: 0 0 auto;
}

.ie .login-modal-ctn .m-input {
    height: 54px;
}

.login-modal-ctn .input-ctn.verify-code .m-button {
    width: 120px;
    flex: 0 0 auto;
}

.login-modal-ctn.show .login-modal {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.login-modal .modal-header {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    border-bottom: 1px solid #e6e6e6;
}

.login-modal .modal-header .modal-tab {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
    line-height: 30px;
    position: relative;
    cursor: pointer;
}

.login-modal .modal-header .modal-tab::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    left: 0;
    right: 0;
    bottom: -1px;
    margin: auto;
    background-color: #e60012;
    transition: .3s;
}

.login-modal .modal-header .modal-tab.active::after,
.login-modal .modal-header .modal-tab:hover::after {
    width: calc(100% - 40px);
}

.login-modal .modal-header .modal-tab.active,
.login-modal .modal-header .modal-tab:hover {
    color: #e60012;
}

.login-modal .modal-header .modal-tab.active {
    border-bottom-color: #e60012;
}

.login-modal {
    background: url("../images/login_modal_back.jpg") center bottom/100% auto no-repeat;
}

.login-modal .modal-pane {
    display: none;
    padding-top: 40px;
}

.login-modal .modal-pane>* {
    display: block;
    width: 100%;
}

.login-modal .modal-pane .m-input {
    line-height: 28px;
    padding: 12px;
    display: block;
    width: 100%;
}

.login-modal .modal-pane .field {
    margin-bottom: 20px;
}

.login-modal .modal-pane .m-button.btn-submit {
    margin-top: 30px;
    margin-bottom: 16px;
    font-size: 16px;
    padding: 12px;
    line-height: 28px;
}

.login-modal-ctn .input-ctn.verify-code {
    margin-bottom: 20px;
}

.login-modal-ctn .input-ctn.verify-code .m-input {
    margin-bottom: 0;
}

.login-modal-ctn .input-ctn.verify-code .m-button {
    padding: 12px;
    line-height: 28px;
}

.login-modal .modal-pane.active {
    display: block;
}

.login-modal .desc-row {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.login-modal .desc-row .left span,
.login-modal .desc-row .left a {
    color: #e70012;
}

/*
.login-modal .desc-row .right {
    color: #999999;
}*/

.site-sidebar {
    position: fixed;
    right: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 850;
}

.mobile.file-center .site-sidebar {
    transform: scale(1.5);
    transform-origin: right center;
}

.site-sidebar a {
    background-color: rgba(82, 82, 82, .8);
    margin-top: 1px;
    display: flex;
    width: 150px;
    color: #fff;
    height: 50px;
    transform: translateX(100px);
    transition: .4s;
    align-items: center;
}

.site-sidebar .icon {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-sidebar .icon img {
    height: 50px;
    width: 50px;
}

.site-sidebar .sidebar-toggle-mobile .icon img,
.site-sidebar .to-top .icon img {
    width: 25px;
    height: auto;
}

.site-sidebar .text {
    padding-left: 4px;
    font-size: 14px;
}

.site-sidebar.active a {
    transform: none;
    background-color: rgba(123, 123, 123, .8);
    transition: .3s cubic-bezier(0, .7, .3, 1);
}

@media (min-width: 751px) {
    .site-sidebar a:hover {
        transform: none;
        background-color: rgba(123, 123, 123, .8);
        transition: .3s cubic-bezier(0, .7, .3, 1);
    }
}

@media (max-width: 750px) {
    .site-sidebar a {
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, .5);
    }

    .site-sidebar a:first-of-type {
        border-top: none;
    }
}


.site-sidebar a.to-top {
    background-color: #dc0000;
    opacity: 0;
    visibility: hidden;
}

.site-sidebar .sidebar-toggle-mobile {
    display: none;
}

.file-center.mobile .site-sidebar .sidebar-toggle-mobile {
    display: flex;
    width: 50px;
}

.file-center .site-sidebar .sidebar-toggle-mobile:hover {
    transform: translateX(100px);
}

.site-sidebar:not(.active) .sidebar-toggle-mobile .icon img {
    transform: rotate(180deg);
}

.site-sidebar.active .sidebar-toggle-mobile {
    transform: translateX(100px);
}



.file-center.mobile .site-sidebar:not(.active) a {
    transform: translateX(150px);
}

.file-center.mobile .site-sidebar a.sidebar-toggle-mobile {
    transform: translateX(100px);
}

@media (max-width: 750px) {
    .site-sidebar .sidebar-toggle-mobile {
        display: flex;
        width: 50px;
    }

    .site-sidebar:not(.active) a {
        transform: translateX(150px);
    }


    .site-sidebar:not(.active) a {
        transform: translateX(150px);
    }

    .site-sidebar a.sidebar-toggle-mobile {
        transform: translateX(100px);
    }

    .file-center .site-sidebar:not(.active) a {
        transform: translateX(150px);
    }

    .file-center .site-sidebar a.sidebar-toggle-mobile {
        transform: translateX(100px);
    }

}

.scrolled .site-sidebar a.to-top {
    opacity: 1;
    visibility: visible;
}


.m-form .row {
    width: 100%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.m-form label,
.m-form .label {
    width: 120px;
    text-align: right;
    padding-right: 10px;
    line-height: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.m-form .field {
    width: calc(100% - 120px);
    flex: 0 0 auto;
}

.field.has-error {
    padding-bottom: 18px;
    position: relative;
}

.field .err-msg {
    display: none;
}

.field .err-msg {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 12px;
    line-height: 1.4em;
    color: #ff0000;
}

.row.has-error {
    position: relative;
}

.row>.err-msg {
    font-size: calc(1em - 1px);
    color: #ff0000;
    line-height: 24px;
    padding: 8px 15px;
    position: absolute;
    left: 100%;
    top: 8px;
    white-space: nowrap;
    max-height: 40px;
    overflow: hidden;
}

.row.fullwidth {
    width: 100%;
}

.m-form .row.fullwidth.has-error {
    padding-bottom: 40px;
}

.row.fullwidth.has-error>.err-msg {
    left: 0;
    bottom: 8px;
    top: auto;
    padding-left: 0;
    padding-right: 0;
}

.field.captcha-ctn {
    display: flex;
}

.field.captcha-ctn .m-input {
    width: auto;
    flex: 1 0 auto;
}

.field.captcha-ctn img {
    width: auto;
    height: 40px;
    margin-left: 10px;
    border: 1px solid #e6e6e6;
    flex: 0 0 auto;
    cursor: pointer;
}

.m-form .submit-row {
    justify-content: flex-end;
}

.m-form .submit-row .m-button {
    width: 190px;
}

.required {
    color: #ff0000;
}

/*.m-form .required{
    position: absolute;
    left: 0;
}*/

.m-upload-group .upload-preview {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #333;
    cursor: pointer;
}

.m-upload-group .btn-delete {
    z-index: 660;
    position: absolute;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background-color: rgba(255, 0, 0, .5);
    color: #fff;
    cursor: pointer;
}

.m-upload-group .btn-delete:hover {
    background-color: rgba(255, 0, 0, .8);
}

.m-upload-group .btn-delete::after {
    content: "×"
}

.m-upload-group {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -20px;
}

.m-upload-box {
    position: relative;
    width: calc(50% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    border: 1px dashed #d9d9d9;
    padding-bottom: 30%;
    height: 0;
    background: #f5f5f5 url("../images/icons/upload_plus.svg") center/20px auto no-repeat;
    transition: .2s;
}

.m-upload-box:hover {
    background-color: #f0f0f0;
    background-size: 25px 25px;
}

.m-upload-box input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 650;
}

.m-checkbox {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
    margin-right: .25em;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: 1px solid #999999;
    cursor: pointer;
    position: relative;
    margin-top: -0.25em;
}

.m-label {
    cursor: pointer;
}

.m-form input[type="checkbox"],
.m-form input[type="radio"] {
    display: none;
}

input[type="checkbox"]:checked+.m-checkbox {
    border-color: #ff0000;
    background: url("../images/icons/tick_red.svg") 55%/75% auto no-repeat;
}

.m-radio {
    display: inline-block;
    vertical-align: middle;
    margin-right: .2em;
    border-radius: 50%;
    border: 1px solid #999999;
    cursor: pointer;
    position: relative;
    margin-top: -0.25em;
    width: .875em;
    height: .875em;
    background-color: #c1c1c1;
}

input[type="radio"]:checked+.m-radio {
    border: 4px solid #ff0000;
    background: #fff;
}

input[type="radio"]:checked+.m-radio.tick {
    border: 1px solid #ff0000;
    background: url(../images/icons/tick_red.svg) 55%/75% auto no-repeat;
}

.loading {
    position: relative;
}

.loading-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .8);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 500;
}

.result-part .content {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
}

.result-part .content img {
    width: auto;
    height: auto;
    display: inline-block;
}

.result-part .content p {
    line-height: 26px;
    margin-bottom: 4px;
}

.result-part a,
.result-part .number {
    color: #ee4e5b;
}

.result-part a {
    text-decoration: underline;
}

.result-part p {
    min-height: .5em;
}

.m-table th {
    background-color: #e6e6e6;
}

.m-table {
    border-collapse: collapse;
    background-color: #fff;
    width: 100%;
    border: 1px solid #d9d9d9;
}

.m-table p {
    line-height: 26px;
}

.m-table tr {
    width: 100%;
    line-height: 24px;
    border-bottom: 1px solid #d9d9d9;
}

.m-table tr:last-of-type {
    border-bottom: none;
}

.m-table td,
.m-table th {
    border-right: 1px solid #d9d9d9;
    text-align: left;
    padding: 12px 18px;
}

.m-table td:last-of-type,
.m-table th:last-of-type {
    border-right: none;
}

.anchor {
    position: absolute;
    top: -100px;
    visibility: hidden;
    left: 0;
}

.sample-icon {
    display: inline-block;
    vertical-align: middle;
    border-radius: 2px;
    margin-right: 3px;
    line-height: 14px;
    color: #fff;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 10px;
    font-size-adjust: none;
    background-color: #999;
}

.sample-icon:before {
    content: attr(data-sample);
    text-transform: uppercase;
}


.bottom-tab {
    background-color: #f5f5f5;
    font-size: 14px;
    padding-top: 65px;
}

.bottom-tab .wrapper {}

.bottom-tab-links {
    border-top: 2px solid #ee4e5b;
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.bottom-tab-links a {
    flex: 0 0 auto;
    width: auto;
    border-right: 1px solid #cccccc;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    height: 40px;
    margin-bottom: 10px;
}

.bottom-tab-links a .tab-icon {
    margin-right: 10px;
    height: 30px;
    object-fit: contain;
}

.bottom-tab-links a .tab-text {
    flex: 0 0 auto;
}

.block-list .block {}

.btn-head-nav-toggle {
    display: none;
    width: 75px;
    border-left: 1px solid #e1e1e1;
    background: url("../images/icons/menu.svg") center/20px auto no-repeat;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.container>* {
    overflow: hidden;
    flex: 0 0 auto;
}

.bottom-nav-mobile {
    display: none;
}

.site-sidebar {
    pointer-events: none;
}

.site-sidebar a {
    pointer-events: all;
}

.mobile-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .8);
    z-index: 700;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

#login-qrcode {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-modal iframe {
    border: none;
    appearance: none;
    overflow: hidden;
    margin: auto;
    width: 300px;
}

.mobile-header {
    visibility: hidden;
    transform: translateX(100vw);
    transition: .5s;
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100% - 64px);
    overflow: auto;
    z-index: 900;
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

.mobile-header .screen-header {
    color: #fff;
    width: 100%;
    min-height: 120px;
    padding: 15px 15px 5px;
    background-color: #000;
}

.mobile-header .screen-title {
    font-size: 32px;
}

.mobile-header .screen-title a {
    text-decoration: underline;
}

.mobile-header .btn-back {
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 16px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.mobile-header .btn-back::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translateY(-50%) rotate(-45deg);
}

.mobile-header .screen-links {
    font-size: 16px;
}

.mobile-header .screen-links .link-lv2 {
    position: relative;
}

.mobile-header .screen-links a {
    display: block;
    width: 100%;
    padding: 1em 15px;
    border-bottom: 1px solid #e1e1e1;
}

.mobile-header .screen-links .link-lv2[data-index] a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-225deg);
    display: inline-block;
    margin: 2px 3px 0 6px;
    vertical-align: bottom;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    font-weight: 700;
    right: 19px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-left: 1px solid #000;
}

.m-mobile-list {
    display: none;
}

.toasting {
    position: relative;
}


.qr-layer {
    position: fixed;
    z-index: 750;
    background-color: rgba(0, 0, 0, .5);
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.qr-dialog {
    width: 440px;
    height: 530px;
    border-top: 3px solid #e60012;
    border-radius: 4px;
    overflow: hidden;
    padding: 30px;
    visibility: hidden;
    transition: .3s;
    transform: translateY(-40px);
    opacity: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    background: #fff url("../images/login_modal_back.jpg") center bottom/100% auto no-repeat;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

body .mini-dialog-header {
    border-bottom: none;
}

body .mini-dialog-footer {
    border-top: none;
}

body .mini-dialog-main {
    background-color: transparent !important;
}

body .mini-dialog-wrapper {
    border-top: 3px solid #e60012;
    border-radius: 0 !important;
    /*background: #fff url("../images/login_modal_back.jpg") center bottom/100% auto no-repeat;*/
}

body .mini-dialog-footer>div {
    border-radius: 0;
}

.qr-dialog-title {
    font-size: 24px;
    margin-bottom: 24px;
}

.qr-layer.show {
    opacity: 1;
    visibility: visible;
}

.qr-layer.show .qr-dialog {
    transform: none;
    opacity: 1;
    visibility: visible;
}

.qr-dialog .desc {
    margin-bottom: 30px;
}

.qr-dialog .qr-img-ctn {
    width: 150px;
}

.qr-dialog .qr-img-ctn img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: auto;
}

.qr-dialog .qr-img-ctn .qr-code {
    margin-bottom: 22px;
}

.qr-dialog .qr-img-ctn div.qr-code {
    width: 100%;
    height: 150px;
}

.loading-layer.ended svg {
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

.loading-layer .result-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;

    transition: .3s;
    visibility: hidden;
    opacity: 0;
}

.loading-layer.ended .result-layer {
    visibility: visible;
    opacity: 1;
}

.loading-layer.ended .result-layer .result-icon-ctn {
    width: 100px;
    height: 100px;
    background: center/contain no-repeat;
}

.loading-layer .result-layer.success .result-icon-ctn {
    background-image: url("../images/icons/success_red.svg");
}

.loading-layer .result-layer.fail .result-icon-ctn {
    background-image: url("../images/icons/failed_red.svg");
}

.loading-layer .result-layer .result-message {
    margin-top: 30px;
    font-size: 14px;
}

.loading-layer .result-layer .result-message a {
    color: #ff0000;
}

@keyframes toastPop {
    0% {
        opacity: 0;
        transform: translate(-50%, 25%);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -25%);
    }
}

@keyframes toastDismiss {
    0% {
        opacity: 1;
        transform: translate(-50%, -25%);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -75%);
    }
}

.pop-toast {
    border-radius: 6px;
    font-size: 14px;
    line-height: 24px;
    padding: 4px 14px;
    position: absolute;
    left: 50%;
    bottom: 100%;
    color: #fff;
    white-space: nowrap;
    transform: translate(-50%, 0);
    animation: toastPop .3s cubic-bezier(0, .5, .5, 1) forwards, toastDismiss .3s 2.2s cubic-bezier(0, .5, .5, 1) forwards;
    z-index: 1200;
    background-color: #F56C6C;
}

.pop-toast::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin-top: -.2em;
    margin-right: .3em;
    background: center/contain no-repeat;
}

.pop-toast.success {
    /*background-color: #67C23A;*/
}

.pop-toast.success::before {
    background-image: url("../images/icons/toast_success.svg");
}

.pop-toast.error::before {
    background-image: url("../images/icons/toast_failed.svg");
}

.no-result-hint {
    font-size: 1.2em;
    color: #666;
    margin-top: 30px;
    text-align: center;
}

body>.container>.loading-layer {
    position: fixed;
}

.field.term-agree a {
    color: #e60012;
}


@media (max-width: 1280px) {
    .wrapper {
        width: 960px;
        padding-left: 30px;
        padding-right: 30px;
    }

    .site-header .wrapper {
        width: 100%;
        padding-right: 0;
    }

    .site-header .top-expand-menus .wrapper {
        width: 960px;
    }

    .top-nav .left img {
        width: 84px;
    }

    .top-nav .left .splitter {
        flex: 0 0 auto;
        margin-left: 10px;
        margin-right: 10px;
    }

    .top-nav .mid .nav-item a {
        padding-left: 15px;
        padding-right: 15px;
    }

    .top-expand-menus .block-links a {
        padding: 8px 8px 8px 12px;
    }

    .top-menu-pane {
        padding: 10px 15px;
    }

    .top-expand-menus .nav-block-list {
        margin-top: 15px;
    }

    .top-expand-menus .block-title {
        font-size: 15px;
    }

    .top-expand-menus .block {
        padding: 10px;
    }

    .top-expand-menus .line3-links a {
        line-height: 40px;
    }

    .top-nav .mid {
        font-size: 16px;
    }

    .top-nav .mid a {
        padding: 28px 10px;
    }

    .top-nav .right .links {
        padding-left: 10px;
    }

    .top-nav .left {
        width: 160px;
        padding-left: 0;
    }

    .bottom-nav .row1 .left {
        width: 180px;
    }

    .bottom-nav .row1 .right,
    .bottom-nav .row2 .right {
        width: 685px;
    }

    .bottom-nav .row1 .right a,
    .bottom-nav .row2 .right .col {
        width: 120px;
    }

    .page-info {
        left: 0;
        width: calc(100% - 60px);
    }

    .bottom-nav .row2 .left .wx-qr {
        width: 100%;
        height: auto;
    }

}

@media (max-width: 960px) {

    .select-layer.term-wrapper .wrapper {
        width: 90%;
    }

    /*.site-sidebar {
        display: none;
    }*/

    .btn-fav {
        font-size: 14px;
    }

    .btn-fav::before {
        width: 14px;
        height: 14px;
        margin-top: -3px;
    }

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
        width: 100%;
    }

    .btn-head-nav-toggle {
        display: block;
    }

    .top-nav {
        top: -2px;
        height: 86px;
    }

    .top-nav .mid {
        display: none;
    }

    .right .search {
        display: none;
    }

    .site-header .wrapper {
        justify-content: space-between;
    }

    .page-header-label-ctn .wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .bottom-nav {
        display: none;
    }

    .site-footer .copyright .wrapper {
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: stretch;
        text-align: left;
    }

    .site-footer .copyright .wrapper .right {
        margin-bottom: 20px;
    }

    .site-footer .copyright .wrapper .left {
        display: flex;
        flex-direction: column;
    }

    .site-footer .copyright .wrapper .left p {
        margin-bottom: 20px;
    }

    .site-footer .copyright {
        padding-top: 25px;
        padding-bottom: 0;
    }

    .bottom-nav-mobile {
        display: block;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .footer-logo-mobile {
        display: block;
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-logo-mobile img {
        max-height: 50px;
        display: block;
        width: auto;
        max-width: 100%;
        height: auto;
    }

    .footer-nav-mobile {
        font-size: 16px;
    }

    .footer-nav-mobile .footer-nav-sub {
        display: none;
    }

    .footer-nav-mobile .footer-nav-link {
        display: flex;
    }

    .footer-nav-mobile .footer-nav-link a {
        padding-left: 20px;
        line-height: 24px;
        padding-top: 18px;
        padding-bottom: 18px;
        width: calc(100% - 60px);
        flex: 0 0 auto;
    }

    .footer-nav-mobile .footer-nav-link .btn-expand {
        width: 60px;
        flex: 0 0 auto;
        background: url("../images/icons/angle_right.svg") center/13px 18px no-repeat;
        transition: .3s;
    }

    .footer-nav-mobile .footer-nav-link .btn-expand.expanded {
        transform: rotate(90deg);
    }

    .footer-nav-mobile .footer-nav-group {
        border-top: 1px solid #d1d1d1;
    }

    .footer-nav-mobile .footer-nav-sub {
        display: none;
        border-top: 1px solid #d1d1d1;
        padding: 10px 20px;
    }

    .footer-nav-sub a {
        display: block;
        font-size: calc(1em - 1px);
        color: #555;
        padding-top: 8px;
        padding-bottom: 8px;
        border-bottom: 1px solid #d6d6d6;
    }

    .footer-nav-sub a:last-of-type {
        border-bottom: none;
    }

    .footer-nav-mobile .footer-nav-group:last-child .footer-nav-link {
        border-bottom: 1px solid #d1d1d1;
    }

    .footer-qr {
        margin-top: 50px;
    }

    .footer-qr p {
        line-height: 24px;
    }

    .footer-qr .qr-code-mobile {
        margin-top: 20px;
    }

    .footer-qr .qr-code-mobile img {
        display: block;
        width: 100px;
    }

    .top-nav .right .links {
        padding-right: 10px;
    }

    .site-header .wrapper .left,
    .site-header .wrapper .right {
        position: relative;
        z-index: 900;
        background-color: #fff;
    }

    .site-header.mobile-expanded .btn-head-nav-toggle {
        background: url("../images/icons/close.svg") center/16px auto no-repeat;
    }

    .yiiPager .next a::after {
        width: 27px;
        height: 11px;
    }

    .page-title {
        text-align: center;
        font-size: 36px;
        left: 0;
    }

    .page-info {
        width: calc(100% - 40px);
    }

    .mobile-expanded .mobile-header {
        visibility: visible;
        transform: none;
    }

    .mobile-expanded .mobile-mask {
        opacity: 1;
        visibility: visible;
    }

    .mobile-expanded .mobile-header {
        transform: none;
        visibility: visible;
    }

    table.trans-mobile {
        display: none;
    }

    .m-mobile-list {
        display: flex;
    }

    .m-mobile-list.empty {
        display: none;
    }

    .no-result-hint {
        margin-top: 0;
    }

    .m-mobile-list .file-download::before {
        display: none;
    }

    .video-layer .btn-close {
        position: absolute;
        left: auto;
        right: 20px;
        top: calc(50vh - 240px - 42px);
    }

    .bottom-tab {
        padding-top: 55px;
    }

    .site-footer .copyright {
        font-size: 16px;
    }
}

.m-mobile-list {
    margin-right: -20px;
    margin-bottom: -20px;
    flex-wrap: wrap;
    margin-top: 20px;
    align-items: stretch;
    padding-bottom: 20px;
}

.m-mobile-info-block {
    box-shadow: 0 4px 20px rgba(31, 31, 31, .1);
    width: calc(50% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    flex: 0 0 auto;
    border-radius: 12px;
    padding: 10px;
    background-color: #fff;
}

.m-mobile-info-field {
    line-height: 24px;
    padding: 8px 10px;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    align-items: flex-start;
}

.m-mobile-info-field .m-mobile-info-label {
    flex: 0 0 auto;
    color: #111;
}

.m-mobile-info-field .m-mobile-info-value {
    flex: 1 1 auto;
    text-align: right;
    padding-left: 10px;
}

.m-mobile-info-field .m-mobile-info-value a {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 4px;
    color: #fff;
    background-color: #ee4e5b;
    margin-left: 4px;
    margin-right: 4px;
}

.m-mobile-info-field:last-of-type {
    border-bottom: none;
}

.video-section-ctn:hover .video-poster {
    transition: .3s;
}

.select-layer {
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    padding-top: 150px;
    z-index: 800;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    align-items: center;
}

.select-layer.show {
    opacity: 1;
    visibility: visible;
}

.select-dialog {
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    border-radius: 6px;
    border-top: 3px solid #e60012;
    transition: .3s;
    transform: translateY(30px);
}

.select-layer.show .select-dialog {
    transform: none;
}

.select-dialog-title {
    font-size: 18px;
    margin-bottom: 30px;
}

.qr-dialog .btn-close,
.select-dialog .btn-close {
    right: 16px;
    top: 16px;
    width: 24px;
    height: 24px;
    position: absolute;
    background: url("../images/icons/close_red.svg") center/contain no-repeat;
    cursor: pointer;
}

.term-layer .content h3 {
    font-size: calc(1em + 1px);
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: bold;
}

.term-dialog .content {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
    margin: 25px 0 30px;
    line-height: 25px;
    padding-left: 20px;
    padding-right: 20px;
}

.term-dialog .btn-ctn {
    width: 100%;
    height: auto;
    text-align: center;
}

.term-dialog .btn1 {
    display: inline-block;
    width: 88px;
    height: auto;
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 20px;
    font-size: 14px;
    color: #111212;
    line-height: 40px;
    font-weight: 400;
    cursor: pointer;
    vertical-align: middle;
}

.term-dialog .btn2 {
    display: inline-block;
    width: 160px;
    height: auto;
    background: #e70012;
    border-radius: 20px;
    font-size: 14px;
    color: #fff;
    line-height: 40px;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 10px;
}

.tag-label {
    color: #666666;
    border: 1px solid #bfbfbf;
    line-height: 24px;
    border-radius: 12px;
    padding-left: 20px;
    padding-right: 20px;
    display: inline-block;
    vertical-align: middle;
    background-color: #fafafa;
    margin-left: 10px;
}

.type-tab-header {
    display: flex;
    height: 50px;
}

.type-tab-header {
    height: 50px;
    background-color: #f5f5f5;
}

.type-tab-link {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 50px;
    position: relative;
    cursor: pointer;
    font-size: 14px;
}

.type-tab-link::after {
    content: "";
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    position: absolute;
    background-color: #e60012;
    width: 0;
    transition: .3s;
}

.type-tab-link:hover,
.type-tab-link.active {
    color: #e60012;
}

.type-tab-link.active::after {
    width: calc(100% - 40px);
}

.type-tab-body {
    margin-top: 30px;
}

.type-tab-pane {
    display: none;
}

.type-tab-pane.active {
    display: block;
}

.file-download::before {
    content: "";
    width: 16px;
    height: 18px;
    display: inline-block;
    background: url(../images/icons/file_download_red.png) center/contain no-repeat;
    vertical-align: middle;
    margin-right: 6px;
    margin-top: -2px;
}

.m-table .view-detail {
    line-height: 20px;
    padding: 4px 20px;
    border: 1px solid #808080;
    border-radius: 15px;
    display: inline-block;
    font-size: 12px;
}

.m-table .view-detail.disabled {
    pointer-events: none;
    background-color: #fafafa;
    color: #aaa;
    border-color: #aaa;
}

.m-table .view-detail:hover {
    border-color: #ff0000;
}

.m-table.style2 {
    border: none;
}

.m-table.style2 thead tr:last-of-type {
    border-bottom: 2px solid #ff0000;
}

.m-table.style2 th {
    background-color: #fff;
}

.video-layer {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .75);
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 750;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: .5s;
    opacity: 0;
}

.video-layer.active {
    visibility: visible;
    opacity: 1;
}

.video-js .vjs-big-play-button {
    bottom: 0;
    right: 0;
    margin: auto;
}


.video-layer .btn-close {
    position: absolute;
    left: calc(50vw + 410px);
    top: calc(50vh - 240px);
    border-radius: 50%;
    width: 32px;
    line-height: 30px;
    height: 32px;
    font-size: 20px;
    color: white;
    background: #e5071e;
    cursor: pointer;
    text-align: center;
    transition: .3s;
}

.video-layer .btn-close:hover {
    transform: scale(1.1);
}

/*.desc-cell {
    position: relative;
}*/

.desc-cell-content {
    position: relative;
}

.desc-cell-dropdown::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 5px;
    margin-left: 6px;
    vertical-align: middle;
    margin-top: -1px;
    background: url("../images/icons/angle_down.svg") center/contain no-repeat;
}

.desc-cell .desc-options {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    color: #333;
}

.desc-cell .desc-options a {
    display: block;
    padding: 6px;
}

.desc-cell .desc-options a:hover,
.desc-cell .desc-options a.active {
    background-color: #ee4e5b;
    color: #ffffff;
}

.cell-desc-box {
    position: absolute;
    width: 220px;
    left: 50%;
    transform: translate(-50%, -5px);
    top: calc(100% + 6px);
    background-color: #fff;
    filter: drop-shadow(0px 0px 5px rgba(31, 31, 31, .2));
    padding: 12px;
    text-align: center;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.cell-desc-box p {
    min-height: 14px;
}

.desc-cell:not(.desc-cell-click):hover .cell-desc-box,
.desc-cell.desc-cell-click.active .cell-desc-box {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}

.cell-desc-box::before {
    content: "";
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
    border-bottom: 8px solid #fff;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    top: -8px;
}

video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}


@media (min-width: 961px) {
    .link-box {
        cursor: pointer;
    }

    .link-cover {
        overflow: hidden;
    }

    .link-cover img {
        transition: .3s;
    }

    .link-box:hover .link-cover img {
        transform: scale(1.05);
    }
}

@media (max-width: 750px) {
    .anchor {
        top: -90px;
    }

    .top-nav {
        height: 66px;
    }

    .site-header {
        height: 64px;
    }

    .btn-head-nav-toggle {
        width: 50px;
    }

    .top-nav .right .links {
        padding-right: 5px;
    }

    .top-nav .right .links .top-btn {
        width: 40px;
    }

    .top-nav .right .links .link {
        width: auto;
    }

    /*.top-nav .right .links .top-btn::before, .top-nav .right .links .top-btn::after {
        width: 20px;
        height: 20px;
    }*/
    .top-nav .left img {
        display: block;
        width: 85px;
        height: auto;
        margin-right: 13px;
    }

    .top-nav .left .splitter {
        display: none;
    }

    .mobile-header {
        top: 64px;
    }

    .page-header-label {
        text-align: center;
        font-size: 14px;
        line-height: 16px;
        padding: 12px;
        letter-spacing: .1px;
    }

    .page-title {

        top: 40px;
    }

    ul.breadcrumbs li {
        flex: 0 0 auto;
    }

    ul.breadcrumbs {
        z-index: 240;
    }

    .btn-fav {
        flex: 0 0 auto;
        position: relative;
        z-index: 260;
    }

    .page-info::after {
        content: "";
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 250;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 50%, #fff 100%);
        pointer-events: none;
    }

    .yiiPager {
        display: block;
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }

    .yiiPager li {
        margin-bottom: 8px;
        text-align: center;
    }

    .yiiPager li.page,
    .yiiPager li.dots {
        display: inline-block;
    }

    .yiiPager li.next {
        margin-bottom: 0;
    }

    .yiiPager li.previous,
    .yiiPager li.next {
        width: 100%;
    }

    .login-modal-ctn .login-modal {
        padding: 20px;
        height: 480px;
        max-width: 400px;
        width: calc(100vw - 60px);
    }

    .login-modal .modal-header {
        font-size: 16px;
    }

    .login-modal .modal-header .modal-tab {
        padding-left: 12px;
        padding-right: 12px;
        padding-bottom: 10px;
    }

    .login-modal .modal-header .modal-tab.active::after,
    .login-modal .modal-header .modal-tab:hover::after {
        width: calc(100% - 24px);
    }

    .modal-header {
        margin-left: -20px;
        margin-right: -20px;
    }

    .mobile-tab-toggle {
        display: block;
    }

    .page-tabs .links {
        flex-direction: column;
        height: 48px;
        overflow: hidden;
        position: relative;
    }

    .page-tabs a {
        display: block;
        flex: 0 0 auto;
        order: 3;
    }

    .page-tabs a.active {
        order: 2;
    }

    .page-tabs a.current {
        order: 1;
    }

    .yiiPager .next a::after {
        display: none;
    }

    .yiiPager .previous a::before {
        display: none;
    }

    .bottom-tab-links {
        margin-right: -10px;
    }

    .bottom-tab-links a {
        width: calc(100% / 3 - 10px);
        margin-right: 10px;
        flex: 0 0 auto;
        border-right: 0;
        border-bottom: 1px solid #d2d2d2;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mobile-type-tab-toggle {
        display: block;
        position: absolute;
        z-index: 280;
        right: 0;
        top: 0;
        width: 50px;
        height: 50px;
        background: url(../images/icons/menu.svg) center/24px auto no-repeat;
    }

    .mobile-type-tab-toggle:nth-of-type(2) {
        display: none;
    }

    .type-tab-body {
        margin-top: 20px;
    }

    .type-tab-header {
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .type-tab-header a {
        display: block;
        width: 100%;
        flex: 0 0 auto;
    }

    .type-tab-link.active {
        order: -1;
    }

    .type-tab-link.active::after {
        margin: 0;
        width: 100%;
    }

    .btn-back-to-guide {
        font-size: 12px;
        top: 0;
    }
}

@media (max-width: 640px) {

    .yiiPager .page {
        margin-left: 4px;
        margin-right: 4px;
    }

    .yiiPager .page a {
        width: 24px;
        height: 24px;
        line-height: 22px;
    }

    .page-tabs {
        margin-bottom: 20px;
    }

    .bottom-tab-links a {
        width: calc(50% - 10px);
    }

    .m-mobile-info-block {
        width: calc(100% - 20px);
    }
}


@media (max-width: 480px) {
    .bottom-tab-links a {
        width: calc(100% - 10px);
    }

    .qr-dialog {
        width: calc(100% - 20px);
    }
}