﻿html, body {
    margin: 0;
    padding: 0;
    background-color: #d6f1e1;
}
a, a:hover {
    text-decoration:none;
}
.bgbox {
    position: relative;
}
.bgbox .topbg {
    width: 100%;
    display: block;
}
.bgbox .a {
    font-size: 14px;
    position: absolute;
    bottom: 23px;
    left: 50%;
    margin-left: -45px;
    z-index: 1;
    color: #1e6a3d;
    text-decoration: none;
    width: 90px;
    height: 23px;
    line-height: 23px;
    border-radius: 5px;
    border: 1px solid #1e6a3d;
    text-align: center;
    animation: resize 1.2s linear;
    -webkit-animation: resize 1.2s linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-transform-origin: 50% 50%;
}
@keyframes resize
{
    0% {
        transform:scale(1);
        -webkit-transform:scale(1);
    }
    50% {
        transform:scale(1.2);
        -webkit-transform:scale(1.2);
    }
    100% {
        transform:scale(1);
        -webkit-transform:scale(1);
    }
}
@-webkit-keyframes resize
{
    0% {
        transform:scale(1);
        -webkit-transform:scale(1);
    }
    50% {
        transform:scale(1.2);
        -webkit-transform:scale(1.2);
    }
    100% {
        transform:scale(1);
        -webkit-transform:scale(1);
    }
}
.from {
    width: 90%;
    margin: 0 auto 20px;
    background-color: #f9fdfa;
    padding: 15px;
    box-sizing: border-box;
}
.from .title {
    font-size: 12px;
    color: #707070;
    margin-bottom: 5px;
    line-height: 14px;
}
.from .b {
    color: #e32a44;
    font-size: 15px;
    vertical-align: middle;
    width: 10px;
    display: inline-block;
}
.from .text {
    margin: 0 0 10px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    height: 35px;
    border: 1px solid #d5d5d5;
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    outline: none;
    display: block;
    font-size: 14px;
    color: #404040;
}
.from textarea.text {
    height: 100px;
    padding: 10px;
    resize: none;
}
.btnbox {
    width: 90%;
    margin: 0 auto 20px;
    text-align: center;
}
.btnbox .button,
.btnbox .button2 {
    display:inline-block;
    line-height:42px;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 42px;
    border-radius: 5px;
    -webkit-appearance: none;
    background-color: #4fbd7b;
    color: #fff;
    font-size: 15px;
    border: 0;
    outline: none;
}
.btnbox .button2 {
    width: 133px;
    margin-top: 15px;
}

.sharebox {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(0 , 0, 0, 0.7);
    display: none;
}
.sharebox .img1 {
    width: 200px;
    float: right;
    margin: 15px;
}
.sharebox .img2 {
    display: block;
    width: 90px;
    position: absolute;
    bottom: 10%;
    left: 50%;
    margin-left: -45px;
}
.hide {
    display: none;
}