/* 这个是壁纸和字体的css */

.woku_wallpaper1 {
    /* 壁纸 */
    width: 100%;
    /* 宽 */
    height: 100%;
    /* 高 */
    position: fixed;

    left: 50%;
    /* 左 */
    transform: translateX(-50%);
    /* 水平居中 */
    object-fit: cover;
    /* 保持图片的宽高比，同时覆盖整个容器 */
    -webkit-user-drag: none;
    /* 禁止图片拖动 */

}

.woku_wallpaper2 {
    /* 壁纸 */
    width: 100%;
    height: 598px;
    position: absolute;

    left: 50%;
    /* 左 */
    transform: translateX(-50%);
    /* 水平居中 */
    object-fit: cover;
    /* 保持图片的宽高比，同时覆盖整个容器 */
    -webkit-user-drag: none;
    /* 禁止图片拖动 */

}

/* 文字渐变色 */
.woku_Text_gradients {

    color: transparent;
}

/* 文字长度 */
.woku_Text_length{
    display: inline-block;
    white-space: nowrap;
}

/* ------------------------------------------------------- */
/* 字体的 */

@font-face {
    font-family: '阿里巴巴普惠体 3.0 45 Light';
    /* 字体名称 */
    src: url('../personalize/AlibabaPuHuiTi.ttf') format('truetype');
    /* 字体文件路径 */
    font-style: normal;
    /* 字体样式 */
}

/* 应用字体 */
body {
    font-family: '阿里巴巴普惠体 3.0 45 Light', sans-serif;
    /* 使用自定义字体，备用字体为系统默认无衬线字体 */
}

/* ------------------------------------------------------- */




/* ------------------------------------------------------- */