.guide-page-container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.guide-page-tit {
    font-size: 36px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 50px;
}

.guide-page-tit2 {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 33px;
    display: flex;
    align-items: center;
}

.guide-page-tit2:before {
    width: 3px;
    height: 16px;
    background: #FFFFFF;
    display: block;
    content: "";
    margin-right: 10px;
}

.guide-page-tit3 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 24px;
}

.guide-page-right {
    width: 200px;
    flex: none;
    margin-left: 60px;
    /*padding-top: 60px;*/
}

.guide-page-left {
    flex: 1;
    padding: 60px 0;
}

.guide-page-txt {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
}

.guide-page-mt30 {
    margin-top: 30px;
}

.guide-page-mt20 {
    margin-top: 20px;
}

.guide-page-mt10 {
    margin-top: 10px;
}

.guide-page-mt40 {
    margin-top: 60px;
}

.guide-page-mt60 {
    margin-top: 60px;
}

.guide-page-box {
    width: 100%;
    background-color: #030C4E;
    padding: 30px;
    box-sizing: border-box;
}

.guide-page-box-item {
    font-size: 20px;
    font-weight: 600;
    /*color: #FFFFFF;*/
    line-height: 24px;
    background: linear-gradient(90deg, #00D6C9 0%, #2464F5 100%);
    background: -webkit-linear-gradient(0deg, #00D6C9 0%, #2464F5 100%);
    background-clip: text; /* 这个属性将渐变裁剪为文本的形状 */
    -webkit-background-clip: text; /* Safari 和老版本的 Chrome 需要添加此前缀 */
    color: transparent; /* 将文字颜色设置为透明，使渐变显示出来 */
}

.guide-page-box-img {
    width: 720px;
    height: auto;
    display: block;
    margin: 30px auto;
}

.guide-page-tab {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    /*background: rgba(32, 111, 241, 0.1);*/
    border: 1px solid #2464F5;
    box-sizing: border-box;
}

.guide-page-tab thead tr {
    background: linear-gradient(270deg, #2464F5 0%, #0196FF 100%);
    background: -webkit-linear-gradient(-180deg, #2464F5 0%, #0196FF 100%);
    padding-right: 30px;
}

.guide-page-tab tbody tr:nth-child(odd) {
    background-color: rgba(32, 111, 241, 0.1);
}

.guide-page-tab thead td, .guide-page-tab tbody td {
    padding: 10px 0px 10px 30px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 30px;
}

.guide-page-tab thead td:last-child, .guide-page-tab tbody td:last-child {
    padding-right: 30px;
}

.guide-page-tab thead td {
    white-space: nowrap;
}

.guide-page-tab-text {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 28px;
    margin-top: 10px;
}

.guide-page-tab-text:first-child {
    margin-top: 10px;
}

.guide-page-tab-text:last-child {
    margin-bottom: 10px;
}

.guide-page-tab-text b {
    /*font-size: px;*/
    font-weight: 700;
    color: #FFFFFF;
    line-height: 28px;
    /*margin-right: 10px;*/
}

.guide-page-tab-text a {
    font-size: 16px;
    font-weight: 400;
    color: #00D5C9;
    line-height: 28px;
}

.guide-page-tab-text a:hover {
    text-decoration: underline;
}

.addIcon {
    display: flex;
    align-items: center;
}

.addIcon:before {
    background-image: url("../src/index/address_2x.png");
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    content: "";
    display: block;
}

.guide-page-right {
    display: flex;
    flex-direction: column;
}

.guide-page-right-tit {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 24px;
    padding-left: 20px;
    padding-bottom: 10px;
}

.guide-page-right-link {
    font-size: 16px;
    font-weight: 400;
    color: #80809E;
    line-height: 28px;
    padding-left: 35px;
    margin-left: -1px;
    width: 100%;
    margin-top: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

.guide-page-right-link:before {
    width: 2px;
    height: 20px;
    background: #FFFFFF;
    position: absolute;
    left: 0px;
    content: "";
    display: none;
}

.guide-page-right-link-ck {
    color: #fff;
}

.guide-page-right-link-ck:before {
    display: block;
}

.guide-page-right-box {
    width: 100%;
    border-left: rgba(255, 255, 255, .2) 1px solid;
    margin-top: 80px;
}

.guide-page-tab-text-code {
    width: 82px;
    height: 82px;
    display: block;
}

@media (max-width: 768px) {
    .guide-page-container {
        width: calc(100% - 30px);
        /*padding: 0 15px;*/
        box-sizing: border-box;
    }

    .guide-page-box-img {
        width: 100%;
    }

    .guide-page-right {
        display: none;
    }

    .guide-page-tab-box {
        width: calc(100vw - 30px);
        overflow-x: scroll;
    }

    .table-container .guide-page-tab-text {
        width: 200px;
    }
}