﻿@charset "utf-8";

/* CSS Document */

body,
ul,
h1 {
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
}

.pointer {
    cursor: pointer;
}

.left_nav p {
    margin: 0;
    padding: 0;
    text-align: center;
}

.back {
    position: fixed;
    top: 19px;
    right: 19px;
    z-index: 8;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: #08445e;
}

.inner-circle {
    margin: 0 auto;
    width: 75%;
    height: 75%;
    margin-top: 10%;
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    line-height: 1.2;
}

    .inner-circle .iconfont {
        color: #08445e;
        font-size: 36px;
        position: absolute;
        right: 22%;
        top: 14%;
    }

.go, .next {
    position: fixed;
    bottom: 19px;
    right: 19px;
    z-index: 8;
    width: 8%;
    height: auto;
}

.title {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 999;
    width: 20%;
    height: 7%;
}

.hidden {
    display: none;
}

.cover {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    opacity: 0.7;
    box-sizing: content-box;
    background-color: #000;
    z-index: 9;
}

.highlight {
    z-index: 10!important;
}

ul li {
    list-style: none;
}

.clearfix {
    clear: both;
}
/*左右箭头*/
.arrowsize {
    position: absolute;
    bottom: 50%;
    width: 45px;
    height: 90px;
    overflow: hidden;
}

.rightarrow {
    right: 0px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg); /* IE 9 */
    -moz-transform: rotate(180deg); /* Firefox */
    -webkit-transform: rotate(180deg); /* Safari 和 Chrome */
    -o-transform: rotate(180deg);
}

.half-circle {
    background-color: #08445e;
    width: 200%;
    height: 100%;
    border-radius: 50%;
    line-height: 3;
    color: #fff;
    animation: colorchange 2s infinite;
    -webkit-animation: colorchange 2s infinite;
}

@keyframes colorchange {
    0% {
        background: #08445e;
    }

    50% {
        background: #61da41;
    }

    100% {
        background: #08445e;
    }
}

@-webkit-keyframes colorchange /*Safari and Chrome*/
{
    0% {
        background: #08445e;
    }

    50% {
        background: #61da41;
    }

    100% {
        background: #08445e;
    }
}

.half-circle .iconfont {
    margin-left: 7px;
    display: inline-block;
    font-size: 30px;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.position-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.content_item img {
    height: 100%;
    width: 100%;
}
