index.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. .technology-section .container .technologyDivOne{
  2. box-shadow: 0px 2px 17px 4px rgba(158, 158, 158, 0.15);
  3. display: flex;
  4. background-color: #fff;
  5. }
  6. .technology-section .container .technologyDivOne .technologyBackColor1{
  7. background: #96AFDD;
  8. }
  9. .technology-section .container .technologyDivOne .technologyBackColor2{
  10. background: #E8B396;
  11. }
  12. .technology-section .container .technologyDivOne .technologyBackColor3{
  13. background: #81CFE2;
  14. }
  15. .technology-section .container .technologyDivOne .technologyTitle{
  16. width: 166px;
  17. height: 100%;
  18. padding: 60px 60px;
  19. font-size: 16px;
  20. font-family: Microsoft YaHei;
  21. font-weight: bold;
  22. color: #FFFFFF;
  23. text-align: center;
  24. }
  25. .technology-section .container .technologyDivOne .technologyContent{
  26. width: calc(100% - (166px + 182px));
  27. padding-left: 60px;
  28. }
  29. .technology-section .container .technologyDivOne .technologyContent>div{
  30. font-family: Microsoft YaHei;
  31. line-height: 41px;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. white-space: nowrap;
  35. }
  36. .technology-section .container .technologyDivOne .technologyContent>div:nth-child(1){
  37. font-size: 20px;
  38. font-weight: bold;
  39. color: #333333;
  40. padding-top: 40px;
  41. padding-bottom: 20px;
  42. cursor: pointer;
  43. }
  44. .technology-section .container .technologyDivOne .technologyContent>div:nth-child(2){
  45. font-size: 16px;
  46. color: #666666;
  47. padding-left: 10px;
  48. }
  49. .technology-section .container .technologyDivOne .technologyButton{
  50. padding: 60px 20px;
  51. }
  52. .technology-section .container .technologyDivOne .technologyButton .ButtonDownload{
  53. width: 142px;
  54. height: 50px;
  55. background: #FFFFFF;
  56. border: 1px solid #409eff;
  57. border-radius: 10px;
  58. text-align: center;
  59. line-height: 45px;
  60. }
  61. .technology-section .container .technologyDivOne .technologyButton .ButtonDownload>span{
  62. margin-left: 10px;
  63. font-size: 16px;
  64. font-family: Microsoft YaHei;
  65. font-weight: 400;
  66. color: #409eff;
  67. }
  68. @media (max-width: 991px) {
  69. .technology-section .container .technologyDivOne .technologyContent{
  70. padding-left: 20px;
  71. }
  72. }
  73. @media (max-width: 414px){
  74. .technology-section .container .technologyDivOne{
  75. display: block;
  76. }
  77. .technology-section .container .technologyDivOne .technologyTitle{
  78. width: 100%;
  79. padding: 20px 0px;
  80. font-size: 20px;
  81. }
  82. .technology-section .container .technologyDivOne .technologyContent{
  83. width: 100%;
  84. text-align: center;
  85. padding-left: 0px;
  86. }
  87. .technology-section .container .technologyDivOne .technologyContent>div:nth-child(2){
  88. padding-left: 0px;
  89. }
  90. .technology-section .container .technologyDivOne .technologyButton{
  91. padding: 30px 20px;
  92. text-align: center;
  93. }
  94. }