@charset "UTF-8"; /**
 * html
 * date: 2026-3-13
 * author: 程姣姣;
 */
.index-top {
    position: relative;
    height: 627px;
    padding-top: 15px;
}

.index-top .index-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    z-index: 5;
}

.index-top .index-header .hd-rt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.index-top .index-header .hd-rt .search-ct {
    position: relative;
    width: 260px;
    height: 32px;
    border-radius: 16px;
    background: #fff;
}

.index-top .index-header .hd-rt .search-ct input {
    width: calc(100% - 40px);
    height: 100%;
    padding: 0 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    border: 0;
    line-height: 34px;
    font-size: 13px;
    color: #333;
    background: none;
}

.index-top .index-header .hd-rt .search-ct input::-webkit-input-placeholder {
    color: #bac4ce;
}

.index-top .index-header .hd-rt .search-ct input::-moz-placeholder {
    color: #bac4ce;
}

.index-top .index-header .hd-rt .search-ct input:-ms-input-placeholder {
    color: #bac4ce;
}

.index-top .index-header .hd-rt .search-ct input::-ms-input-placeholder {
    color: #bac4ce;
}

.index-top .index-header .hd-rt .search-ct input::placeholder {
    color: #bac4ce;
}

.index-top .index-header .hd-rt .search-ct .btn {
    position: absolute;
    width: 32px;
    height: 32px;
    text-align: center;
    background: url("../images/search-icon.png") no-repeat center center;
    right: 10px;
    top: 0;
    border-radius: 16px;
    cursor: pointer;
}

.index-top .index-header .hd-rt .index-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 52px;
}

.index-top .index-header .hd-rt .index-menu li {
    margin-left: 32px;
}

.index-top .index-header .hd-rt .index-menu li a {
    height: 32px;
    line-height: 32px;
    padding: 0 1px;
    font-size: 16px;
    color: #333;
}

.index-top .index-header .hd-rt .index-menu li:hover a, .index-top .index-header .hd-rt .index-menu li.current a {
    position: relative;
    font-weight: bold;
    color: #0072dc;
}

.index-top .index-header .hd-rt .index-menu li:hover a::after, .index-top .index-header .hd-rt .index-menu li.current a::after {
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    bottom: -25px;
    border-top: 3px solid #0072dc;
}

.index-top {
    /* 轮播图 */
}

.index-top .banner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 627px;
    overflow: hidden;
    z-index: 0;
}

.index-top .banner .swiper-slide {
    position: relative;
    height: 627px;
    overflow: hidden;
}

.index-top .banner .swiper-slide > img {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
}

.index-top .banner .container {
    position: relative;
}

.index-top .banner .container > div {
    top: -300px;
    width: 40px;
    height: 48px;
    background-image: url("../images/index/banner-pre-hov.png");
    background-size: 100% 100%;
}

.index-top .banner .container > div.swiper-button-disabled {
    opacity: 1;
    background: url("../images/index/banner-pre-def.png");
}

.index-top .banner .container > div.swiper-button-next {
    background-image: url("../images/index/banner-next-hov.png");
}

.index-top .banner .container > div.swiper-button-next.swiper-button-disabled {
    background-image: url("../images/index/banner-next-def.png");
}

/* 右侧功能菜单 */
.slide-wrap {
    position: fixed;
    top: 50%;
    right: 38px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 102px;
    z-index: 999;
}

.slide-wrap .side-item {
    position: relative;
    display: block;
    width: 100%;
    height: 102px;
    font-size: 14px;
    text-align: center;
    padding-top: 62px;
    background-color: #fff;
    border-radius: 6px;
    color: #5b5a5a;
    -webkit-box-shadow: 0 4px 12px rgba(154, 154, 154, 0.25);
    box-shadow: 0 4px 12px rgba(154, 154, 154, 0.25);
}

.slide-wrap .side-item + .side-item {
    margin-top: 14px;
}

.slide-wrap .side-item::before {
    position: absolute;
    left: 50%;
    top: 18px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    content: "";
    width: 45px;
    height: 45px;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide-wrap .side-item:nth-child(1)::before {
    background-image: url("../images/index/side-icon1.png");
}

.slide-wrap .side-item:nth-child(2)::before {
    background-image: url("../images/index/side-icon2.png");
}

.slide-wrap .side-item:nth-child(3)::before {
    background-image: url("../images/index/side-icon3.png");
}

.slide-wrap .side-item:last-child {
    color: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#67abff), to(#0072dc));
    background: linear-gradient(to bottom, #67abff, #0072dc);
}

.slide-wrap .side-item:last-child::before {
    background-image: url("../images/index/back-icon.png");
}

.news {
    position: relative;
    height: 84px;
    margin-top: -30px;
    background: url("../images/index/new-bg.png") no-repeat center center;
    z-index: 5;
}

.news > div {
    position: relative;
    height: 64px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news > div .label {
    width: 120px;
    height: 32px;
    color: #fff;
    padding-left: 36px;
    background: url("../images/index/new-icon.png") no-repeat 0 2px, url("../images/index/new-line.png") no-repeat right center;
}

.news > div .label h6 {
    font-size: 18px;
    font-family: "ysb";
    letter-spacing: 2px;
}

.news > div .label p {
    font-size: 7px;
    text-transform: uppercase;
}

.news > div .swiper {
    height: 32px;
    width: 1035px;
    overflow: hidden;
    margin-left: 14px;
}

.news > div .swiper .swiper-slide {
    color: #fff;
    line-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trade-public .more, .news > div .more {
    position: absolute;
    display: block;
    top: 15px;
    right: 20px;
    width: 70px;
    height: 35px;
    background: url("../images/index/more-icon.png");
}

.types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 40px 0;
    margin-bottom: 50px;
}

.types a {
    width: 269px;
    height: 126px;
    color: #fff;
    padding: 42px 0 0 40px;
}

.types a:nth-child(1) {
    background-image: url("../images/index/types-item1.png");
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.types a:nth-child(2) {
    background-image: url("../images/index/types-item2.png");
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.types a:nth-child(3) {
    background-image: url("../images/index/types-item3.png");
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.types a:nth-child(4) {
    background-image: url("../images/index/types-item4.png");
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.types a:nth-child(5) {
    background-image: url("../images/index/types-item5.png");
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.types a p {
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px #3151c1, 0 2px 4px #3151c1, 0 2px 4px #3151c1;
}

.types a span {
    text-transform: uppercase;
    font-size: 12px;
    text-shadow: 0 2px 4px #3151c1, 0 2px 4px #3151c1, 0 2px 4px #3151c1;
}

.trade-public .container{
    position: relative;
}
.trade-public {
    /*padding-top: 30rem;
    height: 754rem;*/
    background: url('../images/deal_bg.png') center bottom no-repeat;
    /*background-size: 1920rem 334rem;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.trade-public .more{
    top:-3px;
    right:0;
}

.tab-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 56px;
    line-height: 56px;
    margin: 48px auto 20px;
    border-radius: 8px;
    background: #eaf3fa;
    overflow: hidden;
}

.trade-public .tab-hd-item {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 8px;
    width: 280px;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
    margin: 0 -24px;
    border-radius: 8px 8px 0 0;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.trade-public .tab-hd-item span {
    display: block;
    letter-spacing: 2px;
    -webkit-transform: skew(-30deg);
    transform: skew(-30deg);
}

.trade-public .tab-hd-item.active, .trade-public .tab-hd-item:hover {
    color: #fff;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, left bottom, from(#71b9fd), to(#0072dc));
    background: linear-gradient(to bottom, #71b9fd, #0072dc);
}

.trade-public .tab-bd {
    height: 602px;
    padding: 24px 24px 0;
    -webkit-box-shadow: 0 2px 14px rgba(4, 44, 101, 0.1);
    box-shadow: 0 2px 14px rgba(4, 44, 101, 0.1);
    border-radius: 16px;
}

.trade-public .list-wrap .col1 {
    width: 779px;
}

.trade-public .list-wrap .col2 {
    width: 305px;
}

.trade-public .list-wrap .col3 {
    width: 305px;
}

.trade-public .list-wrap .col4 {
    width: 1084px;
}

.trade-public .list-hd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    border-radius: 2px;
    color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.trade-public .list-hd p {
    height: 42px;
    line-height: 42px;
    text-align: center;
    background: #66a9e6;
    letter-spacing: 1px;
}

.trade-public .list-swiper {
    height: 504px;
    overflow: hidden;
}

.trade-public .list-swiper .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.trade-public .list-swiper .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 56px;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.trade-public .list-swiper .swiper-slide p {
    text-align: center;
    color: #999;
}

.trade-public .list-swiper .swiper-slide .col1 {
    text-align: left;
    padding-left: 25px;
    background: url("../images/dot.png") no-repeat 0 center;
}

.trade-public .list-swiper .swiper-slide .col1 a {
    color: #333;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trade-public .list-swiper .swiper-slide .col1 a .area {
    font-size: 12px;
    color: #0072dc;
}

.trade-public .list-swiper .swiper-slide .col4 {
    text-align: left;
    padding-left: 25px;
    background: url("../images/dot.png") no-repeat 0 center;
}

.trade-public .list-swiper .swiper-slide .col4 a {
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.trade-public .list-swiper .swiper-slide .col4 a .area {
    font-size: 12px;
    color: #0072dc;
}

.trade-public .list-swiper .swiper-slide:hover {
    border-color: #0072dc;
}

.trade-public .list-swiper .swiper-slide:hover a {
    color: #0072dc;
}

.trade-data {
    margin-top: 50px;
    height: 562px;
    padding-top: 86px;
    background: url("../images/index/trade-bg.png") no-repeat center 0;
}

.trade-data .count {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 1430px;
    height: 312px;
    margin-top: 48px;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#f4faff));
    background: linear-gradient(to bottom, white, #f4faff);
    -webkit-box-shadow: 0 3px 12px rgba(150, 186, 221, 0.3);
    box-shadow: 0 3px 12px rgba(150, 186, 221, 0.3);
    border-radius: 16px;
}

.trade-data .count .today {
    position: absolute;
    left: -5px;
    top: 10px;
    width: 535px;
    height: 37px;
    line-height: 34px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 4px;
    background: url("../images/index/today-bg.png") no-repeat 0 0;
}

.trade-data .count .today .label {
    width: 105px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.trade-data .count .today .time {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-left: 15px;
}

.trade-data .count .item {
    position: relative;
    width: 320px;
    height: 245px;
    margin-top: 52px;
    text-align: center;
    padding-top: 105px;
}

.trade-data .count .item:nth-child(1) {
    background: url("../images/index/trade-item1.png") 0 center no-repeat;
}

.trade-data .count .item:nth-child(1) p {
    color: #0072dc;
}

.trade-data .count .item:nth-child(1) p.reflection {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 114, 220, 0.2)), to(rgba(0, 114, 220, 0)));
    background: linear-gradient(0deg, rgba(0, 114, 220, 0.2) 0%, rgba(0, 114, 220, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade-data .count .item:nth-child(2) {
    background: url("../images/index/trade-item2.png") 0 center no-repeat;
}

.trade-data .count .item:nth-child(2) p {
    color: #6e55d9;
}

.trade-data .count .item:nth-child(2) p.reflection {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(110, 85, 217, 0.2)), to(rgba(110, 85, 217, 0)));
    background: linear-gradient(0deg, rgba(110, 85, 217, 0.2) 0%, rgba(110, 85, 217, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade-data .count .item:nth-child(3) {
    background: url("../images/index/trade-item3.png") 0 center no-repeat;
}

.trade-data .count .item:nth-child(3) p {
    color: #2ead89;
}

.trade-data .count .item:nth-child(3) p.reflection {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(46, 173, 137, 0.2)), to(rgba(46, 173, 137, 0)));
    background: linear-gradient(0deg, rgba(46, 173, 137, 0.2) 0%, rgba(46, 173, 137, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade-data .count .item:nth-child(4) {
    background: url("../images/index/trade-item4.png") 0 center no-repeat;
}

.trade-data .count .item:nth-child(4) p {
    color: #0072de;
}

.trade-data .count .item:nth-child(4) p.reflection {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 114, 222, 0.2)), to(rgba(0, 114, 222, 0)));
    background: linear-gradient(0deg, rgba(0, 114, 222, 0.2) 0%, rgba(0, 114, 222, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trade-data .count .item p {
    font-size: 20px;
    height: 50px;
    line-height: 50px;
}

.trade-data .count .item p span {
    font-family: "impact";
    font-size: 50px;
    padding-right: 12px;
}

.trade-data .count .item p.reflection {
    position: absolute;
    left: 0;
    right: 0;
    top: 96px;
    text-align: center;
    -webkit-transform: translateY(100%) rotateX(180deg);
    transform: translateY(100%) rotateX(180deg);
}

.trade-data .count .item h6 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 36px;
}

.column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 30px auto 86px;
}

.backlist {
    /*padding-top: 87rem;*/
    background: url(../images/blacklist_bg.png) center bottom no-repeat;
    /*background-size: 1920rem 100%;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.column .module {
    width: 702px;
    height: 326px;
    background: -webkit-gradient(linear, left top, left bottom, from(#f8faff), to(white));
    background: linear-gradient(to bottom, #f8faff, white);
    border: 2px solid #fff;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 26px rgba(0, 42, 101, 0.1);
    box-shadow: 0 4px 26px rgba(0, 42, 101, 0.1);
    padding: 4px 16px 4px 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.column .module .label {
    width: 257px;
    height: 314px;
    background: url("../images/index/jump-bg1.png") no-repeat 0 0;
    background-size: 100% 100%;
    border-radius: 16px;
}

.column .module .label a {
    position: relative;
    display: block;
    background: 100%;
    height: 100%;
    padding: 32px 0 0 26px;
}

.column .module .label h6 {
    font-family: "afy";
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.column .module .label .more {
    position: absolute;
    display: block;
    right: 16px;
    bottom: 16px;
    width: 24px;
    height: 24px;
    background: url("../images/index/column-more.png");
}

.column .module .labe2 {
    width: 257px;
    height: 314px;
    background: url("../images/index/jump-bg2.png") no-repeat 0 0;
    background-size: 100% 100%;
    border-radius: 16px;
}

.column .module .labe2 a {
    position: relative;
    display: block;
    background: 100%;
    height: 100%;
    padding: 32px 0 0 26px;
}

.column .module .labe2 h6 {
    font-family: "afy";
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.column .module .labe2 .more {
    position: absolute;
    display: block;
    right: 16px;
    bottom: 16px;
    width: 24px;
    height: 24px;
    background: url("../images/index/column-more.png");
}

.column .module .swiper {
    width: 406px;
    height: 280px;
    overflow: hidden;
}

.column .module .swiper .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
	transition-timing-function: linear;
}

.column .module .swiper .swiper-slide {
    height: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    border-bottom: 1px solid rgba(153, 153, 153, 0.2);
}

.column .module .swiper .swiper-slide .col1 {
    width: 315px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 20px;
    background: url("../images/index/column-dot.png") no-repeat 0 center;
}

.column .module .swiper .swiper-slide:hover {
    color: #0072dc;
    border-color: #0072dc;
}

.column .module .swiper .swiper-slide:hover .col1 {
    background-image: url("../images/index/column-dot-act.png");
}

.link .swiper {
    overflow: hidden;
    position: relative;
    margin: 40px 0 50px;
}

.link .swiper .swiper-container {
    width: 1346px;
    height: 112px;
    margin-left: 53px;
    overflow: hidden;
}

.link .swiper .swiper-container .swiper-slide {
    background: url("../images/index/link-bg.png") no-repeat 0 0;
    background-size: 100% 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 0 20px 10px 10px;
}

.link .swiper .swiper-container .swiper-slide:hover {
    background-image: url("../images/index/link-bg-hov.png");
}

.link .swiper .swiper-container .swiper-slide span {
    max-height: 68px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.link .swiper-button-prev, .link .swiper-button-next {
    left: 0;
    top: 50px;
    width: 48px;
    height: 46px;
    background: url("../images/index/link-pre.png") no-repeat -7px -5px;
    border-radius: 50%;
}

.link .swiper-button-next {
    left: auto;
    right: 0;
    background-image: url("../images/index/link-next.png");
}

/**/
.sys-login {
    width: 500px;
    height: 203px;
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px rgba(19, 35, 67, 0.27);
    z-index: 999;
}

.sys-login .ewb-login-item a {
    margin: 0;
}

.sys-name {
    margin-left: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 38px;
}

.sys-title {
    height: 38px;
    background-color: #26acf1;
}

.sys-login .ewb-login-items {
    margin: 0 10px;
    padding-top: 15px;
}

.ewb-plat-item a.sys-close {
    margin-top: 6px;
    display: block;
    width: 13px;
    height: 13px;
    background: url('../images/close_ico.png') center no-repeat;
}

.sys-login .bid-login-items {
    margin-left: -10px;
    padding-top: 25px;
}

.bid-login-items > li {
    margin-top: 22px;
    float: left;
    width: 210px;
    margin-left: 30px;
}

.bid-link-layer .layui-layer-setwin .layui-layer-close2, .bid-link-layer .layui-layer-setwin .layui-layer-close2:hover {
    right: -4px;
    top: -4px;
    width: 13px;
    height: 13px;
    background: url('../images/close_ico.png') center no-repeat;
}

.ewb-login-item {
    border: 1px solid #b9e0f8;
    margin-top: 5px;
    vertical-align: top;
}

.ewb-login-item a {
    display: block;
    border: 1px solid #fff;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
    color: #333;
    padding-left: 7px;
    background-position: 23px center;
    background-repeat: no-repeat;
    background-color: #ecf7fe;
}

.ewb-login-item a:hover {
    color: #339fe4;
}

.login-li:before,
.login-li:after,
.login-li > .ui-border-element:before,
.login-li > .ui-border-element:after {
    content: '';
    position: absolute;
}

.login-li:before {
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    left: calc(100% - 10px);
    right: 10px;
    top: 10px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:hover:before {
    left: 10px;
}

.login-li:not(:hover):before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:before,
.login-li:after,
.login-li > .ui-border-element:before,
.login-li > .ui-border-element:after {
    content: '';
    position: absolute;
}

.login-li .ui-border-element:after {
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    top: 10px;
    bottom: calc(100% - 10px);
    right: 10px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:hover .ui-border-element:after {
    bottom: 10px;
}

.login-li:not(:hover) .ui-border-element:after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:before,
.login-li:after,
.login-li > .ui-border-element:before,
.login-li > .ui-border-element:after {
    content: '';
    position: absolute;
}

.login-li:after {
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    left: 10px;
    right: calc(100% - 10px);
    bottom: 10px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:hover:after {
    right: 10px;
}

.topBottom-rightLeftCorner:not(:hover):after {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:before,
.login-li:after,
.login-li > .ui-border-element:before,
.login-li > .ui-border-element:after {
    content: '';
    position: absolute;
}

.login-li .ui-border-element:before {
    border-left: 2px solid rgba(255, 255, 255, 0.4);
    top: calc(100% - 10px);
    bottom: 10px;
    left: 10px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    transition-timing-function: cubic-bezier(0, 0.98, 0.51, 0.93);
    -webkit-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.login-li:hover .ui-border-element:before {
    top: 10px;
}

.login-li:not(:hover) .ui-border-element:before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}


.trade-bg {
    /*padding-bottom: 50rem;*/
    background: url('../images/trade_bg.png') center bottom no-repeat;
    /*background-size: 1920rem 830rem;*/
}