body {
    background-color: #f0f2f5;
    /* font-family: "SourceHanSansSC-Bold"; */
}

.Page1 {
    height: 50vh;
    position: relative;
}

.Page1Content {
    width: 40%;
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Page1Content>img {
    width: 10%;
    margin-bottom: 3%;
}

.Page1Content>h2 {
    font-size: 2vw;
    margin-bottom: 3%;
}

.Page1Content>p {
    letter-spacing: 1px;
}

.NewContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.NewContent>div {
    width: 50%;
}

.Title {
    margin-top: 5%;
    margin-bottom: 3%;
}

.time {
    color: #888;
    margin-bottom: 5%;
}

.NewContent>div>p:nth-of-type(n+2) {

    color: #333;
    /* font-size: 14px; */
    text-indent: 30px
}

.Oper {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5%;
}

.Oper>div:nth-child(1) {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3%;
}

.Oper>div:nth-child(1)>div {
    width: 88%;
    height: 88%;
    background-color: #fff;
    position: absolute;
    border-radius: 50%;
    border: 1px solid #8e8e8e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 30px;
    height: 30px;
    fill: #8a8a8a;
    transition: all .3s ease;
}

.OperIcon {
    color: #8A8A8A;
}

.OperSvg:hover+.OperIcon {
    color: #0398DA;
}

.OperSvg:hover+.OperIcon>.icon {
    fill: #0398DA;
}


.OperSvg {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transform: rotate(-90deg);
    z-index: 1;
}

.OperSvg>.arc {
    stroke-dasharray: 139px, 139px;
    stroke-dashoffset: 139px;
}

.OperSvg:hover>.arc {
    animation: stroke 1s linear forwards;
    stroke: #0398DA;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0px;
    }
}

.Oper > div:nth-child(2){
    width: 50%;
    display: flex;
    justify-content: space-between;
}
.Oper > div:nth-child(2)>a{
    width: 40%;
    height: 50px;
}
.Oper > div:nth-child(2)>a>button{
    width: 100%;
    height: 100%;
    background-color: transparent;
    cursor: pointer;
}
.Oper > div:nth-child(2)>a:nth-child(1)>button{
    border: 2px solid #8a8a8a;
    color: #8a8a8a;
    transition: all .3s ease;
}
.Oper > div:nth-child(2)>a:nth-child(2)>button{
    border: 2px solid #0398DA;
    background-color: #0398DA;
    color: #fff;
    transition: all .3s ease;
}

.Oper > div:nth-child(2)>a:nth-child(1):hover>button{
    border: 0;
    background-color: #0398DA;
    color: #fff;
}
    
.Oper > div:nth-child(2)>a:nth-child(2):hover>button{
    border-color: #8a8a8a;
    background-color: transparent;
    color: #8a8a8a;
}

@media (max-width: 1200px) {
    
.Page1Content>h2 {
    font-size: 2vw;
}
}

@media (max-width: 768px){
    .NewContent>div{
        width: 90%;
    }
    .Page1Content>h2 {
        font-size: 5vw;
    }
}

@media (max-width: 480px){
    
    .Page1Content{
        width: 100%;
        text-align: center;
    }
    .Page1Content>h2 {
        font-size: 7vw;
    }
}