/* styles.css 
body {
    text-align: center;
}
*/

/* 标题样式 */
.red-title {
  color: blue;
  font-size: 20px;
}


/* 按钮样式 */
.buttom-A {
  box-shadow: inset 0px 1px 0px 0px #cf866c;
  background: linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
  background-color: #d0451b;
  border-radius: 3px;
  text-indent: 0;
  border: 1px solid #942911;
  display: inline-block;
  color: #ffffff;
  font-family: arial;
  font-size: 26px;
  font-weight: bold;
  font-style: normal;
  height: 50px;
  line-height: 50px;
  width: 140px;
  text-decoration: none;
  text-align: center;
  text-shadow: 0px 1px 0px #854629;
}

.buttom-A:hover {
  background: linear-gradient(to bottom, #bc3315 5%, #d0451b 100%);
  background-color: #bc3315;
}

.buttom-A:active {
  position: relative;
  top: 1px;
}