@charset "UTF-8";
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Regular.woff2') format('woff2'),
        url('fonts/Manrope-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Medium.woff2') format('woff2'),
        url('fonts/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Manrope';
    src: url('fonts/Manrope-Bold.woff2') format('woff2'),
        url('fonts/Manrope-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

body{
	font-family: 'Manrope', sans-serif;
	overflow-x: hidden; 
}

.cuc{ 
	background: #f9ebce; 
}

.ip-header {
	position: fixed;
	top: 0;
	z-index: 100;
	min-height: 460px;
	width: 100%;
	height: 100%;
	background-image: url('../images/cover-bg.jpg');
	background-size: cover;
	background-position: center;
}
.ip-header h1 {
	margin: 0;
}

.ip-logo,
.ip-loader {
	position: absolute;
	left: 0;
	width: 100%;
	opacity: 0;
	cursor: default;
	pointer-events: none;
}

.ip-logo {
	top: 0;
	height: 100%;
	-webkit-transform: translate3d(0,25%,0);
	-ms-transform: translate3d(0,25%,0);
	transform: translate3d(0,25%,0);
}

.ip-loader {
	bottom: 35%;
}

.ip-header .ip-inner {
	display: block;
	margin: 0 auto;
}

.ip-header .ip-logo svg {
	position: absolute;
	/*min-height: 200px;
	height: 25%;*/
	width: 300px;
	left: 50%;
	top: 5px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.loaded .ip-header .ip-logo svg {
	max-height: 300px;
}

.ip-header .ip-logo svg path {
	fill: #fff;
}

.ip-header .ip-loader svg path {
	fill: none;
	stroke-width: 8;
}

.ip-header .ip-loader svg path.ip-loader-circlebg {
	stroke: #fff;
}

.ip-header .ip-loader svg path.ip-loader-circle {
	-webkit-transition: stroke-dashoffset 0.2s;
	transition: stroke-dashoffset 0.2s;
	stroke: #dfa952;
}

/* Content */
.container {
	overflow: hidden;
	margin: 0 auto;
	padding: 13.5em 0;
	width: 100%;
	position: relative;
}

.container h2 {
	margin: 0;
	padding: 0.5em 0 1em;
	color: #1c9ccd;
	text-align: center;
	font-size: 4.25em;
	font-size: 4vw;
	line-height: 1;
}

.scroll-box-t, .scroll-box-m, .scroll-box-ct, .scroll-box-cm{
	max-height: 480px;
	overflow-y: scroll;
}

.competition, .scroll-box-t, .scroll-box-ct{
	display: none;
}

/* Animations */

/* Initial animation of header elements */
.loading .ip-logo,
.loading .ip-loader {
	opacity: 1;
}

.loading .ip-logo {
	-webkit-animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
	animation: animInitialLogo 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLogo {
	from { opacity: 0; }
}

@keyframes animInitialLogo {
	from { opacity: 0; }
}

.loading .ip-loader {
	-webkit-animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
	animation: animInitialLoader 1s cubic-bezier(0.7,0,0.3,1) both;
}

@-webkit-keyframes animInitialLoader {
	from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); }
}

@keyframes animInitialLoader {
	from { opacity: 0; -webkit-transform: scale3d(0.5,0.5,1); transform: scale3d(0.5,0.5,1); }
}

/* Header elements when loading finishes */
.loaded .ip-logo,
.loaded .ip-loader {
	opacity: 1;
}

.loaded .ip-logo {
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedLogo 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLogo {
	to { -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

@keyframes animLoadedLogo {
	to { -webkit-transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); transform: translate3d(0,100%,0) translate3d(0,50px,0) scale3d(0.65,0.65,1); }
}

.loaded .ip-loader {
	-webkit-animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedLoader 0.5s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedLoader {
	to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

@keyframes animLoadedLoader {
	to { opacity: 0; -webkit-transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); transform: translate3d(0,-100%,0) scale3d(0.3,0.3,1); }
}

/* Change the color of the logo */
.loaded .ip-logo svg path {
	-webkit-transition: all 0.5s ease 0.3s;
	transition: all 0.5s ease 0.3s;
	fill: #000;
}

/* Header animation when loading finishes */
.loaded .ip-header {
	-webkit-animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
	animation: animLoadedHeader 1s cubic-bezier(0.7,0,0.3,1) forwards;
}

@-webkit-keyframes animLoadedHeader {
	to { -webkit-transform: translate3d(0,-100%,0); }
}

@keyframes animLoadedHeader {
	to { -webkit-transform: translate3d(0,-100%,0); transform: translate3d(0,-100%,0); }
}

/* Content animations */
.loaded .container h2 {
	-webkit-animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
	animation: animLoadedContent 1s cubic-bezier(0.7,0,0.3,1) both;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

@-webkit-keyframes animLoadedContent {
	from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); }
}

@keyframes animLoadedContent {
	from { opacity: 0; -webkit-transform: scale3d(0.3,0.3,1); transform: scale3d(0.3,0.3,1); }
}

/* Change layout class for header */
.layout-switch .ip-header {
	position: absolute;
}

/* No JS */
.no-js .ip-header {
	position: relative;
	min-height: 0px;
}

.no-js .ip-header .ip-logo {
	margin-top: 20px;
	height: 180px;
	opacity: 1;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.no-js .ip-header .ip-logo svg path {
	fill: #fff;
}

/* Media queries */

@media screen and (max-width: 45em) {
	.container h2 {
		font-size: 2.25em;
		font-size: 10vw;
	}
}

section{
	width: 100%;
	background-color: #efc36e;
	position: relative;
}

.day{
	width: 100%;
	position: relative;
	padding: 5px 0 0 0;
}

.direction{
	width: 225px;
  	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%,-50%);
  	opacity: 0.1;
}

.route{
	width: 6px;
	height: 500px;
	background-color: #dfa952;
	margin: auto;
	position: relative;
}

.route-before{
	width: 30px;
	height: 6px;
	position: absolute;
	top: 0;
	left: calc(50% - 15px);
	background-color: #dfa952;
}
.route-after{
	width: 30px;
	height: 6px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 15px);
	background-color: #dfa952;
}
.runner{
	width: 60px;
	height: 60px;
	background-image: url('../images/run/runner.gif');
	background-size: 100% 100%;
	background-position: center;
	position: absolute;
	top: 206px;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	z-index: 1;
}

.trophy{
	position: absolute;
	top: -10px;
	right: 50px;
	width: 36px !important;
	background: none !important;
	border-radius: 0 !important;
	transform: rotate(10deg);
}

/*500x/1185*/

.distance-box{
	position: relative;
	width: 100%;
	height: 100%;
}

.distance-box span{
	font-weight: 700;
}

.distance-left{
	width: 50%;
}

.calories-right{
	width: 50%;
}

.competition{
	margin: auto;
}

.competition .block{
	margin-bottom: 20px;
}

.competition h1{
	margin-bottom: 0;
}

.competition h3{
	font-size: 13px;
	font-weight: 300;
	color: gray;
	margin-top: 5px;
}

.currentmonth{
	color: #fff;
  background: #000;
}

.team-rank{
	margin-bottom: 0;
}

.team-rank span{
	font-weight: 700;
	font-size: 20px;
}

.team-member{
	display: flex;
}

.team-member p, .team-member a{
	margin: 0 !important;
}

.content-box{
	width: -webkit-fit-content;
 	width: -moz-fit-content;
 	width: -ms-fit-content;
	width: -o-fit-content;
	width: fit-content;
	margin: 0 auto 30px 0;
	overflow: visible;
}

.kilo1, .kilo2{
	color: #fff;
	position: absolute;
	top: 50%;
	margin: 0;
	font-size: 18px;
	width: -webkit-fit-content;
 	width: -moz-fit-content;
 	width: -ms-fit-content;
	width: -o-fit-content;
	width: fit-content;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	text-align: center;
}

.kilo1{
	left: -120px;
}

.kilo1::after{
	content: "(已折返一个来回)";
  font-size: 10px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 100px;
  text-align: center;
  transform: translateX(-50%);
}

.kilo2{
	right: -115px;
}

.fa-arrow-up{
	cursor: pointer;
}

.header-button{
	width: 80%;
	max-width: 500px;
	height: 50px;
	position: absolute;
	top: 80px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

#addrun{
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50%;
	border: 4px solid #efc36e;
	color: #efc36e;
	font-size: 20px;
	float: right;
	-webkit-transition: background 0.2s, color 0.2s transform 0.2s ease;
	-ms-transition: background 0.2s, color 0.2s transform 0.2s ease;
	transition: background 0.2s, color 0.2s transform 0.2s ease;
	line-height: 10px;
	position: relative;
}

.fa-plus, .fa-star, .fa-times{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
}

#addrun:hover{
	background-color: #efc36e;
	color: #000;
}

.ranking{
	width: calc(100% - 30px);
	max-width: 800px;
	margin: auto;
	display: flex;
	position: relative;
}

.switcher{
	position: absolute;
	display: flex;
  top: -33px;
  left: 50%;
  transform: translatex(-50%);
  width: 300px;
}

.block {
  flex-direction: column;
  align-items: center;
  position: relative;
}

.block__title {
  position: relative;
  float: left;
  margin: 6px 10px 6px 0;
  cursor: pointer;
}

.block__title span {
  display: inline-block;
  white-space: pre;
}

.block[data-fx="1"] a::after {
  content: '';
  z-index: -1;
  width: 100%;
  bottom: -5px;
  left: 0;
  position: absolute;
  height: 2px;
  color: #cb3d3d;
  background: currentColor;
  transform: scale3d(0,1,1);
  transform-origin: 0% 50%;
  transition: transform 0.2s cubic-bezier(0.390, 0.575, 0.565, 1.000);
}

.block[data-fx="1"] a:hover::after {
  transform: scale3d(1,1,1)
}

.hover-reveal {
  position: fixed;
  width: 120px;
  height: 90px;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  will-change: transform, opacity;
}

.hover-reveal__inner,
.hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
}

.ranking h1{
	font-size: 25px;
}

.ranking h2{
	font-size: 15px;
  	margin: 0 10px;
  	padding: 3px 20px;
  	border-radius: 20px;
  	cursor: pointer;
}

.ranking h2:hover{
	color: #fff;
	background: #000;
	border-radius: 20px;
	transition: all 0.25s;
}

.ranking a span{
	font-weight: 700;
}

.ranking img{
	width: 30px;
	background: #fff;
	border-radius: 50%;
	display: block;
	float: left;
}

.kmsofar-kmtogo{
	width: 100%;
	position: fixed;
	height: 100px;
	top: -100px;
	left: 0;
	background-color: #fff;
	overflow: hidden;
	z-index: 999;
}

.countdown-box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	font-size: 25px;
	font-weight: 300;
	margin: 0;
	margin: 0 0 5px 0;
	color: #000;
	width: 100%;
	text-align: center;
}

.countdown{
	display: none;
}

#runrecord{
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50%;
	border: 4px solid #efc36e;
	color: #efc36e;
	font-size: 20px;
	float: left;
	-webkit-transition: background 0.2s, color 0.2s transform 0.2s ease;
	-ms-transition: background 0.2s, color 0.2s transform 0.2s ease;
	transition: background 0.2s, color 0.2s transform 0.2s ease;
	line-height: 10px;
	position: relative;
}

#runrecord:hover{
	background-color: #efc36e;
	color: #000;
}

.site-wrapper{
	overflow: hidden; 
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#overlay-close {
	width: 50px;
	height: 50px;
	background-color: transparent;
	border-radius: 50%;
	border: 4px solid #000;
	color: #000;
	font-size: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
	overflow: hidden;
	outline: none;
	line-height: 10px;
	z-index: 100;
}

#overlay-close:hover{
	background-color: #000;
	color: #f2cf89;
}

.container {
	overflow-x: hidden;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;	
}

.container.overlay-open {
	-webkit-transform: translateX(50%);
	transform: translateX(50%);
}

.container::after {
	content: '';
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.container.overlay-open::after {
	visibility: visible;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.overlay-contentpush {
	background: #f2cf89;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
	transition: transform 0.5s, visibility 0s 0.5s;
}

.overlay-contentpush.open {
	visibility: visible;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

@media screen and (max-width: 480px) {
.container{
	padding: 12em 0;
}
.header-button {
    top: 70px;
    width: 80%;
}
footer img {
	margin-top: 50px !important;
}
.ip-header .ip-logo svg {
	width: 225px;
	top: 5px;
}
.countdown-box{
	font-size: 20px;
}
footer img{
	margin-top: 50px;
}
.ip-loader {
  bottom: 25%;
}
.ranking{
	margin-top: 200px !important;
}
.ranking h1{
	font-size: 18px;
}
.competition .block__title{
	font-size: 16px !important;
	margin: 0 !important;
}
.block__title{
	font-size: 10px;
	margin: 0px 10px 3.6px 0;
}
.trophy{
	display: block !important;
}
.ranking img{
	display: none;
}
.switcher{
	top: -28px;
}
.ranking h2 {
  font-size: 12px;
}
.block[data-fx="1"] a::after {
  bottom: -1px;
  height: 1px;
}
}

canvas{
  background: #f5f8fa;
  overflow-y:hidden;
  overflow-x:hidden;
  width:100%;
  margin:0;
}

footer{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
}

footer img{
	height: 50px;
	padding: 0 10px;
	border: none !important;
	margin: auto;
	display: block;
	margin-top: 60px;
}

footer h5 {
    margin: 20px 0 15px 0;
    color: #000;
	font-weight: 400;
	letter-spacing: 0.5px;
	text-align: center;
}

.campus{
	position: relative;
}

.campus img{
	display: block;
	margin: auto;
	width: 80%;
	max-width: 480px;
	padding-top: 50px;
}

.weather-card{
	display: flex;
	color: #fff;
	position: absolute;
	font-size: 15px;
	left: 50%;
  transform: translateX(-50%);
}

.weather-card p{
	margin: 0;
}

.icon{
	width: 22px !important;
	padding-top: 0 !important;
	margin: 0 5px !important;
	filter: invert(100%);
}

#beijing{
  top: 28px;
}

#tengger{
  bottom: 25px;
}

.desert{
	display: block;
	margin: auto;
	width: 80%;
	max-width: 480px;
	padding-bottom: 40px;
}

.campsite{
	position: relative;
}

.fireworks{
	position: absolute !important;
	top: 0 !important;
  width: 150px !important;
  left: 50% !important;
  transform: translateX(-50%);
}

#finisher{
	position: absolute;
	display: block;
	top: 35px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #000;
  font-size: 12px;
  padding: 2.5px 5px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  z-index: 10000;
}

#finisher a{
	margin: 0 !important;
}

