@import './main.css';

.container{
    width: var(--container-width);
    margin: 0 auto;
}

@media screen and (max-width: 768px){
    .container{
        width: auto;
    }
}

.fade-in{
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s ease;
    &.visible{
        opacity: 1;
        transform: translateY(0);
    }
}

/* 箭头 */
.i-arrow-right{
    display: inline-block;
    width: 14px; height: 14px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12h14M13 6l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'><path d='M5 12h14M13 6l6 6-6 6' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
}


/* 按钮 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    transition: all .25s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-blue {
    background: linear-gradient(135deg, #1B6CFF, #00C2FF);
    color: #fff;
    box-shadow: 0 6px 18px rgba(27, 108, 255, 0.35);
}
.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(27, 108, 255, 0.45);
}

.btn-transp{
    background: transparent;
    color: #fff;
    border: 1px solid #3E5EA6;
}
.btn-transp:hover{
    background: rgba(255, 255, 255, 0.12);
}

.btn-white{
    background: #fff;
    color: #333333;
}
.btn-white:hover{
    opacity: .6;
}

.btn-blue-text{
    border: 1px solid #DAE5F6;
    background-color: #fff;
    color: #1567FD;
}
.btn-blue-text:hover{
    color: #1B6CFF;
    background: rgba(27, 108, 255, 0.12);
}

