﻿@charset "utf-8";
/* 去掉默认样式start */
body {
    padding: 0;
    margin: 0;
}

p {
    margin: 0;
}
/* 去掉默认样式end */

.wrap img {
    width: 100%;
}

/*********************  头部start **********************/
.header-wrap {
    width: 100%;
    position: absolute;
    top: 0;
}

.menu-list {
    padding: 18px 0;
    display: flex;
    color: #fff;
    justify-content: flex-end;
}

.menu-list .item {
    display: flex;
    flex-direction: column;
    margin-right: 56px;
    align-items: center;
    cursor: pointer;
}
    .menu-list .item a {
        color:#fff;
    }

.menu-list .item .item-img {
    width: 28px;
    height: 28px;
    margin-bottom: 6px;
}

.menu-list .item span {
    font-size: 12px;
}

.header-wrap .title {
    width: 378px;
    /* margin: 15% 0 0 15%; */
    margin: 15% 0 0 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fxlogs-en {
    text-align: center;
    font-size: 34px;
    color: #25baef;
    font-weight: bold;
    margin-bottom: 14px;
}

.fxlogs-en span {
    color: #fff;
}

.explain {
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
}

.explain:before,.explain:after {
    display: inline-block;
    content: '';
    width: 68px;
    height: 1px;
    margin-right: 12px;
    background-color: #fff;
}

.explain:after {
    margin-right: 0;
    margin-left: 12px;
}

.profit-en {
    margin-top: 45px;
    color: #fff;
    font-weight: bold;
    font-size: 46px;
}

/* ipd*/
@media screen and (max-width:768px){
    .header-wrap {
        height: 390px;
        background-size: contain;
    }
    .menu-list {
        padding: 10px 0;
    }
    .menu-list .item {
        margin-right: 30px;
    }
    .menu-list .item .item-img {
        width: 18px;
        height: 18px;
        margin-bottom: 6px;
    }
    
    .header-wrap .title {
        width: 178px;
        margin: 100px 0 0 50px;
    }
    
    .fxlogs-en {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .explain {
        font-size: 12px;
    }
    
    .explain:before,.explain:after {
        display: inline-block;
        content: '';
        width: 28px;
        height: 1px;
        margin-right: 6px;
    }
    
    .explain:after {
        margin-right: 0;
        margin-left: 6px;
    }
    
    .profit-en {
        margin-top: 12px;
        color: #fff;
        font-weight: bold;
        font-size: 18px;
    }
}



/* 手机端 */
@media screen and (max-width:480px) {
    .header-wrap {
        height: 194px;
        background-size: contain;
    }
    /* 导航栏图标大小 */
    .menu-list .item .item-img {
        width: 14px;
        height: 14px;
        margin-bottom: 6px;
    }

    .menu-list {
        padding: 14px 0;
    }
    
    .menu-list .item {
        margin-right: 20px;
    }

    .header-wrap .title {
        text-align: center;
        width: 130px;
        margin: 0px 0 0 20px;
    }

    .fxlogs-en {
        margin-bottom: 5px;
    }

    .profit-en {
        margin-top: 8px;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
    }
}

/*********************  头部end **********************/

/***********************主体部分start**********************/
.main {
    background: #fbfffc;
    padding: 0 15%;
}

.issue-wrap {
    background: #fff;
    border-radius: 5px;
    margin-top: -85px;
    position: relative;
    z-index: 99;
    box-shadow:0px 24px 28px -12px#cacdcb;
}

.issue-wrap .title-name {
    padding: 28px 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

.issue-wrap .title-name::before {
    display: inline-block;
    content: '';
    height: 28px;
    width: 10px;
    background: linear-gradient(#91b3cf, #4b7ebd);
    border-radius: 5px;
    margin-right: 10px;
}

.content {
    display: flex;
}
.content .left-img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 3;
}

.content .left-img img {
    width: 70%;
    margin-left: 15%;
}

.content .list {
    flex: 4;
    display: flex;
    flex-direction: column;
    padding: 30px 0;

}

.content .list span{
    line-height: 50px;
    font-size: 20px;
    color: #666666;
}

.content .list span::before {
    content: '';
    margin-right: 23px;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666666;
}

.content .list span:nth-of-type(2) {
    margin-left: 30px;
}

.content .list span:nth-of-type(3) {
    margin-left: 60px;
}

.content .list span:nth-of-type(4) {
    margin-left: 90px;
}

.content .list span:nth-of-type(5) {
    margin-left: 120px;
}

.advantage-list {
    display: flex;
    padding: 98px 0;
}

.advantage-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-item img {
    height: 57px;
    width: 57px;
    margin-bottom: 26px;
}

.advantage-item .realTime-img {
    width: 68px;
}

.advantage-item .history-data-img {
    height: 50px;
}

.advantage-item span {
    color: #333333;
    font-size: 30px;
}
/* ipd */
@media screen and (max-width:768px) {
    .main {
        padding: 0 70px;
    }
    
    .issue-wrap {
        margin-top: -52px;
    }
    
    .issue-wrap .title-name {
        padding: 18px 0 10px;
        font-size: 16px;
    }
    
    .issue-wrap .title-name::before {
        height: 20px;
        width: 8px;
    }
    
    .content .left-img {
        width: 240px;
    }
    
    .content .left-img img {
        margin-left: 25px;
        width: 200px;
    }
    
    .content .list {
        display: flex;
        flex-direction: column;
        padding: 10px 0;
    }
    
    .content .list span{
        line-height: 30px;
        font-size: 14px;
        color: #666666;
        margin-left: 0 !important;
    }
    
    .content .list span::before {
        margin-right: 16px;
        width: 8px;
        height: 8px;
    }
    
    .advantage-list {
        padding: 58px 0;
    }
  
    .advantage-item img {
        height: 37px;
        width: 37px;
        margin-bottom: 16px;
    }
    
    .advantage-item .realTime-img {
        width: 48px;
    }
    
    .advantage-item .history-data-img {
        height: 36px;
    }
    
    .advantage-item span {
        color: #333333;
        font-size: 20px;
    }
}
/* 手机 */
@media screen and (max-width:480px) {
    .main {
        padding: 0 20px;
    }
    .issue-wrap {
        margin-top: -32px;
    }
    
    .issue-wrap .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content .list {
        padding: 6px 10px;
    }
    .content .list span{
        font-size: 12px;
    }
    .content .list span::before {
        margin-right: 8px;
        width: 4px;
        height: 4px;
    }
    .advantage-list {
        padding: 38px 0;
    }
  
    .advantage-item span {
        color: #333333;
        font-size: 16px;
    }
    .advantage-item img {
        height: 27px;
        width: 27px;
        margin-bottom: 14px;
    }
    
    .advantage-item .realTime-img {
        width: 32px;
    }
    
    .advantage-item .history-data-img {
        height: 28px;
    }
    
    .advantage-item span {
        font-size: 18px;
    }
}
/***********************主体部分end**********************/

/* 温馨提示 */
.warm-prompt {
    background: #404040;
    padding: 52px 6%;
    color: #fff;
    letter-spacing: 1px;
}

.warm-prompt .title {
    font-size: 28px;
    text-indent:52px;
    padding-bottom: 8px;
}

.warm-prompt p {
    text-indent:52px;
    font-size: 20px;
    line-height: 42px;
}

@media screen and (max-width:768px){
    .warm-prompt {
        padding: 10px;
    }
    
    .warm-prompt .title {
        font-size: 18px;
        text-indent:32px;
        padding-bottom: 8px;
    }
    
    .warm-prompt p {
        text-indent:32px;
        font-size: 12px;
        line-height: 22px;
    }
}


/* 底部footer */
.footer {
    padding: 54px 0;
    background: #fafffc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner {
    color: #4baee8;
    font-size: 22px;
    margin-bottom: 22px;
}

.copyright {
    font-size: 18px;
    color: #404040;
}

@media screen and (max-width:768px){
    .footer {
        padding: 24px 0;
    }
    
    .partner {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .copyright {
        font-size: 12px;
    }
}
  