@font-face {
	font-family: 'Rubik';
	font-weight: 300;
	font-style: normal;
	src: local('Rubik Light'), local('Rubik-Light'), url(../../font/Rubik-Light.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-weight: 600;
	font-style: normal;
	src: local('Rubik Regular'), local('Rubik-Regular'), url(../../font/Rubik-Regular.ttf) format('truetype');
}
@font-face {
	font-family: 'Rubik';
	font-weight: 700;
	font-style: normal;
	src: local('Rubik SemiBold'), local('Rubik-SemiBold'), url(../../font/Rubik-SemiBold.ttf) format('truetype');
}

:root {
  --page-width: 1080px;
  --page-padding-x: 16px;
}

html,
body {
    font-family: 'Rubik', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #14161a;
    height: 100%;
}

#app {
  height: 100%;
}

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

input,
button,
textarea {
	font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
		Helvetica Neue, sans-serif;
  padding: 0;
  margin: 0;
  outline: 0;
  resize: none;
  border: 0;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}
li {
  list-style-type:none;
}
img,
svg,
canvas {
  display: block;
}
.flex-c {
  display: flex;
  align-items: center;
}
.flex-sb-c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-fs-c {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

::-webkit-scrollbar-thumb {
  background: #8b8b8b;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield; /* Firefox */
}

/**
 header start
 */
.top-relative{position: relative;}
header {
    background: #fff;
    height: 52px;
}
.container {
    max-width: var(--page-width);
    margin: 0 auto;
}
header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-menu {
    width: 500px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
}

header .header-menu_item {
    position: relative;
    height: 52px;
}

header .menu-item_top {
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

header .menu-item_top.search {
    cursor: pointer;
    padding: 0 10px;
}

header .menu-item_top:hover:not(header .menu-item_top.search) {
    background: #1b2f41;
}

header .menu-item_top:hover:not(header .menu-item_top.search) .item-top_text {
    color: #fff;
}

header .menu-item_top:hover:not(header .menu-item_top.search) .item-top_text.store {
    background: #1b2f41;
}

header .menu-item_top:hover:not(header .menu-item_top.search) .icon-arrow {
  /* filter: brightness(1);
  transform: rotate(180deg); */
}

header .menu-item_top.search:hover .icon-search {
    background: url(/uploads/pages/header-search-hover.svg) no-repeat center / 100% 100%;
}

header .menu-item_top.active {
    background: #1b2f41;
}

header .menu-item_top.active .item-top_text {
    color: #fff;
}

header .menu-item_top.active .icon-arrow {
    filter: brightness(1);
    transform: rotate(180deg);
}

header .item-top_text {
    font-size: 12px;
    font-weight: 700;
    color: #606060;
}

header .store {
    display: inline-block;
    color: #fff;
    background: #FA8D3E;
    border-radius: 5px;
    padding: 6px 14px;
    margin: 0 -10px;
}

header .item-top_icon {
    flex-shrink: 0;
    transition: all 0.3s;
}

header .item-top_icon.icon-arrow {
    width: 10px;
    height: 10px;
    background: url(/uploads/pages/header-arrow.svg) no-repeat center / 100% 100%;
    filter: brightness(0);
    margin-left: 8px;
}

header .item-top_icon.icon-search {
    width: 15px;
    height: 15px;
    background: url(/uploads/pages/header-search.svg) no-repeat center / 100% 100%;
}

header .menu-item_bottom {
    position: absolute;
    top: 52px;
    z-index: 1000;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.11) inset;
    background: #fff;
    border-radius: 0 0 16px 16px;
  box-sizing: border-box;
}

header .menu-item_bottom.product {
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    padding: 20px 10px;
    display: none;
}

header .menu-item_bottom.product .item-product_box {
    display: flex;
    flex-flow: wrap;
    align-content: space-between;
}

header .menu-item_bottom.product .item-product_box.box-music {
    /* height: 110px; */
    /* width: 100%; */
    position: relative;
}

/*header .menu-item_bottom.product .item-product_box.box-music::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 47%;*/
/*    transform: translateX(-50%);*/
/*    width: 1px;*/
/*    height: calc(100% - 10px);*/
/*    background: #f3f3f3;*/
/*}*/

header .menu-item_bottom.product .item-product_box.box-video .product-subitem {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
}

header .menu-item_bottom.product .item-product_box.box-video .product-subitem_title {
    margin-bottom: 0;
}

header .menu-item_bottom.product .item-product_box.box-video .product-subitem_desc {
    margin: 4px 0 0 6px;
}

header .menu-item_bottom.product .item-product_title {
    font-size: 14px;
    font-weight: normal;
    color: #A0A0A0;
    margin-bottom: 10px;
}

header .menu-item_bottom.product .item-product_title.title-video {
    border-top: 1px solid #f3f3f3;
    padding-top: 20px;
}

header .menu-item_bottom.product .product-subitem {
    box-sizing: border-box;
    width: 340px;
    /* height: 104px; */
    /* margin-bottom: 15px; */
    display: flex;
    /* flex-flow: column wrap; */
    /* align-content: flex-start; */
    justify-content: center;
    align-items: center;
    padding: 16px 20px;
}

header .menu-item_bottom.product .product-subitem:hover {
    border-radius: 5px;
    background: #f2f3f4;
}

header .menu-item_bottom.product .product-subitem_img {
    margin-right: 10px;
}

header .menu-item_bottom.product .product-subitem_title {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-bottom: 4px;
}

header .menu-item_bottom.product .product-subitem_desc {
    display: inline-block;
    width: 100%;
    font-size: 12px;
    font-weight: normal;
    color: #A0A0A0;
}

header .menu-item_bottom.support {
    width: 235px;
    padding: 10px;
    display: none;
}

header .menu-item_bottom.support .support-subitem {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 15px;
}

header .menu-item_bottom.support .support-subitem:hover {
    border-radius: 5px;
    background: #f2f3f4;
}

header .menu-item_bottom.support .support-subitem_title {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-left: 20px;
}

header .menu-item_bottom.search {
    top: 0;
    right: 0;
    height: 52px;
    border-radius: 0;
    box-shadow: none;
    display: none;
}

header .menu-item_bottom.search .from-search {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu-item_bottom.search .from-search_input {
    width: 450px;
    outline: none;
    border: none;
    padding-left: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #555;
}

header .menu-item_bottom.search .from-search_submit {
    outline: none;
    border: none;
    width: 20px;
    height: 20px;
    background: url(/uploads/pages/header-search.svg) no-repeat center / 100% 100%;
    cursor: pointer;
}

header .menu-item_bottom.search .from-search_submit:hover {
    background: url(/uploads/pages/header-search-hover.svg) no-repeat center / 100% 100%;
}

header .menu-item_bottom.search .from-search_close {
    width: 18px;
    height: 18px;
    background: url(/uploads/pages/header-close.svg) no-repeat center / 100% 100%;
    cursor: pointer;
}

header .menu-item_bottom.search .from-search_close:hover {
    background: url(/uploads/pages/header-close-hover.svg) no-repeat center / 100% 100%;
}

.moblie-arrow {
    display: none;
}

.drop-down-list-t {
    width: 740px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 75px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: inset 0px 5px 13px #f7f7f7;
    border-radius: 0px 0px 14px 14px;
    display: none;
    background-color: white;
}

.drop-down-t-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 29px 36px 0px 36px;
}

.drop-down-t-item:nth-child(1) {
    background-color: rgba(0, 0, 0, 0.03);
}

.t-item-title {
    font-size: 14px;
    line-height: 17px;
}

.t-item-title a:hover,
.t-item-subhead p a:hover,
.t-item-subhead2 p a:hover {
    color: #2AC0C1;
}

.t-item-subhead,
.t-item-subhead2 {

    margin: 3px 0 18px 0;
    font-size: 12px;
    line-height: 185.5%;
}

.t-item-subhead2 {
    margin: 3px 0 10px 0;
}

.t-item-subhead p a,
.t-item-subhead2 p a {
    font-weight: 300;
    /* font-family: r-l; */
}

.rop-down-t-skip {
    font-weight: 500;
    font-size: 10px;
    line-height: 185.5%;
    margin: 0 auto 15px;
    width: 100%;
    text-align: center;
}

.rop-down-t-skip::after {
    content: url('/uploads/pages/arrow_red_gather.svg');
    display: inline-block;
    margin-left: 5px;
}

.rop-down-t-skip:hover::after {
    transform: translateX(10px);
    transition: all 0.5s;
}

.rop-down-t-skip a {
    color: #F96666;
}

@media (max-width: 770px) {
    html {
        font-size: 0.2666667vw;
    }

    header {
        background: #fff;
        height: 52px;
    }

    header .container {
        flex-direction: column;
        padding: 0 16px;
    }

    header .header-info {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10rem 15rem;
        background: #fff;
        border-bottom: 1px solid #f3f3f3;
    }

    header .header-info_menu {
        width: 30px;
        height: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    header .header-info_menu.active .info-menu_line:nth-child(1) {
        transform: translateX(-4px) translateY(2px) rotate(-45deg);
    }

    header .header-info_menu.active .info-menu_line:nth-child(2) {
        display: none;
    }

    header .header-info_menu.active .info-menu_line:nth-child(3) {
        transform: translateX(-4px) translateY(2px) rotate(43deg);
    }

    header .info-menu_line {
        width: 24px;
        height: 3px;
        background: #333;
        flex-shrink: 0;
        transition: all 0.3s;
        transform-origin: 100%;
    }

    header .header-menu {
        position: relative;
        z-index: 100;
        width: 100%;
        flex-direction: column;
        background: #fff;
        display: none;
    }

    header .header-menu.active {
        display: flex;
    }

    header .header-menu_item {
        width: 100%;
        height: auto;
        border-top: 1rem solid #f3f3f3;
    }

    header .menu-item_top {
        position: unset;
        width: 100%;
        height: 52rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        /* padding: 0 20rem; */
    }

    header .menu-item_top.search {
        display: none;
    }

    header .menu-item_top:hover:not(header .menu-item_top.search) {
        background: transparent;
    }

    header .menu-item_top:hover:not(header .menu-item_top.search) .item-top_text {
        color: #000;
    }

    header .menu-item_top:hover:not(header .menu-item_top.search) .item-top_text.store {
        background: transparent;
    }

    header .menu-item_top:hover:not(header .menu-item_top.search) .icon-arrow {
    /* filter: brightness(0);
    transform: rotate(0); */
    }

    header .menu-item_top.search:hover .icon-search {
        background: url(/uploads/pages/header-search.svg) no-repeat center / 100% 100%;
    }

    header .menu-item_top.active {
        background: transparent;
    }

    header .menu-item_top.active .item-top_text {
        color: #1e96ec;
    }

    header .menu-item_top.active .icon-arrow {
        filter: brightness(0);
        transform: rotate(180deg);
    }

    header .item-top_text {
        font-size: 18rem;
        font-weight: normal;
        color: #333;
        text-transform: lowercase;
    }

    header .item-top_text::first-letter {
        text-transform: uppercase;
    }

    header .item-top_text.store {
        color: #333;
        background: transparent;
        padding: 0;
        margin: 0;
    }

    header .item-top_icon.icon-arrow {
        width: 15rem;
        height: 15rem;
        margin-left: 0;
        filter: brightness(0);
    }

    header .menu-item_bottom {
        position: unset;
        box-shadow: none;
        background: #f4fafe;
        border-radius: 0;
    }

    header .menu-item_bottom.product {
        transform: translateX(0);
        width: 100%;
        padding: 10rem 20rem;
        display: none;
    box-sizing: border-box;
    }

    header .menu-item_bottom.product .item-product_box.box-music {
        height: auto;
    }

    header .menu-item_bottom.product .item-product_box.box-music::before {
        display: none;
    }

    header .menu-item_bottom.product .item-product_box.box-video .product-subitem {
        width: 100%;
        height: auto;
        margin-bottom: 0;
    }

    header .menu-item_bottom.product .item-product_box.box-video .product-subitem_title {
        margin-bottom: 0;
    }

    header .menu-item_bottom.product .item-product_title {
        font-size: 18rem;
        font-weight: bold;
        color: #000;
        margin-bottom: 0;
    }

    header .menu-item_bottom.product .item-product_title.title-video {
        border: none;
        padding-top: 10rem;
    }

    header .menu-item_bottom.product .product-subitem {
        width: 100%;
        height: auto;
        margin-bottom: 0;
        padding: 10rem 0;
        justify-content: flex-start;
    }

    header .menu-item_bottom.product .product-subitem:hover {
        background: transparent;
    }

    header .menu-item_bottom.product .product-subitem_img {
        display: none;
    }

    header .menu-item_bottom.product .product-subitem_title {
        font-size: 16rem;
        font-weight: normal;
        color: #000;
        margin-bottom: 0;
    }

    header .menu-item_bottom.product .product-subitem_desc {
        display: none;
    }

    header .menu-item_bottom.support {
        width: 100%;
        padding: 10rem 20rem;
        display: none;
    }

    header .menu-item_bottom.support .support-subitem {
        height: auto;
        padding: 10rem 0;
    }

    header .menu-item_bottom.support .support-subitem:hover {
        border-radius: 5px;
        background: #f2f3f4;
    }

    header .menu-item_bottom.support .support-subitem_img {
        display: none;
    }

    header .menu-item_bottom.support .support-subitem_title {
        font-size: 16rem;
        font-weight: normal;
        color: #000;
        margin-left: 0;
    }

    header .menu-item_bottom.search {
        height: 35rem;
        display: block;
        margin: 15rem;
        background: transparent;
    }

    header .menu-item_bottom.search .from-search {
        border-radius: 30rem;
        border: 1px solid #f3f3f3;
        padding: 0 10rem;
    }

    header .menu-item_bottom.search .from-search_input {
        flex: 1;
        padding-left: 10rem;
        font-size: 16rem;
    }

    header .menu-item_bottom.search .from-search_submit {
        outline: none;
        border: none;
        width: 20rem;
        height: 20rem;
        background: url(/uploads/pages/header-search.svg) no-repeat center / 100% 100%;
        cursor: pointer;
    }

    header .menu-item_bottom.search .from-search_submit:hover {
        background: url(/uploads/pages/header-search-hover.svg) no-repeat center / 100% 100%;
    }

    header .menu-item_bottom.search .from-search_close {
        display: none;
    }

    header .drop-down-list-t {
        text-align: center;
        width: 100%;
        transform: unset;
        left: unset;
        background-color: #fff;
    }

    .moblie-arrow {
        display: block;
    }

    .drop-down-t-item:nth-child(1) {
        background-color: #fff;
    }

    .drop-down-list-t .drop-down-t-item {
        padding: 0 4rem;
        flex-wrap: wrap;
    }

    .t-item {
        width: 50%;
    }

    .t-item-title {
        font-size: 16rem;
    }

    .t-item-subhead a {
        font-size: 12rem;
        line-height: 19rem;
    }

    .rop-down-t-skip a {
        font-size: 16rem;
    }
}
/**
header end
 */

/**
footer start
 */

footer {
    background: #1b3042;
}

footer .footer-menu {
    padding: 50px 0;
}
.container {
    max-width: var(--page-width);
    margin: 0 auto;
}
footer .footer-menu .container {
    display: flex;
    justify-content: space-between;
}
footer .footer-menu .container .footer-menu-item{
    flex: 0 0 18%;
}

footer .footer-menu .container .footer-menu-item:last-child {
    flex: 0 0 21%;
}

footer .footer-menu .menu-item_title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

footer .footer-menu .menu-item_info {
    display: flex;
    flex-direction: column;
}
footer .footer-menu .menu-item_info p {
    font-weight: 700;
    font-size: 12px;
    color: #eaeaea;
    padding-bottom: 30px;
}

footer .footer-menu .menu-item_info .popup  {
    background: linear-gradient(93.03deg, #4596E5 -9.17%, #4539CC 105.48%);
    border-radius: 8px;
    border: none;
    width: fit-content !important;
    height: 44px !important;
    display: inline-block;
    line-height: 44px;
    padding: 0 20px;
    font-weight: bolder;
    margin-top: 0;
    color: #eaeaea;
    outline: none;
}

footer .footer-menu .item-info_link {
    font-size: 12px;
    font-weight: lighter;
    color: #eaeaea;
    line-height: 2;
    margin-bottom: 8px;
}

footer .footer-menu .item-info_link:hover {
    color: #1e96ec;
}

footer .footer-menu .menu-item_desc {
    font-size: 12px;
    font-weight: lighter;
    color: #eaeaea;
    line-height: 2;
    width: 204px;
}

footer .footer-menu .menu-item_subscribe {
    width: 202px;
    height: 44px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(93.03deg, #4596e5 -9.17%, #4539cc 105.48%);
    outline: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px 0 30px;
}

.newsletter-email {
    width: 227px;
    height: 39px;
    background: #ffffff;
    border-radius: 6px;
    margin-bottom: 20px;
    position: relative;
}

.newsletter-email .newsletter-btn {
    position: absolute;
    width: 30px;
    height: 39px;
    border: none;
    outline: none;
    background-color: inherit;
    top: 0;
    right: 4px;
    padding: 0;
}
.newsletter-email .newsletter-btn::after {
    content: '';
    display: block;
    position: absolute;
    right: -4px;
    top: 0;
    background: url('/uploads/pages/arrow_red.svg') no-repeat;
    background-size: 7.1px 12.1px;
    background-position: center center;
    width: 30px;
    height: 39px;
    cursor: pointer;
}
.newsletter .tips {
    width: 180px;
    height: 39px;
    font-size: 14px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    line-height: 1.6;
    padding-left: 10px;
    color: #67c23a;
    display: flex;
    align-items: center;
}
.newsletter .tips.active {
    color: #f56c6c;
}
/*.newsletter-email::after {*/
/*  content: '';*/
/*  display: block;*/
/*  position: absolute;*/
/*  right: 13px;*/
/*  top: 13.9px;*/
/*  background: url('/uploads/pages/arrow_red.svg');*/
/*  background-size: 100%;*/
/*  width: 7.1px;*/
/*  height: 12.1px;*/
/*  cursor: pointer;*/
/*}*/

.newsletter-input {
    height: 39px;
    font-size: 16px;
    outline: none;
    border: none;
    margin-left: 10px;
    font-weight: 300;
    font-size: 16px;
    line-height: 187.5%;
    /* font-family: r-l; */
    color: #2d374b;
}

footer .footer-menu .menu-item_media {
    display: flex;
    margin-top: 35px;
}

footer .footer-menu .media-subitem {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(243, 243, 243, 0.1);
    border-radius: 10px;
    margin-right: 25px;
}

footer .footer-copyright {
    border-top: 1px solid #eaeaea;
    padding: 20px 0;
}

footer .footer-copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-copyright .copyright-text {
    font-size: 14px;
    font-weight: normal;
    color: #eaeaea;
}

footer .footer-copyright .language-box {
    position: relative;
    width: 100px;
}

footer .footer-copyright .language-current {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

footer .footer-copyright .language-current_icon {
    width: 17px;
    height: 17px;
    background: url(/uploads/pages/language.svg) no-repeat center /
    100% 100%;
}

footer .footer-copyright .language-current_text {
    font-size: 12px;
    font-weight: normal;
    color: #d7daed;
    margin: 0 10px;
}

footer .footer-copyright .language-current_arrow {
    width: 10px;
    height: 10px;
    background: url(/uploads/pages/down-arrow.svg) no-repeat center / 100% 100%;
    filter: brightness(0.8);
    transition: all 0.4s;
}

footer .footer-copyright .language-current.active .language-current_arrow {
    transform: rotate(180deg);
}

footer .footer-copyright .language-list {
    position: absolute;
    bottom: 30px;
    background: #2c465c;
    width: 120px;
    display: none;
    flex-direction: column;
}

footer .footer-copyright .language-list.active {
    display: flex;
}

footer .footer-copyright .language-list_item {
    font-size: 12px;
    font-weight: lighter;
    color: #d7daed;
    padding: 8px 5px 8px 10px;
}

footer .footer-copyright .language-list_item:hover {
    color: #2c465c;
    background: #d7daed;
}

.email-from {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index:9999;
}
.email-from .mask {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.email-from .email-from-content {
    width: 320px;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #274866;
    border-radius: 4px;
}
.email-from .email-from_close{
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-top: -10px;
    margin-right: -10px;
    position: absolute;
    top: 0;
    right: 0;
}
.email-from .email-from_title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}
.email-from .email-from_des {
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.email-from .from-box {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.email-from .from-box .email-email {
    flex: 1;
    padding-left: 10px;
    margin-right: 10px;
    border-radius: 4px;
    background-color: #FFF;
    font-size: 14px;
}
.email-from .from-box .from-btn {
    height: auto;
    padding: 10px;
    margin: 0;
    border-radius: 4px;
    background-color: #3b90b3;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}
.email-from .error{
    display: none;
    color: #fa5656;
    font-size:14px;
    margin-top: 10px;
}

@media (max-width: 770px) {
    html {
        font-size: 0.2666667vw;
    }

    footer .footer-menu {
        padding: 20rem 16px;
    }

    footer .footer-menu .container {
        flex-direction: column;
    }

    footer .footer-menu .footer-menu-item {
        padding-top: 30rem;
        border-bottom: 1rem solid #404f5d;
    }

    footer .footer-menu .menu-item_header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20rem;
    }

    footer .footer-menu .menu-item_header.active .menu-item_icon {
        transform: rotate(0);
    }

    footer .footer-menu .menu-item_title {
        font-size: 16rem;
        margin-bottom: 0;
    }

    footer .footer-menu .menu-item_icon {
        width: 15rem;
        height: 15rem;
        background: url(/uploads/pages/down-arrow.svg) no-repeat center / 100% 100%;
        transform: rotate(180deg);
        transition: all 0.4s;
    }

    footer .footer-menu .menu-item_info {
        padding-bottom: 30rem;
    }

    footer .footer-menu .item-info_link {
        font-size: 12rem;
        margin-bottom: 8rem;
    }

    footer .footer-menu .menu-item_desc {
        font-size: 12rem;
        width: 220rem;
    }

    .newsletter-email {
        width: 227rem;
        height: 39rem;
        border-radius: 6rem;
        margin-bottom: 25rem;
    }

    .newsletter-input {
        height: 39rem;
        font-size: 16rem;
        margin-left: 10rem;
        font-size: 16rem;
    }

    .newsletter .tips {
        width: 227rem;
        height: 39px;
        font-size: 14rem;
        position: absolute;
        left: 0;
        transform: translateY(100%);
        line-height: 1.3;
        padding-left: 10px;
        color: #67c23a;
        bottom: 0;
    }

    /*.newsletter-email::after {*/
    /*  right: 13rem;*/
    /*  top: 13.9rem;*/
    /*  width: 7.1rem;*/
    /*  height: 12.1rem;*/
    /*}*/

    footer .footer-menu .menu-item_media {
        /* width: 202rem; */
        height: 44rem;
        font-size: 14rem;
        border-radius: 5rem;
        margin: 20rem 0 30rem;
    }

    footer .footer-menu .media-subitem {
        width: 50rem;
        height: 50rem;
        border-radius: 10rem;
        margin-right: 25rem;
    }

    footer .footer-copyright {
        border-top: 1px solid transparent;
        padding: 0 16px 20rem;
    }

    footer .footer-copyright .container {
        flex-flow: column-reverse;
        gap: 15rem;
    }

    footer .footer-copyright .copyright-text {
        font-size: 12rem;
    }

    footer .footer-copyright .pay-info img{
        width: 100%;
    }

    footer .footer-copyright .language-box {
        display: none;
    }
}

.return-top {
    position: fixed;
    right: 1%;
    bottom: 10%;
    height: 50px;
    width: 50px;
    background-image: url(/uploads/pages/return.png);
    background-color: #4d6c82;
    color: #fff;
    /*display: none;*/
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    cursor: pointer;
    z-index: 999;
}
.return-top:hover {
    background-color: #1e2426
}
header .container .login-member {
    display: flex;
    align-items: center;
    width: max-content;
    margin-left:15px;
}

header .container .login-member .login-member-btn {
    border-radius: 8px;
    border: 1px solid #4E8CFF;
    background: #FFF;
    padding: 5px 10px 7px 10px;
    color: #4E8CFF;
    font-size: 14px;
    transition: all 0.3s;
    line-height: normal;
}

header .container .login-member .login-member-btn:hover {
    background: #4E8CFF;
    color: #FFF;
}
header .container .menu-box {
    display: flex;
    align-items: center;
}
header .login-member .avatar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    overflow: hidden;
}

header .login-member .avatar img {
    width: 100%;
    height: 100%;
}

header .login-member .avatar:hover {
    border: 1px solid #002E99;
}

header .login-member .loading-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .login-member .loading-box .loading-box-inner {
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: url(../../home/images/loading-d.png) no-repeat center center;
    background-size: cover;
    animation: rotate 1s linear infinite;
}
header .login-member .loading-box .loading-box-inner:hover {
    background: url(../../home/images/loading-h.png) no-repeat center center;
    background-size: cover;
}
.header-menu-right{display: flex;}
@media (max-width: 770px) {
    .return-top {
        /*display: none !important;*/
    }
    header .container .menu-box ul {
        display: none;
    }
    header .container .login-member {
        position: absolute;
        right: 70px;
        top: 12px;
    }
    header .login-member .avatar{
        margin-top: 3px;
    }
}

.media-footer {
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .media-icons {
    width: calc(33.33% - 10px);
    text-align: left;
  }

  .media-icons img {
    width: 32px;
    height: 32px;
  }

/*activity area*/
.activity-promotion{
    width: 100%;
}
.activity-promotion .activity-img{
    width: 100%;
    position: relative;
}
.activity-promotion .close{
    position: absolute;
    right: 100px;
    top: 10px;
    z-index: 999;
}
.activity-promotion .mobile{
    display: none;
}
@media screen and (max-width: 768px) {
    .activity-promotion .desktop{
        display: none;
    }
    .activity-promotion .mobile{
        display: block;
    }
    .activity-promotion .close{
        right: 10px;
        top: 2px;
    }
}
