﻿/*负责master中被调用的页面的样式*/

/*通用样式*/
* {
    /* 消除所有边距，盒模型为以边框为准 */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* scollbar */
*::-webkit-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-thumb {
    width: 6px;
    border-radius: 4px;
    background: #cccccc;
}

*::-webkit-scrollbar-track {
    width: 6px;
}

*::-webkit-scrollbar-button {
    display: none;
}

html,
body {
    height: 100vh;
}

/* 图片显示为block，否则照片底部会有空隙 */
img {
    display: block;
}

/* 表格样式 */
table {
    border-collapse: collapse;
}

/* 列表样式 */
ul,
li {
    list-style: none;
    line-height: 26px;
}

body {
    /*min-width: 1200px;*/
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #333333;
}

/* a标签样式 */
a {
    display: block;
    text-decoration: none;
    color: #333333;
}

a:hover {
    color: #3a7fc3;
}

a:active {
    color: #3a7fc3;
}

a:visited {
    color: #333333;
}

/* input样式 */
input {
    border: none;
    outline: none;
    color: #333333;
}

input::-webkit-input-placeholder {
    /*WebKit browsers*/
    color: #999999;
}

input::-moz-input-placeholder {
    /*Mozilla Firefox*/
    color: #999999
}

input::-ms-input-placeholder {
    /*Internet Explorer*/
    color: #999999
}

/* flex容器 */
.x-t {
    /* 子元素x轴排列 顶对齐 */
    display: flex;
    align-items: flex-start;
}

.x-c {
    /* 子元素x轴排列 居中对齐 */
    display: flex;
    align-items: center;
}

.x-b {
    /* 子元素x轴排列 底对齐 */
    display: flex;
    align-items: flex-end;
}

.x-s {
    /* 子元素x轴排列 上下撑满 */
    display: flex;
    align-items: stretch;
}

.y-l {
    /* 子元素y轴排列 左对齐 */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.y-c {
    /* 子元素y轴排列 居中对齐 */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.y-r {
    /* 子元素y轴排列 底对齐 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.y-s {
    /* 子元素y轴排列 左右撑满 */
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.container {
    /* 定宽容器嵌套在 y-c 中使用*/
    width: 1200px;
    margin: auto;
}

/* flex子项 */
.grow1 {
    flex: 1 0 0%
        /* flex-grow:1 flex-shrink:0 flex-basis:0% */
}

.grow05 {
    flex-grow: 0.5;
}

/* 边距 */
.m4 {
    margin: 4px
}

.mx4 {
    margin-right: 4px;
    margin-left: 4px;
}

.my4 {
    margin-top: 4px;
    margin-bottom: 4px;
}

.mr4 {
    margin-right: 4px;
}

.mb4 {
    margin-bottom: 4px;
}

.m8 {
    margin: 8px
}

.mx8 {
    margin-right: 8px;
    margin-left: 8px;
}

.my8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.mr8 {
    margin-right: 8px;
}

.mb8 {
    margin-bottom: 8px;
}

.m16 {
    margin: 16px
}

.mx16 {
    margin-right: 16px;
    margin-left: 16px;
}

.my16 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.mr16 {
    margin-right: 16px;
}

.mb16 {
    margin-bottom: 16px;
}

.m24 {
    margin: 24px
}

.mx24 {
    margin-right: 24px;
    margin-left: 24px;
}

.my24 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.mr24 {
    margin-right: 24px;
}

.mb24 {
    margin-bottom: 24px;
}

.m32 {
    margin: 32px
}

.mx32 {
    margin-right: 32px;
    margin-left: 32px;
}

.my32 {
    margin-top: 32px;
    margin-bottom: 32px;
}

.mr32 {
    margin-right: 32px;
}

.mb32 {
    margin-bottom: 32px;
}

.m48 {
    margin: 48px
}

.mx48 {
    margin-right: 48px;
    margin-left: 48px;
}

.my48 {
    margin-top: 48px;
    margin-bottom: 48px;
}

.mr48 {
    margin-right: 48px;
}

.mb48 {
    margin-bottom: 48px;
}

.m64 {
    margin: 64px
}

.mx64 {
    margin-right: 64px;
    margin-left: 64px;
}

.my64 {
    margin-top: 64px;
    margin-bottom: 64px;
}

.mr64 {
    margin-right: 64px;
}

.mb64 {
    margin-bottom: 64px;
}

.m96 {
    margin: 96px
}

.mx96 {
    margin-right: 96px;
    margin-left: 96px;
}

.my96 {
    margin-top: 96px;
    margin-bottom: 96px;
}

.mr96 {
    margin-right: 96px;
}

.mb96 {
    margin-bottom: 96px;
}

.m128 {
    margin: 128px
}

.mx128 {
    margin-right: 128px;
    margin-left: 128px;
}

.my128 {
    margin-top: 128px;
    margin-bottom: 128px;
}

.mr128 {
    margin-right: 128px;
}

.mb128 {
    margin-bottom: 128px;
}

/* 浮动 */
.f-left {
    float: left;
}

.f-right {
    float: right;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}


/* 定位 */
.relative {
    /* 相对定位 */
    position: relative;
}

.absolute {
    position: absolute;
}

/* 边框 */
.border {
    border: 1px solid #bfbfbf;
}

/* 圆角4px */
.radius4 {
    border-radius: 4px;
}

/* 圆角8px */
.radius8 {
    border-radius: 8px;
}

/* 横向分割线 */
.split {
    border-top: 1px #bfbfbf solid;
}

.split-dotted {
    border-top: 1px #bfbfbf dotted;
}

.split-white {
    height: 1px;
    background: #ffffff;
}

/*背景颜色*/
.bg-light-blue {
    background: #dae8f1;
}

.bg-yellow {
    background: #ffa700;
}

.bg-light-grey {
    background: #f9f9f9;
}

.bg-blue {
    background: #2e81bf;
}

.bg-dark-blue {
    background: #031067;
}

.bg-green {
    background: #01cc30;
}

.bg-white {
    background: #ffffff;
}


/*按钮样式*/
/*蓝色渐变按钮*/
.button-gradient-ramp {
    background-image: linear-gradient(270deg, #2f8eca 0%, #42e8e0 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-touch-callout: none;
    /*系统默认菜单被禁用*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -khtml-user-select: none;
    /*早期浏览器*/
    -moz-user-select: none;
    /*火狐*/
    -ms-user-select: none;
    /*IE10*/
    user-select: none;
    cursor: pointer;
}

.button-gradient-ramp>* {
    margin: 4px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.button-gradient-ramp:hover {
    background-image: linear-gradient(270deg, #1671aa 0%, #26ccc4 100%);
}

/* 黄色按钮 */
.button-yellow {
    background: #ffa800;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-touch-callout: none;
    /*系统默认菜单被禁用*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -khtml-user-select: none;
    /*早期浏览器*/
    -moz-user-select: none;
    /*火狐*/
    -ms-user-select: none;
    /*IE10*/
    user-select: none;
    cursor: pointer;
}

.button-yellow>* {
    margin: 4px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.button-yellow:hover {
    background: #f5a100;
}

/* 灰色按钮 */
.button-grey {
    background: #c7c7c7;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-touch-callout: none;
    /*系统默认菜单被禁用*/
    -webkit-user-select: none;
    /*webkit浏览器*/
    -khtml-user-select: none;
    /*早期浏览器*/
    -moz-user-select: none;
    /*火狐*/
    -ms-user-select: none;
    /*IE10*/
    user-select: none;
    cursor: pointer;
}

.button-grey>* {
    margin: 4px;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/*文字*/
/* 不可选中 */
.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*文字前的装饰点*/
.point {
    height: 4px;
    width: 4px;
    border-radius: 50%;
    margin-right: 4px;
}

/*文字样式*/
.txt-r {
    text-align: right;
}

.txt-c {
    text-align: center;
}

.txt-red {
    color: #ff5055;
}

.txt-yellow {
    color: #ffa700;
}

.txt-green {
    color: #01cc30;
}

.txt-blue {
    color: #3a7fc3;
}

.txt-purple {
    color: #b03eb3;
}

.txt-white {
    color: #ffffff;
}

.txt-grey {
    color: #999999;
}

.txt-blue-hover:hover {
    color: #3a7fc3;
}

.annotation {
    font-size: 12px;
    color: #999999;
}

/* 缩进 */
.txt-indent {
    text-indent: 32px;
}

/*蓝色大字标题*/
.txt12 {
    font-size: 12px;
}

.txt16 {
    font-size: 16px;
    line-height: 28px;
}

.txt20 {
    font-size: 20px;
}

.txt24 {
    font-size: 24px;
}

.txt28 {
    font-size: 28px;
}

.txt32 {
    font-size: 32px;
}

.txt36 {
    font-size: 36px;
}

.txt40 {
    font-size: 40px;
}

.txt44 {
    font-size: 44px;
}

.txt48 {
    font-size: 48px;
}

.txt52 {
    font-size: 52px;
}

.txt56 {
    font-size: 56px;
}

.txt60 {
    font-size: 60px;
}

.txt64 {
    font-size: 64px;
}

.txt-bold {
    font-weight: bold;
}

.txt-italic {
    font-style: italic;
}

p,
b,
center {
    padding-bottom: 2px;
}

.border-blue {
    border: 1px #2e83c1 solid;
}

.border-grey {
    border: 1px #bfbfbf solid;
}

/* 鼠标样式 */
.hand {
    cursor: pointer;
}

@media screen and (min-width: 800px) {
    .header{
      min-width: 1200px;
      background: rgb(253, 188, 0) url(../image/news/newsHead.png) no-repeat center center;
      height: 180px
    }
    .index-header{
      min-width: 1200px;
      background: rgb(253, 188, 0) url(../image/news/newsHead.png) no-repeat center center;
      height: 120px
    }
    .newcontainer{
      width: 1200px;
      margin: auto;
    }
    .footer{
      min-width: 1200px; 
      height: 114px; 
      background: url(../image/bottom.png) center center;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: #fff;
    }
    .title{
      font-size: 28px;
    }
    .myP {
        /* text-indent: 32px; */
        margin-right: 128px;
        margin-left: 128px;
        font-size: 16px;
        margin-bottom: 32px;
        line-height: 28px
      }
    .down{
      font-size: 18px;
      margin-left: 128px;
    }
  }

  @media screen and (max-width: 800px) {
    .header, .index-header{
      width: 100%;
      height: 100px;
      background: rgb(253, 188, 0) url(../image/phone-head.png) no-repeat center center;
      background-size: 100% 100%;
      font-size: 16px;
    }
    .newcontainer{
      width: 100%;
    }
    .myP {
        /* text-indent: 30px; */
        margin-right: 20px;
        margin-left: 20px;
        font-size: 14px;
        margin-bottom: 32px;
        line-height: 24px
      }
    .footer{
      color: #fff;
      width: 100%;
      height: 100px; 
      background:rgb(9, 29, 92) url(../image/bottom.png) no-repeat center center;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
    }
    .down{
      font-size: 12px;
      padding: 0 20px;
    }
    .title{
      font-size: 20px;
      padding: 0 10px;
    }
  }