html {
    font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;
    tab-size: 4;
    line-height: 1.5;
    -moz-tab-size: 4;
    -webkit-text-size-adjust: 100%;
    font-weight: normal;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

html,
body,
.container {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    max-width: 100% !important;
}

.onepage-container, .onepage-wrapper, .onepage-slide, .onepage-box{
    width: 100%;
    height: 100%;
}

/* 重写 layui 浮动工具条样式 */
.layui-fixbar li{
    border-radius: 50%;
    margin-bottom: 10px;
}
.layui-fixbar-top{
    display: none !important;
}
.layui-form-pane .layui-form-label{
    padding: 8px 13px;
}

/* 播放器按钮 */
.play-button-box {
    position: relative;
    margin: auto;
    width: 7.6vh;
    height: 7.6vh;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #ffffff;
    border-radius: 50%;
}
.play-ioc {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 4px;
    width: 0;
    height: 0;
    border: 2vh solid #ffffff;
    border-left: 2.3vh solid #ffffff;
    border-right: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-radius: 6px 0 0 6px;
    transform: translate(-50%, -50%) rotate(0deg);
}
.play-name {
    font-size: 2.2vh;
    color: #cfcfcf;
}
.play-button-box:hover {
    border-color: #9b9b9b;
}
.play-button-box:hover .play-ioc {
    border: 2vh solid #9b9b9b;
    border-left: 2.3vh solid #9b9b9b;
    border-right: none;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

/* 大屏切换分页器 */
.onepage-pagination {
    list-style: none;
    counter-reset: main;
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 5;
    margin: 0;
    padding: 0;
}
.onepage-pagination li {
    padding: 0;
    text-align: center;
    position: relative;
}
.onepage-pagination li a {
    padding: 16px 0;
    width: 4px;
    height: 4px;
    display: block;
}
.onepage-pagination li::before {
    cursor: pointer;
    position: absolute;
    top: 2px;
    left: 12px;
    font-size: 12px;
    list-style: none;
    counter-increment: main;
    content: "0" counter(main);
    color: #000;
}
.onepage-pagination li a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: rgba(0, 0, 0, 0.85);
    left: 12px;
}
.onepage-pagination li.active a:before {
    width: 24px;
    height: 2px;
    background: none;
    border-bottom: 2px solid rgb(0, 0, 0);
    margin-top: -2px;
    left: 0;
}
.no-dark .onepage-pagination li:before {
    color: #fff;
}
.no-dark .onepage-pagination li a:before {
    background: rgba(255, 255, 255, 0.85);
}
.no-dark .onepage-pagination li.active a:before {
    border-bottom: 1px solid rgb(255, 255, 255);
}
.no-dark .onepage-pagination li.active a:before{
    margin-top: 0px;
    height: 1px;
}

/* 滚屏提示箭头效果 */
.chevron-box {
    opacity: 0.1;
    position: absolute;
    z-index: 1000;
    width: auto;
    height: 24px;
    left: 50%;
    bottom: 100px;
    margin-left: -15px;
}
.chevron {
    position: absolute;
    width: 28px;
    height: 8px;
    opacity: 0;
    transform: scale3d(0.5, 0.5, 0.5);
    animation: move 3s ease-out infinite;
}
.chevron:first-child {
    animation: move 3s ease-out 1s infinite;
}
.chevron:nth-child(2) {
    animation: move 3s ease-out 2s infinite;
}
.chevron:before,
.chevron:after {
    content: ' ';
    position: absolute;
    top: 0;
    height: 100%;
    width: 51%;
    background: #dadada;
}
.chevron:before {
    left: 0;
    transform: skew(0deg, 30deg);
}
.chevron:after {
    right: 0;
    width: 50%;
    transform: skew(0deg, -30deg);
}
@keyframes move {
    25% {
        opacity: 1;
    }

    33% {
        opacity: 1;
        transform: translateY(30px);
    }

    67% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 0;
        transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
    }
}
.chevron-text {
    display: block;
    margin-top: 60px;
    margin-left: -30px;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    opacity: .25;
    animation: pulse 2s linear alternate infinite;
}
@keyframes pulse {
    to {
        opacity: 1;
    }
}
.chevron-dark .chevron-box {
    opacity: 0.5;
}
.chevron-dark .chevron-text{
    color: #6f2781 !important;
}
.chevron-dark .chevron:before,
.chevron-dark .chevron:after {
    background: #6f2781 !important;
}

/*****************************/

.ui-main{
    margin: 0 auto;
    position: relative;
    height: 100%;
    padding-top: 2.5rem; /* 40px */
}
