/*
三原色：
绿色: #00d87e(主绿色) #00db99(次绿色) #00a588(深绿) rgb(59, 184, 120)(深绿) rgb(112, 198, 162)(浅绿)
黑色: #545c63(次黑色) #3d4246(主体黑色) #000(纯黑色 深黑色)
灰色: #eee(浅灰) #666(灰色) 
白色: #fff(纯白色) #d9d9d9(灰白) #f9f8f4(淡白) rgba(84,92,99,0.1)(灰白) 
*/
html {
    font-size: 15px;/*定义rem基准*/
}
*, *::before, *::after {
	-moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin:0;
	padding:0;
	background-color:#fff;
}
body, input, textarea, button, select {
    font-family:'Montserrat Alternates',"Montserrat",sans-serif,Helvetica,Georgia;
    color:#3d4246;
    line-height:1.5;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family:'Montserrat Alternates',"Montserrat",sans-serif,Helvetica,Georgia;
	overflow-wrap:break-word;
    word-wrap:break-word;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}
input[value], 
input::-webkit-input-placeholder, 
textarea::-webkit-input-placeholder {
    color:#3d4246;
    font-size:0.8rem;
}
input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
}
input[type="button"] {
    border: none;
    outline:none; 
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="tel"],
select {
    -moz-appearance: none;
    -webkit-appearance: none
}
a, button, [role="button"], input, label, select, textarea {
    touch-action: manipulation;
}
a {
	color:#3d4246;
	outline: none;
	text-decoration:none;
	background-color:transparent;
}
a:active, a:visited, a:link, a:hover {
	outline: none;
    text-decoration: none;
}
a:hover {
	color: #00db99;
}
input, textarea, button, select, label, a {
    -webkit-tap-highlight-color: transparent;
}
.clearfloat::before,
.clearfloat::after{/*清浮动*/
	content: "";
    display: block;
    height: 0;
    line-height: 0;
    clear: both;
    visibility: hidden;
}
img {
    max-width: 100%;/*reset img*/
    border: 0;
	border-radius: 4px;
}
.icon {/*svg*/
    width:1rem;
    height:1rem;
    vertical-align: middle;
    fill: currentColor;
}
.icon-middle {
    width:1.5rem;
    height:1.5rem;
    vertical-align: middle;
    fill: currentColor;
}
.icon-double {
    width:2rem;
    height:2rem;
    vertical-align: middle;
    fill: currentColor;
}
svg:not(:root) {
    overflow: hidden;
}
ul, ol, li {
    margin: 0;
    padding: 0;
	list-style: none;
}
i,em,b,s{
    font-style:normal;
    font-weight:normal;
}
::selection {/*选中样式*/
    color: #fff;
    background-color: rgba(112, 198, 162,.8);
	background-image: linear-gradient(-90deg,#00d87e,#00db99);
}
::-webkit-search-cancel-button{/*取消自动生成的cancel按钮*/
    display: none;  
}
.active{
	display:block;
}
.hide,.none{
	display:none;
}
.inline_block{
	display:inline-block;
}
.hover-anima:after{
    content: '';
    position: relative;
    bottom: 0;
    border-top:0.125rem solid #65e7b9;
    display: block;
    margin: 0 auto;
    transition: all 120ms ease-in-out;
    width: 0
}
.hover-anima:hover{
    color:#65e7b9! important
}
.hover-anima:hover a{
    color:#65e7b9! important
}
.hover-anima:hover:after{
    width:100%;
}
.buttonAnimate {/*动画*/
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite
}
.buttonAnimate:hover {
    -webkit-animation-name: pulse;
    animation-name: pulse
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.05)
    }
    100% {
        -webkit-transform: scale(1)
    }
}
@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.05)
    }
    100% {
        transform: scale(1)
    }
}
.same-white-bg {
    background-color: rgba(255, 255, 255, .85);
}
.same-grey-bg {
    background-color: rgba(85, 85, 85, 0.05);
	background-color: #f9f8f4;
}
.same-green-bg {
    background-color: rgba(0, 86, 60, .15);
}
.same-up-curve {
    border-top-left-radius: 50% 1vw;
    border-top-right-radius: 50% 1vw;
}
.same-down-curve {
    border-bottom-right-radius: 50% 2vw;
    border-bottom-left-radius: 50% 2vw;
}
.same-wrapper-mobile-search::-webkit-scrollbar,
#navigation-menu ul::-webkit-scrollbar,
.same-wrapper-mobile .touch-slide-box::-webkit-scrollbar {
	background-color:transparent; /*隐藏特定的滚动条*/
	background-color:#fff;
}
